diff --git a/grammar.js b/grammar.js index f2f132bf..5792e300 100644 --- a/grammar.js +++ b/grammar.js @@ -1,11 +1,18 @@ /// // @ts-check + +const REDIR_OPERATOR_RE = /(e(rr)?|o(ut)?)(\+(e(rr)?|o(ut)?))?>>?/; + module.exports = grammar({ name: 'nu', word: ($) => $.identifier, - extras: ($) => [/[ \t]/, $.comment], + extras: ($) => [/[ \t\r]/, $.comment], + + supertypes: $ => [ + $.expression + ], inline: ($) => [ $._flag_value, @@ -61,12 +68,30 @@ module.exports = grammar({ nu_script: ($) => seq(optional($.shebang), optional($._block_body)), - shebang: ($) => seq(optional($._repeat_newline), '#!', /.*\r?\n?/), + shebang: ($) => seq(optional($._repeat_newline), '#!', /.*\n?/), ...block_body_rules(), ...parenthesized_body_rules(), + /// pipeline + pipeline: ($) => + seq( + repeat(seq($.pipe_element, $._pipe_separator, optional($._newline))), + $.pipe_element, + ), + pipeline_parenthesized: ($) => + seq( + repeat( + seq( + alias($.pipe_element_parenthesized, $.pipe_element), + $._pipe_separator, + optional($._repeat_newline), + ), + ), + alias($.pipe_element_parenthesized, $.pipe_element), + ), + _block_body: ($) => general_body_rules( '', @@ -134,13 +159,12 @@ module.exports = grammar({ // remove newline characters from extras to reduce ambiguity // manually controlled by adding the following to parenthesized rules - _newline: (_$) => /\r?\n/, + _newline: (_$) => /\n/, _repeat_newline: ($) => repeat1($._newline), _space: (_$) => /[ \t]+/, _separator: ($) => choice($._space, $._newline), _terminator: ($) => choice(';', $._newline), - _pipe_separator: ($) => - repeat1(seq(optional($._repeat_newline), choice('|', ...redir_pipe()))), + _pipe_separator: ($) => seq(optional(token.immediate(REDIR_OPERATOR_RE)), '|'), /// Attributes attribute_list: ($) => repeat1(seq($.attribute, choice(';', $._newline))), @@ -150,7 +174,7 @@ module.exports = grammar({ seq( '@', field('type', $.attribute_identifier), - repeat(seq($._space, optional($._cmd_arg))), + repeat($._cmd_arg), ), /// Top Level Items @@ -386,7 +410,7 @@ module.exports = grammar({ keyword().for, field('looping_var', $._variable_name), keyword().in, - field('iterable', $._expression), + field('iterable', $.expression), field('body', $.block), ), @@ -395,7 +419,7 @@ module.exports = grammar({ ctrl_while: ($) => seq( keyword().while, - field('condition', $._expression), + field('condition', $.expression), field('body', $.block), ), @@ -452,7 +476,7 @@ module.exports = grammar({ _match_pattern: ($) => choice($._match_pattern_expression, alias($.unquoted, $.val_string)), - match_guard: ($) => seq(keyword().if, $._expression), + match_guard: ($) => seq(keyword().if, $.expression), _match_pattern_expression: ($) => choice($._match_pattern_value, $.val_range, $.expr_parenthesized), @@ -527,16 +551,18 @@ module.exports = grammar({ /// Pipelines pipe_element: ($) => + prec(10, choice( seq( _env_variable_rule(false, $), - $._expression, + $.expression, optional($.redirection), ), seq(_env_variable_rule(false, $), $.command), $._ctrl_expression, $.where_command, ), + ), pipe_element_parenthesized: ($) => choice( @@ -644,13 +670,14 @@ module.exports = grammar({ /// Expressions - _expression: ($) => + expression: ($) => choice( $._value, $.expr_binary, $.expr_unary, $.val_range, $.expr_parenthesized, + $.command, ), _expression_parenthesized: ($) => @@ -1188,7 +1215,11 @@ module.exports = grammar({ /// Commands - command: _command_rule(false), + command: ($) => prec.left(10, seq( + field('head', seq(optional('^'), choice($.cmd_identifier, $._stringish))), + repeat($._cmd_arg)), + ), + _command_parenthesized: _command_rule(true), _cmd_arg: ($) => @@ -1206,10 +1237,11 @@ module.exports = grammar({ flag_value: ($) => choice($._value, $.val_string), + _redir_operator: _ => REDIR_OPERATOR_RE, + redirection: ($) => seq( - choice(...redir_append()), - $._space, + $._redir_operator, field( 'file_path', choice(alias($._unquoted_naive, $.val_string), $._stringish), @@ -1353,17 +1385,6 @@ function parenthesized_body_rules() { /// pipeline - pipeline_parenthesized: ($) => - seq( - repeat( - seq( - alias($.pipe_element_parenthesized, $.pipe_element), - $._pipe_separator, - optional($._repeat_newline), - ), - ), - alias($.pipe_element_parenthesized, $.pipe_element), - ), }; } @@ -1374,13 +1395,6 @@ function block_body_rules() { return { ..._block_body_rules(''), - /// pipeline - - pipeline: ($) => - seq( - repeat(seq($.pipe_element, $._pipe_separator, optional($._newline))), - $.pipe_element, - ), }; } @@ -1595,7 +1609,7 @@ function _ctrl_try_rule(parenthesized) { */ function _ctrl_if_rule(parenthesized) { return (/** @type {any} */ $) => { - const _expr = parenthesized ? $._expression_parenthesized : $._expression; + const _expr = parenthesized ? $._expression_parenthesized : $.expression; const seq_else_array = [ keyword().else, choice( @@ -1969,22 +1983,6 @@ function redir() { return ['err>', 'out>', 'e>', 'o>', 'err+out>', 'out+err>', 'o+e>', 'e+o>']; } -/** - * - */ -function redir_append() { - const rewrite = redir(); - const append = rewrite.map((x) => x + '>'); - return rewrite.concat(append); -} - -/** - * - */ -function redir_pipe() { - return redir().map((x) => x + '|'); -} - // delimiters /** * diff --git a/src/grammar.json b/src/grammar.json index 81ef837a..6e4a2fe2 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -53,7 +53,7 @@ }, { "type": "PATTERN", - "value": ".*\\r?\\n?" + "value": ".*\\n?" } ] }, @@ -331,43 +331,6 @@ } ] }, - "pipeline": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "pipe_element" - }, - { - "type": "SYMBOL", - "name": "_pipe_separator" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_newline" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - { - "type": "SYMBOL", - "name": "pipe_element" - } - ] - }, "_block_body_statement_parenthesized": { "type": "CHOICE", "members": [ @@ -687,6 +650,43 @@ } ] }, + "pipeline": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "pipe_element" + }, + { + "type": "SYMBOL", + "name": "_pipe_separator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + { + "type": "SYMBOL", + "name": "pipe_element" + } + ] + }, "pipeline_parenthesized": { "type": "SEQ", "members": [ @@ -1823,7 +1823,7 @@ }, "_newline": { "type": "PATTERN", - "value": "\\r?\\n" + "value": "\\n" }, "_repeat_newline": { "type": "REPEAT1", @@ -1863,65 +1863,28 @@ ] }, "_pipe_separator": { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_repeat_newline" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "STRING", - "value": "err>|" - }, - { - "type": "STRING", - "value": "out>|" - }, - { - "type": "STRING", - "value": "e>|" - }, - { - "type": "STRING", - "value": "o>|" - }, - { - "type": "STRING", - "value": "err+out>|" - }, - { - "type": "STRING", - "value": "out+err>|" - }, - { - "type": "STRING", - "value": "o+e>|" - }, - { - "type": "STRING", - "value": "e+o>|" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "(e(rr)?|o(ut)?)(\\+(e(rr)?|o(ut)?))?>>?" } - ] - } - ] - } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "|" + } + ] }, "attribute_list": { "type": "REPEAT1", @@ -1973,25 +1936,8 @@ { "type": "REPEAT", "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_space" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_cmd_arg" - }, - { - "type": "BLANK" - } - ] - } - ] + "type": "SYMBOL", + "name": "_cmd_arg" } } ] @@ -3460,7 +3406,7 @@ "name": "iterable", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -3502,7 +3448,7 @@ "name": "condition", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -3527,7 +3473,7 @@ "name": "condition", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -3563,7 +3509,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -4017,7 +3963,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -4536,85 +4482,89 @@ ] }, "pipe_element": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "env_var" - }, - { - "type": "REPEAT1", - "content": { + "type": "PREC", + "value": 10, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { "type": "SYMBOL", - "name": "_space" + "name": "env_var" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_space" + } } - } - ] - } - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "redirection" - }, - { - "type": "BLANK" + ] } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SEQ", + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "env_var" + "name": "redirection" }, { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_space" - } + "type": "BLANK" } ] } - }, - { - "type": "SYMBOL", - "name": "command" - } - ] - }, - { - "type": "SYMBOL", - "name": "_ctrl_expression" - }, - { - "type": "SYMBOL", - "name": "where_command" - } - ] + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "env_var" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_space" + } + } + ] + } + }, + { + "type": "SYMBOL", + "name": "command" + } + ] + }, + { + "type": "SYMBOL", + "name": "_ctrl_expression" + }, + { + "type": "SYMBOL", + "name": "where_command" + } + ] + } }, "pipe_element_parenthesized": { "type": "CHOICE", @@ -6918,7 +6868,7 @@ } ] }, - "_expression": { + "expression": { "type": "CHOICE", "members": [ { @@ -6940,6 +6890,10 @@ { "type": "SYMBOL", "name": "expr_parenthesized" + }, + { + "type": "SYMBOL", + "name": "command" } ] }, @@ -16147,81 +16101,51 @@ ] }, "command": { - "type": "PREC_RIGHT", - "value": 0, + "type": "PREC_LEFT", + "value": 10, "content": { "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "head", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "^" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "cmd_identifier" - } - ] - } - }, - { - "type": "FIELD", - "name": "head", - "content": { - "type": "SEQ", + "type": "FIELD", + "name": "head", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", "members": [ { "type": "STRING", "value": "^" }, { - "type": "SYMBOL", - "name": "_stringish" + "type": "BLANK" } ] - } - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_space" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_cmd_arg" + "name": "cmd_identifier" }, { - "type": "BLANK" + "type": "SYMBOL", + "name": "_stringish" } ] } ] } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_cmd_arg" + } } ] } @@ -16418,81 +16342,16 @@ } ] }, + "_redir_operator": { + "type": "PATTERN", + "value": "(e(rr)?|o(ut)?)(\\+(e(rr)?|o(ut)?))?>>?" + }, "redirection": { "type": "SEQ", "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "err>" - }, - { - "type": "STRING", - "value": "out>" - }, - { - "type": "STRING", - "value": "e>" - }, - { - "type": "STRING", - "value": "o>" - }, - { - "type": "STRING", - "value": "err+out>" - }, - { - "type": "STRING", - "value": "out+err>" - }, - { - "type": "STRING", - "value": "o+e>" - }, - { - "type": "STRING", - "value": "e+o>" - }, - { - "type": "STRING", - "value": "err>>" - }, - { - "type": "STRING", - "value": "out>>" - }, - { - "type": "STRING", - "value": "e>>" - }, - { - "type": "STRING", - "value": "o>>" - }, - { - "type": "STRING", - "value": "err+out>>" - }, - { - "type": "STRING", - "value": "out+err>>" - }, - { - "type": "STRING", - "value": "o+e>>" - }, - { - "type": "STRING", - "value": "e+o>>" - } - ] - }, { "type": "SYMBOL", - "name": "_space" + "name": "_redir_operator" }, { "type": "FIELD", @@ -17422,7 +17281,7 @@ "extras": [ { "type": "PATTERN", - "value": "[ \\t]" + "value": "[ \\t\\r]" }, { "type": "SYMBOL", @@ -17567,6 +17426,8 @@ "_stringish", "_terminator" ], - "supertypes": [], + "supertypes": [ + "expression" + ], "reserved": {} } \ No newline at end of file diff --git a/src/parser.c b/src/parser.c index 4fefcce0..a135af35 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,16 +15,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 5204 -#define LARGE_STATE_COUNT 1263 -#define SYMBOL_COUNT 483 +#define STATE_COUNT 5429 +#define LARGE_STATE_COUNT 1282 +#define SYMBOL_COUNT 484 #define ALIAS_COUNT 3 #define TOKEN_COUNT 272 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 64 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 250 +#define PRODUCTION_ID_COUNT 251 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -311,17 +311,17 @@ enum ts_symbol_identifiers { sym__assignment_pattern = 281, sym__mutable_assignment_pattern = 282, sym__statement = 283, - sym_pipeline = 284, - sym__block_body_statement_parenthesized = 285, - sym__declaration_parenthesized = 286, - sym_decl_alias_parenthesized = 287, - sym_stmt_let_parenthesized = 288, - sym_stmt_mut_parenthesized = 289, - sym_stmt_const_parenthesized = 290, - sym_assignment_parenthesized = 291, - sym__assignment_pattern_parenthesized = 292, - sym__mutable_assignment_pattern_parenthesized = 293, - sym__statement_parenthesized = 294, + sym__block_body_statement_parenthesized = 284, + sym__declaration_parenthesized = 285, + sym_decl_alias_parenthesized = 286, + sym_stmt_let_parenthesized = 287, + sym_stmt_mut_parenthesized = 288, + sym_stmt_const_parenthesized = 289, + sym_assignment_parenthesized = 290, + sym__assignment_pattern_parenthesized = 291, + sym__mutable_assignment_pattern_parenthesized = 292, + sym__statement_parenthesized = 293, + sym_pipeline = 294, sym_pipeline_parenthesized = 295, sym__block_body = 296, sym_cmd_identifier = 297, @@ -506,13 +506,14 @@ enum ts_symbol_identifiers { aux_sym_list_body_repeat1 = 476, aux_sym_record_body_repeat1 = 477, aux_sym__table_body_repeat1 = 478, - aux_sym__command_parenthesized_repeat1 = 479, - aux_sym__unquoted_with_expr_repeat1 = 480, - aux_sym__unquoted_in_list_with_expr_repeat1 = 481, - aux_sym__unquoted_in_record_with_expr_repeat1 = 482, - anon_alias_sym__head = 483, - anon_alias_sym__prefix = 484, - anon_alias_sym__unit = 485, + aux_sym_command_repeat1 = 479, + aux_sym__command_parenthesized_repeat1 = 480, + aux_sym__unquoted_with_expr_repeat1 = 481, + aux_sym__unquoted_in_list_with_expr_repeat1 = 482, + aux_sym__unquoted_in_record_with_expr_repeat1 = 483, + anon_alias_sym__head = 484, + anon_alias_sym__prefix = 485, + anon_alias_sym__unit = 486, }; static const char * const ts_symbol_names[] = { @@ -800,7 +801,6 @@ static const char * const ts_symbol_names[] = { [sym__assignment_pattern] = "_assignment_pattern", [sym__mutable_assignment_pattern] = "_mutable_assignment_pattern", [sym__statement] = "_statement", - [sym_pipeline] = "pipeline", [sym__block_body_statement_parenthesized] = "_block_body_statement_parenthesized", [sym__declaration_parenthesized] = "_declaration_parenthesized", [sym_decl_alias_parenthesized] = "decl_alias", @@ -811,6 +811,7 @@ static const char * const ts_symbol_names[] = { [sym__assignment_pattern_parenthesized] = "_assignment_pattern_parenthesized", [sym__mutable_assignment_pattern_parenthesized] = "_mutable_assignment_pattern_parenthesized", [sym__statement_parenthesized] = "_statement_parenthesized", + [sym_pipeline] = "pipeline", [sym_pipeline_parenthesized] = "pipeline", [sym__block_body] = "_block_body", [sym_cmd_identifier] = "cmd_identifier", @@ -995,6 +996,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_list_body_repeat1] = "list_body_repeat1", [aux_sym_record_body_repeat1] = "record_body_repeat1", [aux_sym__table_body_repeat1] = "_table_body_repeat1", + [aux_sym_command_repeat1] = "command_repeat1", [aux_sym__command_parenthesized_repeat1] = "_command_parenthesized_repeat1", [aux_sym__unquoted_with_expr_repeat1] = "_unquoted_with_expr_repeat1", [aux_sym__unquoted_in_list_with_expr_repeat1] = "_unquoted_in_list_with_expr_repeat1", @@ -1289,7 +1291,6 @@ static const TSSymbol ts_symbol_map[] = { [sym__assignment_pattern] = sym__assignment_pattern, [sym__mutable_assignment_pattern] = sym__mutable_assignment_pattern, [sym__statement] = sym__statement, - [sym_pipeline] = sym_pipeline, [sym__block_body_statement_parenthesized] = sym__block_body_statement_parenthesized, [sym__declaration_parenthesized] = sym__declaration_parenthesized, [sym_decl_alias_parenthesized] = sym_decl_alias, @@ -1300,6 +1301,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__assignment_pattern_parenthesized] = sym__assignment_pattern_parenthesized, [sym__mutable_assignment_pattern_parenthesized] = sym__mutable_assignment_pattern_parenthesized, [sym__statement_parenthesized] = sym__statement_parenthesized, + [sym_pipeline] = sym_pipeline, [sym_pipeline_parenthesized] = sym_pipeline, [sym__block_body] = sym__block_body, [sym_cmd_identifier] = sym_cmd_identifier, @@ -1484,6 +1486,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_list_body_repeat1] = aux_sym_list_body_repeat1, [aux_sym_record_body_repeat1] = aux_sym_record_body_repeat1, [aux_sym__table_body_repeat1] = aux_sym__table_body_repeat1, + [aux_sym_command_repeat1] = aux_sym_command_repeat1, [aux_sym__command_parenthesized_repeat1] = aux_sym__command_parenthesized_repeat1, [aux_sym__unquoted_with_expr_repeat1] = aux_sym__unquoted_with_expr_repeat1, [aux_sym__unquoted_in_list_with_expr_repeat1] = aux_sym__unquoted_in_list_with_expr_repeat1, @@ -2630,10 +2633,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_pipeline] = { - .visible = true, - .named = true, - }, [sym__block_body_statement_parenthesized] = { .visible = false, .named = true, @@ -2674,6 +2673,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_pipeline] = { + .visible = true, + .named = true, + }, [sym_pipeline_parenthesized] = { .visible = true, .named = true, @@ -3410,6 +3413,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_command_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym__command_parenthesized_repeat1] = { .visible = false, .named = false, @@ -3617,210 +3624,211 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [41] = {.index = 68, .length = 3}, [42] = {.index = 71, .length = 2}, [43] = {.index = 73, .length = 2}, - [44] = {.index = 75, .length = 6}, - [45] = {.index = 81, .length = 1}, - [46] = {.index = 82, .length = 1}, - [47] = {.index = 83, .length = 1}, - [48] = {.index = 84, .length = 2}, - [49] = {.index = 86, .length = 2}, - [50] = {.index = 88, .length = 6}, - [51] = {.index = 94, .length = 1}, - [52] = {.index = 95, .length = 4}, - [53] = {.index = 99, .length = 1}, - [54] = {.index = 100, .length = 1}, - [55] = {.index = 101, .length = 1}, - [56] = {.index = 102, .length = 1}, - [57] = {.index = 103, .length = 1}, - [58] = {.index = 104, .length = 1}, - [59] = {.index = 105, .length = 1}, - [60] = {.index = 106, .length = 2}, - [61] = {.index = 108, .length = 7}, - [62] = {.index = 115, .length = 1}, - [63] = {.index = 116, .length = 1}, - [64] = {.index = 117, .length = 2}, - [65] = {.index = 119, .length = 5}, - [66] = {.index = 124, .length = 1}, - [67] = {.index = 125, .length = 1}, - [68] = {.index = 126, .length = 1}, - [69] = {.index = 127, .length = 2}, - [70] = {.index = 129, .length = 10}, - [71] = {.index = 139, .length = 3}, - [72] = {.index = 139, .length = 3}, - [73] = {.index = 142, .length = 2}, - [74] = {.index = 142, .length = 2}, - [75] = {.index = 142, .length = 2}, - [76] = {.index = 142, .length = 2}, - [77] = {.index = 144, .length = 2}, - [78] = {.index = 146, .length = 3}, - [79] = {.index = 149, .length = 3}, + [44] = {.index = 75, .length = 1}, + [45] = {.index = 76, .length = 1}, + [46] = {.index = 77, .length = 2}, + [47] = {.index = 79, .length = 5}, + [48] = {.index = 84, .length = 1}, + [49] = {.index = 85, .length = 1}, + [50] = {.index = 86, .length = 1}, + [51] = {.index = 87, .length = 6}, + [52] = {.index = 93, .length = 1}, + [53] = {.index = 94, .length = 1}, + [54] = {.index = 95, .length = 1}, + [55] = {.index = 96, .length = 2}, + [56] = {.index = 98, .length = 2}, + [57] = {.index = 100, .length = 6}, + [58] = {.index = 106, .length = 1}, + [59] = {.index = 107, .length = 4}, + [60] = {.index = 111, .length = 1}, + [61] = {.index = 112, .length = 1}, + [62] = {.index = 113, .length = 1}, + [63] = {.index = 114, .length = 1}, + [64] = {.index = 115, .length = 1}, + [65] = {.index = 116, .length = 1}, + [66] = {.index = 117, .length = 1}, + [67] = {.index = 118, .length = 2}, + [68] = {.index = 120, .length = 7}, + [69] = {.index = 127, .length = 5}, + [70] = {.index = 132, .length = 2}, + [71] = {.index = 134, .length = 10}, + [72] = {.index = 144, .length = 1}, + [73] = {.index = 145, .length = 3}, + [74] = {.index = 145, .length = 3}, + [75] = {.index = 148, .length = 2}, + [76] = {.index = 148, .length = 2}, + [77] = {.index = 148, .length = 2}, + [78] = {.index = 148, .length = 2}, + [79] = {.index = 150, .length = 2}, [80] = {.index = 152, .length = 3}, - [81] = {.index = 155, .length = 4}, - [82] = {.index = 159, .length = 1}, - [83] = {.index = 160, .length = 1}, - [84] = {.index = 161, .length = 1}, - [85] = {.index = 162, .length = 2}, - [86] = {.index = 164, .length = 1}, - [87] = {.index = 164, .length = 1}, - [88] = {.index = 165, .length = 1}, - [89] = {.index = 166, .length = 4}, - [90] = {.index = 170, .length = 3}, - [91] = {.index = 173, .length = 4}, - [92] = {.index = 177, .length = 2}, - [93] = {.index = 179, .length = 1}, - [94] = {.index = 180, .length = 1}, - [96] = {.index = 179, .length = 1}, - [97] = {.index = 181, .length = 1}, - [98] = {.index = 182, .length = 2}, - [99] = {.index = 184, .length = 1}, - [100] = {.index = 185, .length = 2}, - [101] = {.index = 187, .length = 2}, - [103] = {.index = 189, .length = 2}, - [104] = {.index = 191, .length = 1}, - [105] = {.index = 192, .length = 4}, - [106] = {.index = 196, .length = 1}, - [107] = {.index = 197, .length = 2}, - [108] = {.index = 199, .length = 1}, - [109] = {.index = 200, .length = 2}, - [110] = {.index = 202, .length = 2}, - [111] = {.index = 204, .length = 1}, - [112] = {.index = 197, .length = 2}, - [113] = {.index = 205, .length = 2}, - [114] = {.index = 205, .length = 2}, - [115] = {.index = 205, .length = 2}, - [116] = {.index = 205, .length = 2}, - [117] = {.index = 207, .length = 9}, - [118] = {.index = 216, .length = 6}, - [119] = {.index = 222, .length = 6}, - [120] = {.index = 228, .length = 2}, - [121] = {.index = 230, .length = 1}, - [122] = {.index = 231, .length = 2}, - [123] = {.index = 233, .length = 1}, - [124] = {.index = 234, .length = 2}, - [125] = {.index = 234, .length = 2}, - [126] = {.index = 234, .length = 2}, - [127] = {.index = 234, .length = 2}, - [128] = {.index = 236, .length = 3}, - [129] = {.index = 239, .length = 4}, - [130] = {.index = 243, .length = 4}, - [131] = {.index = 247, .length = 1}, - [132] = {.index = 248, .length = 2}, - [133] = {.index = 250, .length = 5}, + [81] = {.index = 155, .length = 3}, + [82] = {.index = 158, .length = 3}, + [83] = {.index = 161, .length = 4}, + [84] = {.index = 165, .length = 1}, + [85] = {.index = 166, .length = 1}, + [86] = {.index = 167, .length = 1}, + [87] = {.index = 168, .length = 2}, + [88] = {.index = 170, .length = 1}, + [89] = {.index = 170, .length = 1}, + [90] = {.index = 171, .length = 1}, + [91] = {.index = 172, .length = 4}, + [92] = {.index = 176, .length = 3}, + [93] = {.index = 179, .length = 4}, + [94] = {.index = 183, .length = 2}, + [95] = {.index = 185, .length = 1}, + [96] = {.index = 186, .length = 1}, + [98] = {.index = 185, .length = 1}, + [99] = {.index = 187, .length = 1}, + [100] = {.index = 188, .length = 2}, + [101] = {.index = 190, .length = 1}, + [102] = {.index = 191, .length = 2}, + [103] = {.index = 193, .length = 2}, + [105] = {.index = 195, .length = 2}, + [106] = {.index = 197, .length = 1}, + [107] = {.index = 198, .length = 4}, + [108] = {.index = 202, .length = 1}, + [109] = {.index = 203, .length = 2}, + [110] = {.index = 205, .length = 1}, + [111] = {.index = 206, .length = 2}, + [112] = {.index = 208, .length = 2}, + [113] = {.index = 210, .length = 1}, + [114] = {.index = 203, .length = 2}, + [115] = {.index = 211, .length = 2}, + [116] = {.index = 211, .length = 2}, + [117] = {.index = 211, .length = 2}, + [118] = {.index = 211, .length = 2}, + [119] = {.index = 213, .length = 9}, + [120] = {.index = 222, .length = 6}, + [121] = {.index = 228, .length = 6}, + [122] = {.index = 234, .length = 2}, + [123] = {.index = 236, .length = 1}, + [124] = {.index = 237, .length = 2}, + [125] = {.index = 239, .length = 2}, + [126] = {.index = 239, .length = 2}, + [127] = {.index = 239, .length = 2}, + [128] = {.index = 239, .length = 2}, + [129] = {.index = 241, .length = 3}, + [130] = {.index = 244, .length = 4}, + [131] = {.index = 248, .length = 4}, + [132] = {.index = 252, .length = 1}, + [133] = {.index = 253, .length = 2}, [134] = {.index = 255, .length = 5}, - [135] = {.index = 260, .length = 4}, - [136] = {.index = 264, .length = 3}, - [137] = {.index = 267, .length = 3}, - [138] = {.index = 270, .length = 6}, - [139] = {.index = 276, .length = 6}, - [140] = {.index = 282, .length = 5}, - [141] = {.index = 287, .length = 3}, - [142] = {.index = 290, .length = 3}, - [143] = {.index = 293, .length = 2}, - [144] = {.index = 295, .length = 2}, - [145] = {.index = 297, .length = 2}, - [146] = {.index = 299, .length = 3}, - [147] = {.index = 299, .length = 3}, - [148] = {.index = 302, .length = 3}, - [149] = {.index = 302, .length = 3}, - [150] = {.index = 305, .length = 1}, - [151] = {.index = 306, .length = 1}, - [152] = {.index = 307, .length = 3}, - [153] = {.index = 310, .length = 3}, - [154] = {.index = 313, .length = 3}, - [155] = {.index = 313, .length = 3}, - [156] = {.index = 313, .length = 3}, - [157] = {.index = 313, .length = 3}, - [158] = {.index = 313, .length = 3}, - [159] = {.index = 313, .length = 3}, - [160] = {.index = 313, .length = 3}, - [161] = {.index = 313, .length = 3}, - [162] = {.index = 316, .length = 5}, - [163] = {.index = 321, .length = 4}, - [164] = {.index = 325, .length = 4}, - [165] = {.index = 329, .length = 3}, - [166] = {.index = 332, .length = 1}, - [167] = {.index = 333, .length = 2}, - [168] = {.index = 335, .length = 1}, - [169] = {.index = 336, .length = 1}, - [170] = {.index = 337, .length = 1}, - [171] = {.index = 338, .length = 2}, - [172] = {.index = 340, .length = 2}, - [173] = {.index = 342, .length = 5}, - [174] = {.index = 347, .length = 6}, - [175] = {.index = 353, .length = 1}, - [176] = {.index = 354, .length = 1}, - [177] = {.index = 355, .length = 2}, - [178] = {.index = 357, .length = 2}, - [179] = {.index = 359, .length = 2}, - [180] = {.index = 361, .length = 2}, - [181] = {.index = 363, .length = 2}, - [182] = {.index = 365, .length = 9}, - [183] = {.index = 374, .length = 6}, - [184] = {.index = 380, .length = 9}, - [185] = {.index = 389, .length = 6}, - [186] = {.index = 395, .length = 6}, - [187] = {.index = 401, .length = 6}, - [188] = {.index = 407, .length = 3}, - [189] = {.index = 407, .length = 3}, - [190] = {.index = 410, .length = 1}, - [191] = {.index = 411, .length = 4}, - [192] = {.index = 415, .length = 5}, + [135] = {.index = 260, .length = 5}, + [136] = {.index = 265, .length = 4}, + [137] = {.index = 269, .length = 3}, + [138] = {.index = 272, .length = 3}, + [139] = {.index = 275, .length = 6}, + [140] = {.index = 281, .length = 6}, + [141] = {.index = 287, .length = 5}, + [142] = {.index = 292, .length = 3}, + [143] = {.index = 295, .length = 3}, + [144] = {.index = 298, .length = 2}, + [145] = {.index = 300, .length = 2}, + [146] = {.index = 302, .length = 2}, + [147] = {.index = 304, .length = 3}, + [148] = {.index = 304, .length = 3}, + [149] = {.index = 307, .length = 3}, + [150] = {.index = 307, .length = 3}, + [151] = {.index = 310, .length = 1}, + [152] = {.index = 311, .length = 1}, + [153] = {.index = 312, .length = 3}, + [154] = {.index = 315, .length = 3}, + [155] = {.index = 318, .length = 3}, + [156] = {.index = 318, .length = 3}, + [157] = {.index = 318, .length = 3}, + [158] = {.index = 318, .length = 3}, + [159] = {.index = 318, .length = 3}, + [160] = {.index = 318, .length = 3}, + [161] = {.index = 318, .length = 3}, + [162] = {.index = 318, .length = 3}, + [163] = {.index = 321, .length = 5}, + [164] = {.index = 326, .length = 4}, + [165] = {.index = 330, .length = 4}, + [166] = {.index = 334, .length = 3}, + [167] = {.index = 337, .length = 1}, + [168] = {.index = 338, .length = 2}, + [169] = {.index = 340, .length = 1}, + [170] = {.index = 341, .length = 1}, + [171] = {.index = 342, .length = 1}, + [172] = {.index = 343, .length = 2}, + [173] = {.index = 345, .length = 2}, + [174] = {.index = 347, .length = 5}, + [175] = {.index = 352, .length = 6}, + [176] = {.index = 358, .length = 1}, + [177] = {.index = 359, .length = 1}, + [178] = {.index = 360, .length = 2}, + [179] = {.index = 362, .length = 2}, + [180] = {.index = 364, .length = 2}, + [181] = {.index = 366, .length = 2}, + [182] = {.index = 368, .length = 2}, + [183] = {.index = 370, .length = 9}, + [184] = {.index = 379, .length = 6}, + [185] = {.index = 385, .length = 9}, + [186] = {.index = 394, .length = 6}, + [187] = {.index = 400, .length = 6}, + [188] = {.index = 406, .length = 6}, + [189] = {.index = 412, .length = 3}, + [190] = {.index = 412, .length = 3}, + [191] = {.index = 415, .length = 1}, + [192] = {.index = 416, .length = 4}, [193] = {.index = 420, .length = 5}, - [194] = {.index = 425, .length = 4}, - [195] = {.index = 429, .length = 3}, - [196] = {.index = 432, .length = 3}, - [197] = {.index = 435, .length = 3}, - [198] = {.index = 438, .length = 6}, - [199] = {.index = 444, .length = 2}, - [200] = {.index = 446, .length = 1}, - [201] = {.index = 447, .length = 2}, - [202] = {.index = 449, .length = 2}, - [203] = {.index = 451, .length = 2}, - [204] = {.index = 453, .length = 3}, - [205] = {.index = 456, .length = 3}, - [206] = {.index = 459, .length = 3}, - [207] = {.index = 462, .length = 3}, - [208] = {.index = 465, .length = 3}, - [209] = {.index = 468, .length = 3}, - [210] = {.index = 471, .length = 2}, - [211] = {.index = 473, .length = 2}, - [212] = {.index = 475, .length = 9}, - [213] = {.index = 484, .length = 6}, - [214] = {.index = 490, .length = 6}, - [215] = {.index = 496, .length = 1}, - [216] = {.index = 497, .length = 4}, - [217] = {.index = 501, .length = 5}, - [218] = {.index = 506, .length = 6}, - [219] = {.index = 512, .length = 3}, - [220] = {.index = 515, .length = 3}, - [221] = {.index = 518, .length = 3}, - [222] = {.index = 521, .length = 3}, - [223] = {.index = 524, .length = 3}, - [224] = {.index = 527, .length = 3}, - [225] = {.index = 530, .length = 3}, - [226] = {.index = 533, .length = 3}, - [227] = {.index = 536, .length = 3}, - [228] = {.index = 539, .length = 2}, - [229] = {.index = 541, .length = 2}, - [230] = {.index = 543, .length = 5}, - [231] = {.index = 548, .length = 4}, - [232] = {.index = 552, .length = 3}, - [233] = {.index = 555, .length = 3}, - [234] = {.index = 558, .length = 3}, - [235] = {.index = 561, .length = 3}, - [236] = {.index = 564, .length = 3}, - [237] = {.index = 567, .length = 3}, - [238] = {.index = 570, .length = 3}, - [239] = {.index = 573, .length = 3}, - [240] = {.index = 576, .length = 2}, - [241] = {.index = 578, .length = 5}, - [242] = {.index = 583, .length = 3}, - [243] = {.index = 586, .length = 3}, - [244] = {.index = 589, .length = 3}, - [245] = {.index = 592, .length = 3}, - [246] = {.index = 595, .length = 3}, - [247] = {.index = 598, .length = 3}, - [248] = {.index = 601, .length = 3}, - [249] = {.index = 604, .length = 3}, + [194] = {.index = 425, .length = 5}, + [195] = {.index = 430, .length = 4}, + [196] = {.index = 434, .length = 3}, + [197] = {.index = 437, .length = 3}, + [198] = {.index = 440, .length = 3}, + [199] = {.index = 443, .length = 6}, + [200] = {.index = 449, .length = 2}, + [201] = {.index = 451, .length = 1}, + [202] = {.index = 452, .length = 2}, + [203] = {.index = 454, .length = 2}, + [204] = {.index = 456, .length = 2}, + [205] = {.index = 458, .length = 3}, + [206] = {.index = 461, .length = 3}, + [207] = {.index = 464, .length = 3}, + [208] = {.index = 467, .length = 3}, + [209] = {.index = 470, .length = 3}, + [210] = {.index = 473, .length = 3}, + [211] = {.index = 476, .length = 2}, + [212] = {.index = 478, .length = 2}, + [213] = {.index = 480, .length = 9}, + [214] = {.index = 489, .length = 6}, + [215] = {.index = 495, .length = 6}, + [216] = {.index = 501, .length = 1}, + [217] = {.index = 502, .length = 4}, + [218] = {.index = 506, .length = 5}, + [219] = {.index = 511, .length = 6}, + [220] = {.index = 517, .length = 3}, + [221] = {.index = 520, .length = 3}, + [222] = {.index = 523, .length = 3}, + [223] = {.index = 526, .length = 3}, + [224] = {.index = 529, .length = 3}, + [225] = {.index = 532, .length = 3}, + [226] = {.index = 535, .length = 3}, + [227] = {.index = 538, .length = 3}, + [228] = {.index = 541, .length = 3}, + [229] = {.index = 544, .length = 2}, + [230] = {.index = 546, .length = 2}, + [231] = {.index = 548, .length = 5}, + [232] = {.index = 553, .length = 4}, + [233] = {.index = 557, .length = 3}, + [234] = {.index = 560, .length = 3}, + [235] = {.index = 563, .length = 3}, + [236] = {.index = 566, .length = 3}, + [237] = {.index = 569, .length = 3}, + [238] = {.index = 572, .length = 3}, + [239] = {.index = 575, .length = 3}, + [240] = {.index = 578, .length = 3}, + [241] = {.index = 581, .length = 2}, + [242] = {.index = 583, .length = 5}, + [243] = {.index = 588, .length = 3}, + [244] = {.index = 591, .length = 3}, + [245] = {.index = 594, .length = 3}, + [246] = {.index = 597, .length = 3}, + [247] = {.index = 600, .length = 3}, + [248] = {.index = 603, .length = 3}, + [249] = {.index = 606, .length = 3}, + [250] = {.index = 609, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3939,56 +3947,75 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_condition, 1}, {field_then_branch, 2}, [75] = + {field_arg, 0}, + [76] = + {field_arg_spread, 0}, + [77] = + {field_arg_spread, 0}, + {field_name, 0, .inherited = true}, + [79] = + {field_arg, 0, .inherited = true}, + {field_arg_spread, 0, .inherited = true}, + {field_arg_str, 0, .inherited = true}, + {field_flag, 0, .inherited = true}, + {field_redir, 0, .inherited = true}, + [84] = + {field_redir, 0}, + [85] = + {field_flag, 0}, + [86] = + {field_arg_str, 0}, + [87] = {field_arg, 2, .inherited = true}, {field_arg_spread, 2, .inherited = true}, {field_arg_str, 2, .inherited = true}, {field_flag, 2, .inherited = true}, {field_redir, 2, .inherited = true}, {field_type, 1}, - [81] = + [93] = {field_head, 1, .inherited = true}, - [82] = + [94] = {field_row, 0}, - [83] = + [95] = {field_entry, 1}, - [84] = + [96] = {field_entry, 0, .inherited = true}, {field_entry, 1}, - [86] = + [98] = {field_entry, 0, .inherited = true}, {field_entry, 1, .inherited = true}, - [88] = + [100] = {field_arg, 1, .inherited = true}, {field_arg_spread, 1, .inherited = true}, {field_arg_str, 1, .inherited = true}, {field_flag, 1, .inherited = true}, {field_head, 1, .inherited = true}, {field_redir, 1, .inherited = true}, - [94] = + [106] = {field_param_name, 0}, - [95] = + [107] = {field_param_name, 0, .inherited = true}, {field_param_optional, 0, .inherited = true}, {field_param_rest, 0, .inherited = true}, {field_param_short_flag, 0, .inherited = true}, - [99] = + [111] = {field_param_rest, 0}, - [100] = + [112] = {field_param_optional, 0}, - [101] = + [113] = {field_param_long_flag, 0}, - [102] = + [114] = {field_param_short_flag, 0}, - [103] = + [115] = {field_parameters, 1}, - [104] = + [116] = {field_digit, 0}, - [105] = + [117] = {field_expr, 1, .inherited = true}, - [106] = + [118] = {field_expr, 0, .inherited = true}, {field_expr, 1, .inherited = true}, - [108] = + [120] = {field_arg, 2, .inherited = true}, {field_arg_spread, 2, .inherited = true}, {field_arg_str, 2, .inherited = true}, @@ -3996,29 +4023,16 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_head, 0}, {field_head, 1}, {field_redir, 2, .inherited = true}, - [115] = - {field_arg, 0}, - [116] = - {field_arg_spread, 0}, - [117] = - {field_arg_spread, 0}, - {field_name, 0, .inherited = true}, - [119] = + [127] = {field_arg, 1, .inherited = true}, {field_arg_spread, 1, .inherited = true}, {field_arg_str, 1, .inherited = true}, {field_flag, 1, .inherited = true}, {field_redir, 1, .inherited = true}, - [124] = - {field_redir, 0}, - [125] = - {field_flag, 0}, - [126] = - {field_arg_str, 0}, - [127] = + [132] = {field_value, 2}, {field_variable, 0}, - [129] = + [134] = {field_arg, 0, .inherited = true}, {field_arg, 1, .inherited = true}, {field_arg_spread, 0, .inherited = true}, @@ -4029,109 +4043,111 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_flag, 1, .inherited = true}, {field_redir, 0, .inherited = true}, {field_redir, 1, .inherited = true}, - [139] = + [144] = + {field_file_path, 1}, + [145] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 2}, - [142] = + [148] = {field_end, 2}, {field_start, 0}, - [144] = + [150] = {field_import_pattern, 3}, {field_module, 2}, - [146] = + [152] = {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [149] = + [155] = {field_body, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [152] = + [158] = {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_value, 3}, - [155] = + [161] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_value, 2}, {field_var_name, 0, .inherited = true}, - [159] = + [165] = {field_flat_type, 0}, - [160] = + [166] = {field_type, 1, .inherited = true}, - [161] = + [167] = {field_type, 0}, - [162] = + [168] = {field_name, 1}, {field_value, 2, .inherited = true}, - [164] = + [170] = {field_value, 1}, - [165] = + [171] = {field_type, 0, .inherited = true}, - [166] = + [172] = {field_body, 3}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [170] = + [176] = {field_cmd, 0}, {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [173] = + [179] = {field_body, 3}, {field_quoted_name, 1, .inherited = true}, {field_signature, 2}, {field_unquoted_name, 1, .inherited = true}, - [177] = + [183] = {field_catch_branch, 3}, {field_try_branch, 1}, - [179] = + [185] = {field_scrutinee, 1}, - [180] = + [186] = {field_rest, 0, .inherited = true}, - [181] = + [187] = {field_head, 1}, - [182] = + [188] = {field_head, 1, .inherited = true}, {field_row, 2, .inherited = true}, - [184] = + [190] = {field_row, 1}, - [185] = + [191] = {field_row, 0, .inherited = true}, {field_row, 1}, - [187] = + [193] = {field_row, 0, .inherited = true}, {field_row, 1, .inherited = true}, - [189] = + [195] = {field_entry, 1, .inherited = true}, {field_entry, 2}, - [191] = + [197] = {field_try_branch, 2}, - [192] = + [198] = {field_lhs, 2, .inherited = true}, {field_opr, 2, .inherited = true}, {field_predicate, 2}, {field_rhs, 2, .inherited = true}, - [196] = + [202] = {field_predicate, 2}, - [197] = + [203] = {field_key, 0}, {field_value, 2}, - [199] = + [205] = {field_name, 0}, - [200] = + [206] = {field_param_name, 0}, {field_param_name, 1}, - [202] = + [208] = {field_flag_capsule, 1}, {field_param_long_flag, 0}, - [204] = + [210] = {field_parameters, 2}, - [205] = + [211] = {field_end, 3}, {field_step, 1}, - [207] = + [213] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 2, .inherited = true}, @@ -4141,208 +4157,206 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [216] = + [222] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 1}, {field_rhs, 0, .inherited = true}, {field_rhs, 2}, - [222] = + [228] = {field_lhs, 0}, {field_lhs, 2, .inherited = true}, {field_opr, 1}, {field_opr, 2, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [228] = + [234] = {field_digit, 0}, {field_digit, 1}, - [230] = + [236] = {field_digit, 2, .inherited = true}, - [231] = + [237] = {field_digit, 0, .inherited = true}, {field_digit, 1, .inherited = true}, - [233] = - {field_file_path, 2}, - [234] = + [239] = {field_start, 0}, {field_step, 2}, - [236] = + [241] = {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_value, 4}, - [239] = + [244] = {field_body, 4}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [243] = + [248] = {field_body, 4}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [247] = + [252] = {field_type, 2, .inherited = true}, - [248] = + [253] = {field_completion, 2}, {field_type, 1, .inherited = true}, - [250] = + [255] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_type, 1}, {field_value, 3}, {field_var_name, 0, .inherited = true}, - [255] = + [260] = {field_body, 4}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 3}, {field_unquoted_name, 1, .inherited = true}, - [260] = + [265] = {field_body, 4}, {field_parameters, 3}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [264] = + [269] = {field_cmd, 1, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [267] = + [272] = {field_cmd, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [270] = + [275] = {field_cmd, 0, .inherited = true}, {field_cmd, 1}, {field_quoted_name, 0, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [276] = + [281] = {field_cmd, 0, .inherited = true}, {field_cmd, 1, .inherited = true}, {field_quoted_name, 0, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [282] = + [287] = {field_body, 4}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [287] = + [292] = {field_condition, 1}, {field_else_branch, 4}, {field_then_branch, 2}, - [290] = + [295] = {field_condition, 1}, {field_else_block, 4}, {field_then_branch, 2}, - [293] = + [298] = {field_row, 1, .inherited = true}, {field_row, 2}, - [295] = + [300] = {field_condition, 2}, {field_then_branch, 3}, - [297] = + [302] = {field_condition, 1}, {field_then_branch, 3}, - [299] = + [304] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 3}, - [302] = + [307] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 3}, - [305] = + [310] = {field_name, 2}, - [306] = + [311] = {field_param_value, 1}, - [307] = + [312] = {field_key, 0}, {field_key, 1}, {field_value, 3}, - [310] = + [315] = {field_quoted_name, 3, .inherited = true}, {field_signature, 4}, {field_unquoted_name, 3, .inherited = true}, - [313] = + [318] = {field_end, 4}, {field_start, 0}, {field_step, 2}, - [316] = + [321] = {field_body, 5}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 2, .inherited = true}, - [321] = + [326] = {field_body, 5}, {field_parameters, 4}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [325] = + [330] = {field_body, 5}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [329] = + [334] = {field_completion, 0, .inherited = true}, {field_key, 0, .inherited = true}, {field_type, 0, .inherited = true}, - [332] = + [337] = {field_key, 0}, - [333] = + [338] = {field_completion, 3}, {field_type, 2, .inherited = true}, - [335] = + [340] = {field_command, 1}, - [336] = + [341] = {field_constant, 1}, - [337] = + [342] = {field_type, 3, .inherited = true}, - [338] = + [343] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [340] = + [345] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [342] = + [347] = {field_body, 5}, {field_parameters, 3}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 1, .inherited = true}, - [347] = + [352] = {field_cmd, 1, .inherited = true}, {field_cmd, 2}, {field_quoted_name, 1, .inherited = true}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [353] = + [358] = {field_rest, 1}, - [354] = + [359] = {field_entry, 1, .inherited = true}, - [355] = + [360] = {field_default_pattern, 0}, {field_expression, 2}, - [357] = + [362] = {field_expression, 2}, {field_pattern, 0}, - [359] = + [364] = {field_condition, 2}, {field_then_branch, 4}, - [361] = + [366] = {field_catch_branch, 4}, {field_try_branch, 2}, - [363] = + [368] = {field_catch_branch, 4}, {field_try_branch, 1}, - [365] = + [370] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4352,14 +4366,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [374] = + [379] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 1}, {field_rhs, 0, .inherited = true}, {field_rhs, 3}, - [380] = + [385] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4369,119 +4383,119 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [389] = + [394] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 2}, {field_rhs, 0, .inherited = true}, {field_rhs, 3}, - [395] = + [400] = {field_lhs, 0}, {field_lhs, 3, .inherited = true}, {field_opr, 1}, {field_opr, 3, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [401] = + [406] = {field_lhs, 0}, {field_lhs, 3, .inherited = true}, {field_opr, 2}, {field_opr, 3, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [407] = + [412] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 4}, - [410] = + [415] = {field_param_value, 2}, - [411] = + [416] = {field_body, 5}, {field_quoted_name, 3, .inherited = true}, {field_signature, 4}, {field_unquoted_name, 3, .inherited = true}, - [415] = + [420] = {field_body, 6}, {field_parameters, 4}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 2, .inherited = true}, - [420] = + [425] = {field_body, 6}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 3, .inherited = true}, - [425] = + [430] = {field_body, 6}, {field_parameters, 5}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [429] = + [434] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [432] = + [437] = {field_completion, 1, .inherited = true}, {field_key, 0}, {field_type, 1, .inherited = true}, - [435] = + [440] = {field_completion, 1, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 1, .inherited = true}, - [438] = + [443] = {field_completion, 0, .inherited = true}, {field_completion, 1, .inherited = true}, {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [444] = + [449] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [446] = + [451] = {field_completion, 2}, - [447] = + [452] = {field_completion, 4}, {field_type, 3, .inherited = true}, - [449] = + [454] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [451] = + [456] = {field_entry, 1, .inherited = true}, {field_rest, 2}, - [453] = + [458] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [456] = + [461] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [459] = + [464] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [462] = + [467] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [465] = + [470] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [468] = + [473] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [471] = + [476] = {field_catch_branch, 5}, {field_try_branch, 2}, - [473] = + [478] = {field_catch_branch, 5}, {field_try_branch, 1}, - [475] = + [480] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4491,163 +4505,163 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [484] = + [489] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 2}, {field_rhs, 0, .inherited = true}, {field_rhs, 4}, - [490] = + [495] = {field_lhs, 0}, {field_lhs, 4, .inherited = true}, {field_opr, 2}, {field_opr, 4, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [496] = + [501] = {field_param_value, 3}, - [497] = + [502] = {field_body, 6}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [501] = + [506] = {field_body, 7}, {field_parameters, 5}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 3, .inherited = true}, - [506] = + [511] = {field_completion, 1, .inherited = true}, {field_completion, 2, .inherited = true}, {field_key, 1, .inherited = true}, {field_key, 2, .inherited = true}, {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [512] = + [517] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [515] = + [520] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [518] = + [523] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [521] = + [526] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [524] = + [529] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [527] = + [532] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [530] = + [535] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [533] = + [538] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [536] = + [541] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [539] = + [544] = {field_catch_branch, 6}, {field_try_branch, 2}, - [541] = + [546] = {field_catch_branch, 6}, {field_try_branch, 1}, - [543] = + [548] = {field_body, 7}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 4, .inherited = true}, - [548] = + [553] = {field_body, 7}, {field_parameters, 6}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [552] = + [557] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [555] = + [560] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [558] = + [563] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [561] = + [566] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [564] = + [569] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [567] = + [572] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [570] = + [575] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [573] = + [578] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [576] = + [581] = {field_catch_branch, 7}, {field_try_branch, 2}, - [578] = + [583] = {field_body, 8}, {field_parameters, 6}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 7}, {field_unquoted_name, 4, .inherited = true}, - [583] = + [588] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [586] = + [591] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [589] = + [594] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [592] = + [597] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [595] = + [600] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [598] = + [603] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [601] = + [606] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [604] = + [609] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, @@ -4673,105 +4687,105 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [39] = { [1] = anon_alias_sym__unit, }, - [68] = { + [50] = { [0] = sym_val_string, }, - [69] = { + [70] = { [0] = sym_identifier, }, - [72] = { + [74] = { [2] = sym_val_string, }, - [74] = { + [76] = { [2] = sym_val_number, }, - [75] = { + [77] = { [0] = sym_val_number, }, - [76] = { + [78] = { [0] = sym_val_number, [2] = sym_val_number, }, - [87] = { + [89] = { [1] = sym_val_string, }, - [95] = { + [97] = { [0] = sym_val_string, }, - [96] = { + [98] = { [1] = sym_val_string, }, - [102] = { + [104] = { [0] = anon_alias_sym__head, }, - [105] = { + [107] = { [2] = sym_where_predicate, }, - [107] = { + [109] = { [0] = sym_identifier, }, - [114] = { + [116] = { [3] = sym_val_number, }, - [115] = { + [117] = { [1] = sym_val_number, }, - [116] = { + [118] = { [1] = sym_val_number, [3] = sym_val_number, }, - [125] = { + [126] = { [2] = sym_val_number, }, - [126] = { + [127] = { [0] = sym_val_number, }, - [127] = { + [128] = { [0] = sym_val_number, [2] = sym_val_number, }, - [147] = { + [148] = { [3] = sym_val_string, }, - [149] = { + [150] = { [3] = sym_val_string, }, - [152] = { + [153] = { [0] = sym_identifier, }, - [155] = { + [156] = { [4] = sym_val_number, }, - [156] = { + [157] = { [2] = sym_val_number, }, - [157] = { + [158] = { [2] = sym_val_number, [4] = sym_val_number, }, - [158] = { + [159] = { [0] = sym_val_number, }, - [159] = { + [160] = { [0] = sym_val_number, [4] = sym_val_number, }, - [160] = { + [161] = { [0] = sym_val_number, [2] = sym_val_number, }, - [161] = { + [162] = { [0] = sym_val_number, [2] = sym_val_number, [4] = sym_val_number, }, - [166] = { + [167] = { [0] = sym_identifier, }, - [189] = { + [190] = { [4] = sym_val_string, }, - [196] = { + [197] = { [0] = sym_identifier, }, }; @@ -4818,210 +4832,210 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 4, - [5] = 4, - [6] = 3, - [7] = 4, - [8] = 3, - [9] = 4, - [10] = 4, - [11] = 4, - [12] = 4, - [13] = 4, - [14] = 4, - [15] = 4, - [16] = 16, - [17] = 16, - [18] = 16, - [19] = 16, - [20] = 16, - [21] = 21, - [22] = 22, - [23] = 16, - [24] = 22, - [25] = 16, - [26] = 21, - [27] = 27, - [28] = 27, - [29] = 27, - [30] = 27, - [31] = 27, - [32] = 27, - [33] = 27, - [34] = 27, - [35] = 35, - [36] = 36, - [37] = 37, + [5] = 3, + [6] = 4, + [7] = 3, + [8] = 4, + [9] = 3, + [10] = 3, + [11] = 3, + [12] = 3, + [13] = 3, + [14] = 3, + [15] = 3, + [16] = 3, + [17] = 17, + [18] = 18, + [19] = 19, + [20] = 17, + [21] = 17, + [22] = 17, + [23] = 17, + [24] = 19, + [25] = 17, + [26] = 18, + [27] = 17, + [28] = 17, + [29] = 29, + [30] = 29, + [31] = 29, + [32] = 29, + [33] = 29, + [34] = 29, + [35] = 29, + [36] = 29, + [37] = 29, [38] = 38, - [39] = 36, - [40] = 37, - [41] = 38, - [42] = 42, - [43] = 35, + [39] = 39, + [40] = 40, + [41] = 41, + [42] = 41, + [43] = 43, [44] = 44, - [45] = 42, - [46] = 35, - [47] = 36, - [48] = 38, - [49] = 42, - [50] = 35, - [51] = 36, - [52] = 36, - [53] = 42, - [54] = 35, - [55] = 44, - [56] = 36, - [57] = 42, - [58] = 35, - [59] = 44, - [60] = 36, - [61] = 42, - [62] = 35, - [63] = 44, - [64] = 42, - [65] = 35, - [66] = 44, - [67] = 35, - [68] = 35, - [69] = 44, - [70] = 35, - [71] = 71, - [72] = 36, - [73] = 44, - [74] = 74, - [75] = 75, - [76] = 74, - [77] = 77, - [78] = 75, - [79] = 74, - [80] = 80, - [81] = 80, - [82] = 82, + [45] = 43, + [46] = 46, + [47] = 38, + [48] = 39, + [49] = 44, + [50] = 41, + [51] = 46, + [52] = 38, + [53] = 39, + [54] = 46, + [55] = 38, + [56] = 41, + [57] = 44, + [58] = 46, + [59] = 38, + [60] = 39, + [61] = 41, + [62] = 46, + [63] = 38, + [64] = 39, + [65] = 41, + [66] = 46, + [67] = 38, + [68] = 39, + [69] = 41, + [70] = 46, + [71] = 38, + [72] = 39, + [73] = 46, + [74] = 38, + [75] = 39, + [76] = 38, + [77] = 38, + [78] = 38, + [79] = 38, + [80] = 41, + [81] = 41, + [82] = 44, [83] = 83, - [84] = 82, + [84] = 84, [85] = 85, - [86] = 85, - [87] = 82, + [86] = 84, + [87] = 85, [88] = 88, [89] = 85, - [90] = 90, + [90] = 83, [91] = 91, [92] = 92, [93] = 93, - [94] = 92, - [95] = 92, - [96] = 93, - [97] = 93, - [98] = 98, + [94] = 94, + [95] = 93, + [96] = 91, + [97] = 91, + [98] = 93, [99] = 99, - [100] = 92, - [101] = 93, - [102] = 99, + [100] = 100, + [101] = 101, + [102] = 102, [103] = 103, - [104] = 93, - [105] = 105, - [106] = 106, - [107] = 98, - [108] = 108, + [104] = 101, + [105] = 102, + [106] = 102, + [107] = 101, + [108] = 101, [109] = 109, - [110] = 92, - [111] = 99, - [112] = 98, - [113] = 99, - [114] = 98, + [110] = 102, + [111] = 101, + [112] = 103, + [113] = 102, + [114] = 114, [115] = 115, - [116] = 115, - [117] = 105, - [118] = 106, - [119] = 99, - [120] = 120, - [121] = 115, - [122] = 98, - [123] = 108, - [124] = 108, - [125] = 105, - [126] = 106, - [127] = 108, - [128] = 103, - [129] = 105, - [130] = 92, - [131] = 93, - [132] = 115, - [133] = 106, - [134] = 108, - [135] = 98, - [136] = 115, - [137] = 105, - [138] = 106, - [139] = 99, - [140] = 105, - [141] = 115, - [142] = 108, - [143] = 106, - [144] = 144, - [145] = 144, - [146] = 144, - [147] = 147, - [148] = 144, - [149] = 147, - [150] = 147, - [151] = 147, - [152] = 152, + [116] = 116, + [117] = 103, + [118] = 118, + [119] = 103, + [120] = 109, + [121] = 109, + [122] = 122, + [123] = 109, + [124] = 124, + [125] = 114, + [126] = 116, + [127] = 118, + [128] = 122, + [129] = 116, + [130] = 114, + [131] = 122, + [132] = 118, + [133] = 122, + [134] = 118, + [135] = 116, + [136] = 136, + [137] = 101, + [138] = 124, + [139] = 109, + [140] = 103, + [141] = 114, + [142] = 102, + [143] = 109, + [144] = 114, + [145] = 103, + [146] = 122, + [147] = 118, + [148] = 116, + [149] = 116, + [150] = 118, + [151] = 122, + [152] = 114, [153] = 153, - [154] = 153, - [155] = 155, - [156] = 152, - [157] = 157, - [158] = 158, - [159] = 159, - [160] = 157, + [154] = 154, + [155] = 154, + [156] = 153, + [157] = 153, + [158] = 154, + [159] = 154, + [160] = 153, [161] = 161, [162] = 162, [163] = 163, [164] = 164, - [165] = 158, - [166] = 153, - [167] = 155, - [168] = 152, - [169] = 157, - [170] = 158, - [171] = 161, - [172] = 144, - [173] = 147, - [174] = 153, - [175] = 155, - [176] = 152, - [177] = 157, - [178] = 158, - [179] = 162, - [180] = 159, - [181] = 163, - [182] = 164, - [183] = 155, - [184] = 184, - [185] = 184, - [186] = 186, - [187] = 187, - [188] = 184, - [189] = 144, - [190] = 147, - [191] = 184, - [192] = 187, + [165] = 165, + [166] = 166, + [167] = 167, + [168] = 166, + [169] = 167, + [170] = 170, + [171] = 171, + [172] = 165, + [173] = 171, + [174] = 174, + [175] = 171, + [176] = 163, + [177] = 164, + [178] = 174, + [179] = 163, + [180] = 165, + [181] = 164, + [182] = 165, + [183] = 170, + [184] = 163, + [185] = 171, + [186] = 174, + [187] = 164, + [188] = 174, + [189] = 161, + [190] = 154, + [191] = 153, + [192] = 162, [193] = 193, - [194] = 103, - [195] = 195, + [194] = 194, + [195] = 153, [196] = 196, [197] = 197, - [198] = 198, - [199] = 199, - [200] = 200, - [201] = 201, - [202] = 202, + [198] = 154, + [199] = 193, + [200] = 193, + [201] = 194, + [202] = 193, [203] = 203, [204] = 204, [205] = 205, [206] = 206, [207] = 207, - [208] = 195, + [208] = 208, [209] = 209, [210] = 210, [211] = 211, @@ -5030,315 +5044,315 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [214] = 214, [215] = 215, [216] = 216, - [217] = 217, - [218] = 196, + [217] = 206, + [218] = 218, [219] = 219, - [220] = 197, - [221] = 205, + [220] = 220, + [221] = 221, [222] = 222, - [223] = 198, - [224] = 199, - [225] = 200, - [226] = 201, - [227] = 202, - [228] = 203, - [229] = 204, - [230] = 222, - [231] = 206, - [232] = 207, - [233] = 195, - [234] = 219, - [235] = 210, - [236] = 211, - [237] = 212, - [238] = 213, - [239] = 214, - [240] = 215, - [241] = 216, - [242] = 217, - [243] = 196, - [244] = 219, - [245] = 197, - [246] = 205, - [247] = 222, - [248] = 198, - [249] = 199, - [250] = 200, - [251] = 201, - [252] = 202, - [253] = 203, - [254] = 204, - [255] = 206, - [256] = 207, - [257] = 209, - [258] = 210, - [259] = 211, - [260] = 212, - [261] = 213, - [262] = 214, - [263] = 215, - [264] = 216, - [265] = 217, - [266] = 209, - [267] = 92, - [268] = 93, - [269] = 92, - [270] = 93, - [271] = 93, - [272] = 92, - [273] = 98, - [274] = 274, - [275] = 275, - [276] = 274, - [277] = 92, - [278] = 93, - [279] = 99, - [280] = 280, - [281] = 280, - [282] = 99, - [283] = 275, - [284] = 98, - [285] = 274, - [286] = 99, - [287] = 280, - [288] = 274, - [289] = 275, - [290] = 280, - [291] = 274, - [292] = 280, - [293] = 98, - [294] = 115, - [295] = 99, - [296] = 93, - [297] = 108, - [298] = 105, - [299] = 108, - [300] = 106, - [301] = 106, - [302] = 106, - [303] = 105, - [304] = 108, - [305] = 105, - [306] = 115, - [307] = 115, - [308] = 92, - [309] = 98, - [310] = 98, - [311] = 115, - [312] = 105, - [313] = 106, - [314] = 108, - [315] = 99, - [316] = 105, - [317] = 106, - [318] = 108, - [319] = 115, - [320] = 320, - [321] = 320, - [322] = 320, - [323] = 147, - [324] = 144, - [325] = 144, - [326] = 147, - [327] = 147, - [328] = 144, - [329] = 147, - [330] = 144, - [331] = 144, - [332] = 147, - [333] = 333, - [334] = 334, - [335] = 333, - [336] = 336, - [337] = 336, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 341, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 207, + [231] = 208, + [232] = 208, + [233] = 209, + [234] = 210, + [235] = 211, + [236] = 212, + [237] = 213, + [238] = 214, + [239] = 215, + [240] = 216, + [241] = 218, + [242] = 219, + [243] = 220, + [244] = 221, + [245] = 222, + [246] = 246, + [247] = 223, + [248] = 224, + [249] = 225, + [250] = 226, + [251] = 227, + [252] = 228, + [253] = 229, + [254] = 207, + [255] = 209, + [256] = 210, + [257] = 211, + [258] = 212, + [259] = 213, + [260] = 214, + [261] = 215, + [262] = 216, + [263] = 206, + [264] = 218, + [265] = 219, + [266] = 220, + [267] = 221, + [268] = 222, + [269] = 246, + [270] = 223, + [271] = 224, + [272] = 225, + [273] = 226, + [274] = 227, + [275] = 228, + [276] = 229, + [277] = 246, + [278] = 101, + [279] = 102, + [280] = 101, + [281] = 102, + [282] = 101, + [283] = 102, + [284] = 101, + [285] = 285, + [286] = 103, + [287] = 285, + [288] = 109, + [289] = 289, + [290] = 103, + [291] = 109, + [292] = 109, + [293] = 293, + [294] = 103, + [295] = 285, + [296] = 289, + [297] = 102, + [298] = 285, + [299] = 289, + [300] = 285, + [301] = 289, + [302] = 293, + [303] = 293, + [304] = 289, + [305] = 114, + [306] = 101, + [307] = 122, + [308] = 116, + [309] = 122, + [310] = 116, + [311] = 118, + [312] = 109, + [313] = 118, + [314] = 103, + [315] = 118, + [316] = 122, + [317] = 114, + [318] = 116, + [319] = 114, + [320] = 102, + [321] = 116, + [322] = 122, + [323] = 103, + [324] = 118, + [325] = 114, + [326] = 109, + [327] = 116, + [328] = 122, + [329] = 114, + [330] = 118, + [331] = 331, + [332] = 331, + [333] = 331, + [334] = 154, + [335] = 153, + [336] = 154, + [337] = 153, + [338] = 154, + [339] = 153, + [340] = 153, + [341] = 154, + [342] = 154, + [343] = 153, + [344] = 344, [345] = 345, - [346] = 342, - [347] = 345, - [348] = 345, + [346] = 345, + [347] = 344, + [348] = 348, [349] = 349, - [350] = 345, - [351] = 351, - [352] = 349, - [353] = 353, - [354] = 345, - [355] = 340, - [356] = 345, - [357] = 357, - [358] = 345, - [359] = 345, + [350] = 350, + [351] = 349, + [352] = 352, + [353] = 349, + [354] = 354, + [355] = 350, + [356] = 349, + [357] = 349, + [358] = 358, + [359] = 359, [360] = 360, - [361] = 360, - [362] = 345, - [363] = 338, - [364] = 353, - [365] = 343, - [366] = 345, - [367] = 345, - [368] = 368, - [369] = 369, - [370] = 333, - [371] = 371, - [372] = 334, - [373] = 369, - [374] = 336, - [375] = 342, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 376, + [361] = 361, + [362] = 349, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 349, + [367] = 367, + [368] = 358, + [369] = 359, + [370] = 349, + [371] = 360, + [372] = 361, + [373] = 363, + [374] = 349, + [375] = 349, + [376] = 349, + [377] = 349, + [378] = 352, + [379] = 367, [380] = 380, - [381] = 338, - [382] = 353, - [383] = 376, - [384] = 380, - [385] = 339, - [386] = 380, - [387] = 380, - [388] = 351, + [381] = 381, + [382] = 381, + [383] = 344, + [384] = 384, + [385] = 348, + [386] = 345, + [387] = 387, + [388] = 388, [389] = 389, - [390] = 357, - [391] = 343, - [392] = 360, - [393] = 340, - [394] = 341, - [395] = 349, - [396] = 380, - [397] = 397, - [398] = 398, - [399] = 399, - [400] = 400, - [401] = 389, - [402] = 334, - [403] = 403, - [404] = 369, - [405] = 368, - [406] = 336, - [407] = 407, - [408] = 408, + [390] = 390, + [391] = 389, + [392] = 392, + [393] = 390, + [394] = 390, + [395] = 364, + [396] = 367, + [397] = 352, + [398] = 358, + [399] = 361, + [400] = 359, + [401] = 360, + [402] = 354, + [403] = 363, + [404] = 390, + [405] = 350, + [406] = 365, + [407] = 390, + [408] = 389, [409] = 409, - [410] = 410, - [411] = 411, + [410] = 389, + [411] = 392, [412] = 412, - [413] = 357, - [414] = 333, - [415] = 343, - [416] = 398, - [417] = 339, - [418] = 407, - [419] = 377, - [420] = 353, - [421] = 92, - [422] = 93, - [423] = 338, - [424] = 360, - [425] = 334, - [426] = 340, - [427] = 341, - [428] = 342, - [429] = 349, - [430] = 378, - [431] = 431, - [432] = 351, - [433] = 92, - [434] = 434, - [435] = 98, - [436] = 99, - [437] = 351, - [438] = 438, - [439] = 434, - [440] = 369, - [441] = 339, - [442] = 442, - [443] = 400, - [444] = 444, - [445] = 434, - [446] = 446, - [447] = 357, - [448] = 408, - [449] = 409, - [450] = 410, - [451] = 411, - [452] = 403, - [453] = 368, - [454] = 93, - [455] = 455, + [413] = 413, + [414] = 348, + [415] = 415, + [416] = 416, + [417] = 417, + [418] = 381, + [419] = 345, + [420] = 420, + [421] = 380, + [422] = 422, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 364, + [427] = 363, + [428] = 387, + [429] = 361, + [430] = 415, + [431] = 350, + [432] = 365, + [433] = 367, + [434] = 344, + [435] = 354, + [436] = 358, + [437] = 348, + [438] = 360, + [439] = 359, + [440] = 440, + [441] = 352, + [442] = 409, + [443] = 416, + [444] = 102, + [445] = 101, + [446] = 423, + [447] = 380, + [448] = 102, + [449] = 101, + [450] = 422, + [451] = 109, + [452] = 103, + [453] = 453, + [454] = 424, + [455] = 365, [456] = 456, - [457] = 455, - [458] = 455, + [457] = 425, + [458] = 412, [459] = 459, [460] = 460, - [461] = 460, - [462] = 106, - [463] = 446, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 105, - [468] = 460, - [469] = 99, + [461] = 381, + [462] = 459, + [463] = 354, + [464] = 459, + [465] = 364, + [466] = 420, + [467] = 467, + [468] = 468, + [469] = 103, [470] = 470, - [471] = 438, - [472] = 98, - [473] = 108, - [474] = 434, - [475] = 460, - [476] = 105, - [477] = 442, - [478] = 399, - [479] = 340, - [480] = 343, - [481] = 444, - [482] = 342, - [483] = 349, + [471] = 471, + [472] = 471, + [473] = 471, + [474] = 109, + [475] = 475, + [476] = 475, + [477] = 475, + [478] = 478, + [479] = 479, + [480] = 456, + [481] = 481, + [482] = 118, + [483] = 460, [484] = 484, - [485] = 485, - [486] = 486, - [487] = 360, - [488] = 341, + [485] = 475, + [486] = 122, + [487] = 116, + [488] = 459, [489] = 489, - [490] = 490, - [491] = 491, - [492] = 368, + [490] = 122, + [491] = 116, + [492] = 492, [493] = 493, - [494] = 412, - [495] = 108, - [496] = 333, - [497] = 497, + [494] = 367, + [495] = 380, + [496] = 496, + [497] = 417, [498] = 498, - [499] = 106, - [500] = 500, - [501] = 501, - [502] = 336, + [499] = 360, + [500] = 361, + [501] = 363, + [502] = 502, [503] = 503, - [504] = 504, - [505] = 505, + [504] = 358, + [505] = 345, [506] = 506, - [507] = 507, + [507] = 118, [508] = 508, - [509] = 509, + [509] = 467, [510] = 510, - [511] = 511, + [511] = 453, [512] = 512, [513] = 513, - [514] = 514, - [515] = 515, - [516] = 516, - [517] = 353, - [518] = 338, + [514] = 359, + [515] = 344, + [516] = 413, + [517] = 517, + [518] = 518, [519] = 519, - [520] = 520, + [520] = 478, [521] = 521, [522] = 522, [523] = 523, - [524] = 504, - [525] = 525, + [524] = 524, + [525] = 350, [526] = 526, [527] = 527, [528] = 528, @@ -5349,35 +5363,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [533] = 533, [534] = 534, [535] = 535, - [536] = 536, + [536] = 352, [537] = 537, [538] = 538, [539] = 539, [540] = 540, - [541] = 526, - [542] = 529, - [543] = 532, - [544] = 533, - [545] = 534, - [546] = 536, - [547] = 537, - [548] = 538, - [549] = 539, - [550] = 527, - [551] = 528, - [552] = 535, - [553] = 553, - [554] = 553, - [555] = 527, - [556] = 519, - [557] = 520, - [558] = 521, - [559] = 522, - [560] = 523, - [561] = 538, - [562] = 525, - [563] = 530, - [564] = 531, + [541] = 535, + [542] = 542, + [543] = 543, + [544] = 544, + [545] = 545, + [546] = 529, + [547] = 530, + [548] = 548, + [549] = 519, + [550] = 521, + [551] = 524, + [552] = 526, + [553] = 527, + [554] = 554, + [555] = 555, + [556] = 540, + [557] = 555, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 564, [565] = 565, [566] = 566, [567] = 567, @@ -5392,112 +5406,112 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [576] = 576, [577] = 577, [578] = 578, - [579] = 579, + [579] = 517, [580] = 580, [581] = 581, - [582] = 528, - [583] = 535, - [584] = 553, - [585] = 585, - [586] = 505, - [587] = 506, - [588] = 507, - [589] = 508, - [590] = 509, - [591] = 510, - [592] = 511, - [593] = 512, - [594] = 513, - [595] = 514, - [596] = 515, - [597] = 516, - [598] = 565, - [599] = 566, - [600] = 567, - [601] = 568, - [602] = 569, - [603] = 570, - [604] = 571, - [605] = 572, - [606] = 573, - [607] = 574, - [608] = 575, - [609] = 576, - [610] = 577, - [611] = 578, - [612] = 579, - [613] = 580, - [614] = 581, - [615] = 459, - [616] = 519, - [617] = 520, - [618] = 618, - [619] = 521, - [620] = 522, - [621] = 523, - [622] = 504, - [623] = 525, - [624] = 530, - [625] = 625, - [626] = 531, - [627] = 565, - [628] = 566, - [629] = 629, - [630] = 630, - [631] = 585, - [632] = 505, - [633] = 506, - [634] = 507, - [635] = 508, - [636] = 509, - [637] = 539, - [638] = 510, - [639] = 511, - [640] = 512, - [641] = 513, - [642] = 642, - [643] = 567, - [644] = 514, - [645] = 645, - [646] = 568, - [647] = 515, - [648] = 569, - [649] = 570, - [650] = 516, - [651] = 571, - [652] = 572, - [653] = 573, - [654] = 574, - [655] = 537, - [656] = 575, - [657] = 657, - [658] = 576, - [659] = 577, - [660] = 578, - [661] = 579, - [662] = 580, - [663] = 581, - [664] = 470, - [665] = 526, - [666] = 529, - [667] = 532, - [668] = 533, - [669] = 534, - [670] = 536, - [671] = 585, - [672] = 444, - [673] = 645, - [674] = 674, + [582] = 582, + [583] = 558, + [584] = 559, + [585] = 531, + [586] = 532, + [587] = 533, + [588] = 534, + [589] = 537, + [590] = 538, + [591] = 539, + [592] = 554, + [593] = 582, + [594] = 594, + [595] = 595, + [596] = 596, + [597] = 518, + [598] = 560, + [599] = 561, + [600] = 562, + [601] = 563, + [602] = 542, + [603] = 564, + [604] = 565, + [605] = 543, + [606] = 566, + [607] = 607, + [608] = 568, + [609] = 569, + [610] = 570, + [611] = 571, + [612] = 544, + [613] = 572, + [614] = 545, + [615] = 573, + [616] = 574, + [617] = 575, + [618] = 576, + [619] = 535, + [620] = 542, + [621] = 594, + [622] = 543, + [623] = 595, + [624] = 596, + [625] = 518, + [626] = 544, + [627] = 545, + [628] = 529, + [629] = 530, + [630] = 548, + [631] = 519, + [632] = 521, + [633] = 524, + [634] = 526, + [635] = 527, + [636] = 577, + [637] = 578, + [638] = 517, + [639] = 580, + [640] = 581, + [641] = 540, + [642] = 555, + [643] = 558, + [644] = 559, + [645] = 560, + [646] = 561, + [647] = 562, + [648] = 563, + [649] = 564, + [650] = 565, + [651] = 566, + [652] = 567, + [653] = 568, + [654] = 569, + [655] = 570, + [656] = 571, + [657] = 572, + [658] = 573, + [659] = 574, + [660] = 575, + [661] = 576, + [662] = 577, + [663] = 578, + [664] = 664, + [665] = 580, + [666] = 581, + [667] = 667, + [668] = 470, + [669] = 548, + [670] = 531, + [671] = 532, + [672] = 533, + [673] = 673, + [674] = 534, [675] = 675, - [676] = 676, - [677] = 677, - [678] = 500, - [679] = 679, - [680] = 503, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 490, + [676] = 537, + [677] = 538, + [678] = 539, + [679] = 554, + [680] = 582, + [681] = 594, + [682] = 595, + [683] = 596, + [684] = 567, [685] = 685, [686] = 686, [687] = 687, @@ -5506,43 +5520,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [690] = 690, [691] = 691, [692] = 692, - [693] = 642, + [693] = 693, [694] = 694, [695] = 695, - [696] = 442, + [696] = 348, [697] = 697, [698] = 698, [699] = 699, - [700] = 700, - [701] = 369, - [702] = 702, + [700] = 453, + [701] = 381, + [702] = 523, [703] = 703, [704] = 704, - [705] = 705, - [706] = 334, + [705] = 493, + [706] = 706, [707] = 707, [708] = 708, [709] = 709, - [710] = 710, + [710] = 467, [711] = 711, [712] = 712, [713] = 713, [714] = 714, - [715] = 713, + [715] = 715, [716] = 716, [717] = 717, [718] = 718, [719] = 719, [720] = 720, [721] = 721, - [722] = 722, - [723] = 723, + [722] = 522, + [723] = 513, [724] = 724, - [725] = 725, + [725] = 508, [726] = 726, [727] = 727, [728] = 728, - [729] = 357, + [729] = 729, [730] = 730, [731] = 731, [732] = 732, @@ -5552,70 +5566,70 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [736] = 736, [737] = 737, [738] = 738, - [739] = 739, + [739] = 365, [740] = 740, [741] = 741, [742] = 742, [743] = 743, [744] = 744, - [745] = 714, + [745] = 745, [746] = 746, [747] = 747, [748] = 748, [749] = 749, [750] = 750, - [751] = 725, - [752] = 731, - [753] = 732, - [754] = 733, - [755] = 734, - [756] = 714, - [757] = 713, - [758] = 716, - [759] = 717, - [760] = 718, - [761] = 493, - [762] = 716, - [763] = 763, - [764] = 764, - [765] = 717, - [766] = 766, - [767] = 767, - [768] = 718, + [751] = 751, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 761, + [762] = 732, + [763] = 734, + [764] = 735, + [765] = 736, + [766] = 741, + [767] = 496, + [768] = 768, [769] = 769, [770] = 770, [771] = 771, [772] = 772, [773] = 773, [774] = 774, - [775] = 775, + [775] = 354, [776] = 776, [777] = 777, [778] = 778, - [779] = 444, + [779] = 779, [780] = 780, [781] = 781, - [782] = 782, - [783] = 339, - [784] = 351, - [785] = 485, - [786] = 442, - [787] = 486, - [788] = 788, - [789] = 789, - [790] = 484, - [791] = 444, - [792] = 792, - [793] = 793, + [782] = 453, + [783] = 783, + [784] = 784, + [785] = 785, + [786] = 506, + [787] = 498, + [788] = 503, + [789] = 364, + [790] = 790, + [791] = 791, + [792] = 467, + [793] = 502, [794] = 794, - [795] = 470, - [796] = 734, + [795] = 795, + [796] = 796, [797] = 797, - [798] = 798, + [798] = 453, [799] = 799, - [800] = 800, + [800] = 478, [801] = 801, - [802] = 802, + [802] = 470, [803] = 803, [804] = 804, [805] = 805, @@ -5624,26 +5638,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [808] = 808, [809] = 809, [810] = 810, - [811] = 748, - [812] = 749, - [813] = 750, - [814] = 725, - [815] = 731, - [816] = 732, - [817] = 733, - [818] = 734, - [819] = 714, - [820] = 713, - [821] = 716, - [822] = 717, - [823] = 718, - [824] = 824, - [825] = 825, - [826] = 826, - [827] = 827, - [828] = 828, + [811] = 811, + [812] = 812, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 754, + [817] = 755, + [818] = 756, + [819] = 757, + [820] = 758, + [821] = 759, + [822] = 741, + [823] = 761, + [824] = 732, + [825] = 734, + [826] = 735, + [827] = 736, + [828] = 741, [829] = 829, - [830] = 497, + [830] = 830, [831] = 831, [832] = 832, [833] = 833, @@ -5651,22 +5665,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [835] = 835, [836] = 836, [837] = 837, - [838] = 748, - [839] = 749, - [840] = 750, - [841] = 725, - [842] = 731, - [843] = 732, - [844] = 733, - [845] = 734, - [846] = 714, - [847] = 713, - [848] = 716, - [849] = 717, - [850] = 718, - [851] = 851, - [852] = 852, - [853] = 853, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 754, + [842] = 755, + [843] = 756, + [844] = 757, + [845] = 758, + [846] = 759, + [847] = 760, + [848] = 761, + [849] = 732, + [850] = 734, + [851] = 735, + [852] = 736, + [853] = 741, [854] = 854, [855] = 855, [856] = 856, @@ -5677,126 +5691,126 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [861] = 861, [862] = 862, [863] = 863, - [864] = 489, - [865] = 748, - [866] = 749, - [867] = 750, - [868] = 725, - [869] = 731, - [870] = 732, - [871] = 733, - [872] = 734, - [873] = 714, - [874] = 713, - [875] = 716, - [876] = 717, - [877] = 718, - [878] = 878, - [879] = 879, - [880] = 733, - [881] = 881, - [882] = 748, - [883] = 749, - [884] = 750, - [885] = 885, - [886] = 886, - [887] = 887, - [888] = 888, - [889] = 748, - [890] = 749, - [891] = 750, - [892] = 725, - [893] = 731, - [894] = 732, - [895] = 459, - [896] = 896, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 904, - [905] = 500, - [906] = 906, - [907] = 503, - [908] = 490, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 512, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 754, + [872] = 755, + [873] = 756, + [874] = 757, + [875] = 754, + [876] = 755, + [877] = 756, + [878] = 757, + [879] = 758, + [880] = 759, + [881] = 760, + [882] = 761, + [883] = 732, + [884] = 734, + [885] = 735, + [886] = 736, + [887] = 741, + [888] = 758, + [889] = 759, + [890] = 760, + [891] = 761, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 895, + [896] = 754, + [897] = 755, + [898] = 756, + [899] = 757, + [900] = 758, + [901] = 759, + [902] = 760, + [903] = 761, + [904] = 732, + [905] = 734, + [906] = 735, + [907] = 736, + [908] = 760, [909] = 909, [910] = 910, [911] = 911, [912] = 912, [913] = 913, [914] = 914, - [915] = 915, - [916] = 916, + [915] = 711, + [916] = 712, [917] = 917, - [918] = 692, + [918] = 918, [919] = 919, - [920] = 675, + [920] = 920, [921] = 921, [922] = 922, [923] = 923, - [924] = 924, + [924] = 918, [925] = 925, [926] = 926, [927] = 927, - [928] = 697, - [929] = 698, - [930] = 930, + [928] = 721, + [929] = 929, + [930] = 704, [931] = 931, - [932] = 465, - [933] = 368, - [934] = 705, - [935] = 466, + [932] = 932, + [933] = 675, + [934] = 380, + [935] = 935, [936] = 936, [937] = 937, - [938] = 491, - [939] = 700, - [940] = 470, - [941] = 941, - [942] = 498, + [938] = 484, + [939] = 939, + [940] = 940, + [941] = 489, + [942] = 492, [943] = 943, [944] = 944, [945] = 945, [946] = 946, [947] = 947, - [948] = 948, + [948] = 481, [949] = 949, - [950] = 704, - [951] = 951, - [952] = 712, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 709, - [957] = 459, + [950] = 950, + [951] = 478, + [952] = 693, + [953] = 687, + [954] = 688, + [955] = 470, + [956] = 956, + [957] = 694, [958] = 958, [959] = 959, [960] = 960, [961] = 961, - [962] = 921, - [963] = 921, - [964] = 540, + [962] = 689, + [963] = 963, + [964] = 964, [965] = 965, - [966] = 691, + [966] = 966, [967] = 967, - [968] = 710, - [969] = 674, - [970] = 500, - [971] = 971, - [972] = 679, - [973] = 503, - [974] = 686, - [975] = 490, - [976] = 976, + [968] = 968, + [969] = 969, + [970] = 493, + [971] = 508, + [972] = 513, + [973] = 973, + [974] = 974, + [975] = 975, + [976] = 918, [977] = 977, [978] = 978, [979] = 979, [980] = 980, - [981] = 681, + [981] = 949, [982] = 982, - [983] = 983, + [983] = 950, [984] = 984, [985] = 985, [986] = 986, @@ -5816,41 +5830,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1000] = 1000, [1001] = 1001, [1002] = 1002, - [1003] = 1003, + [1003] = 943, [1004] = 1004, - [1005] = 978, - [1006] = 1006, + [1005] = 944, + [1006] = 977, [1007] = 1007, - [1008] = 1008, + [1008] = 946, [1009] = 1009, [1010] = 1010, [1011] = 1011, - [1012] = 682, + [1012] = 1012, [1013] = 1013, [1014] = 1014, [1015] = 1015, - [1016] = 687, + [1016] = 1016, [1017] = 1017, [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 971, - [1022] = 1022, + [1021] = 1021, + [1022] = 685, [1023] = 1023, [1024] = 1024, - [1025] = 886, - [1026] = 960, + [1025] = 1025, + [1026] = 1026, [1027] = 1027, - [1028] = 937, + [1028] = 1028, [1029] = 1029, [1030] = 1030, [1031] = 1031, [1032] = 1032, - [1033] = 688, - [1034] = 1034, + [1033] = 1033, + [1034] = 706, [1035] = 1035, [1036] = 1036, - [1037] = 1037, + [1037] = 716, [1038] = 1038, [1039] = 1039, [1040] = 1040, @@ -5858,12 +5872,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1042] = 1042, [1043] = 1043, [1044] = 1044, - [1045] = 1045, + [1045] = 715, [1046] = 1046, - [1047] = 941, - [1048] = 1048, - [1049] = 961, - [1050] = 931, + [1047] = 1047, + [1048] = 717, + [1049] = 1049, + [1050] = 1050, [1051] = 1051, [1052] = 1052, [1053] = 1053, @@ -5871,20 +5885,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1055] = 1055, [1056] = 1056, [1057] = 1057, - [1058] = 1058, + [1058] = 724, [1059] = 1059, [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 948, + [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 954, + [1068] = 1068, [1069] = 1069, [1070] = 1070, - [1071] = 683, + [1071] = 1071, [1072] = 1072, [1073] = 1073, [1074] = 1074, @@ -5892,29 +5906,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1076] = 1076, [1077] = 1077, [1078] = 1078, - [1079] = 1079, + [1079] = 1051, [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 958, + [1081] = 893, + [1082] = 392, + [1083] = 1083, [1084] = 1084, [1085] = 1085, - [1086] = 689, + [1086] = 1086, [1087] = 1087, [1088] = 1088, - [1089] = 1089, - [1090] = 959, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, + [1089] = 720, + [1090] = 493, + [1091] = 1060, + [1092] = 508, + [1093] = 513, + [1094] = 1080, + [1095] = 1078, [1096] = 1096, [1097] = 1097, [1098] = 1098, [1099] = 1099, [1100] = 1100, - [1101] = 1101, + [1101] = 999, [1102] = 1102, [1103] = 1103, [1104] = 1104, @@ -5922,41 +5936,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1106] = 1106, [1107] = 1107, [1108] = 1108, - [1109] = 985, - [1110] = 987, - [1111] = 988, + [1109] = 699, + [1110] = 1110, + [1111] = 1111, [1112] = 1112, - [1113] = 1113, - [1114] = 1043, - [1115] = 1115, - [1116] = 1116, + [1113] = 686, + [1114] = 453, + [1115] = 690, + [1116] = 947, [1117] = 1117, [1118] = 1118, - [1119] = 702, - [1120] = 1120, - [1121] = 707, - [1122] = 444, - [1123] = 708, - [1124] = 703, - [1125] = 971, - [1126] = 711, - [1127] = 677, - [1128] = 690, - [1129] = 978, + [1119] = 695, + [1120] = 718, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 939, + [1126] = 1126, + [1127] = 1104, + [1128] = 1128, + [1129] = 719, [1130] = 1130, [1131] = 1131, [1132] = 1132, - [1133] = 1133, - [1134] = 1134, - [1135] = 1135, - [1136] = 1136, - [1137] = 1137, + [1133] = 698, + [1134] = 707, + [1135] = 708, + [1136] = 1104, + [1137] = 709, [1138] = 1138, - [1139] = 1139, + [1139] = 713, [1140] = 1140, [1141] = 1141, - [1142] = 1142, - [1143] = 1143, + [1142] = 940, + [1143] = 1060, [1144] = 1144, [1145] = 1145, [1146] = 1146, @@ -5974,30 +5988,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1158] = 1158, [1159] = 1159, [1160] = 1160, - [1161] = 1161, + [1161] = 409, [1162] = 1162, - [1163] = 1112, + [1163] = 1163, [1164] = 1164, [1165] = 1165, [1166] = 1166, [1167] = 1167, [1168] = 1168, - [1169] = 699, + [1169] = 1169, [1170] = 1170, - [1171] = 1171, - [1172] = 1113, + [1171] = 1145, + [1172] = 1172, [1173] = 1173, [1174] = 1174, - [1175] = 1175, + [1175] = 1172, [1176] = 1176, - [1177] = 1177, + [1177] = 415, [1178] = 1178, - [1179] = 1179, - [1180] = 1180, + [1179] = 703, + [1180] = 1099, [1181] = 1181, [1182] = 1182, [1183] = 1183, - [1184] = 1184, + [1184] = 714, [1185] = 1185, [1186] = 1186, [1187] = 1187, @@ -6011,16 +6025,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1195] = 1195, [1196] = 1196, [1197] = 1197, - [1198] = 1198, - [1199] = 1199, + [1198] = 1182, + [1199] = 1183, [1200] = 1200, [1201] = 1201, [1202] = 1202, [1203] = 1203, [1204] = 1204, - [1205] = 967, + [1205] = 1205, [1206] = 1206, - [1207] = 1043, + [1207] = 1207, [1208] = 1208, [1209] = 1209, [1210] = 1210, @@ -6032,35 +6046,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1216] = 1216, [1217] = 1217, [1218] = 1218, - [1219] = 1219, - [1220] = 685, + [1219] = 1099, + [1220] = 1100, [1221] = 1221, [1222] = 1222, - [1223] = 676, - [1224] = 1224, + [1223] = 1223, + [1224] = 692, [1225] = 1225, [1226] = 1226, [1227] = 1227, [1228] = 1228, - [1229] = 1229, + [1229] = 102, [1230] = 1230, [1231] = 1231, [1232] = 1232, [1233] = 1233, [1234] = 1234, [1235] = 1235, - [1236] = 1236, - [1237] = 1151, + [1236] = 101, + [1237] = 1237, [1238] = 1238, - [1239] = 1112, - [1240] = 1230, + [1239] = 1239, + [1240] = 1240, [1241] = 1241, - [1242] = 1113, + [1242] = 1242, [1243] = 1243, [1244] = 1244, [1245] = 1245, [1246] = 1246, - [1247] = 1247, + [1247] = 416, [1248] = 1248, [1249] = 1249, [1250] = 1250, @@ -6068,3955 +6082,4180 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1252] = 1252, [1253] = 1253, [1254] = 1254, - [1255] = 1255, - [1256] = 1232, - [1257] = 1232, - [1258] = 1232, - [1259] = 1232, - [1260] = 1149, + [1255] = 1100, + [1256] = 1256, + [1257] = 1257, + [1258] = 1258, + [1259] = 1259, + [1260] = 1260, [1261] = 1261, - [1262] = 1262, - [1263] = 764, - [1264] = 888, - [1265] = 730, - [1266] = 955, - [1267] = 1133, - [1268] = 944, - [1269] = 721, - [1270] = 898, - [1271] = 722, - [1272] = 936, - [1273] = 724, - [1274] = 899, + [1262] = 1054, + [1263] = 1263, + [1264] = 1264, + [1265] = 1265, + [1266] = 1266, + [1267] = 1267, + [1268] = 1268, + [1269] = 1269, + [1270] = 1270, + [1271] = 1271, + [1272] = 1272, + [1273] = 999, + [1274] = 1274, [1275] = 1275, - [1276] = 1142, - [1277] = 887, - [1278] = 1136, - [1279] = 735, - [1280] = 917, - [1281] = 911, - [1282] = 913, - [1283] = 1140, - [1284] = 922, - [1285] = 947, - [1286] = 1145, - [1287] = 1287, - [1288] = 1203, - [1289] = 695, - [1290] = 927, - [1291] = 1291, - [1292] = 923, - [1293] = 924, - [1294] = 945, - [1295] = 926, - [1296] = 914, - [1297] = 949, - [1298] = 726, - [1299] = 897, - [1300] = 727, - [1301] = 915, - [1302] = 909, - [1303] = 943, - [1304] = 694, - [1305] = 953, - [1306] = 728, - [1307] = 906, - [1308] = 1138, - [1309] = 746, - [1310] = 747, - [1311] = 723, - [1312] = 903, - [1313] = 904, - [1314] = 1147, - [1315] = 1144, - [1316] = 719, - [1317] = 902, - [1318] = 896, - [1319] = 763, - [1320] = 930, - [1321] = 910, - [1322] = 946, - [1323] = 1247, - [1324] = 720, - [1325] = 743, - [1326] = 744, - [1327] = 900, - [1328] = 1328, - [1329] = 1329, - [1330] = 1251, - [1331] = 1331, - [1332] = 916, - [1333] = 951, - [1334] = 901, - [1335] = 1254, - [1336] = 736, - [1337] = 737, - [1338] = 1328, - [1339] = 738, - [1340] = 739, - [1341] = 740, - [1342] = 741, - [1343] = 742, - [1344] = 925, - [1345] = 919, - [1346] = 1346, + [1276] = 1276, + [1277] = 1277, + [1278] = 1172, + [1279] = 1172, + [1280] = 1172, + [1281] = 1281, + [1282] = 936, + [1283] = 102, + [1284] = 1284, + [1285] = 1285, + [1286] = 926, + [1287] = 743, + [1288] = 744, + [1289] = 745, + [1290] = 746, + [1291] = 747, + [1292] = 748, + [1293] = 749, + [1294] = 937, + [1295] = 752, + [1296] = 753, + [1297] = 909, + [1298] = 974, + [1299] = 975, + [1300] = 101, + [1301] = 1222, + [1302] = 967, + [1303] = 733, + [1304] = 456, + [1305] = 973, + [1306] = 423, + [1307] = 730, + [1308] = 424, + [1309] = 425, + [1310] = 945, + [1311] = 109, + [1312] = 1227, + [1313] = 1313, + [1314] = 910, + [1315] = 1226, + [1316] = 911, + [1317] = 751, + [1318] = 912, + [1319] = 913, + [1320] = 959, + [1321] = 931, + [1322] = 1225, + [1323] = 103, + [1324] = 726, + [1325] = 737, + [1326] = 738, + [1327] = 691, + [1328] = 921, + [1329] = 965, + [1330] = 895, + [1331] = 731, + [1332] = 1332, + [1333] = 740, + [1334] = 935, + [1335] = 963, + [1336] = 966, + [1337] = 960, + [1338] = 420, + [1339] = 1339, + [1340] = 742, + [1341] = 727, + [1342] = 729, + [1343] = 961, + [1344] = 768, + [1345] = 769, + [1346] = 932, [1347] = 1347, - [1348] = 1348, - [1349] = 1348, - [1350] = 1350, - [1351] = 1351, - [1352] = 1352, - [1353] = 1353, - [1354] = 1354, - [1355] = 540, - [1356] = 1356, - [1357] = 1357, - [1358] = 1358, - [1359] = 691, - [1360] = 1360, - [1361] = 1361, - [1362] = 1362, - [1363] = 1363, - [1364] = 1364, - [1365] = 1362, - [1366] = 1366, - [1367] = 1354, - [1368] = 1356, - [1369] = 1358, - [1370] = 1357, - [1371] = 1350, - [1372] = 1372, - [1373] = 1362, - [1374] = 1362, - [1375] = 1362, - [1376] = 1376, - [1377] = 1377, + [1348] = 958, + [1349] = 1189, + [1350] = 697, + [1351] = 956, + [1352] = 968, + [1353] = 1190, + [1354] = 969, + [1355] = 1193, + [1356] = 914, + [1357] = 1194, + [1358] = 919, + [1359] = 750, + [1360] = 894, + [1361] = 1201, + [1362] = 920, + [1363] = 1203, + [1364] = 1347, + [1365] = 922, + [1366] = 1217, + [1367] = 923, + [1368] = 1221, + [1369] = 925, + [1370] = 927, + [1371] = 929, + [1372] = 964, + [1373] = 728, + [1374] = 413, + [1375] = 103, + [1376] = 122, + [1377] = 116, [1378] = 1378, - [1379] = 389, - [1380] = 1366, - [1381] = 1381, - [1382] = 1382, - [1383] = 1383, - [1384] = 1384, - [1385] = 1385, - [1386] = 389, - [1387] = 407, - [1388] = 398, - [1389] = 1389, + [1379] = 453, + [1380] = 1380, + [1381] = 417, + [1382] = 345, + [1383] = 109, + [1384] = 467, + [1385] = 344, + [1386] = 118, + [1387] = 675, + [1388] = 1388, + [1389] = 122, [1390] = 1390, - [1391] = 1391, + [1391] = 116, [1392] = 1392, [1393] = 1393, - [1394] = 1394, - [1395] = 1395, - [1396] = 398, - [1397] = 407, + [1394] = 470, + [1395] = 352, + [1396] = 350, + [1397] = 478, [1398] = 1398, [1399] = 1399, - [1400] = 92, - [1401] = 93, - [1402] = 93, - [1403] = 98, + [1400] = 367, + [1401] = 358, + [1402] = 1402, + [1403] = 359, [1404] = 1404, - [1405] = 540, - [1406] = 446, - [1407] = 1407, - [1408] = 92, - [1409] = 1409, - [1410] = 99, - [1411] = 1411, + [1405] = 360, + [1406] = 361, + [1407] = 363, + [1408] = 1408, + [1409] = 118, + [1410] = 1392, + [1411] = 522, [1412] = 1412, - [1413] = 98, - [1414] = 444, - [1415] = 446, - [1416] = 691, - [1417] = 1417, - [1418] = 1418, - [1419] = 442, - [1420] = 1420, - [1421] = 106, - [1422] = 99, - [1423] = 108, - [1424] = 1424, - [1425] = 105, - [1426] = 442, - [1427] = 444, - [1428] = 106, - [1429] = 470, - [1430] = 105, - [1431] = 459, - [1432] = 108, - [1433] = 500, - [1434] = 645, - [1435] = 503, - [1436] = 642, - [1437] = 490, - [1438] = 470, - [1439] = 459, - [1440] = 444, - [1441] = 642, - [1442] = 442, - [1443] = 645, - [1444] = 500, - [1445] = 1445, - [1446] = 1446, + [1413] = 1413, + [1414] = 508, + [1415] = 1415, + [1416] = 1398, + [1417] = 1415, + [1418] = 513, + [1419] = 467, + [1420] = 1415, + [1421] = 1412, + [1422] = 1415, + [1423] = 715, + [1424] = 348, + [1425] = 1388, + [1426] = 453, + [1427] = 1415, + [1428] = 1428, + [1429] = 1429, + [1430] = 523, + [1431] = 381, + [1432] = 1432, + [1433] = 1404, + [1434] = 493, + [1435] = 1435, + [1436] = 1399, + [1437] = 1437, + [1438] = 417, + [1439] = 1439, + [1440] = 496, + [1441] = 365, + [1442] = 502, + [1443] = 354, + [1444] = 1413, + [1445] = 364, + [1446] = 344, [1447] = 1447, - [1448] = 503, - [1449] = 490, - [1450] = 1446, - [1451] = 459, - [1452] = 470, - [1453] = 1453, + [1448] = 506, + [1449] = 1449, + [1450] = 1450, + [1451] = 1451, + [1452] = 345, + [1453] = 467, [1454] = 1454, - [1455] = 1445, - [1456] = 442, - [1457] = 1454, - [1458] = 1447, - [1459] = 444, - [1460] = 937, - [1461] = 500, - [1462] = 961, - [1463] = 503, - [1464] = 1464, - [1465] = 931, + [1455] = 478, + [1456] = 1456, + [1457] = 498, + [1458] = 1458, + [1459] = 503, + [1460] = 470, + [1461] = 453, + [1462] = 413, + [1463] = 1463, + [1464] = 392, + [1465] = 1465, [1466] = 1466, [1467] = 1467, [1468] = 1468, - [1469] = 1469, - [1470] = 941, - [1471] = 959, - [1472] = 886, - [1473] = 1473, - [1474] = 1474, - [1475] = 1475, - [1476] = 470, - [1477] = 490, - [1478] = 1478, - [1479] = 948, - [1480] = 1480, - [1481] = 459, - [1482] = 960, + [1469] = 512, + [1470] = 415, + [1471] = 358, + [1472] = 359, + [1473] = 360, + [1474] = 361, + [1475] = 363, + [1476] = 481, + [1477] = 711, + [1478] = 693, + [1479] = 352, + [1480] = 350, + [1481] = 470, + [1482] = 484, [1483] = 1483, - [1484] = 1484, - [1485] = 1485, - [1486] = 954, - [1487] = 958, - [1488] = 1043, - [1489] = 1489, - [1490] = 960, + [1484] = 493, + [1485] = 380, + [1486] = 478, + [1487] = 1487, + [1488] = 508, + [1489] = 513, + [1490] = 392, [1491] = 1491, - [1492] = 886, - [1493] = 1112, - [1494] = 961, - [1495] = 941, - [1496] = 1496, - [1497] = 931, - [1498] = 1498, - [1499] = 503, - [1500] = 490, - [1501] = 937, - [1502] = 958, - [1503] = 967, - [1504] = 959, - [1505] = 954, - [1506] = 948, - [1507] = 500, - [1508] = 1113, - [1509] = 1509, - [1510] = 1510, - [1511] = 1112, - [1512] = 1113, - [1513] = 1513, - [1514] = 1514, + [1492] = 721, + [1493] = 1493, + [1494] = 1494, + [1495] = 1495, + [1496] = 704, + [1497] = 687, + [1498] = 367, + [1499] = 416, + [1500] = 492, + [1501] = 489, + [1502] = 1502, + [1503] = 102, + [1504] = 685, + [1505] = 508, + [1506] = 1506, + [1507] = 893, + [1508] = 717, + [1509] = 513, + [1510] = 944, + [1511] = 1511, + [1512] = 1512, + [1513] = 947, + [1514] = 724, [1515] = 1515, [1516] = 1516, - [1517] = 1517, - [1518] = 1043, - [1519] = 389, - [1520] = 967, - [1521] = 1521, - [1522] = 1522, - [1523] = 1523, - [1524] = 1524, - [1525] = 1525, - [1526] = 1526, + [1517] = 946, + [1518] = 453, + [1519] = 415, + [1520] = 467, + [1521] = 416, + [1522] = 977, + [1523] = 939, + [1524] = 706, + [1525] = 943, + [1526] = 949, [1527] = 1527, - [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, - [1532] = 1532, + [1528] = 493, + [1529] = 381, + [1530] = 950, + [1531] = 348, + [1532] = 940, [1533] = 1533, [1534] = 1534, - [1535] = 1535, - [1536] = 1536, + [1535] = 101, + [1536] = 365, [1537] = 1537, - [1538] = 1538, + [1538] = 470, [1539] = 1539, - [1540] = 1509, - [1541] = 1541, - [1542] = 1542, - [1543] = 1543, - [1544] = 1535, - [1545] = 1536, - [1546] = 1526, - [1547] = 1527, - [1548] = 1528, - [1549] = 1529, - [1550] = 1530, - [1551] = 1531, - [1552] = 1532, - [1553] = 1513, - [1554] = 1514, - [1555] = 1516, - [1556] = 1517, - [1557] = 1521, - [1558] = 1522, - [1559] = 1523, - [1560] = 1524, - [1561] = 1533, - [1562] = 1534, - [1563] = 1537, - [1564] = 1176, - [1565] = 1262, - [1566] = 1250, - [1567] = 1255, - [1568] = 1135, - [1569] = 1158, - [1570] = 1182, - [1571] = 1221, - [1572] = 1226, - [1573] = 1235, - [1574] = 1241, - [1575] = 1245, - [1576] = 1538, - [1577] = 1530, - [1578] = 1187, - [1579] = 1243, - [1580] = 1156, - [1581] = 1175, - [1582] = 1193, - [1583] = 1222, - [1584] = 1168, - [1585] = 1173, - [1586] = 1180, - [1587] = 1190, - [1588] = 1197, - [1589] = 1234, - [1590] = 1244, - [1591] = 1261, - [1592] = 1159, - [1593] = 1178, - [1594] = 1183, - [1595] = 1188, - [1596] = 1196, - [1597] = 1201, - [1598] = 1211, - [1599] = 1217, - [1600] = 1225, - [1601] = 1236, - [1602] = 1249, - [1603] = 1253, - [1604] = 1539, - [1605] = 1154, - [1606] = 1161, - [1607] = 1164, - [1608] = 1171, - [1609] = 1174, - [1610] = 1185, - [1611] = 1192, - [1612] = 1195, - [1613] = 1199, - [1614] = 1209, - [1615] = 1213, - [1616] = 1215, - [1617] = 1219, - [1618] = 1224, - [1619] = 1228, - [1620] = 1231, - [1621] = 1233, - [1622] = 1238, - [1623] = 1246, - [1624] = 1248, - [1625] = 1132, - [1626] = 1134, - [1627] = 1137, - [1628] = 1139, - [1629] = 1141, - [1630] = 1143, - [1631] = 1146, - [1632] = 1148, - [1633] = 1150, - [1634] = 1152, - [1635] = 1155, - [1636] = 1157, - [1637] = 1160, - [1638] = 1162, - [1639] = 1165, - [1640] = 1167, - [1641] = 1170, - [1642] = 1177, - [1643] = 1179, - [1644] = 1181, - [1645] = 1184, - [1646] = 1186, - [1647] = 1189, - [1648] = 1191, - [1649] = 1194, - [1650] = 1198, - [1651] = 1200, - [1652] = 1131, - [1653] = 1204, - [1654] = 1206, - [1655] = 1208, - [1656] = 1210, - [1657] = 1212, - [1658] = 1216, - [1659] = 1218, - [1660] = 1227, - [1661] = 1229, - [1662] = 1541, - [1663] = 1542, - [1664] = 1543, - [1665] = 1247, - [1666] = 1251, - [1667] = 1254, - [1668] = 1203, - [1669] = 1133, - [1670] = 1136, - [1671] = 1138, - [1672] = 1140, - [1673] = 1142, - [1674] = 1144, - [1675] = 1145, - [1676] = 1147, - [1677] = 1530, - [1678] = 1214, - [1679] = 398, - [1680] = 1680, - [1681] = 1247, - [1682] = 1251, - [1683] = 1254, - [1684] = 1203, - [1685] = 1133, - [1686] = 1136, - [1687] = 1138, - [1688] = 1688, - [1689] = 1140, - [1690] = 1142, - [1691] = 1144, - [1692] = 1145, - [1693] = 1147, - [1694] = 1680, - [1695] = 389, - [1696] = 1510, - [1697] = 407, - [1698] = 1698, - [1699] = 1699, - [1700] = 1700, - [1701] = 1699, - [1702] = 1702, - [1703] = 1703, - [1704] = 92, - [1705] = 378, - [1706] = 93, - [1707] = 407, - [1708] = 398, - [1709] = 1698, - [1710] = 1710, - [1711] = 377, - [1712] = 1700, - [1713] = 1710, - [1714] = 1702, - [1715] = 400, - [1716] = 1716, - [1717] = 403, - [1718] = 446, - [1719] = 1719, - [1720] = 93, - [1721] = 1721, - [1722] = 98, - [1723] = 411, - [1724] = 1724, - [1725] = 99, + [1540] = 949, + [1541] = 478, + [1542] = 456, + [1543] = 714, + [1544] = 354, + [1545] = 675, + [1546] = 1054, + [1547] = 893, + [1548] = 939, + [1549] = 364, + [1550] = 703, + [1551] = 101, + [1552] = 102, + [1553] = 692, + [1554] = 1054, + [1555] = 950, + [1556] = 103, + [1557] = 109, + [1558] = 1558, + [1559] = 947, + [1560] = 728, + [1561] = 118, + [1562] = 122, + [1563] = 116, + [1564] = 467, + [1565] = 453, + [1566] = 358, + [1567] = 359, + [1568] = 492, + [1569] = 360, + [1570] = 361, + [1571] = 363, + [1572] = 1572, + [1573] = 489, + [1574] = 1574, + [1575] = 1575, + [1576] = 1576, + [1577] = 1577, + [1578] = 703, + [1579] = 1579, + [1580] = 1580, + [1581] = 1581, + [1582] = 1582, + [1583] = 1583, + [1584] = 714, + [1585] = 1585, + [1586] = 456, + [1587] = 481, + [1588] = 1588, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 484, + [1594] = 1594, + [1595] = 691, + [1596] = 715, + [1597] = 959, + [1598] = 697, + [1599] = 894, + [1600] = 964, + [1601] = 1601, + [1602] = 895, + [1603] = 973, + [1604] = 974, + [1605] = 975, + [1606] = 935, + [1607] = 727, + [1608] = 367, + [1609] = 1609, + [1610] = 729, + [1611] = 730, + [1612] = 731, + [1613] = 967, + [1614] = 733, + [1615] = 1615, + [1616] = 1616, + [1617] = 910, + [1618] = 911, + [1619] = 912, + [1620] = 913, + [1621] = 726, + [1622] = 737, + [1623] = 738, + [1624] = 740, + [1625] = 742, + [1626] = 926, + [1627] = 743, + [1628] = 744, + [1629] = 745, + [1630] = 746, + [1631] = 747, + [1632] = 748, + [1633] = 749, + [1634] = 493, + [1635] = 508, + [1636] = 513, + [1637] = 1637, + [1638] = 1638, + [1639] = 750, + [1640] = 751, + [1641] = 752, + [1642] = 753, + [1643] = 109, + [1644] = 103, + [1645] = 1645, + [1646] = 768, + [1647] = 769, + [1648] = 1648, + [1649] = 1649, + [1650] = 380, + [1651] = 467, + [1652] = 453, + [1653] = 116, + [1654] = 122, + [1655] = 118, + [1656] = 478, + [1657] = 470, + [1658] = 513, + [1659] = 508, + [1660] = 470, + [1661] = 478, + [1662] = 523, + [1663] = 522, + [1664] = 493, + [1665] = 1665, + [1666] = 1666, + [1667] = 453, + [1668] = 508, + [1669] = 522, + [1670] = 513, + [1671] = 523, + [1672] = 467, + [1673] = 493, + [1674] = 1674, + [1675] = 1675, + [1676] = 467, + [1677] = 1675, + [1678] = 1666, + [1679] = 453, + [1680] = 478, + [1681] = 1681, + [1682] = 1674, + [1683] = 1665, + [1684] = 470, + [1685] = 1685, + [1686] = 1686, + [1687] = 470, + [1688] = 478, + [1689] = 1689, + [1690] = 1690, + [1691] = 1691, + [1692] = 939, + [1693] = 1693, + [1694] = 940, + [1695] = 1695, + [1696] = 943, + [1697] = 944, + [1698] = 977, + [1699] = 946, + [1700] = 893, + [1701] = 947, + [1702] = 949, + [1703] = 950, + [1704] = 1704, + [1705] = 1705, + [1706] = 493, + [1707] = 1707, + [1708] = 1708, + [1709] = 508, + [1710] = 513, + [1711] = 1711, + [1712] = 1712, + [1713] = 947, + [1714] = 1100, + [1715] = 513, + [1716] = 943, + [1717] = 977, + [1718] = 893, + [1719] = 508, + [1720] = 1720, + [1721] = 946, + [1722] = 1722, + [1723] = 940, + [1724] = 944, + [1725] = 1054, [1726] = 1726, - [1727] = 412, - [1728] = 408, - [1729] = 409, - [1730] = 410, - [1731] = 1719, - [1732] = 1719, - [1733] = 336, - [1734] = 399, - [1735] = 333, - [1736] = 92, - [1737] = 1737, - [1738] = 412, - [1739] = 446, + [1727] = 939, + [1728] = 1099, + [1729] = 949, + [1730] = 950, + [1731] = 999, + [1732] = 493, + [1733] = 1733, + [1734] = 1204, + [1735] = 1181, + [1736] = 1187, + [1737] = 1192, + [1738] = 1738, + [1739] = 1739, [1740] = 1740, - [1741] = 399, - [1742] = 338, - [1743] = 353, - [1744] = 92, - [1745] = 1737, - [1746] = 1746, - [1747] = 444, - [1748] = 93, - [1749] = 343, - [1750] = 360, - [1751] = 340, - [1752] = 341, - [1753] = 1753, - [1754] = 349, - [1755] = 1755, - [1756] = 1753, - [1757] = 108, - [1758] = 1737, - [1759] = 105, - [1760] = 106, - [1761] = 99, - [1762] = 98, - [1763] = 1763, - [1764] = 1764, - [1765] = 442, - [1766] = 1755, + [1741] = 1741, + [1742] = 1742, + [1743] = 1270, + [1744] = 1271, + [1745] = 1272, + [1746] = 1275, + [1747] = 1276, + [1748] = 1277, + [1749] = 1146, + [1750] = 1148, + [1751] = 1149, + [1752] = 1150, + [1753] = 1151, + [1754] = 1152, + [1755] = 1153, + [1756] = 1155, + [1757] = 1156, + [1758] = 1158, + [1759] = 1159, + [1760] = 1162, + [1761] = 1163, + [1762] = 1164, + [1763] = 1165, + [1764] = 1167, + [1765] = 1168, + [1766] = 1169, [1767] = 1767, - [1768] = 1740, - [1769] = 1769, - [1770] = 1770, - [1771] = 1767, - [1772] = 336, - [1773] = 1755, - [1774] = 333, - [1775] = 1755, - [1776] = 342, - [1777] = 108, - [1778] = 1778, + [1768] = 1170, + [1769] = 1173, + [1770] = 1739, + [1771] = 1174, + [1772] = 1772, + [1773] = 1176, + [1774] = 1774, + [1775] = 1185, + [1776] = 1186, + [1777] = 1777, + [1778] = 1188, [1779] = 1779, - [1780] = 343, + [1780] = 1191, [1781] = 1781, [1782] = 1782, - [1783] = 1783, - [1784] = 1784, - [1785] = 1785, - [1786] = 360, - [1787] = 340, - [1788] = 1788, + [1783] = 1195, + [1784] = 1777, + [1785] = 1196, + [1786] = 1197, + [1787] = 1738, + [1788] = 1200, [1789] = 1789, [1790] = 1790, - [1791] = 1791, - [1792] = 1792, + [1791] = 1740, + [1792] = 999, [1793] = 1793, - [1794] = 1791, - [1795] = 334, - [1796] = 105, - [1797] = 1797, - [1798] = 106, - [1799] = 1779, - [1800] = 341, - [1801] = 470, - [1802] = 342, - [1803] = 459, - [1804] = 442, - [1805] = 444, - [1806] = 349, - [1807] = 1807, - [1808] = 1808, - [1809] = 1790, - [1810] = 1810, - [1811] = 1810, - [1812] = 338, - [1813] = 353, - [1814] = 1788, - [1815] = 1789, - [1816] = 369, - [1817] = 1817, - [1818] = 1778, - [1819] = 1785, - [1820] = 1817, - [1821] = 1817, - [1822] = 1817, - [1823] = 99, - [1824] = 98, - [1825] = 339, - [1826] = 645, - [1827] = 642, + [1794] = 1205, + [1795] = 1206, + [1796] = 1207, + [1797] = 1208, + [1798] = 1209, + [1799] = 1210, + [1800] = 1211, + [1801] = 1212, + [1802] = 1214, + [1803] = 1215, + [1804] = 1216, + [1805] = 1218, + [1806] = 1223, + [1807] = 1228, + [1808] = 1230, + [1809] = 1231, + [1810] = 1232, + [1811] = 1233, + [1812] = 1234, + [1813] = 1235, + [1814] = 1237, + [1815] = 1238, + [1816] = 1239, + [1817] = 1240, + [1818] = 1241, + [1819] = 1242, + [1820] = 1243, + [1821] = 1244, + [1822] = 1245, + [1823] = 1246, + [1824] = 1248, + [1825] = 1249, + [1826] = 1250, + [1827] = 1251, [1828] = 1828, - [1829] = 500, + [1829] = 1829, [1830] = 1830, - [1831] = 1831, - [1832] = 334, - [1833] = 351, - [1834] = 503, - [1835] = 490, - [1836] = 470, - [1837] = 369, - [1838] = 1838, - [1839] = 459, - [1840] = 108, - [1841] = 1841, - [1842] = 105, - [1843] = 106, - [1844] = 357, - [1845] = 342, - [1846] = 1846, - [1847] = 500, - [1848] = 503, - [1849] = 490, - [1850] = 642, + [1831] = 1741, + [1832] = 1782, + [1833] = 1833, + [1834] = 1253, + [1835] = 1254, + [1836] = 1256, + [1837] = 1257, + [1838] = 1258, + [1839] = 1259, + [1840] = 1260, + [1841] = 1261, + [1842] = 1263, + [1843] = 1264, + [1844] = 1266, + [1845] = 1267, + [1846] = 1742, + [1847] = 1847, + [1848] = 1774, + [1849] = 1849, + [1850] = 1781, [1851] = 1851, - [1852] = 685, + [1852] = 1793, [1853] = 1853, - [1854] = 743, - [1855] = 645, - [1856] = 744, - [1857] = 339, - [1858] = 368, - [1859] = 93, - [1860] = 746, - [1861] = 747, - [1862] = 465, - [1863] = 1851, - [1864] = 442, - [1865] = 764, - [1866] = 466, - [1867] = 351, - [1868] = 357, - [1869] = 343, - [1870] = 360, - [1871] = 340, - [1872] = 676, - [1873] = 341, - [1874] = 349, - [1875] = 1830, - [1876] = 1473, - [1877] = 1846, - [1878] = 92, - [1879] = 444, - [1880] = 763, - [1881] = 744, - [1882] = 336, - [1883] = 497, - [1884] = 342, - [1885] = 747, - [1886] = 343, - [1887] = 746, - [1888] = 486, - [1889] = 676, - [1890] = 340, - [1891] = 341, - [1892] = 442, - [1893] = 92, - [1894] = 489, - [1895] = 444, - [1896] = 368, - [1897] = 1897, - [1898] = 466, - [1899] = 459, - [1900] = 1897, - [1901] = 484, - [1902] = 93, - [1903] = 1489, - [1904] = 470, - [1905] = 98, - [1906] = 763, - [1907] = 764, - [1908] = 465, - [1909] = 493, - [1910] = 349, - [1911] = 333, - [1912] = 99, - [1913] = 685, - [1914] = 360, - [1915] = 743, - [1916] = 485, - [1917] = 459, - [1918] = 948, - [1919] = 954, - [1920] = 886, - [1921] = 1921, - [1922] = 1922, + [1854] = 1830, + [1855] = 1855, + [1856] = 1856, + [1857] = 1857, + [1858] = 1858, + [1859] = 1829, + [1860] = 1851, + [1861] = 1189, + [1862] = 1190, + [1863] = 1193, + [1864] = 1194, + [1865] = 1201, + [1866] = 1203, + [1867] = 1217, + [1868] = 1221, + [1869] = 1222, + [1870] = 1225, + [1871] = 1226, + [1872] = 1227, + [1873] = 1849, + [1874] = 1828, + [1875] = 1779, + [1876] = 1789, + [1877] = 1790, + [1878] = 1855, + [1879] = 1858, + [1880] = 1880, + [1881] = 1740, + [1882] = 1740, + [1883] = 1833, + [1884] = 1054, + [1885] = 1847, + [1886] = 1269, + [1887] = 1857, + [1888] = 1888, + [1889] = 1099, + [1890] = 1100, + [1891] = 1274, + [1892] = 1281, + [1893] = 392, + [1894] = 1147, + [1895] = 1154, + [1896] = 1157, + [1897] = 1160, + [1898] = 1767, + [1899] = 1856, + [1900] = 1166, + [1901] = 1178, + [1902] = 1772, + [1903] = 1252, + [1904] = 1217, + [1905] = 415, + [1906] = 1193, + [1907] = 1888, + [1908] = 1227, + [1909] = 1194, + [1910] = 1221, + [1911] = 1201, + [1912] = 392, + [1913] = 1913, + [1914] = 1190, + [1915] = 1915, + [1916] = 1225, + [1917] = 1226, + [1918] = 416, + [1919] = 1915, + [1920] = 1203, + [1921] = 1222, + [1922] = 1189, [1923] = 1923, - [1924] = 958, - [1925] = 959, + [1924] = 387, + [1925] = 1925, [1926] = 1926, - [1927] = 960, - [1928] = 937, - [1929] = 470, - [1930] = 1930, + [1927] = 1927, + [1928] = 415, + [1929] = 416, + [1930] = 102, [1931] = 1931, - [1932] = 961, - [1933] = 931, - [1934] = 1498, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1938, - [1939] = 99, - [1940] = 1940, - [1941] = 349, - [1942] = 98, - [1943] = 1936, - [1944] = 108, - [1945] = 105, - [1946] = 106, - [1947] = 338, - [1948] = 353, - [1949] = 500, - [1950] = 503, - [1951] = 490, - [1952] = 941, - [1953] = 343, - [1954] = 360, - [1955] = 700, - [1956] = 709, - [1957] = 705, - [1958] = 340, - [1959] = 697, - [1960] = 704, - [1961] = 692, - [1962] = 675, - [1963] = 698, - [1964] = 341, - [1965] = 342, - [1966] = 712, - [1967] = 948, - [1968] = 1968, - [1969] = 937, - [1970] = 540, - [1971] = 500, - [1972] = 503, - [1973] = 490, - [1974] = 941, + [1932] = 409, + [1933] = 1933, + [1934] = 1923, + [1935] = 101, + [1936] = 1933, + [1937] = 1926, + [1938] = 1925, + [1939] = 1931, + [1940] = 344, + [1941] = 1941, + [1942] = 417, + [1943] = 1943, + [1944] = 420, + [1945] = 423, + [1946] = 424, + [1947] = 425, + [1948] = 1948, + [1949] = 1949, + [1950] = 1941, + [1951] = 422, + [1952] = 412, + [1953] = 1941, + [1954] = 103, + [1955] = 101, + [1956] = 345, + [1957] = 109, + [1958] = 456, + [1959] = 413, + [1960] = 102, + [1961] = 1961, + [1962] = 1962, + [1963] = 1963, + [1964] = 1964, + [1965] = 1963, + [1966] = 1963, + [1967] = 417, + [1968] = 467, + [1969] = 1969, + [1970] = 350, + [1971] = 345, + [1972] = 1972, + [1973] = 1973, + [1974] = 1973, [1975] = 1975, [1976] = 1976, - [1977] = 333, - [1978] = 954, - [1979] = 1979, - [1980] = 1980, - [1981] = 1981, - [1982] = 1176, - [1983] = 1262, - [1984] = 1250, - [1985] = 1255, - [1986] = 1135, - [1987] = 1158, - [1988] = 1182, - [1989] = 1221, - [1990] = 1990, - [1991] = 1226, - [1992] = 1235, - [1993] = 1241, - [1994] = 1245, - [1995] = 1995, - [1996] = 1187, - [1997] = 1243, - [1998] = 1156, - [1999] = 1175, - [2000] = 1193, - [2001] = 1222, - [2002] = 1168, - [2003] = 1173, - [2004] = 1180, - [2005] = 1190, - [2006] = 1197, - [2007] = 1214, - [2008] = 1234, - [2009] = 1244, - [2010] = 1261, - [2011] = 1159, - [2012] = 1178, - [2013] = 1183, - [2014] = 1188, - [2015] = 1196, - [2016] = 1201, - [2017] = 1211, - [2018] = 1217, - [2019] = 1225, - [2020] = 1236, - [2021] = 1249, - [2022] = 1253, - [2023] = 1154, - [2024] = 1161, - [2025] = 1164, - [2026] = 1171, - [2027] = 1174, - [2028] = 1185, - [2029] = 1192, - [2030] = 1195, - [2031] = 1199, - [2032] = 1209, - [2033] = 1213, - [2034] = 1215, - [2035] = 1219, - [2036] = 1224, - [2037] = 1228, - [2038] = 1231, - [2039] = 1233, - [2040] = 1238, - [2041] = 1246, - [2042] = 1248, - [2043] = 1132, - [2044] = 1134, - [2045] = 1137, - [2046] = 1139, - [2047] = 1141, - [2048] = 1143, - [2049] = 1146, - [2050] = 1148, - [2051] = 1150, - [2052] = 1152, - [2053] = 1155, - [2054] = 1157, - [2055] = 1160, - [2056] = 1162, - [2057] = 1165, - [2058] = 1167, - [2059] = 1170, - [2060] = 1177, - [2061] = 1179, - [2062] = 1181, - [2063] = 1184, - [2064] = 1186, - [2065] = 1189, - [2066] = 1191, - [2067] = 1194, - [2068] = 1198, - [2069] = 1200, - [2070] = 1131, - [2071] = 1204, - [2072] = 1206, - [2073] = 1208, - [2074] = 1210, - [2075] = 1212, - [2076] = 1216, - [2077] = 1218, - [2078] = 1227, - [2079] = 1229, - [2080] = 108, - [2081] = 2081, - [2082] = 2082, - [2083] = 2083, - [2084] = 958, - [2085] = 1976, - [2086] = 2086, - [2087] = 2087, - [2088] = 1515, - [2089] = 2089, - [2090] = 105, - [2091] = 1473, - [2092] = 959, - [2093] = 886, - [2094] = 334, - [2095] = 369, - [2096] = 960, - [2097] = 961, - [2098] = 967, - [2099] = 1976, - [2100] = 931, - [2101] = 1976, - [2102] = 1473, - [2103] = 1976, - [2104] = 2104, - [2105] = 2105, - [2106] = 1981, - [2107] = 1976, - [2108] = 2108, - [2109] = 106, - [2110] = 2110, - [2111] = 351, - [2112] = 1489, - [2113] = 1489, - [2114] = 960, - [2115] = 967, - [2116] = 937, - [2117] = 1498, - [2118] = 2118, - [2119] = 961, - [2120] = 2120, - [2121] = 1498, - [2122] = 931, - [2123] = 2123, - [2124] = 2124, - [2125] = 967, - [2126] = 699, - [2127] = 357, - [2128] = 2123, - [2129] = 2124, - [2130] = 2123, - [2131] = 2124, - [2132] = 886, - [2133] = 339, - [2134] = 691, - [2135] = 926, - [2136] = 1515, - [2137] = 1251, - [2138] = 1254, - [2139] = 1203, - [2140] = 1133, - [2141] = 1136, - [2142] = 1138, - [2143] = 1140, - [2144] = 1142, - [2145] = 1144, - [2146] = 1145, - [2147] = 1147, - [2148] = 2148, - [2149] = 2149, - [2150] = 899, - [2151] = 2149, - [2152] = 930, - [2153] = 1515, - [2154] = 676, - [2155] = 763, - [2156] = 764, - [2157] = 2157, - [2158] = 498, - [2159] = 2157, - [2160] = 343, - [2161] = 2149, - [2162] = 360, - [2163] = 340, - [2164] = 695, - [2165] = 341, - [2166] = 342, - [2167] = 349, - [2168] = 743, - [2169] = 1247, - [2170] = 1251, - [2171] = 943, - [2172] = 1254, - [2173] = 2173, - [2174] = 2174, - [2175] = 1203, - [2176] = 2176, - [2177] = 1133, - [2178] = 694, - [2179] = 744, - [2180] = 491, - [2181] = 887, - [2182] = 368, - [2183] = 951, - [2184] = 1136, - [2185] = 1138, - [2186] = 1140, - [2187] = 1142, - [2188] = 1144, - [2189] = 1145, - [2190] = 1147, - [2191] = 2191, - [2192] = 2149, - [2193] = 924, - [2194] = 746, - [2195] = 2149, - [2196] = 730, - [2197] = 747, - [2198] = 949, - [2199] = 2149, - [2200] = 2149, - [2201] = 540, - [2202] = 2157, - [2203] = 735, - [2204] = 916, - [2205] = 724, - [2206] = 897, - [2207] = 936, - [2208] = 685, - [2209] = 923, - [2210] = 719, - [2211] = 898, - [2212] = 1247, + [1977] = 456, + [1978] = 352, + [1979] = 367, + [1980] = 344, + [1981] = 102, + [1982] = 1962, + [1983] = 1964, + [1984] = 358, + [1985] = 453, + [1986] = 359, + [1987] = 1969, + [1988] = 118, + [1989] = 1989, + [1990] = 1964, + [1991] = 360, + [1992] = 1964, + [1993] = 361, + [1994] = 363, + [1995] = 413, + [1996] = 101, + [1997] = 116, + [1998] = 103, + [1999] = 109, + [2000] = 122, + [2001] = 2001, + [2002] = 116, + [2003] = 118, + [2004] = 109, + [2005] = 2005, + [2006] = 478, + [2007] = 2007, + [2008] = 467, + [2009] = 2009, + [2010] = 2010, + [2011] = 2011, + [2012] = 103, + [2013] = 358, + [2014] = 2014, + [2015] = 359, + [2016] = 2016, + [2017] = 2005, + [2018] = 2016, + [2019] = 470, + [2020] = 453, + [2021] = 2009, + [2022] = 122, + [2023] = 2023, + [2024] = 2024, + [2025] = 2025, + [2026] = 2026, + [2027] = 2027, + [2028] = 2028, + [2029] = 2029, + [2030] = 350, + [2031] = 2031, + [2032] = 2028, + [2033] = 2033, + [2034] = 2033, + [2035] = 367, + [2036] = 2014, + [2037] = 2031, + [2038] = 381, + [2039] = 348, + [2040] = 2028, + [2041] = 2041, + [2042] = 2028, + [2043] = 360, + [2044] = 361, + [2045] = 2045, + [2046] = 363, + [2047] = 2045, + [2048] = 2010, + [2049] = 352, + [2050] = 2050, + [2051] = 364, + [2052] = 493, + [2053] = 118, + [2054] = 1402, + [2055] = 381, + [2056] = 2056, + [2057] = 522, + [2058] = 122, + [2059] = 508, + [2060] = 348, + [2061] = 116, + [2062] = 2062, + [2063] = 2063, + [2064] = 513, + [2065] = 478, + [2066] = 523, + [2067] = 470, + [2068] = 354, + [2069] = 365, + [2070] = 358, + [2071] = 484, + [2072] = 703, + [2073] = 102, + [2074] = 1705, + [2075] = 360, + [2076] = 513, + [2077] = 361, + [2078] = 752, + [2079] = 2050, + [2080] = 753, + [2081] = 363, + [2082] = 768, + [2083] = 467, + [2084] = 359, + [2085] = 2085, + [2086] = 714, + [2087] = 380, + [2088] = 364, + [2089] = 365, + [2090] = 2090, + [2091] = 493, + [2092] = 2090, + [2093] = 769, + [2094] = 367, + [2095] = 750, + [2096] = 101, + [2097] = 751, + [2098] = 522, + [2099] = 508, + [2100] = 2100, + [2101] = 481, + [2102] = 523, + [2103] = 354, + [2104] = 2100, + [2105] = 453, + [2106] = 751, + [2107] = 484, + [2108] = 496, + [2109] = 358, + [2110] = 512, + [2111] = 359, + [2112] = 102, + [2113] = 361, + [2114] = 2114, + [2115] = 101, + [2116] = 752, + [2117] = 481, + [2118] = 753, + [2119] = 344, + [2120] = 453, + [2121] = 367, + [2122] = 506, + [2123] = 380, + [2124] = 703, + [2125] = 502, + [2126] = 768, + [2127] = 467, + [2128] = 363, + [2129] = 345, + [2130] = 109, + [2131] = 498, + [2132] = 714, + [2133] = 769, + [2134] = 503, + [2135] = 2114, + [2136] = 103, + [2137] = 470, + [2138] = 360, + [2139] = 750, + [2140] = 478, + [2141] = 1733, + [2142] = 693, + [2143] = 2143, + [2144] = 940, + [2145] = 943, + [2146] = 944, + [2147] = 977, + [2148] = 946, + [2149] = 947, + [2150] = 939, + [2151] = 2151, + [2152] = 2152, + [2153] = 2153, + [2154] = 949, + [2155] = 950, + [2156] = 2156, + [2157] = 118, + [2158] = 122, + [2159] = 116, + [2160] = 352, + [2161] = 350, + [2162] = 2162, + [2163] = 2163, + [2164] = 2164, + [2165] = 493, + [2166] = 704, + [2167] = 513, + [2168] = 2168, + [2169] = 109, + [2170] = 367, + [2171] = 358, + [2172] = 359, + [2173] = 360, + [2174] = 361, + [2175] = 363, + [2176] = 893, + [2177] = 1494, + [2178] = 478, + [2179] = 470, + [2180] = 103, + [2181] = 2156, + [2182] = 689, + [2183] = 1720, + [2184] = 2184, + [2185] = 687, + [2186] = 694, + [2187] = 712, + [2188] = 688, + [2189] = 711, + [2190] = 721, + [2191] = 508, + [2192] = 2192, + [2193] = 2193, + [2194] = 1533, + [2195] = 1054, + [2196] = 348, + [2197] = 2197, + [2198] = 675, + [2199] = 939, + [2200] = 2200, + [2201] = 940, + [2202] = 943, + [2203] = 944, + [2204] = 977, + [2205] = 946, + [2206] = 893, + [2207] = 118, + [2208] = 947, + [2209] = 949, + [2210] = 950, + [2211] = 2211, + [2212] = 2212, [2213] = 2213, - [2214] = 2213, - [2215] = 2213, - [2216] = 2213, - [2217] = 2217, - [2218] = 2213, - [2219] = 691, - [2220] = 2213, - [2221] = 2217, - [2222] = 1473, - [2223] = 2223, + [2214] = 493, + [2215] = 508, + [2216] = 513, + [2217] = 381, + [2218] = 122, + [2219] = 2213, + [2220] = 2220, + [2221] = 344, + [2222] = 2222, + [2223] = 1880, [2224] = 2224, - [2225] = 2225, - [2226] = 540, - [2227] = 2227, - [2228] = 343, - [2229] = 341, - [2230] = 342, - [2231] = 2231, - [2232] = 2232, - [2233] = 349, - [2234] = 2234, - [2235] = 2235, - [2236] = 2236, - [2237] = 1981, + [2225] = 1269, + [2226] = 1274, + [2227] = 1281, + [2228] = 1147, + [2229] = 1154, + [2230] = 1157, + [2231] = 1160, + [2232] = 1166, + [2233] = 1178, + [2234] = 1181, + [2235] = 1187, + [2236] = 1192, + [2237] = 1705, [2238] = 2238, - [2239] = 1489, - [2240] = 2240, - [2241] = 1498, - [2242] = 360, - [2243] = 340, - [2244] = 691, - [2245] = 1473, - [2246] = 2246, - [2247] = 1498, - [2248] = 1489, - [2249] = 2249, - [2250] = 2250, - [2251] = 1515, - [2252] = 2252, - [2253] = 1515, - [2254] = 2254, - [2255] = 2255, - [2256] = 2256, - [2257] = 2257, - [2258] = 368, - [2259] = 2259, - [2260] = 2260, - [2261] = 2255, - [2262] = 2254, - [2263] = 336, - [2264] = 2264, - [2265] = 2265, - [2266] = 2266, - [2267] = 2267, - [2268] = 2268, - [2269] = 2269, - [2270] = 2270, - [2271] = 2271, - [2272] = 2272, - [2273] = 333, - [2274] = 2274, - [2275] = 2275, - [2276] = 2276, - [2277] = 2277, - [2278] = 2278, - [2279] = 2279, - [2280] = 2280, - [2281] = 2281, - [2282] = 2268, - [2283] = 389, - [2284] = 2284, - [2285] = 2285, - [2286] = 2286, - [2287] = 2287, - [2288] = 2288, - [2289] = 2289, - [2290] = 338, - [2291] = 353, - [2292] = 412, - [2293] = 399, - [2294] = 2294, - [2295] = 2295, - [2296] = 369, - [2297] = 377, - [2298] = 389, - [2299] = 407, - [2300] = 398, - [2301] = 407, - [2302] = 2302, - [2303] = 2303, - [2304] = 398, - [2305] = 2302, - [2306] = 400, - [2307] = 408, - [2308] = 409, - [2309] = 410, - [2310] = 2310, - [2311] = 2311, - [2312] = 2303, - [2313] = 389, - [2314] = 377, - [2315] = 2315, - [2316] = 2316, - [2317] = 2315, - [2318] = 2316, - [2319] = 2310, - [2320] = 2311, - [2321] = 92, - [2322] = 93, - [2323] = 410, - [2324] = 98, - [2325] = 377, - [2326] = 389, - [2327] = 93, - [2328] = 92, - [2329] = 398, - [2330] = 407, - [2331] = 446, - [2332] = 408, - [2333] = 400, - [2334] = 409, - [2335] = 99, - [2336] = 108, - [2337] = 442, - [2338] = 446, - [2339] = 106, - [2340] = 377, - [2341] = 400, - [2342] = 105, - [2343] = 408, - [2344] = 409, - [2345] = 410, - [2346] = 407, - [2347] = 98, - [2348] = 444, - [2349] = 486, - [2350] = 93, - [2351] = 493, - [2352] = 92, - [2353] = 398, - [2354] = 99, - [2355] = 108, - [2356] = 410, - [2357] = 92, - [2358] = 400, - [2359] = 336, - [2360] = 470, - [2361] = 1473, - [2362] = 2362, - [2363] = 446, - [2364] = 412, - [2365] = 442, - [2366] = 459, - [2367] = 399, - [2368] = 93, - [2369] = 444, - [2370] = 2370, - [2371] = 99, - [2372] = 2372, - [2373] = 2373, - [2374] = 336, - [2375] = 105, - [2376] = 2376, - [2377] = 408, - [2378] = 389, - [2379] = 106, - [2380] = 98, - [2381] = 409, - [2382] = 333, - [2383] = 398, - [2384] = 442, - [2385] = 1489, - [2386] = 1498, - [2387] = 338, - [2388] = 399, - [2389] = 2389, - [2390] = 349, - [2391] = 106, - [2392] = 377, - [2393] = 99, - [2394] = 333, - [2395] = 92, - [2396] = 93, - [2397] = 446, - [2398] = 500, - [2399] = 98, - [2400] = 503, - [2401] = 490, - [2402] = 2402, - [2403] = 342, - [2404] = 336, - [2405] = 470, - [2406] = 642, - [2407] = 353, - [2408] = 340, - [2409] = 645, - [2410] = 108, - [2411] = 341, - [2412] = 412, - [2413] = 497, - [2414] = 484, - [2415] = 485, - [2416] = 489, - [2417] = 2417, - [2418] = 407, - [2419] = 459, - [2420] = 343, - [2421] = 105, - [2422] = 360, - [2423] = 444, - [2424] = 490, - [2425] = 333, - [2426] = 106, - [2427] = 408, - [2428] = 409, - [2429] = 410, - [2430] = 338, - [2431] = 444, - [2432] = 412, - [2433] = 642, - [2434] = 353, - [2435] = 442, - [2436] = 645, - [2437] = 400, - [2438] = 503, - [2439] = 1515, - [2440] = 105, - [2441] = 349, - [2442] = 99, - [2443] = 442, - [2444] = 2444, - [2445] = 334, - [2446] = 360, - [2447] = 444, - [2448] = 1841, - [2449] = 459, - [2450] = 108, - [2451] = 341, - [2452] = 98, - [2453] = 500, - [2454] = 343, - [2455] = 336, - [2456] = 399, - [2457] = 340, - [2458] = 342, - [2459] = 369, - [2460] = 470, - [2461] = 369, - [2462] = 360, - [2463] = 342, - [2464] = 2464, - [2465] = 349, - [2466] = 489, + [2239] = 2239, + [2240] = 1270, + [2241] = 1271, + [2242] = 1272, + [2243] = 1275, + [2244] = 1276, + [2245] = 1277, + [2246] = 1146, + [2247] = 1148, + [2248] = 1149, + [2249] = 1150, + [2250] = 1151, + [2251] = 1152, + [2252] = 1153, + [2253] = 1155, + [2254] = 1156, + [2255] = 1158, + [2256] = 1159, + [2257] = 1162, + [2258] = 1163, + [2259] = 1164, + [2260] = 1165, + [2261] = 1167, + [2262] = 1168, + [2263] = 1169, + [2264] = 1170, + [2265] = 1173, + [2266] = 1174, + [2267] = 1176, + [2268] = 1185, + [2269] = 1705, + [2270] = 1188, + [2271] = 1191, + [2272] = 1195, + [2273] = 1196, + [2274] = 1197, + [2275] = 1200, + [2276] = 116, + [2277] = 1204, + [2278] = 1205, + [2279] = 1206, + [2280] = 1207, + [2281] = 1208, + [2282] = 1209, + [2283] = 1210, + [2284] = 1211, + [2285] = 1212, + [2286] = 1214, + [2287] = 1215, + [2288] = 1216, + [2289] = 1218, + [2290] = 1223, + [2291] = 1228, + [2292] = 1230, + [2293] = 1231, + [2294] = 1232, + [2295] = 1233, + [2296] = 1234, + [2297] = 1235, + [2298] = 1237, + [2299] = 1238, + [2300] = 1239, + [2301] = 1240, + [2302] = 1241, + [2303] = 1242, + [2304] = 1243, + [2305] = 1244, + [2306] = 1245, + [2307] = 1246, + [2308] = 1248, + [2309] = 1249, + [2310] = 1250, + [2311] = 1251, + [2312] = 1252, + [2313] = 1253, + [2314] = 1254, + [2315] = 1256, + [2316] = 1257, + [2317] = 1258, + [2318] = 1259, + [2319] = 1260, + [2320] = 1261, + [2321] = 1263, + [2322] = 1264, + [2323] = 1266, + [2324] = 1267, + [2325] = 2213, + [2326] = 2326, + [2327] = 2326, + [2328] = 2328, + [2329] = 2329, + [2330] = 2213, + [2331] = 2213, + [2332] = 2213, + [2333] = 2333, + [2334] = 2334, + [2335] = 1186, + [2336] = 1054, + [2337] = 950, + [2338] = 2338, + [2339] = 715, + [2340] = 1054, + [2341] = 692, + [2342] = 939, + [2343] = 893, + [2344] = 364, + [2345] = 2345, + [2346] = 1733, + [2347] = 949, + [2348] = 365, + [2349] = 2338, + [2350] = 2345, + [2351] = 1720, + [2352] = 2352, + [2353] = 2353, + [2354] = 2338, + [2355] = 2345, + [2356] = 1733, + [2357] = 947, + [2358] = 1720, + [2359] = 354, + [2360] = 910, + [2361] = 2361, + [2362] = 714, + [2363] = 1880, + [2364] = 2364, + [2365] = 973, + [2366] = 1189, + [2367] = 1190, + [2368] = 1193, + [2369] = 1580, + [2370] = 1194, + [2371] = 1581, + [2372] = 1201, + [2373] = 1582, + [2374] = 1203, + [2375] = 1217, + [2376] = 967, + [2377] = 1221, + [2378] = 1222, + [2379] = 1225, + [2380] = 1226, + [2381] = 675, + [2382] = 1227, + [2383] = 2361, + [2384] = 750, + [2385] = 751, + [2386] = 752, + [2387] = 753, + [2388] = 768, + [2389] = 769, + [2390] = 2390, + [2391] = 367, + [2392] = 2390, + [2393] = 358, + [2394] = 359, + [2395] = 360, + [2396] = 361, + [2397] = 363, + [2398] = 492, + [2399] = 974, + [2400] = 975, + [2401] = 935, + [2402] = 727, + [2403] = 489, + [2404] = 380, + [2405] = 2361, + [2406] = 733, + [2407] = 691, + [2408] = 911, + [2409] = 912, + [2410] = 913, + [2411] = 740, + [2412] = 1572, + [2413] = 742, + [2414] = 926, + [2415] = 959, + [2416] = 697, + [2417] = 703, + [2418] = 894, + [2419] = 964, + [2420] = 1189, + [2421] = 1190, + [2422] = 1193, + [2423] = 1194, + [2424] = 1201, + [2425] = 1203, + [2426] = 1217, + [2427] = 1221, + [2428] = 1222, + [2429] = 1225, + [2430] = 1226, + [2431] = 1227, + [2432] = 2361, + [2433] = 2390, + [2434] = 2361, + [2435] = 2361, + [2436] = 2361, + [2437] = 1880, + [2438] = 2438, + [2439] = 2438, + [2440] = 2438, + [2441] = 2441, + [2442] = 715, + [2443] = 2438, + [2444] = 2438, + [2445] = 2438, + [2446] = 2446, + [2447] = 2447, + [2448] = 675, + [2449] = 1705, + [2450] = 2450, + [2451] = 2441, + [2452] = 2452, + [2453] = 1705, + [2454] = 1720, + [2455] = 2455, + [2456] = 359, + [2457] = 2457, + [2458] = 2458, + [2459] = 2459, + [2460] = 715, + [2461] = 1733, + [2462] = 2462, + [2463] = 2326, + [2464] = 358, + [2465] = 367, + [2466] = 2466, [2467] = 2467, - [2468] = 500, - [2469] = 1841, - [2470] = 484, - [2471] = 459, - [2472] = 343, - [2473] = 106, - [2474] = 485, + [2468] = 360, + [2469] = 361, + [2470] = 363, + [2471] = 2471, + [2472] = 2472, + [2473] = 1720, + [2474] = 1733, [2475] = 2475, - [2476] = 351, - [2477] = 486, - [2478] = 697, - [2479] = 497, - [2480] = 444, - [2481] = 2481, - [2482] = 442, - [2483] = 108, - [2484] = 2464, - [2485] = 2464, - [2486] = 341, - [2487] = 490, - [2488] = 444, - [2489] = 338, - [2490] = 340, - [2491] = 399, - [2492] = 353, - [2493] = 470, - [2494] = 333, - [2495] = 2464, + [2476] = 1880, + [2477] = 2477, + [2478] = 2478, + [2479] = 1880, + [2480] = 2480, + [2481] = 2478, + [2482] = 2482, + [2483] = 2483, + [2484] = 2484, + [2485] = 2485, + [2486] = 2480, + [2487] = 380, + [2488] = 345, + [2489] = 352, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, + [2493] = 2493, + [2494] = 2494, + [2495] = 2495, [2496] = 2496, [2497] = 2497, - [2498] = 412, - [2499] = 470, - [2500] = 704, - [2501] = 692, - [2502] = 675, - [2503] = 698, - [2504] = 442, - [2505] = 642, - [2506] = 369, - [2507] = 105, - [2508] = 357, - [2509] = 645, - [2510] = 459, - [2511] = 339, - [2512] = 334, - [2513] = 493, - [2514] = 503, - [2515] = 937, - [2516] = 485, + [2498] = 2498, + [2499] = 2499, + [2500] = 2494, + [2501] = 2501, + [2502] = 2502, + [2503] = 2503, + [2504] = 2504, + [2505] = 2505, + [2506] = 2506, + [2507] = 392, + [2508] = 2508, + [2509] = 344, + [2510] = 2510, + [2511] = 2511, + [2512] = 350, + [2513] = 413, + [2514] = 417, + [2515] = 2515, + [2516] = 2516, [2517] = 2517, - [2518] = 369, - [2519] = 489, - [2520] = 2497, - [2521] = 2521, - [2522] = 886, - [2523] = 941, - [2524] = 961, - [2525] = 459, - [2526] = 2526, - [2527] = 960, - [2528] = 948, - [2529] = 503, + [2518] = 2518, + [2519] = 2519, + [2520] = 2520, + [2521] = 416, + [2522] = 415, + [2523] = 381, + [2524] = 409, + [2525] = 392, + [2526] = 416, + [2527] = 2527, + [2528] = 2528, + [2529] = 2528, [2530] = 2530, - [2531] = 500, - [2532] = 357, - [2533] = 954, - [2534] = 958, - [2535] = 959, - [2536] = 341, - [2537] = 2537, - [2538] = 2538, - [2539] = 2539, - [2540] = 2540, - [2541] = 2541, - [2542] = 339, - [2543] = 442, - [2544] = 342, - [2545] = 2545, - [2546] = 931, - [2547] = 2547, - [2548] = 343, - [2549] = 2549, - [2550] = 444, - [2551] = 334, - [2552] = 349, - [2553] = 497, - [2554] = 493, - [2555] = 470, - [2556] = 338, - [2557] = 486, - [2558] = 500, - [2559] = 490, - [2560] = 645, - [2561] = 360, - [2562] = 2475, - [2563] = 2537, - [2564] = 697, - [2565] = 642, - [2566] = 351, - [2567] = 2567, - [2568] = 340, - [2569] = 503, - [2570] = 2570, - [2571] = 490, - [2572] = 459, - [2573] = 484, - [2574] = 2481, - [2575] = 353, - [2576] = 704, - [2577] = 470, - [2578] = 692, - [2579] = 675, - [2580] = 698, + [2531] = 2531, + [2532] = 2530, + [2533] = 2533, + [2534] = 2531, + [2535] = 2535, + [2536] = 2533, + [2537] = 420, + [2538] = 423, + [2539] = 424, + [2540] = 425, + [2541] = 392, + [2542] = 102, + [2543] = 409, + [2544] = 101, + [2545] = 415, + [2546] = 2527, + [2547] = 2535, + [2548] = 416, + [2549] = 415, + [2550] = 102, + [2551] = 409, + [2552] = 101, + [2553] = 456, + [2554] = 420, + [2555] = 109, + [2556] = 423, + [2557] = 424, + [2558] = 425, + [2559] = 103, + [2560] = 392, + [2561] = 409, + [2562] = 423, + [2563] = 453, + [2564] = 424, + [2565] = 425, + [2566] = 109, + [2567] = 103, + [2568] = 102, + [2569] = 118, + [2570] = 503, + [2571] = 420, + [2572] = 456, + [2573] = 496, + [2574] = 101, + [2575] = 415, + [2576] = 122, + [2577] = 116, + [2578] = 416, + [2579] = 467, + [2580] = 456, [2581] = 2581, - [2582] = 444, - [2583] = 503, - [2584] = 2584, - [2585] = 2538, - [2586] = 459, - [2587] = 937, - [2588] = 503, - [2589] = 490, - [2590] = 2590, - [2591] = 490, - [2592] = 2592, - [2593] = 2567, - [2594] = 493, - [2595] = 500, - [2596] = 491, - [2597] = 2597, + [2582] = 345, + [2583] = 2583, + [2584] = 467, + [2585] = 109, + [2586] = 2586, + [2587] = 116, + [2588] = 103, + [2589] = 424, + [2590] = 118, + [2591] = 420, + [2592] = 423, + [2593] = 122, + [2594] = 345, + [2595] = 425, + [2596] = 101, + [2597] = 392, [2598] = 2598, - [2599] = 489, - [2600] = 948, - [2601] = 465, - [2602] = 497, - [2603] = 954, - [2604] = 697, - [2605] = 704, - [2606] = 692, - [2607] = 675, - [2608] = 698, - [2609] = 351, - [2610] = 500, - [2611] = 339, - [2612] = 642, - [2613] = 2547, - [2614] = 958, - [2615] = 466, - [2616] = 491, - [2617] = 486, - [2618] = 959, - [2619] = 960, - [2620] = 967, - [2621] = 2621, - [2622] = 498, - [2623] = 2623, - [2624] = 498, - [2625] = 485, - [2626] = 941, - [2627] = 368, - [2628] = 2521, - [2629] = 442, - [2630] = 2539, - [2631] = 2631, - [2632] = 2581, - [2633] = 484, - [2634] = 1940, - [2635] = 2549, - [2636] = 2545, - [2637] = 645, - [2638] = 470, - [2639] = 961, - [2640] = 357, - [2641] = 931, - [2642] = 886, + [2599] = 413, + [2600] = 102, + [2601] = 478, + [2602] = 344, + [2603] = 470, + [2604] = 453, + [2605] = 1705, + [2606] = 417, + [2607] = 2607, + [2608] = 358, + [2609] = 109, + [2610] = 344, + [2611] = 103, + [2612] = 2612, + [2613] = 522, + [2614] = 523, + [2615] = 415, + [2616] = 416, + [2617] = 345, + [2618] = 118, + [2619] = 467, + [2620] = 122, + [2621] = 116, + [2622] = 367, + [2623] = 359, + [2624] = 360, + [2625] = 361, + [2626] = 363, + [2627] = 453, + [2628] = 409, + [2629] = 470, + [2630] = 102, + [2631] = 101, + [2632] = 493, + [2633] = 508, + [2634] = 513, + [2635] = 456, + [2636] = 352, + [2637] = 350, + [2638] = 1733, + [2639] = 1720, + [2640] = 2640, + [2641] = 413, + [2642] = 417, [2643] = 2643, - [2644] = 498, - [2645] = 697, - [2646] = 2646, - [2647] = 2647, - [2648] = 2648, - [2649] = 2649, - [2650] = 2650, - [2651] = 442, - [2652] = 2652, - [2653] = 2653, - [2654] = 2654, - [2655] = 2655, - [2656] = 2656, - [2657] = 2657, - [2658] = 2658, - [2659] = 2659, - [2660] = 2660, - [2661] = 2661, - [2662] = 2662, - [2663] = 2663, - [2664] = 2664, - [2665] = 2665, - [2666] = 2666, - [2667] = 2667, - [2668] = 2668, - [2669] = 2669, - [2670] = 2670, - [2671] = 2671, - [2672] = 2672, + [2644] = 502, + [2645] = 506, + [2646] = 498, + [2647] = 512, + [2648] = 478, + [2649] = 359, + [2650] = 1402, + [2651] = 470, + [2652] = 467, + [2653] = 522, + [2654] = 345, + [2655] = 363, + [2656] = 122, + [2657] = 523, + [2658] = 116, + [2659] = 493, + [2660] = 508, + [2661] = 513, + [2662] = 1880, + [2663] = 453, + [2664] = 109, + [2665] = 103, + [2666] = 348, + [2667] = 467, + [2668] = 381, + [2669] = 352, + [2670] = 453, + [2671] = 350, + [2672] = 413, [2673] = 2673, - [2674] = 2674, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2678, - [2679] = 2679, - [2680] = 2680, - [2681] = 444, - [2682] = 704, - [2683] = 444, - [2684] = 2684, - [2685] = 2685, - [2686] = 2686, + [2674] = 344, + [2675] = 420, + [2676] = 381, + [2677] = 423, + [2678] = 424, + [2679] = 425, + [2680] = 478, + [2681] = 360, + [2682] = 367, + [2683] = 361, + [2684] = 417, + [2685] = 358, + [2686] = 118, [2687] = 2687, - [2688] = 2688, - [2689] = 2689, - [2690] = 2690, - [2691] = 2691, - [2692] = 2692, + [2688] = 361, + [2689] = 467, + [2690] = 359, + [2691] = 363, + [2692] = 453, [2693] = 2693, - [2694] = 2694, - [2695] = 937, - [2696] = 470, - [2697] = 2697, - [2698] = 2698, - [2699] = 941, - [2700] = 2700, - [2701] = 368, - [2702] = 2702, - [2703] = 2703, - [2704] = 692, - [2705] = 675, - [2706] = 698, - [2707] = 948, - [2708] = 954, - [2709] = 459, - [2710] = 958, - [2711] = 2711, - [2712] = 2712, - [2713] = 959, - [2714] = 2714, - [2715] = 2715, - [2716] = 886, - [2717] = 960, - [2718] = 2718, - [2719] = 2719, - [2720] = 2720, - [2721] = 2597, - [2722] = 961, - [2723] = 931, - [2724] = 2724, - [2725] = 2725, - [2726] = 2726, - [2727] = 2727, - [2728] = 2598, - [2729] = 2729, - [2730] = 2730, - [2731] = 2731, + [2694] = 352, + [2695] = 506, + [2696] = 2693, + [2697] = 498, + [2698] = 503, + [2699] = 358, + [2700] = 512, + [2701] = 496, + [2702] = 508, + [2703] = 470, + [2704] = 2704, + [2705] = 2705, + [2706] = 354, + [2707] = 2707, + [2708] = 417, + [2709] = 344, + [2710] = 467, + [2711] = 360, + [2712] = 350, + [2713] = 118, + [2714] = 513, + [2715] = 522, + [2716] = 2693, + [2717] = 122, + [2718] = 1402, + [2719] = 523, + [2720] = 2693, + [2721] = 2693, + [2722] = 116, + [2723] = 693, + [2724] = 502, + [2725] = 365, + [2726] = 348, + [2727] = 367, + [2728] = 413, + [2729] = 478, + [2730] = 364, + [2731] = 470, [2732] = 2732, - [2733] = 702, - [2734] = 703, - [2735] = 2735, - [2736] = 710, - [2737] = 674, - [2738] = 2738, - [2739] = 2739, - [2740] = 2740, - [2741] = 2741, - [2742] = 2742, - [2743] = 2743, - [2744] = 2744, - [2745] = 2745, - [2746] = 2746, - [2747] = 2747, + [2733] = 711, + [2734] = 721, + [2735] = 704, + [2736] = 687, + [2737] = 493, + [2738] = 478, + [2739] = 453, + [2740] = 381, + [2741] = 1467, + [2742] = 687, + [2743] = 354, + [2744] = 2704, + [2745] = 348, + [2746] = 364, + [2747] = 508, [2748] = 2748, - [2749] = 2749, - [2750] = 2750, - [2751] = 2751, - [2752] = 2752, - [2753] = 2753, - [2754] = 2754, - [2755] = 2755, - [2756] = 465, - [2757] = 2757, + [2749] = 947, + [2750] = 493, + [2751] = 949, + [2752] = 508, + [2753] = 513, + [2754] = 950, + [2755] = 478, + [2756] = 470, + [2757] = 2705, [2758] = 2758, - [2759] = 2759, - [2760] = 1940, - [2761] = 466, + [2759] = 523, + [2760] = 381, + [2761] = 2687, [2762] = 2762, [2763] = 2763, - [2764] = 500, - [2765] = 2765, - [2766] = 2766, + [2764] = 2764, + [2765] = 506, + [2766] = 1458, [2767] = 2767, - [2768] = 503, - [2769] = 490, - [2770] = 2770, - [2771] = 2771, - [2772] = 2772, - [2773] = 2773, + [2768] = 2768, + [2769] = 352, + [2770] = 467, + [2771] = 503, + [2772] = 1463, + [2773] = 512, [2774] = 2774, - [2775] = 2775, + [2775] = 496, [2776] = 2776, - [2777] = 2777, - [2778] = 2778, - [2779] = 2779, - [2780] = 2780, - [2781] = 2781, - [2782] = 2782, - [2783] = 2783, - [2784] = 491, - [2785] = 2785, - [2786] = 2786, - [2787] = 2787, - [2788] = 2788, - [2789] = 2789, - [2790] = 1980, - [2791] = 484, - [2792] = 486, - [2793] = 489, - [2794] = 493, - [2795] = 497, - [2796] = 485, - [2797] = 2797, - [2798] = 2798, - [2799] = 2799, - [2800] = 2800, - [2801] = 2801, - [2802] = 2802, - [2803] = 2803, - [2804] = 2804, - [2805] = 2805, - [2806] = 2806, + [2777] = 502, + [2778] = 513, + [2779] = 493, + [2780] = 940, + [2781] = 498, + [2782] = 367, + [2783] = 2762, + [2784] = 358, + [2785] = 359, + [2786] = 943, + [2787] = 360, + [2788] = 361, + [2789] = 363, + [2790] = 944, + [2791] = 365, + [2792] = 977, + [2793] = 946, + [2794] = 893, + [2795] = 693, + [2796] = 522, + [2797] = 453, + [2798] = 478, + [2799] = 939, + [2800] = 1465, + [2801] = 1466, + [2802] = 470, + [2803] = 350, + [2804] = 711, + [2805] = 721, + [2806] = 704, [2807] = 2807, - [2808] = 2808, - [2809] = 2809, - [2810] = 2810, - [2811] = 2811, - [2812] = 2812, + [2808] = 1458, + [2809] = 2768, + [2810] = 467, + [2811] = 523, + [2812] = 950, [2813] = 2813, - [2814] = 2814, - [2815] = 967, - [2816] = 941, - [2817] = 503, - [2818] = 2818, - [2819] = 490, - [2820] = 676, - [2821] = 2821, - [2822] = 2541, - [2823] = 2743, - [2824] = 702, - [2825] = 459, - [2826] = 923, - [2827] = 2744, + [2814] = 453, + [2815] = 711, + [2816] = 943, + [2817] = 721, + [2818] = 489, + [2819] = 704, + [2820] = 939, + [2821] = 522, + [2822] = 503, + [2823] = 687, + [2824] = 944, + [2825] = 481, + [2826] = 2826, + [2827] = 2827, [2828] = 2828, - [2829] = 2570, - [2830] = 1980, - [2831] = 2745, - [2832] = 2762, - [2833] = 2530, - [2834] = 703, - [2835] = 2540, - [2836] = 886, - [2837] = 961, - [2838] = 931, - [2839] = 2839, + [2829] = 940, + [2830] = 1491, + [2831] = 1487, + [2832] = 1465, + [2833] = 1466, + [2834] = 1467, + [2835] = 513, + [2836] = 470, + [2837] = 893, + [2838] = 512, + [2839] = 484, [2840] = 2840, - [2841] = 2779, - [2842] = 2530, - [2843] = 899, - [2844] = 2780, - [2845] = 2782, - [2846] = 2846, - [2847] = 2847, - [2848] = 2848, - [2849] = 2849, - [2850] = 2783, - [2851] = 2786, - [2852] = 2852, - [2853] = 2797, - [2854] = 2798, - [2855] = 2799, - [2856] = 2800, - [2857] = 2857, - [2858] = 2801, - [2859] = 2802, - [2860] = 2803, - [2861] = 2805, - [2862] = 2808, - [2863] = 368, - [2864] = 2809, - [2865] = 2810, - [2866] = 2866, - [2867] = 2867, - [2868] = 466, - [2869] = 2517, - [2870] = 2526, + [2841] = 2841, + [2842] = 492, + [2843] = 489, + [2844] = 365, + [2845] = 2774, + [2846] = 354, + [2847] = 364, + [2848] = 693, + [2849] = 2807, + [2850] = 977, + [2851] = 946, + [2852] = 947, + [2853] = 1494, + [2854] = 498, + [2855] = 1054, + [2856] = 492, + [2857] = 493, + [2858] = 949, + [2859] = 496, + [2860] = 493, + [2861] = 502, + [2862] = 508, + [2863] = 508, + [2864] = 478, + [2865] = 513, + [2866] = 506, + [2867] = 380, + [2868] = 1463, + [2869] = 2869, + [2870] = 2870, [2871] = 2871, - [2872] = 960, - [2873] = 948, - [2874] = 2541, - [2875] = 954, - [2876] = 937, - [2877] = 710, - [2878] = 674, - [2879] = 2879, + [2872] = 2872, + [2873] = 470, + [2874] = 687, + [2875] = 2875, + [2876] = 2876, + [2877] = 493, + [2878] = 508, + [2879] = 513, [2880] = 2880, - [2881] = 699, - [2882] = 444, - [2883] = 470, - [2884] = 697, - [2885] = 2540, - [2886] = 704, + [2881] = 2881, + [2882] = 2882, + [2883] = 2883, + [2884] = 2884, + [2885] = 2885, + [2886] = 489, [2887] = 2887, - [2888] = 958, + [2888] = 949, [2889] = 2889, - [2890] = 2813, + [2890] = 950, [2891] = 2891, - [2892] = 389, - [2893] = 2789, - [2894] = 959, - [2895] = 2711, - [2896] = 967, - [2897] = 2570, - [2898] = 699, - [2899] = 930, - [2900] = 465, - [2901] = 2879, - [2902] = 2880, - [2903] = 500, - [2904] = 685, - [2905] = 2905, - [2906] = 692, - [2907] = 2517, - [2908] = 2526, - [2909] = 675, - [2910] = 2887, + [2892] = 2892, + [2893] = 2893, + [2894] = 484, + [2895] = 2895, + [2896] = 2896, + [2897] = 2897, + [2898] = 2898, + [2899] = 2899, + [2900] = 2900, + [2901] = 2901, + [2902] = 2902, + [2903] = 2903, + [2904] = 2904, + [2905] = 1054, + [2906] = 2906, + [2907] = 2907, + [2908] = 2908, + [2909] = 2909, + [2910] = 2910, [2911] = 2911, - [2912] = 2889, - [2913] = 698, - [2914] = 936, - [2915] = 2812, + [2912] = 2912, + [2913] = 2913, + [2914] = 2914, + [2915] = 467, [2916] = 2916, [2917] = 2917, [2918] = 2918, - [2919] = 2919, - [2920] = 763, - [2921] = 764, - [2922] = 2530, - [2923] = 444, - [2924] = 743, - [2925] = 744, - [2926] = 2857, + [2919] = 1491, + [2920] = 1487, + [2921] = 2921, + [2922] = 2922, + [2923] = 2923, + [2924] = 453, + [2925] = 2925, + [2926] = 2926, [2927] = 2927, - [2928] = 2928, - [2929] = 2905, - [2930] = 888, - [2931] = 724, - [2932] = 936, - [2933] = 2191, - [2934] = 724, - [2935] = 676, - [2936] = 949, + [2928] = 453, + [2929] = 478, + [2930] = 685, + [2931] = 706, + [2932] = 693, + [2933] = 2933, + [2934] = 2934, + [2935] = 2935, + [2936] = 2936, [2937] = 2937, - [2938] = 2846, - [2939] = 2849, - [2940] = 2570, - [2941] = 377, - [2942] = 897, - [2943] = 898, + [2938] = 711, + [2939] = 2939, + [2940] = 2940, + [2941] = 2941, + [2942] = 2942, + [2943] = 2943, [2944] = 2944, [2945] = 2945, [2946] = 2946, - [2947] = 730, - [2948] = 2948, - [2949] = 389, + [2947] = 2947, + [2948] = 1533, + [2949] = 2949, [2950] = 2950, - [2951] = 730, - [2952] = 746, - [2953] = 2818, - [2954] = 747, + [2951] = 2951, + [2952] = 2952, + [2953] = 2953, + [2954] = 492, [2955] = 2955, - [2956] = 2176, - [2957] = 2867, - [2958] = 2540, - [2959] = 2517, - [2960] = 389, + [2956] = 2956, + [2957] = 2957, + [2958] = 939, + [2959] = 2959, + [2960] = 2960, [2961] = 2961, - [2962] = 2839, - [2963] = 2963, + [2962] = 2962, + [2963] = 940, [2964] = 2964, - [2965] = 2526, + [2965] = 2965, [2966] = 2966, [2967] = 2967, - [2968] = 930, + [2968] = 380, [2969] = 2969, - [2970] = 2970, + [2970] = 1511, [2971] = 2971, [2972] = 2972, [2973] = 2973, [2974] = 2974, [2975] = 2975, [2976] = 2976, - [2977] = 720, - [2978] = 886, - [2979] = 721, - [2980] = 937, - [2981] = 722, - [2982] = 723, - [2983] = 941, - [2984] = 503, + [2977] = 2977, + [2978] = 1534, + [2979] = 943, + [2980] = 944, + [2981] = 2981, + [2982] = 2982, + [2983] = 2983, + [2984] = 1494, [2985] = 2985, [2986] = 2986, - [2987] = 735, + [2987] = 2987, [2988] = 2988, - [2989] = 948, + [2989] = 2989, [2990] = 2990, - [2991] = 954, + [2991] = 2991, [2992] = 2992, - [2993] = 958, - [2994] = 959, - [2995] = 490, - [2996] = 726, - [2997] = 727, - [2998] = 728, - [2999] = 389, - [3000] = 763, - [3001] = 967, - [3002] = 764, - [3003] = 3003, - [3004] = 398, + [2993] = 2993, + [2994] = 2994, + [2995] = 2995, + [2996] = 977, + [2997] = 2997, + [2998] = 2998, + [2999] = 946, + [3000] = 3000, + [3001] = 3001, + [3002] = 3002, + [3003] = 721, + [3004] = 3004, [3005] = 3005, - [3006] = 736, - [3007] = 960, - [3008] = 737, - [3009] = 2840, - [3010] = 739, - [3011] = 740, - [3012] = 741, - [3013] = 742, - [3014] = 961, - [3015] = 931, + [3006] = 481, + [3007] = 893, + [3008] = 3008, + [3009] = 947, + [3010] = 506, + [3011] = 503, + [3012] = 512, + [3013] = 496, + [3014] = 502, + [3015] = 498, [3016] = 3016, - [3017] = 916, - [3018] = 949, - [3019] = 897, - [3020] = 695, - [3021] = 943, - [3022] = 898, - [3023] = 694, + [3017] = 3017, + [3018] = 3018, + [3019] = 3019, + [3020] = 3020, + [3021] = 3021, + [3022] = 3022, + [3023] = 3023, [3024] = 3024, - [3025] = 899, - [3026] = 3026, - [3027] = 887, - [3028] = 3028, - [3029] = 2891, - [3030] = 951, - [3031] = 3031, - [3032] = 735, + [3025] = 3025, + [3026] = 704, + [3027] = 3027, + [3028] = 717, + [3029] = 3029, + [3030] = 3030, + [3031] = 724, + [3032] = 3032, [3033] = 3033, - [3034] = 916, - [3035] = 951, + [3034] = 3034, + [3035] = 3035, [3036] = 3036, [3037] = 3037, - [3038] = 924, - [3039] = 407, + [3038] = 3038, + [3039] = 3039, [3040] = 3040, [3041] = 3041, [3042] = 3042, - [3043] = 3043, - [3044] = 3044, - [3045] = 685, - [3046] = 2541, + [3043] = 724, + [3044] = 2939, + [3045] = 3045, + [3046] = 2776, [3047] = 3047, - [3048] = 3048, - [3049] = 746, - [3050] = 923, - [3051] = 924, - [3052] = 926, - [3053] = 3053, - [3054] = 3054, - [3055] = 500, - [3056] = 695, + [3048] = 493, + [3049] = 3049, + [3050] = 974, + [3051] = 2881, + [3052] = 2884, + [3053] = 2885, + [3054] = 2763, + [3055] = 2764, + [3056] = 2935, [3057] = 3057, - [3058] = 926, - [3059] = 719, - [3060] = 2174, - [3061] = 943, - [3062] = 694, - [3063] = 743, - [3064] = 699, - [3065] = 540, - [3066] = 744, - [3067] = 747, - [3068] = 887, - [3069] = 3069, - [3070] = 2173, - [3071] = 3071, - [3072] = 719, - [3073] = 3073, - [3074] = 738, - [3075] = 408, - [3076] = 3076, - [3077] = 3077, - [3078] = 916, + [3058] = 3058, + [3059] = 2940, + [3060] = 692, + [3061] = 2941, + [3062] = 2758, + [3063] = 3063, + [3064] = 3047, + [3065] = 3049, + [3066] = 913, + [3067] = 1534, + [3068] = 2748, + [3069] = 693, + [3070] = 3070, + [3071] = 2758, + [3072] = 2942, + [3073] = 947, + [3074] = 939, + [3075] = 2936, + [3076] = 711, + [3077] = 2943, + [3078] = 2944, [3079] = 3079, - [3080] = 389, - [3081] = 2955, - [3082] = 400, - [3083] = 3083, - [3084] = 724, - [3085] = 2970, - [3086] = 3037, - [3087] = 3087, - [3088] = 3088, - [3089] = 887, - [3090] = 398, - [3091] = 743, - [3092] = 2967, - [3093] = 3093, - [3094] = 936, - [3095] = 3095, - [3096] = 3096, - [3097] = 3036, - [3098] = 744, - [3099] = 398, - [3100] = 2986, - [3101] = 726, + [3080] = 3005, + [3081] = 943, + [3082] = 893, + [3083] = 3057, + [3084] = 973, + [3085] = 380, + [3086] = 392, + [3087] = 2945, + [3088] = 2946, + [3089] = 453, + [3090] = 481, + [3091] = 478, + [3092] = 2767, + [3093] = 484, + [3094] = 717, + [3095] = 3058, + [3096] = 2947, + [3097] = 470, + [3098] = 3098, + [3099] = 2949, + [3100] = 3100, + [3101] = 2950, [3102] = 3102, - [3103] = 727, - [3104] = 691, - [3105] = 3105, - [3106] = 3076, - [3107] = 746, - [3108] = 377, - [3109] = 3109, - [3110] = 736, - [3111] = 737, - [3112] = 738, - [3113] = 3113, - [3114] = 3114, - [3115] = 3115, - [3116] = 3116, - [3117] = 3117, - [3118] = 3118, - [3119] = 377, - [3120] = 3120, - [3121] = 739, - [3122] = 3003, - [3123] = 3005, - [3124] = 3016, - [3125] = 740, - [3126] = 3073, - [3127] = 407, - [3128] = 3128, + [3103] = 3103, + [3104] = 513, + [3105] = 2764, + [3106] = 3106, + [3107] = 967, + [3108] = 508, + [3109] = 721, + [3110] = 1511, + [3111] = 3111, + [3112] = 2869, + [3113] = 704, + [3114] = 1533, + [3115] = 687, + [3116] = 940, + [3117] = 2951, + [3118] = 2952, + [3119] = 949, + [3120] = 950, + [3121] = 2953, + [3122] = 3122, + [3123] = 2934, + [3124] = 944, + [3125] = 692, + [3126] = 703, + [3127] = 1054, + [3128] = 2776, [3129] = 3129, - [3130] = 728, - [3131] = 3131, - [3132] = 741, - [3133] = 951, + [3130] = 977, + [3131] = 685, + [3132] = 706, + [3133] = 3133, [3134] = 3134, - [3135] = 2173, - [3136] = 3136, + [3135] = 3135, + [3136] = 714, [3137] = 3137, - [3138] = 742, - [3139] = 3139, - [3140] = 3140, - [3141] = 747, - [3142] = 3142, - [3143] = 930, - [3144] = 3144, - [3145] = 3145, - [3146] = 3146, - [3147] = 2174, - [3148] = 949, - [3149] = 407, - [3150] = 2988, - [3151] = 3151, - [3152] = 2176, - [3153] = 924, - [3154] = 409, - [3155] = 926, - [3156] = 730, - [3157] = 3157, + [3138] = 946, + [3139] = 2763, + [3140] = 2748, + [3141] = 2767, + [3142] = 675, + [3143] = 3079, + [3144] = 743, + [3145] = 744, + [3146] = 745, + [3147] = 746, + [3148] = 747, + [3149] = 748, + [3150] = 3063, + [3151] = 749, + [3152] = 3152, + [3153] = 691, + [3154] = 949, + [3155] = 959, + [3156] = 697, + [3157] = 752, [3158] = 3158, - [3159] = 3076, - [3160] = 410, - [3161] = 3161, - [3162] = 897, - [3163] = 719, - [3164] = 398, - [3165] = 695, - [3166] = 2971, + [3159] = 703, + [3160] = 894, + [3161] = 753, + [3162] = 964, + [3163] = 3163, + [3164] = 3164, + [3165] = 3165, + [3166] = 2758, [3167] = 3167, - [3168] = 898, - [3169] = 3169, - [3170] = 2972, - [3171] = 3077, - [3172] = 3083, - [3173] = 3173, - [3174] = 3088, - [3175] = 407, - [3176] = 2973, - [3177] = 720, - [3178] = 389, - [3179] = 3179, - [3180] = 943, - [3181] = 2974, - [3182] = 721, - [3183] = 3040, - [3184] = 3069, - [3185] = 3071, - [3186] = 2944, - [3187] = 3028, - [3188] = 2919, - [3189] = 2950, - [3190] = 2963, - [3191] = 3044, - [3192] = 3047, - [3193] = 3057, - [3194] = 2937, - [3195] = 722, - [3196] = 2975, - [3197] = 735, - [3198] = 3198, - [3199] = 723, - [3200] = 377, - [3201] = 888, - [3202] = 3198, - [3203] = 694, - [3204] = 2191, - [3205] = 763, - [3206] = 764, - [3207] = 3207, - [3208] = 3208, - [3209] = 2967, - [3210] = 2985, - [3211] = 3211, - [3212] = 899, - [3213] = 923, - [3214] = 3040, - [3215] = 3215, - [3216] = 3216, - [3217] = 3217, - [3218] = 3218, - [3219] = 3219, - [3220] = 741, - [3221] = 742, + [3168] = 1579, + [3169] = 415, + [3170] = 3102, + [3171] = 950, + [3172] = 974, + [3173] = 975, + [3174] = 935, + [3175] = 947, + [3176] = 940, + [3177] = 3177, + [3178] = 727, + [3179] = 1616, + [3180] = 750, + [3181] = 751, + [3182] = 2767, + [3183] = 3183, + [3184] = 3184, + [3185] = 3185, + [3186] = 1572, + [3187] = 714, + [3188] = 733, + [3189] = 3189, + [3190] = 910, + [3191] = 911, + [3192] = 912, + [3193] = 913, + [3194] = 3129, + [3195] = 3195, + [3196] = 3196, + [3197] = 740, + [3198] = 416, + [3199] = 742, + [3200] = 926, + [3201] = 3201, + [3202] = 691, + [3203] = 392, + [3204] = 959, + [3205] = 697, + [3206] = 3206, + [3207] = 750, + [3208] = 751, + [3209] = 1582, + [3210] = 3210, + [3211] = 894, + [3212] = 964, + [3213] = 409, + [3214] = 3134, + [3215] = 752, + [3216] = 753, + [3217] = 943, + [3218] = 944, + [3219] = 973, + [3220] = 3220, + [3221] = 3221, [3222] = 3222, [3223] = 3223, [3224] = 3224, [3225] = 3225, - [3226] = 728, - [3227] = 3227, - [3228] = 3228, - [3229] = 3109, + [3226] = 692, + [3227] = 977, + [3228] = 1054, + [3229] = 3229, [3230] = 3230, [3231] = 3231, - [3232] = 3232, - [3233] = 3233, - [3234] = 3234, - [3235] = 408, - [3236] = 409, - [3237] = 410, - [3238] = 408, - [3239] = 3239, - [3240] = 409, - [3241] = 3241, - [3242] = 3242, - [3243] = 3243, - [3244] = 3244, - [3245] = 3245, - [3246] = 3246, - [3247] = 3247, - [3248] = 92, + [3232] = 2748, + [3233] = 895, + [3234] = 946, + [3235] = 975, + [3236] = 935, + [3237] = 3103, + [3238] = 1583, + [3239] = 1585, + [3240] = 1588, + [3241] = 1590, + [3242] = 1591, + [3243] = 1592, + [3244] = 3106, + [3245] = 1594, + [3246] = 893, + [3247] = 2776, + [3248] = 727, [3249] = 3249, [3250] = 3250, [3251] = 3251, - [3252] = 3087, - [3253] = 93, - [3254] = 3254, - [3255] = 3255, - [3256] = 3256, - [3257] = 3257, - [3258] = 3169, - [3259] = 3259, - [3260] = 3260, - [3261] = 3261, - [3262] = 3262, - [3263] = 3263, - [3264] = 410, - [3265] = 3265, - [3266] = 3102, - [3267] = 92, - [3268] = 336, + [3252] = 3252, + [3253] = 493, + [3254] = 1575, + [3255] = 939, + [3256] = 768, + [3257] = 769, + [3258] = 508, + [3259] = 967, + [3260] = 733, + [3261] = 1577, + [3262] = 910, + [3263] = 911, + [3264] = 912, + [3265] = 392, + [3266] = 513, + [3267] = 3267, + [3268] = 3268, [3269] = 3269, - [3270] = 93, - [3271] = 726, + [3270] = 3270, + [3271] = 740, [3272] = 3272, - [3273] = 407, - [3274] = 727, - [3275] = 736, - [3276] = 92, - [3277] = 400, - [3278] = 3146, - [3279] = 737, - [3280] = 3280, - [3281] = 3113, - [3282] = 3114, - [3283] = 3115, - [3284] = 3284, - [3285] = 738, - [3286] = 398, - [3287] = 3161, - [3288] = 3118, - [3289] = 3289, - [3290] = 888, + [3273] = 1580, + [3274] = 3274, + [3275] = 1581, + [3276] = 742, + [3277] = 3277, + [3278] = 926, + [3279] = 3279, + [3280] = 2763, + [3281] = 728, + [3282] = 2764, + [3283] = 729, + [3284] = 730, + [3285] = 731, + [3286] = 3111, + [3287] = 1637, + [3288] = 1638, + [3289] = 1615, + [3290] = 3290, [3291] = 3291, - [3292] = 400, - [3293] = 333, - [3294] = 3294, - [3295] = 3295, - [3296] = 3296, - [3297] = 3297, - [3298] = 93, - [3299] = 3299, - [3300] = 3300, - [3301] = 3167, - [3302] = 3136, - [3303] = 3207, - [3304] = 739, - [3305] = 740, - [3306] = 540, - [3307] = 3307, + [3292] = 3135, + [3293] = 453, + [3294] = 769, + [3295] = 726, + [3296] = 737, + [3297] = 738, + [3298] = 768, + [3299] = 1609, + [3300] = 3269, + [3301] = 3301, + [3302] = 768, + [3303] = 3303, + [3304] = 697, + [3305] = 3305, + [3306] = 1575, + [3307] = 911, [3308] = 3308, - [3309] = 3309, - [3310] = 2967, - [3311] = 3311, - [3312] = 3145, + [3309] = 750, + [3310] = 751, + [3311] = 3210, + [3312] = 415, [3313] = 3313, [3314] = 3314, [3315] = 3315, [3316] = 3316, - [3317] = 3069, - [3318] = 3071, - [3319] = 2944, - [3320] = 3028, - [3321] = 2919, - [3322] = 2950, - [3323] = 2963, - [3324] = 3044, - [3325] = 3047, - [3326] = 3057, - [3327] = 2937, - [3328] = 3328, - [3329] = 3329, - [3330] = 3330, - [3331] = 389, - [3332] = 3332, + [3317] = 3317, + [3318] = 1577, + [3319] = 3319, + [3320] = 738, + [3321] = 3321, + [3322] = 3322, + [3323] = 3323, + [3324] = 894, + [3325] = 420, + [3326] = 3326, + [3327] = 409, + [3328] = 423, + [3329] = 424, + [3330] = 425, + [3331] = 1579, + [3332] = 973, [3333] = 3333, - [3334] = 3079, - [3335] = 400, - [3336] = 408, - [3337] = 409, - [3338] = 410, - [3339] = 3216, - [3340] = 3340, - [3341] = 3341, - [3342] = 398, - [3343] = 720, - [3344] = 378, - [3345] = 721, - [3346] = 3076, - [3347] = 722, - [3348] = 92, - [3349] = 3349, - [3350] = 93, - [3351] = 723, + [3334] = 3334, + [3335] = 3333, + [3336] = 742, + [3337] = 912, + [3338] = 3338, + [3339] = 3339, + [3340] = 769, + [3341] = 935, + [3342] = 913, + [3343] = 3343, + [3344] = 964, + [3345] = 740, + [3346] = 392, + [3347] = 3347, + [3348] = 895, + [3349] = 1581, + [3350] = 3290, + [3351] = 743, [3352] = 3352, - [3353] = 407, + [3353] = 416, [3354] = 3354, - [3355] = 3355, - [3356] = 691, - [3357] = 3357, - [3358] = 98, - [3359] = 3355, - [3360] = 99, - [3361] = 398, - [3362] = 92, - [3363] = 3363, - [3364] = 92, - [3365] = 3365, - [3366] = 446, - [3367] = 3367, - [3368] = 98, - [3369] = 399, - [3370] = 98, - [3371] = 3371, - [3372] = 343, - [3373] = 99, + [3355] = 752, + [3356] = 753, + [3357] = 1582, + [3358] = 1579, + [3359] = 3334, + [3360] = 3360, + [3361] = 3361, + [3362] = 1609, + [3363] = 727, + [3364] = 1615, + [3365] = 1616, + [3366] = 3366, + [3367] = 728, + [3368] = 744, + [3369] = 3369, + [3370] = 1637, + [3371] = 1638, + [3372] = 745, + [3373] = 746, [3374] = 3374, - [3375] = 377, - [3376] = 360, - [3377] = 340, - [3378] = 338, - [3379] = 341, - [3380] = 353, - [3381] = 3355, - [3382] = 342, - [3383] = 349, + [3375] = 3375, + [3376] = 3376, + [3377] = 3377, + [3378] = 3378, + [3379] = 3379, + [3380] = 3380, + [3381] = 726, + [3382] = 737, + [3383] = 3383, [3384] = 3384, - [3385] = 407, - [3386] = 412, - [3387] = 403, - [3388] = 99, - [3389] = 411, - [3390] = 93, - [3391] = 3391, - [3392] = 92, - [3393] = 3355, - [3394] = 3394, - [3395] = 3076, - [3396] = 3355, - [3397] = 93, - [3398] = 99, - [3399] = 98, - [3400] = 93, - [3401] = 3401, - [3402] = 3402, - [3403] = 3402, - [3404] = 3402, + [3385] = 392, + [3386] = 1583, + [3387] = 1585, + [3388] = 1588, + [3389] = 3389, + [3390] = 415, + [3391] = 1590, + [3392] = 1591, + [3393] = 1592, + [3394] = 747, + [3395] = 1594, + [3396] = 3384, + [3397] = 715, + [3398] = 409, + [3399] = 731, + [3400] = 3400, + [3401] = 1580, + [3402] = 3384, + [3403] = 3403, + [3404] = 733, [3405] = 3405, - [3406] = 3406, - [3407] = 105, - [3408] = 3402, - [3409] = 3409, - [3410] = 3401, - [3411] = 3406, - [3412] = 99, - [3413] = 442, - [3414] = 106, - [3415] = 3402, - [3416] = 444, + [3406] = 416, + [3407] = 910, + [3408] = 3408, + [3409] = 967, + [3410] = 1572, + [3411] = 3184, + [3412] = 3158, + [3413] = 3164, + [3414] = 3165, + [3415] = 3267, + [3416] = 3268, [3417] = 3417, - [3418] = 2444, - [3419] = 99, - [3420] = 3405, - [3421] = 3406, - [3422] = 3402, - [3423] = 442, - [3424] = 108, - [3425] = 105, - [3426] = 442, - [3427] = 408, - [3428] = 409, - [3429] = 106, - [3430] = 3405, - [3431] = 3406, - [3432] = 410, - [3433] = 3402, - [3434] = 400, - [3435] = 369, - [3436] = 3405, - [3437] = 3406, - [3438] = 3402, - [3439] = 444, - [3440] = 98, - [3441] = 3402, - [3442] = 3405, - [3443] = 3406, - [3444] = 3402, - [3445] = 98, - [3446] = 3405, - [3447] = 3406, - [3448] = 106, - [3449] = 3449, - [3450] = 98, - [3451] = 3405, - [3452] = 105, - [3453] = 3406, - [3454] = 3402, - [3455] = 3405, - [3456] = 3357, + [3418] = 3270, + [3419] = 3189, + [3420] = 3196, + [3421] = 3206, + [3422] = 3195, + [3423] = 748, + [3424] = 3424, + [3425] = 749, + [3426] = 3389, + [3427] = 926, + [3428] = 974, + [3429] = 975, + [3430] = 3417, + [3431] = 729, + [3432] = 730, + [3433] = 691, + [3434] = 3434, + [3435] = 959, + [3436] = 3189, + [3437] = 3437, + [3438] = 3369, + [3439] = 3439, + [3440] = 3440, + [3441] = 3441, + [3442] = 3442, + [3443] = 3443, + [3444] = 737, + [3445] = 416, + [3446] = 3303, + [3447] = 3447, + [3448] = 738, + [3449] = 675, + [3450] = 420, + [3451] = 423, + [3452] = 424, + [3453] = 425, + [3454] = 3454, + [3455] = 895, + [3456] = 3456, [3457] = 3457, - [3458] = 3406, - [3459] = 3402, - [3460] = 99, - [3461] = 3457, - [3462] = 3449, - [3463] = 3405, - [3464] = 3405, - [3465] = 3406, + [3458] = 3458, + [3459] = 3459, + [3460] = 3315, + [3461] = 3461, + [3462] = 3462, + [3463] = 3408, + [3464] = 102, + [3465] = 3465, [3466] = 3405, - [3467] = 3402, - [3468] = 3405, - [3469] = 3406, - [3470] = 444, - [3471] = 3406, - [3472] = 3405, - [3473] = 3406, - [3474] = 3405, - [3475] = 3406, - [3476] = 3402, - [3477] = 3402, - [3478] = 3409, - [3479] = 3402, - [3480] = 444, - [3481] = 108, - [3482] = 442, - [3483] = 3402, - [3484] = 105, - [3485] = 106, - [3486] = 3402, - [3487] = 3487, - [3488] = 108, - [3489] = 108, - [3490] = 3402, - [3491] = 105, - [3492] = 106, - [3493] = 489, + [3467] = 3467, + [3468] = 3468, + [3469] = 3469, + [3470] = 423, + [3471] = 3471, + [3472] = 3472, + [3473] = 3473, + [3474] = 415, + [3475] = 3475, + [3476] = 3476, + [3477] = 3477, + [3478] = 3478, + [3479] = 3479, + [3480] = 3480, + [3481] = 3481, + [3482] = 3482, + [3483] = 726, + [3484] = 3316, + [3485] = 3485, + [3486] = 3486, + [3487] = 3465, + [3488] = 416, + [3489] = 3489, + [3490] = 3490, + [3491] = 392, + [3492] = 3492, + [3493] = 3493, [3494] = 3494, - [3495] = 3495, - [3496] = 485, - [3497] = 106, - [3498] = 3494, - [3499] = 3495, - [3500] = 459, - [3501] = 3487, - [3502] = 3502, - [3503] = 3494, - [3504] = 3495, - [3505] = 343, - [3506] = 3494, - [3507] = 3495, - [3508] = 342, - [3509] = 3494, - [3510] = 3495, - [3511] = 349, - [3512] = 3494, - [3513] = 3494, - [3514] = 442, - [3515] = 3494, - [3516] = 3494, - [3517] = 3494, - [3518] = 92, - [3519] = 3494, - [3520] = 3494, - [3521] = 3494, - [3522] = 3494, - [3523] = 3494, - [3524] = 3494, + [3495] = 3184, + [3496] = 743, + [3497] = 420, + [3498] = 3498, + [3499] = 3158, + [3500] = 3164, + [3501] = 3165, + [3502] = 3267, + [3503] = 3268, + [3504] = 3269, + [3505] = 3270, + [3506] = 728, + [3507] = 3301, + [3508] = 3508, + [3509] = 3206, + [3510] = 3195, + [3511] = 744, + [3512] = 3512, + [3513] = 3513, + [3514] = 3514, + [3515] = 3515, + [3516] = 3516, + [3517] = 3517, + [3518] = 387, + [3519] = 344, + [3520] = 745, + [3521] = 424, + [3522] = 3522, + [3523] = 746, + [3524] = 1579, [3525] = 3525, - [3526] = 1841, - [3527] = 3495, - [3528] = 340, - [3529] = 3502, - [3530] = 3495, - [3531] = 3495, - [3532] = 3532, - [3533] = 3502, - [3534] = 459, - [3535] = 3502, - [3536] = 470, - [3537] = 3525, - [3538] = 108, - [3539] = 3525, - [3540] = 3540, - [3541] = 105, - [3542] = 108, - [3543] = 3495, - [3544] = 1841, - [3545] = 3495, - [3546] = 106, - [3547] = 3540, - [3548] = 470, - [3549] = 105, - [3550] = 3494, - [3551] = 3495, - [3552] = 3495, - [3553] = 470, - [3554] = 444, + [3526] = 3366, + [3527] = 3527, + [3528] = 101, + [3529] = 3529, + [3530] = 3530, + [3531] = 102, + [3532] = 729, + [3533] = 730, + [3534] = 731, + [3535] = 3424, + [3536] = 3536, + [3537] = 3537, + [3538] = 3538, + [3539] = 747, + [3540] = 415, + [3541] = 3541, + [3542] = 3542, + [3543] = 748, + [3544] = 101, + [3545] = 3545, + [3546] = 3314, + [3547] = 3547, + [3548] = 3548, + [3549] = 3549, + [3550] = 3343, + [3551] = 101, + [3552] = 3552, + [3553] = 3553, + [3554] = 3313, [3555] = 3555, - [3556] = 3525, - [3557] = 3540, - [3558] = 3540, - [3559] = 442, - [3560] = 341, - [3561] = 108, - [3562] = 497, - [3563] = 459, - [3564] = 93, - [3565] = 470, - [3566] = 3494, - [3567] = 3495, - [3568] = 360, - [3569] = 459, - [3570] = 3570, - [3571] = 444, - [3572] = 333, - [3573] = 3573, - [3574] = 3573, - [3575] = 459, - [3576] = 3573, - [3577] = 645, - [3578] = 503, - [3579] = 500, - [3580] = 3573, - [3581] = 3581, - [3582] = 3582, - [3583] = 500, - [3584] = 490, - [3585] = 503, - [3586] = 3573, - [3587] = 3573, - [3588] = 490, - [3589] = 99, - [3590] = 470, - [3591] = 3591, - [3592] = 338, - [3593] = 353, - [3594] = 3573, - [3595] = 470, - [3596] = 490, - [3597] = 500, - [3598] = 645, - [3599] = 3599, - [3600] = 642, - [3601] = 98, - [3602] = 3573, - [3603] = 642, - [3604] = 459, - [3605] = 3573, - [3606] = 645, - [3607] = 3573, - [3608] = 642, - [3609] = 93, - [3610] = 336, - [3611] = 92, - [3612] = 3573, - [3613] = 3613, - [3614] = 503, - [3615] = 3573, - [3616] = 500, - [3617] = 503, - [3618] = 490, - [3619] = 3573, - [3620] = 3581, - [3621] = 333, - [3622] = 444, + [3556] = 3384, + [3557] = 3317, + [3558] = 749, + [3559] = 3559, + [3560] = 3560, + [3561] = 345, + [3562] = 3562, + [3563] = 3563, + [3564] = 3564, + [3565] = 425, + [3566] = 102, + [3567] = 3434, + [3568] = 3568, + [3569] = 3403, + [3570] = 3196, + [3571] = 3571, + [3572] = 3572, + [3573] = 103, + [3574] = 101, + [3575] = 412, + [3576] = 103, + [3577] = 3572, + [3578] = 101, + [3579] = 3579, + [3580] = 415, + [3581] = 109, + [3582] = 409, + [3583] = 102, + [3584] = 358, + [3585] = 103, + [3586] = 359, + [3587] = 422, + [3588] = 352, + [3589] = 350, + [3590] = 3590, + [3591] = 109, + [3592] = 102, + [3593] = 3572, + [3594] = 715, + [3595] = 3595, + [3596] = 3596, + [3597] = 102, + [3598] = 367, + [3599] = 360, + [3600] = 3600, + [3601] = 413, + [3602] = 361, + [3603] = 101, + [3604] = 109, + [3605] = 3384, + [3606] = 363, + [3607] = 3607, + [3608] = 416, + [3609] = 417, + [3610] = 3610, + [3611] = 3611, + [3612] = 3572, + [3613] = 3572, + [3614] = 3614, + [3615] = 420, + [3616] = 116, + [3617] = 3617, + [3618] = 3617, + [3619] = 3619, + [3620] = 453, + [3621] = 3621, + [3622] = 3614, [3623] = 3623, - [3624] = 353, - [3625] = 704, - [3626] = 503, - [3627] = 3627, - [3628] = 3628, - [3629] = 3629, - [3630] = 442, - [3631] = 444, - [3632] = 489, - [3633] = 3633, - [3634] = 692, - [3635] = 675, - [3636] = 698, - [3637] = 442, - [3638] = 491, - [3639] = 645, - [3640] = 338, - [3641] = 3641, - [3642] = 3642, - [3643] = 3643, - [3644] = 98, - [3645] = 490, - [3646] = 3646, - [3647] = 333, - [3648] = 3648, - [3649] = 490, - [3650] = 3646, - [3651] = 3641, - [3652] = 106, - [3653] = 333, - [3654] = 3654, - [3655] = 485, - [3656] = 3646, - [3657] = 3648, - [3658] = 3627, - [3659] = 3659, - [3660] = 485, - [3661] = 465, - [3662] = 3662, - [3663] = 466, - [3664] = 493, - [3665] = 3646, - [3666] = 3628, - [3667] = 486, - [3668] = 493, - [3669] = 486, - [3670] = 3646, - [3671] = 3671, - [3672] = 3555, - [3673] = 645, - [3674] = 3674, - [3675] = 3646, - [3676] = 1830, - [3677] = 336, - [3678] = 444, - [3679] = 444, - [3680] = 645, - [3681] = 442, - [3682] = 497, - [3683] = 503, - [3684] = 2521, - [3685] = 3646, - [3686] = 3686, - [3687] = 642, - [3688] = 3688, - [3689] = 3689, - [3690] = 493, - [3691] = 3633, - [3692] = 2549, - [3693] = 642, - [3694] = 500, - [3695] = 3671, - [3696] = 3613, - [3697] = 3646, - [3698] = 3643, - [3699] = 484, - [3700] = 442, + [3624] = 3621, + [3625] = 3625, + [3626] = 3617, + [3627] = 423, + [3628] = 467, + [3629] = 122, + [3630] = 3621, + [3631] = 109, + [3632] = 3625, + [3633] = 103, + [3634] = 3617, + [3635] = 118, + [3636] = 453, + [3637] = 424, + [3638] = 103, + [3639] = 3625, + [3640] = 3621, + [3641] = 118, + [3642] = 3625, + [3643] = 3617, + [3644] = 453, + [3645] = 3621, + [3646] = 116, + [3647] = 103, + [3648] = 122, + [3649] = 3617, + [3650] = 116, + [3651] = 467, + [3652] = 467, + [3653] = 3653, + [3654] = 3621, + [3655] = 3625, + [3656] = 3617, + [3657] = 109, + [3658] = 3617, + [3659] = 425, + [3660] = 3621, + [3661] = 3625, + [3662] = 3617, + [3663] = 3653, + [3664] = 3617, + [3665] = 109, + [3666] = 3590, + [3667] = 3621, + [3668] = 3625, + [3669] = 3617, + [3670] = 118, + [3671] = 3625, + [3672] = 3621, + [3673] = 3625, + [3674] = 3617, + [3675] = 3675, + [3676] = 3676, + [3677] = 3621, + [3678] = 2673, + [3679] = 3621, + [3680] = 3625, + [3681] = 3617, + [3682] = 3625, + [3683] = 3617, + [3684] = 122, + [3685] = 3621, + [3686] = 3625, + [3687] = 3617, + [3688] = 3621, + [3689] = 3625, + [3690] = 3623, + [3691] = 3617, + [3692] = 3617, + [3693] = 3617, + [3694] = 3617, + [3695] = 3617, + [3696] = 381, + [3697] = 3617, + [3698] = 3621, + [3699] = 3625, + [3700] = 3619, [3701] = 3701, - [3702] = 3646, - [3703] = 486, - [3704] = 497, - [3705] = 500, - [3706] = 3706, - [3707] = 3581, - [3708] = 3674, - [3709] = 3646, - [3710] = 3487, - [3711] = 2539, - [3712] = 3591, - [3713] = 3706, + [3702] = 502, + [3703] = 3703, + [3704] = 478, + [3705] = 367, + [3706] = 478, + [3707] = 470, + [3708] = 453, + [3709] = 118, + [3710] = 122, + [3711] = 116, + [3712] = 498, + [3713] = 358, [3714] = 3714, - [3715] = 3715, - [3716] = 3654, - [3717] = 108, - [3718] = 484, - [3719] = 642, - [3720] = 3671, - [3721] = 3659, - [3722] = 3671, - [3723] = 99, - [3724] = 3688, - [3725] = 3686, - [3726] = 498, - [3727] = 3642, - [3728] = 3646, - [3729] = 3629, - [3730] = 105, - [3731] = 3731, - [3732] = 3732, - [3733] = 3733, - [3734] = 3734, - [3735] = 3735, - [3736] = 3736, - [3737] = 2597, - [3738] = 2598, - [3739] = 2990, - [3740] = 2992, - [3741] = 444, - [3742] = 444, - [3743] = 3731, - [3744] = 3744, - [3745] = 3745, - [3746] = 442, - [3747] = 3747, - [3748] = 3748, - [3749] = 3749, - [3750] = 3750, - [3751] = 3751, - [3752] = 3752, - [3753] = 3753, - [3754] = 3754, - [3755] = 338, - [3756] = 3714, - [3757] = 3715, - [3758] = 353, - [3759] = 459, - [3760] = 3752, - [3761] = 3761, - [3762] = 3762, - [3763] = 3763, - [3764] = 3764, - [3765] = 444, - [3766] = 3751, - [3767] = 3767, - [3768] = 3768, - [3769] = 3769, - [3770] = 1446, - [3771] = 2785, - [3772] = 2785, - [3773] = 2538, - [3774] = 3774, - [3775] = 3775, - [3776] = 489, - [3777] = 497, - [3778] = 338, - [3779] = 485, - [3780] = 704, - [3781] = 3747, - [3782] = 3748, - [3783] = 3749, - [3784] = 3784, - [3785] = 3752, - [3786] = 3786, + [3715] = 3703, + [3716] = 3716, + [3717] = 3717, + [3718] = 467, + [3719] = 3701, + [3720] = 102, + [3721] = 3676, + [3722] = 101, + [3723] = 3723, + [3724] = 3714, + [3725] = 3703, + [3726] = 3714, + [3727] = 470, + [3728] = 512, + [3729] = 453, + [3730] = 3714, + [3731] = 3703, + [3732] = 3716, + [3733] = 3717, + [3734] = 3701, + [3735] = 3714, + [3736] = 3716, + [3737] = 3701, + [3738] = 3714, + [3739] = 118, + [3740] = 3701, + [3741] = 3714, + [3742] = 359, + [3743] = 360, + [3744] = 3714, + [3745] = 3717, + [3746] = 3701, + [3747] = 3714, + [3748] = 122, + [3749] = 3701, + [3750] = 3714, + [3751] = 3701, + [3752] = 3714, + [3753] = 361, + [3754] = 3701, + [3755] = 363, + [3756] = 116, + [3757] = 3701, + [3758] = 3701, + [3759] = 3701, + [3760] = 3701, + [3761] = 3701, + [3762] = 3701, + [3763] = 3701, + [3764] = 3701, + [3765] = 478, + [3766] = 3714, + [3767] = 3714, + [3768] = 1402, + [3769] = 344, + [3770] = 3770, + [3771] = 3716, + [3772] = 3701, + [3773] = 3773, + [3774] = 118, + [3775] = 467, + [3776] = 122, + [3777] = 116, + [3778] = 470, + [3779] = 3717, + [3780] = 101, + [3781] = 470, + [3782] = 3782, + [3783] = 513, + [3784] = 523, + [3785] = 3782, + [3786] = 3782, [3787] = 3787, - [3788] = 3788, - [3789] = 3789, + [3788] = 3782, + [3789] = 109, [3790] = 3790, - [3791] = 343, - [3792] = 3792, - [3793] = 470, - [3794] = 3794, - [3795] = 360, - [3796] = 340, - [3797] = 353, - [3798] = 341, - [3799] = 342, - [3800] = 349, - [3801] = 459, - [3802] = 3744, - [3803] = 3803, - [3804] = 3745, - [3805] = 3748, - [3806] = 3749, - [3807] = 692, - [3808] = 675, - [3809] = 698, - [3810] = 470, - [3811] = 3750, - [3812] = 334, - [3813] = 459, - [3814] = 3814, - [3815] = 3786, - [3816] = 3816, - [3817] = 1940, - [3818] = 3818, - [3819] = 3747, + [3791] = 102, + [3792] = 3782, + [3793] = 3782, + [3794] = 3782, + [3795] = 493, + [3796] = 3782, + [3797] = 522, + [3798] = 523, + [3799] = 3782, + [3800] = 3800, + [3801] = 3782, + [3802] = 3782, + [3803] = 493, + [3804] = 3804, + [3805] = 103, + [3806] = 3782, + [3807] = 522, + [3808] = 345, + [3809] = 493, + [3810] = 3782, + [3811] = 352, + [3812] = 350, + [3813] = 478, + [3814] = 478, + [3815] = 3782, + [3816] = 3800, + [3817] = 508, + [3818] = 470, + [3819] = 508, [3820] = 3820, - [3821] = 3748, - [3822] = 3749, - [3823] = 3752, - [3824] = 3824, - [3825] = 3747, - [3826] = 3748, - [3827] = 3749, - [3828] = 3752, - [3829] = 3747, - [3830] = 3748, - [3831] = 3749, - [3832] = 3752, - [3833] = 3747, - [3834] = 3752, - [3835] = 3747, - [3836] = 3836, - [3837] = 3752, - [3838] = 442, - [3839] = 3747, - [3840] = 3752, - [3841] = 3841, - [3842] = 3842, - [3843] = 3843, - [3844] = 1940, - [3845] = 3845, - [3846] = 697, - [3847] = 2545, - [3848] = 697, - [3849] = 470, - [3850] = 459, - [3851] = 444, - [3852] = 470, - [3853] = 704, - [3854] = 108, - [3855] = 105, - [3856] = 106, - [3857] = 3857, + [3821] = 508, + [3822] = 513, + [3823] = 513, + [3824] = 344, + [3825] = 3782, + [3826] = 1458, + [3827] = 503, + [3828] = 467, + [3829] = 498, + [3830] = 503, + [3831] = 512, + [3832] = 492, + [3833] = 3833, + [3834] = 122, + [3835] = 3835, + [3836] = 523, + [3837] = 3837, + [3838] = 3838, + [3839] = 2050, + [3840] = 3840, + [3841] = 3773, + [3842] = 3787, + [3843] = 496, + [3844] = 489, + [3845] = 116, + [3846] = 345, + [3847] = 3847, + [3848] = 3848, + [3849] = 467, + [3850] = 352, + [3851] = 3835, + [3852] = 3800, + [3853] = 3853, + [3854] = 3854, + [3855] = 3835, + [3856] = 3856, + [3857] = 1465, [3858] = 3858, - [3859] = 3859, - [3860] = 704, - [3861] = 692, - [3862] = 675, - [3863] = 698, - [3864] = 3747, - [3865] = 3731, - [3866] = 3744, - [3867] = 3745, - [3868] = 442, - [3869] = 692, - [3870] = 675, - [3871] = 3871, - [3872] = 698, - [3873] = 444, - [3874] = 3818, - [3875] = 3875, - [3876] = 3731, - [3877] = 3744, - [3878] = 3745, - [3879] = 3879, - [3880] = 442, - [3881] = 3775, - [3882] = 3784, - [3883] = 369, - [3884] = 339, - [3885] = 961, - [3886] = 931, - [3887] = 3887, - [3888] = 3105, - [3889] = 369, - [3890] = 490, - [3891] = 3137, - [3892] = 645, + [3859] = 3835, + [3860] = 3860, + [3861] = 503, + [3862] = 496, + [3863] = 3835, + [3864] = 1466, + [3865] = 3835, + [3866] = 453, + [3867] = 3867, + [3868] = 3848, + [3869] = 3867, + [3870] = 3835, + [3871] = 522, + [3872] = 344, + [3873] = 3835, + [3874] = 3874, + [3875] = 103, + [3876] = 3835, + [3877] = 350, + [3878] = 522, + [3879] = 467, + [3880] = 502, + [3881] = 493, + [3882] = 3853, + [3883] = 3820, + [3884] = 3884, + [3885] = 508, + [3886] = 496, + [3887] = 498, + [3888] = 453, + [3889] = 513, + [3890] = 3890, + [3891] = 3835, + [3892] = 109, [3893] = 3893, - [3894] = 3139, - [3895] = 3140, - [3896] = 497, - [3897] = 3897, - [3898] = 3142, - [3899] = 485, - [3900] = 967, - [3901] = 444, - [3902] = 3753, - [3903] = 699, - [3904] = 886, - [3905] = 3613, - [3906] = 3591, - [3907] = 2785, - [3908] = 948, - [3909] = 954, - [3910] = 3910, - [3911] = 709, - [3912] = 3912, - [3913] = 3887, - [3914] = 941, - [3915] = 3897, - [3916] = 459, - [3917] = 3910, - [3918] = 3918, - [3919] = 958, - [3920] = 3920, - [3921] = 886, - [3922] = 941, - [3923] = 500, - [3924] = 2990, - [3925] = 2992, - [3926] = 959, - [3927] = 948, - [3928] = 954, - [3929] = 503, - [3930] = 958, - [3931] = 490, - [3932] = 959, - [3933] = 3897, - [3934] = 336, - [3935] = 886, - [3936] = 960, - [3937] = 705, - [3938] = 960, - [3939] = 3939, + [3894] = 3856, + [3895] = 3884, + [3896] = 3837, + [3897] = 3838, + [3898] = 522, + [3899] = 3874, + [3900] = 3833, + [3901] = 3847, + [3902] = 3902, + [3903] = 3903, + [3904] = 3840, + [3905] = 3905, + [3906] = 711, + [3907] = 502, + [3908] = 3908, + [3909] = 721, + [3910] = 704, + [3911] = 687, + [3912] = 523, + [3913] = 3893, + [3914] = 344, + [3915] = 506, + [3916] = 453, + [3917] = 3917, + [3918] = 3835, + [3919] = 3835, + [3920] = 118, + [3921] = 493, + [3922] = 3902, + [3923] = 3903, + [3924] = 508, + [3925] = 3676, + [3926] = 513, + [3927] = 3890, + [3928] = 484, + [3929] = 481, + [3930] = 523, + [3931] = 3848, + [3932] = 3848, + [3933] = 506, + [3934] = 3934, + [3935] = 350, + [3936] = 3936, + [3937] = 3937, + [3938] = 3938, + [3939] = 453, [3940] = 3940, - [3941] = 937, - [3942] = 3871, - [3943] = 961, - [3944] = 931, - [3945] = 3945, - [3946] = 500, - [3947] = 351, - [3948] = 503, - [3949] = 357, - [3950] = 490, - [3951] = 3845, - [3952] = 3144, - [3953] = 3953, + [3941] = 1467, + [3942] = 3942, + [3943] = 502, + [3944] = 3934, + [3945] = 467, + [3946] = 3946, + [3947] = 3947, + [3948] = 3948, + [3949] = 3937, + [3950] = 3937, + [3951] = 3951, + [3952] = 498, + [3953] = 1494, [3954] = 3954, - [3955] = 3912, - [3956] = 3887, - [3957] = 3897, + [3955] = 3955, + [3956] = 3934, + [3957] = 3957, [3958] = 3958, - [3959] = 3875, - [3960] = 3910, - [3961] = 941, - [3962] = 3157, - [3963] = 3879, - [3964] = 3129, - [3965] = 3965, - [3966] = 3912, - [3967] = 3887, - [3968] = 1980, - [3969] = 3912, - [3970] = 3953, - [3971] = 961, - [3972] = 3371, - [3973] = 931, - [3974] = 3912, - [3975] = 3887, - [3976] = 3976, - [3977] = 642, - [3978] = 3910, - [3979] = 3912, - [3980] = 3887, - [3981] = 3910, - [3982] = 3910, - [3983] = 3768, - [3984] = 3769, - [3985] = 470, - [3986] = 3912, - [3987] = 3887, - [3988] = 3910, - [3989] = 3754, - [3990] = 503, - [3991] = 3912, - [3992] = 3887, - [3993] = 334, - [3994] = 3910, - [3995] = 459, - [3996] = 3912, - [3997] = 3997, - [3998] = 3912, - [3999] = 3912, - [4000] = 3912, - [4001] = 3116, - [4002] = 470, - [4003] = 3912, - [4004] = 3912, + [3959] = 3959, + [3960] = 3937, + [3961] = 478, + [3962] = 122, + [3963] = 3963, + [3964] = 3934, + [3965] = 3940, + [3966] = 3937, + [3967] = 3967, + [3968] = 3957, + [3969] = 453, + [3970] = 350, + [3971] = 352, + [3972] = 116, + [3973] = 1665, + [3974] = 3937, + [3975] = 3975, + [3976] = 3967, + [3977] = 3977, + [3978] = 478, + [3979] = 3979, + [3980] = 3980, + [3981] = 3981, + [3982] = 3982, + [3983] = 3983, + [3984] = 470, + [3985] = 3934, + [3986] = 3986, + [3987] = 3967, + [3988] = 3000, + [3989] = 3989, + [3990] = 3957, + [3991] = 3991, + [3992] = 3992, + [3993] = 3993, + [3994] = 3934, + [3995] = 3995, + [3996] = 3996, + [3997] = 3937, + [3998] = 3998, + [3999] = 3999, + [4000] = 4000, + [4001] = 4001, + [4002] = 453, + [4003] = 348, + [4004] = 361, [4005] = 4005, - [4006] = 3912, - [4007] = 3120, - [4008] = 3912, - [4009] = 3912, - [4010] = 3912, - [4011] = 3912, - [4012] = 948, - [4013] = 954, - [4014] = 3940, - [4015] = 500, - [4016] = 4016, - [4017] = 503, - [4018] = 490, - [4019] = 3887, - [4020] = 958, - [4021] = 4021, - [4022] = 4022, - [4023] = 3939, - [4024] = 500, - [4025] = 4025, - [4026] = 959, - [4027] = 2789, - [4028] = 333, - [4029] = 4029, - [4030] = 886, - [4031] = 960, - [4032] = 470, - [4033] = 4033, - [4034] = 3893, - [4035] = 459, - [4036] = 3912, - [4037] = 4037, - [4038] = 1980, - [4039] = 2081, - [4040] = 3893, - [4041] = 3893, - [4042] = 444, - [4043] = 470, - [4044] = 459, - [4045] = 4045, - [4046] = 4045, - [4047] = 3910, - [4048] = 4048, - [4049] = 4049, - [4050] = 4050, - [4051] = 442, - [4052] = 4052, - [4053] = 4053, - [4054] = 4054, - [4055] = 3137, - [4056] = 960, - [4057] = 967, - [4058] = 719, - [4059] = 338, - [4060] = 4060, - [4061] = 961, - [4062] = 931, - [4063] = 1807, - [4064] = 3139, - [4065] = 353, - [4066] = 4029, - [4067] = 1808, - [4068] = 4068, - [4069] = 4069, - [4070] = 4070, - [4071] = 720, - [4072] = 3140, - [4073] = 3142, - [4074] = 721, - [4075] = 722, - [4076] = 2517, - [4077] = 967, - [4078] = 4078, - [4079] = 723, - [4080] = 2526, - [4081] = 4081, - [4082] = 4082, + [4006] = 4006, + [4007] = 3934, + [4008] = 4008, + [4009] = 4009, + [4010] = 3967, + [4011] = 4011, + [4012] = 3957, + [4013] = 3934, + [4014] = 4014, + [4015] = 381, + [4016] = 467, + [4017] = 4017, + [4018] = 3937, + [4019] = 453, + [4020] = 4020, + [4021] = 3905, + [4022] = 721, + [4023] = 4023, + [4024] = 470, + [4025] = 3967, + [4026] = 3917, + [4027] = 704, + [4028] = 711, + [4029] = 3957, + [4030] = 721, + [4031] = 704, + [4032] = 687, + [4033] = 3934, + [4034] = 352, + [4035] = 3977, + [4036] = 3967, + [4037] = 3957, + [4038] = 711, + [4039] = 3979, + [4040] = 3982, + [4041] = 3986, + [4042] = 3982, + [4043] = 360, + [4044] = 3986, + [4045] = 3979, + [4046] = 687, + [4047] = 3000, + [4048] = 3937, + [4049] = 453, + [4050] = 359, + [4051] = 467, + [4052] = 1463, + [4053] = 4017, + [4054] = 3937, + [4055] = 470, + [4056] = 512, + [4057] = 4057, + [4058] = 118, + [4059] = 3934, + [4060] = 3979, + [4061] = 3982, + [4062] = 3986, + [4063] = 4063, + [4064] = 4064, + [4065] = 4065, + [4066] = 363, + [4067] = 367, + [4068] = 3967, + [4069] = 3942, + [4070] = 4011, + [4071] = 4020, + [4072] = 467, + [4073] = 4073, + [4074] = 3957, + [4075] = 693, + [4076] = 3250, + [4077] = 478, + [4078] = 3251, + [4079] = 358, + [4080] = 4080, + [4081] = 345, + [4082] = 2197, [4083] = 4083, - [4084] = 4084, + [4084] = 478, [4085] = 4085, [4086] = 4086, - [4087] = 4016, - [4088] = 4088, - [4089] = 4089, - [4090] = 4090, - [4091] = 4091, - [4092] = 4092, - [4093] = 4093, - [4094] = 4094, - [4095] = 4095, - [4096] = 724, - [4097] = 2945, + [4087] = 949, + [4088] = 688, + [4089] = 3995, + [4090] = 470, + [4091] = 3996, + [4092] = 3360, + [4093] = 943, + [4094] = 3787, + [4095] = 3820, + [4096] = 3000, + [4097] = 4097, [4098] = 4098, - [4099] = 4099, - [4100] = 3144, - [4101] = 4101, - [4102] = 899, - [4103] = 2948, - [4104] = 886, - [4105] = 726, - [4106] = 727, - [4107] = 728, - [4108] = 339, - [4109] = 730, - [4110] = 4110, - [4111] = 2541, - [4112] = 941, - [4113] = 735, - [4114] = 4114, - [4115] = 736, - [4116] = 737, - [4117] = 738, - [4118] = 948, - [4119] = 739, - [4120] = 954, - [4121] = 740, - [4122] = 741, - [4123] = 742, - [4124] = 958, - [4125] = 959, - [4126] = 4126, - [4127] = 886, - [4128] = 4128, - [4129] = 4129, - [4130] = 937, - [4131] = 4131, - [4132] = 4132, - [4133] = 4133, - [4134] = 4016, - [4135] = 704, - [4136] = 4136, - [4137] = 4137, - [4138] = 4138, - [4139] = 4139, - [4140] = 343, - [4141] = 4050, + [4099] = 4085, + [4100] = 4100, + [4101] = 493, + [4102] = 348, + [4103] = 4103, + [4104] = 944, + [4105] = 4105, + [4106] = 4106, + [4107] = 4107, + [4108] = 4108, + [4109] = 3376, + [4110] = 4107, + [4111] = 4085, + [4112] = 943, + [4113] = 4100, + [4114] = 4085, + [4115] = 4100, + [4116] = 4085, + [4117] = 4100, + [4118] = 4103, + [4119] = 4119, + [4120] = 944, + [4121] = 4107, + [4122] = 4103, + [4123] = 4085, + [4124] = 4100, + [4125] = 4125, + [4126] = 4107, + [4127] = 4107, + [4128] = 502, + [4129] = 4085, + [4130] = 4100, + [4131] = 4107, + [4132] = 977, + [4133] = 4103, + [4134] = 4085, + [4135] = 4100, + [4136] = 3380, + [4137] = 4107, + [4138] = 949, + [4139] = 4107, + [4140] = 4085, + [4141] = 4100, [4142] = 4142, - [4143] = 948, - [4144] = 4144, - [4145] = 954, - [4146] = 960, - [4147] = 4147, - [4148] = 444, - [4149] = 4149, - [4150] = 360, + [4143] = 4107, + [4144] = 4085, + [4145] = 4100, + [4146] = 1054, + [4147] = 946, + [4148] = 4107, + [4149] = 4085, + [4150] = 3980, [4151] = 4151, - [4152] = 3918, - [4153] = 340, + [4152] = 950, + [4153] = 4085, [4154] = 4154, - [4155] = 2570, - [4156] = 4156, - [4157] = 961, - [4158] = 931, - [4159] = 941, - [4160] = 341, - [4161] = 342, - [4162] = 349, - [4163] = 695, - [4164] = 4164, - [4165] = 694, - [4166] = 4166, - [4167] = 3997, - [4168] = 2540, - [4169] = 4050, + [4155] = 692, + [4156] = 478, + [4157] = 4085, + [4158] = 4085, + [4159] = 940, + [4160] = 4085, + [4161] = 893, + [4162] = 4085, + [4163] = 478, + [4164] = 4006, + [4165] = 1533, + [4166] = 470, + [4167] = 4085, + [4168] = 4168, + [4169] = 4085, [4170] = 4170, - [4171] = 4092, - [4172] = 4172, + [4171] = 4085, + [4172] = 4085, [4173] = 4173, - [4174] = 948, - [4175] = 4175, - [4176] = 930, - [4177] = 954, - [4178] = 692, - [4179] = 4088, - [4180] = 4050, - [4181] = 1395, - [4182] = 4182, - [4183] = 675, - [4184] = 4184, - [4185] = 4185, - [4186] = 698, + [4174] = 4085, + [4175] = 4085, + [4176] = 4176, + [4177] = 893, + [4178] = 3250, + [4179] = 3377, + [4180] = 950, + [4181] = 712, + [4182] = 3251, + [4183] = 4183, + [4184] = 3378, + [4185] = 508, + [4186] = 364, [4187] = 4187, - [4188] = 4188, - [4189] = 4189, - [4190] = 4190, - [4191] = 3714, - [4192] = 3715, - [4193] = 4050, - [4194] = 4194, - [4195] = 4195, + [4188] = 3999, + [4189] = 4000, + [4190] = 365, + [4191] = 498, + [4192] = 522, + [4193] = 4142, + [4194] = 3379, + [4195] = 3374, [4196] = 4196, - [4197] = 887, - [4198] = 4198, - [4199] = 4199, - [4200] = 958, - [4201] = 4201, - [4202] = 4202, - [4203] = 4203, - [4204] = 4050, - [4205] = 4205, - [4206] = 3116, - [4207] = 697, - [4208] = 959, - [4209] = 500, - [4210] = 3120, - [4211] = 1781, - [4212] = 4212, - [4213] = 4050, - [4214] = 936, - [4215] = 2857, - [4216] = 4216, - [4217] = 4217, - [4218] = 503, - [4219] = 886, - [4220] = 4220, - [4221] = 490, - [4222] = 960, - [4223] = 967, - [4224] = 4050, - [4225] = 4225, - [4226] = 4226, - [4227] = 4227, - [4228] = 4228, - [4229] = 958, - [4230] = 4050, - [4231] = 4231, - [4232] = 4232, - [4233] = 1782, - [4234] = 888, + [4197] = 344, + [4198] = 3579, + [4199] = 3375, + [4200] = 354, + [4201] = 3955, + [4202] = 977, + [4203] = 4119, + [4204] = 523, + [4205] = 453, + [4206] = 4206, + [4207] = 4183, + [4208] = 4119, + [4209] = 513, + [4210] = 493, + [4211] = 508, + [4212] = 3963, + [4213] = 513, + [4214] = 893, + [4215] = 4108, + [4216] = 493, + [4217] = 4119, + [4218] = 478, + [4219] = 4219, + [4220] = 947, + [4221] = 3323, + [4222] = 508, + [4223] = 381, + [4224] = 947, + [4225] = 4206, + [4226] = 4100, + [4227] = 470, + [4228] = 3322, + [4229] = 940, + [4230] = 946, + [4231] = 513, + [4232] = 470, + [4233] = 4085, + [4234] = 4234, [4235] = 4235, [4236] = 4236, - [4237] = 4237, - [4238] = 4238, - [4239] = 4239, + [4237] = 3917, + [4238] = 2023, + [4239] = 513, [4240] = 4240, - [4241] = 4241, - [4242] = 4050, - [4243] = 4243, - [4244] = 4244, - [4245] = 503, - [4246] = 3532, + [4241] = 943, + [4242] = 4242, + [4243] = 944, + [4244] = 3675, + [4245] = 946, + [4246] = 940, [4247] = 4247, - [4248] = 3570, - [4249] = 961, + [4248] = 4248, + [4249] = 977, [4250] = 4250, [4251] = 4251, [4252] = 4252, - [4253] = 931, - [4254] = 4050, - [4255] = 4232, + [4253] = 4253, + [4254] = 4254, + [4255] = 4255, [4256] = 4256, - [4257] = 4257, - [4258] = 4258, + [4257] = 949, + [4258] = 950, [4259] = 4259, [4260] = 4260, - [4261] = 4261, - [4262] = 960, - [4263] = 937, + [4261] = 913, + [4262] = 4262, + [4263] = 4263, [4264] = 4264, - [4265] = 4265, - [4266] = 351, + [4265] = 726, + [4266] = 4266, [4267] = 4267, - [4268] = 3417, - [4269] = 4269, - [4270] = 4270, - [4271] = 4271, - [4272] = 4272, - [4273] = 4138, - [4274] = 357, - [4275] = 2927, - [4276] = 2530, - [4277] = 2928, + [4268] = 3376, + [4269] = 3377, + [4270] = 737, + [4271] = 738, + [4272] = 3378, + [4273] = 4250, + [4274] = 3379, + [4275] = 4275, + [4276] = 4276, + [4277] = 4277, [4278] = 4278, - [4279] = 4084, - [4280] = 4280, - [4281] = 3131, - [4282] = 1357, - [4283] = 4050, + [4279] = 4279, + [4280] = 740, + [4281] = 728, + [4282] = 977, + [4283] = 4283, [4284] = 4284, [4285] = 4285, - [4286] = 959, + [4286] = 4286, [4287] = 4287, - [4288] = 4288, - [4289] = 4289, + [4288] = 3361, + [4289] = 508, [4290] = 4290, - [4291] = 500, + [4291] = 4250, [4292] = 4292, [4293] = 4293, [4294] = 4294, - [4295] = 4295, - [4296] = 4296, - [4297] = 4297, + [4295] = 3380, + [4296] = 493, + [4297] = 729, [4298] = 4298, [4299] = 4299, [4300] = 4300, - [4301] = 937, + [4301] = 4301, [4302] = 4302, - [4303] = 490, + [4303] = 3374, [4304] = 4304, - [4305] = 4185, - [4306] = 3105, - [4307] = 4307, + [4305] = 4250, + [4306] = 2776, + [4307] = 730, [4308] = 4308, - [4309] = 4309, - [4310] = 500, + [4309] = 3220, + [4310] = 4310, [4311] = 4311, [4312] = 4312, - [4313] = 4050, - [4314] = 503, - [4315] = 4050, - [4316] = 4316, - [4317] = 490, - [4318] = 368, - [4319] = 4319, - [4320] = 4320, + [4313] = 2748, + [4314] = 949, + [4315] = 2763, + [4316] = 4250, + [4317] = 4317, + [4318] = 4318, + [4319] = 950, + [4320] = 946, [4321] = 4321, - [4322] = 4322, - [4323] = 4133, - [4324] = 4324, + [4322] = 513, + [4323] = 4323, + [4324] = 4250, [4325] = 4325, [4326] = 4326, - [4327] = 4327, - [4328] = 4328, - [4329] = 4329, - [4330] = 4330, - [4331] = 4331, - [4332] = 1792, - [4333] = 1793, + [4327] = 691, + [4328] = 350, + [4329] = 731, + [4330] = 697, + [4331] = 2764, + [4332] = 4250, + [4333] = 2029, [4334] = 4334, - [4335] = 923, - [4336] = 4336, - [4337] = 4337, - [4338] = 4338, - [4339] = 4339, - [4340] = 4340, + [4335] = 947, + [4336] = 453, + [4337] = 946, + [4338] = 493, + [4339] = 4250, + [4340] = 4250, [4341] = 4341, - [4342] = 500, - [4343] = 4050, - [4344] = 4344, + [4342] = 1054, + [4343] = 2758, + [4344] = 4326, [4345] = 4345, [4346] = 4346, - [4347] = 4347, + [4347] = 352, [4348] = 4348, - [4349] = 503, - [4350] = 941, + [4349] = 4349, + [4350] = 4350, [4351] = 4351, - [4352] = 4280, - [4353] = 490, - [4354] = 961, - [4355] = 4271, - [4356] = 4272, - [4357] = 931, - [4358] = 4267, - [4359] = 4359, - [4360] = 4280, - [4361] = 4271, - [4362] = 4272, - [4363] = 4267, + [4352] = 4352, + [4353] = 508, + [4354] = 3375, + [4355] = 4355, + [4356] = 4356, + [4357] = 947, + [4358] = 4358, + [4359] = 742, + [4360] = 4360, + [4361] = 4361, + [4362] = 2024, + [4363] = 893, [4364] = 4364, - [4365] = 4365, - [4366] = 4050, + [4365] = 513, + [4366] = 364, [4367] = 4367, - [4368] = 930, + [4368] = 743, [4369] = 4369, [4370] = 4370, - [4371] = 4371, - [4372] = 4372, + [4371] = 4250, + [4372] = 894, [4373] = 4373, - [4374] = 4374, - [4375] = 369, - [4376] = 4068, - [4377] = 924, + [4374] = 744, + [4375] = 4375, + [4376] = 4376, + [4377] = 4377, [4378] = 4378, - [4379] = 4270, - [4380] = 926, - [4381] = 4381, - [4382] = 685, - [4383] = 4250, - [4384] = 4269, - [4385] = 4321, + [4379] = 4379, + [4380] = 4380, + [4381] = 3360, + [4382] = 4382, + [4383] = 745, + [4384] = 4384, + [4385] = 746, [4386] = 4386, - [4387] = 4069, - [4388] = 4388, - [4389] = 4251, - [4390] = 4252, - [4391] = 4391, - [4392] = 4231, + [4387] = 747, + [4388] = 748, + [4389] = 749, + [4390] = 2025, + [4391] = 895, + [4392] = 4196, [4393] = 4393, - [4394] = 4324, - [4395] = 4330, + [4394] = 4394, + [4395] = 4349, [4396] = 4396, - [4397] = 4322, - [4398] = 334, - [4399] = 4289, - [4400] = 676, - [4401] = 3054, + [4397] = 940, + [4398] = 4398, + [4399] = 4399, + [4400] = 4400, + [4401] = 4401, [4402] = 4402, - [4403] = 4307, + [4403] = 4403, [4404] = 4404, [4405] = 4405, - [4406] = 4226, - [4407] = 4407, - [4408] = 2916, - [4409] = 4331, - [4410] = 4227, + [4406] = 939, + [4407] = 2007, + [4408] = 4173, + [4409] = 4375, + [4410] = 2011, [4411] = 4411, - [4412] = 4294, + [4412] = 4412, [4413] = 4413, - [4414] = 4339, - [4415] = 4336, - [4416] = 4257, - [4417] = 4340, - [4418] = 4348, - [4419] = 4351, - [4420] = 4049, - [4421] = 936, - [4422] = 4052, + [4414] = 977, + [4415] = 4318, + [4416] = 3221, + [4417] = 4417, + [4418] = 4418, + [4419] = 4419, + [4420] = 949, + [4421] = 950, + [4422] = 365, [4423] = 4423, - [4424] = 949, - [4425] = 897, - [4426] = 898, - [4427] = 4053, - [4428] = 459, - [4429] = 4054, - [4430] = 4304, - [4431] = 4402, - [4432] = 4083, - [4433] = 4085, - [4434] = 4086, - [4435] = 4090, - [4436] = 916, - [4437] = 4091, + [4424] = 4424, + [4425] = 508, + [4426] = 4346, + [4427] = 4427, + [4428] = 4250, + [4429] = 4173, + [4430] = 4430, + [4431] = 3770, + [4432] = 3723, + [4433] = 4433, + [4434] = 354, + [4435] = 2767, + [4436] = 4436, + [4437] = 943, [4438] = 4438, - [4439] = 4439, - [4440] = 4093, + [4439] = 939, + [4440] = 944, [4441] = 4441, - [4442] = 4094, - [4443] = 4098, - [4444] = 4259, - [4445] = 4445, - [4446] = 4446, - [4447] = 4393, + [4442] = 947, + [4443] = 4443, + [4444] = 1404, + [4445] = 893, + [4446] = 947, + [4447] = 4447, [4448] = 4448, - [4449] = 4449, + [4449] = 4250, [4450] = 4450, - [4451] = 4451, - [4452] = 743, - [4453] = 744, - [4454] = 2570, - [4455] = 4325, - [4456] = 4326, - [4457] = 4327, - [4458] = 4328, - [4459] = 4329, + [4451] = 367, + [4452] = 4452, + [4453] = 3222, + [4454] = 4454, + [4455] = 4455, + [4456] = 4456, + [4457] = 4457, + [4458] = 893, + [4459] = 4250, [4460] = 4460, [4461] = 4461, - [4462] = 2173, - [4463] = 2174, - [4464] = 4464, - [4465] = 4378, - [4466] = 2176, - [4467] = 4467, - [4468] = 4407, - [4469] = 444, - [4470] = 2540, - [4471] = 4381, + [4462] = 711, + [4463] = 1054, + [4464] = 721, + [4465] = 4465, + [4466] = 4466, + [4467] = 358, + [4468] = 4468, + [4469] = 359, + [4470] = 4250, + [4471] = 4250, [4472] = 4472, - [4473] = 3128, - [4474] = 4413, - [4475] = 4446, - [4476] = 4287, - [4477] = 4288, - [4478] = 4297, - [4479] = 746, - [4480] = 747, - [4481] = 4337, - [4482] = 4482, - [4483] = 3003, + [4473] = 939, + [4474] = 704, + [4475] = 493, + [4476] = 4476, + [4477] = 940, + [4478] = 687, + [4479] = 4479, + [4480] = 4480, + [4481] = 4481, + [4482] = 1512, + [4483] = 4483, [4484] = 4484, - [4485] = 4485, - [4486] = 4338, - [4487] = 4101, - [4488] = 4110, - [4489] = 4129, - [4490] = 4381, - [4491] = 4292, - [4492] = 4136, - [4493] = 4413, - [4494] = 4137, - [4495] = 4142, + [4485] = 360, + [4486] = 361, + [4487] = 363, + [4488] = 4488, + [4489] = 4489, + [4490] = 4490, + [4491] = 4491, + [4492] = 4492, + [4493] = 4493, + [4494] = 4494, + [4495] = 4250, [4496] = 4496, - [4497] = 4381, - [4498] = 4413, - [4499] = 4446, - [4500] = 4334, - [4501] = 4381, - [4502] = 4502, + [4497] = 4497, + [4498] = 4498, + [4499] = 4499, + [4500] = 4500, + [4501] = 4501, + [4502] = 4176, [4503] = 4503, - [4504] = 4070, - [4505] = 763, - [4506] = 764, - [4507] = 4149, - [4508] = 4151, - [4509] = 4381, - [4510] = 4172, - [4511] = 4175, - [4512] = 4413, - [4513] = 4217, - [4514] = 3005, - [4515] = 4299, - [4516] = 4302, - [4517] = 4309, - [4518] = 4311, - [4519] = 4341, - [4520] = 2530, - [4521] = 4144, - [4522] = 1358, - [4523] = 4156, - [4524] = 4524, - [4525] = 4164, - [4526] = 4526, - [4527] = 4170, - [4528] = 4201, - [4529] = 4345, - [4530] = 4530, - [4531] = 4531, - [4532] = 1366, - [4533] = 4081, - [4534] = 4202, - [4535] = 4082, - [4536] = 943, - [4537] = 4537, - [4538] = 4316, - [4539] = 4539, - [4540] = 540, - [4541] = 4402, - [4542] = 4542, - [4543] = 4543, - [4544] = 4544, - [4545] = 4346, - [4546] = 4095, - [4547] = 2148, - [4548] = 4099, - [4549] = 4549, - [4550] = 4320, - [4551] = 4551, - [4552] = 3026, - [4553] = 4347, - [4554] = 3036, + [4504] = 4504, + [4505] = 4505, + [4506] = 380, + [4507] = 3223, + [4508] = 4508, + [4509] = 4509, + [4510] = 4510, + [4511] = 974, + [4512] = 949, + [4513] = 4513, + [4514] = 4514, + [4515] = 4250, + [4516] = 467, + [4517] = 4517, + [4518] = 4518, + [4519] = 4519, + [4520] = 4520, + [4521] = 950, + [4522] = 493, + [4523] = 4523, + [4524] = 4250, + [4525] = 4488, + [4526] = 733, + [4527] = 4106, + [4528] = 4497, + [4529] = 943, + [4530] = 4384, + [4531] = 4240, + [4532] = 4532, + [4533] = 4292, + [4534] = 508, + [4535] = 727, + [4536] = 4536, + [4537] = 513, + [4538] = 4488, + [4539] = 4384, + [4540] = 4240, + [4541] = 4292, + [4542] = 967, + [4543] = 944, + [4544] = 3905, + [4545] = 4545, + [4546] = 973, + [4547] = 4275, + [4548] = 4548, + [4549] = 693, + [4550] = 4550, + [4551] = 4413, + [4552] = 768, + [4553] = 4553, + [4554] = 4554, [4555] = 4555, - [4556] = 951, + [4556] = 348, [4557] = 4557, [4558] = 4558, [4559] = 4559, - [4560] = 4237, - [4561] = 4240, - [4562] = 4241, - [4563] = 4243, - [4564] = 4244, - [4565] = 4265, - [4566] = 4128, - [4567] = 4220, - [4568] = 4568, + [4560] = 4311, + [4561] = 4312, + [4562] = 4447, + [4563] = 4563, + [4564] = 4417, + [4565] = 4418, + [4566] = 4566, + [4567] = 1412, + [4568] = 4364, [4569] = 4569, [4570] = 4570, [4571] = 4571, - [4572] = 2517, - [4573] = 470, - [4574] = 2526, + [4572] = 4476, + [4573] = 4573, + [4574] = 4574, [4575] = 4575, [4576] = 4576, [4577] = 4577, [4578] = 4578, [4579] = 4579, [4580] = 4580, - [4581] = 4581, - [4582] = 4225, - [4583] = 4583, - [4584] = 4264, - [4585] = 4212, - [4586] = 4586, - [4587] = 4587, - [4588] = 4588, + [4581] = 1609, + [4582] = 4582, + [4583] = 2364, + [4584] = 1615, + [4585] = 4585, + [4586] = 4345, + [4587] = 4438, + [4588] = 4424, [4589] = 4589, [4590] = 4590, [4591] = 4591, [4592] = 4592, [4593] = 4593, - [4594] = 444, + [4594] = 4594, [4595] = 4595, - [4596] = 491, - [4597] = 4597, - [4598] = 442, - [4599] = 2191, - [4600] = 4381, - [4601] = 4485, - [4602] = 4602, - [4603] = 3053, - [4604] = 4228, - [4605] = 4373, - [4606] = 498, - [4607] = 4607, - [4608] = 4608, - [4609] = 4413, - [4610] = 4446, - [4611] = 4078, - [4612] = 1409, - [4613] = 4472, - [4614] = 4614, - [4615] = 4615, - [4616] = 4616, - [4617] = 4617, - [4618] = 4239, + [4596] = 4596, + [4597] = 4441, + [4598] = 4577, + [4599] = 4599, + [4600] = 4600, + [4601] = 4402, + [4602] = 4321, + [4603] = 4510, + [4604] = 4604, + [4605] = 4605, + [4606] = 4606, + [4607] = 4492, + [4608] = 4499, + [4609] = 4505, + [4610] = 4610, + [4611] = 4611, + [4612] = 4500, + [4613] = 453, + [4614] = 4514, + [4615] = 4520, + [4616] = 3279, + [4617] = 4430, + [4618] = 4252, [4619] = 4619, - [4620] = 2541, - [4621] = 4413, - [4622] = 4622, + [4620] = 1413, + [4621] = 3167, + [4622] = 4548, [4623] = 4623, - [4624] = 4624, - [4625] = 4625, + [4624] = 959, + [4625] = 4493, [4626] = 4626, [4627] = 4627, - [4628] = 4628, - [4629] = 4629, + [4628] = 4253, + [4629] = 4254, [4630] = 4630, [4631] = 4631, - [4632] = 4632, - [4633] = 4633, - [4634] = 4629, - [4635] = 4635, - [4636] = 4636, - [4637] = 4637, - [4638] = 4635, - [4639] = 4639, - [4640] = 691, - [4641] = 339, - [4642] = 4642, - [4643] = 4643, - [4644] = 4644, - [4645] = 4645, - [4646] = 4626, - [4647] = 4637, - [4648] = 4648, - [4649] = 4630, + [4632] = 4334, + [4633] = 4574, + [4634] = 964, + [4635] = 4255, + [4636] = 4256, + [4637] = 4259, + [4638] = 4585, + [4639] = 4260, + [4640] = 478, + [4641] = 4577, + [4642] = 4262, + [4643] = 4263, + [4644] = 4266, + [4645] = 4555, + [4646] = 4267, + [4647] = 4356, + [4648] = 1572, + [4649] = 4360, [4650] = 4650, [4651] = 4651, - [4652] = 4652, - [4653] = 960, - [4654] = 4654, - [4655] = 4631, - [4656] = 4656, - [4657] = 4627, - [4658] = 4628, - [4659] = 4639, - [4660] = 941, - [4661] = 967, - [4662] = 4662, - [4663] = 4627, - [4664] = 4664, - [4665] = 4628, - [4666] = 4666, - [4667] = 4667, + [4652] = 4367, + [4653] = 703, + [4654] = 4574, + [4655] = 4655, + [4656] = 4585, + [4657] = 4577, + [4658] = 4376, + [4659] = 4659, + [4660] = 4660, + [4661] = 4377, + [4662] = 4554, + [4663] = 4663, + [4664] = 4277, + [4665] = 4279, + [4666] = 714, + [4667] = 4382, [4668] = 4668, - [4669] = 961, - [4670] = 4670, - [4671] = 503, + [4669] = 4553, + [4670] = 4574, + [4671] = 4671, [4672] = 4672, - [4673] = 931, + [4673] = 4577, [4674] = 4674, - [4675] = 4675, - [4676] = 904, - [4677] = 937, - [4678] = 3016, - [4679] = 4648, - [4680] = 4651, - [4681] = 4681, + [4675] = 4386, + [4676] = 973, + [4677] = 4545, + [4678] = 4489, + [4679] = 4679, + [4680] = 1539, + [4681] = 4496, [4682] = 4682, - [4683] = 4683, + [4683] = 4574, [4684] = 4684, - [4685] = 4016, - [4686] = 4686, - [4687] = 4664, - [4688] = 4666, - [4689] = 4662, - [4690] = 4622, - [4691] = 4691, - [4692] = 4643, - [4693] = 4667, - [4694] = 4670, - [4695] = 948, - [4696] = 4672, - [4697] = 490, - [4698] = 886, - [4699] = 4699, - [4700] = 1043, - [4701] = 4701, - [4702] = 4675, - [4703] = 4668, - [4704] = 4704, - [4705] = 4705, + [4685] = 4577, + [4686] = 4517, + [4687] = 975, + [4688] = 4550, + [4689] = 4278, + [4690] = 4575, + [4691] = 4574, + [4692] = 4302, + [4693] = 4577, + [4694] = 4694, + [4695] = 4574, + [4696] = 4696, + [4697] = 4697, + [4698] = 4655, + [4699] = 4575, + [4700] = 4700, + [4701] = 3183, + [4702] = 4702, + [4703] = 4323, + [4704] = 4341, + [4705] = 4461, [4706] = 4706, - [4707] = 4707, + [4707] = 4264, [4708] = 4708, - [4709] = 4709, - [4710] = 3532, - [4711] = 3570, - [4712] = 4464, - [4713] = 954, - [4714] = 4633, - [4715] = 4715, - [4716] = 1510, - [4717] = 4717, - [4718] = 4707, + [4709] = 4468, + [4710] = 4503, + [4711] = 4504, + [4712] = 4513, + [4713] = 4523, + [4714] = 4532, + [4715] = 4276, + [4716] = 4716, + [4717] = 4234, + [4718] = 4718, [4719] = 4719, - [4720] = 2089, + [4720] = 967, [4721] = 4721, - [4722] = 4644, - [4723] = 958, - [4724] = 4724, - [4725] = 4625, - [4726] = 4726, - [4727] = 4727, - [4728] = 4728, + [4722] = 4722, + [4723] = 4723, + [4724] = 910, + [4725] = 911, + [4726] = 912, + [4727] = 470, + [4728] = 1637, [4729] = 4729, - [4730] = 3037, - [4731] = 3131, + [4730] = 4730, + [4731] = 4731, [4732] = 4732, - [4733] = 351, - [4734] = 4645, - [4735] = 4735, - [4736] = 4736, - [4737] = 4724, - [4738] = 4704, - [4739] = 4625, - [4740] = 4705, - [4741] = 4741, - [4742] = 4742, - [4743] = 357, - [4744] = 4744, - [4745] = 4745, - [4746] = 4626, - [4747] = 4691, - [4748] = 927, - [4749] = 4749, - [4750] = 955, - [4751] = 4751, - [4752] = 4706, - [4753] = 896, + [4733] = 2748, + [4734] = 926, + [4735] = 4455, + [4736] = 2758, + [4737] = 4283, + [4738] = 4284, + [4739] = 467, + [4740] = 1580, + [4741] = 4251, + [4742] = 1581, + [4743] = 4285, + [4744] = 1582, + [4745] = 4286, + [4746] = 4287, + [4747] = 4290, + [4748] = 4236, + [4749] = 492, + [4750] = 4293, + [4751] = 4294, + [4752] = 381, + [4753] = 4494, [4754] = 4754, - [4755] = 4627, - [4756] = 4726, - [4757] = 4628, - [4758] = 4758, - [4759] = 4759, - [4760] = 3093, - [4761] = 4761, - [4762] = 3095, - [4763] = 4726, + [4755] = 4755, + [4756] = 4403, + [4757] = 750, + [4758] = 751, + [4759] = 2767, + [4760] = 4404, + [4761] = 4405, + [4762] = 489, + [4763] = 4763, [4764] = 4764, [4765] = 4765, [4766] = 4766, [4767] = 4767, [4768] = 4768, - [4769] = 470, + [4769] = 4433, [4770] = 4770, - [4771] = 4699, + [4771] = 4771, [4772] = 4772, - [4773] = 459, - [4774] = 4774, - [4775] = 4625, - [4776] = 4726, - [4777] = 4626, - [4778] = 2082, - [4779] = 4726, - [4780] = 2083, - [4781] = 4686, - [4782] = 4719, - [4783] = 4783, - [4784] = 4715, - [4785] = 4785, - [4786] = 500, - [4787] = 959, - [4788] = 4788, - [4789] = 4632, - [4790] = 925, - [4791] = 4791, - [4792] = 4792, - [4793] = 4793, + [4773] = 4373, + [4774] = 752, + [4775] = 753, + [4776] = 4557, + [4777] = 4378, + [4778] = 4379, + [4779] = 4380, + [4780] = 4574, + [4781] = 4436, + [4782] = 3277, + [4783] = 4585, + [4784] = 2763, + [4785] = 675, + [4786] = 2764, + [4787] = 4456, + [4788] = 4605, + [4789] = 4585, + [4790] = 4790, + [4791] = 453, + [4792] = 4577, + [4793] = 4400, [4794] = 4794, - [4795] = 4795, - [4796] = 4796, - [4797] = 4797, - [4798] = 4798, - [4799] = 4798, - [4800] = 4792, - [4801] = 4801, - [4802] = 4802, - [4803] = 4803, - [4804] = 4798, - [4805] = 4801, - [4806] = 4806, - [4807] = 4807, - [4808] = 4808, + [4795] = 4298, + [4796] = 4299, + [4797] = 4300, + [4798] = 4301, + [4799] = 4304, + [4800] = 4308, + [4801] = 769, + [4802] = 4411, + [4803] = 4412, + [4804] = 4804, + [4805] = 2776, + [4806] = 4448, + [4807] = 3319, + [4808] = 935, [4809] = 4809, [4810] = 4810, - [4811] = 4811, - [4812] = 4792, - [4813] = 4793, - [4814] = 4794, + [4811] = 966, + [4812] = 4812, + [4813] = 956, + [4814] = 4814, [4815] = 4815, - [4816] = 4816, - [4817] = 4798, - [4818] = 4802, + [4816] = 4814, + [4817] = 963, + [4818] = 4818, [4819] = 4819, [4820] = 4820, [4821] = 4821, - [4822] = 4801, + [4822] = 4822, [4823] = 4823, - [4824] = 4792, - [4825] = 4791, - [4826] = 4809, - [4827] = 4827, - [4828] = 4828, - [4829] = 4792, - [4830] = 4793, - [4831] = 4794, - [4832] = 4798, + [4824] = 4818, + [4825] = 364, + [4826] = 4826, + [4827] = 4810, + [4828] = 4815, + [4829] = 4829, + [4830] = 4830, + [4831] = 4831, + [4832] = 4832, [4833] = 4833, - [4834] = 4793, + [4834] = 4834, [4835] = 4835, - [4836] = 4836, - [4837] = 4801, + [4836] = 4829, + [4837] = 4837, [4838] = 4838, - [4839] = 4798, - [4840] = 4840, - [4841] = 498, + [4839] = 4839, + [4840] = 4837, + [4841] = 893, [4842] = 4842, - [4843] = 4792, - [4844] = 4793, - [4845] = 4794, - [4846] = 4798, - [4847] = 4801, + [4843] = 4843, + [4844] = 4844, + [4845] = 4845, + [4846] = 4846, + [4847] = 4838, [4848] = 4848, - [4849] = 4821, - [4850] = 4801, + [4849] = 1616, + [4850] = 508, [4851] = 4851, - [4852] = 4819, + [4852] = 4852, [4853] = 4853, - [4854] = 4815, - [4855] = 4792, - [4856] = 4793, - [4857] = 4794, - [4858] = 4820, - [4859] = 4803, - [4860] = 4801, - [4861] = 4861, + [4854] = 921, + [4855] = 4855, + [4856] = 4856, + [4857] = 4853, + [4858] = 1638, + [4859] = 4859, + [4860] = 4860, + [4861] = 4856, [4862] = 4862, - [4863] = 4863, - [4864] = 4792, - [4865] = 4793, - [4866] = 4794, + [4863] = 4173, + [4864] = 4864, + [4865] = 4865, + [4866] = 4866, [4867] = 4867, - [4868] = 4868, - [4869] = 4801, + [4868] = 513, + [4869] = 4853, [4870] = 4870, [4871] = 4871, [4872] = 4872, - [4873] = 4792, - [4874] = 4793, - [4875] = 4794, - [4876] = 4835, - [4877] = 491, - [4878] = 4801, + [4873] = 936, + [4874] = 4856, + [4875] = 4875, + [4876] = 478, + [4877] = 3361, + [4878] = 4866, [4879] = 4879, - [4880] = 4792, - [4881] = 4793, - [4882] = 4794, - [4883] = 4801, - [4884] = 4851, - [4885] = 4801, - [4886] = 4809, - [4887] = 4792, - [4888] = 4793, - [4889] = 4794, - [4890] = 4793, + [4880] = 1888, + [4881] = 4842, + [4882] = 470, + [4883] = 4867, + [4884] = 2211, + [4885] = 2212, + [4886] = 4839, + [4887] = 4887, + [4888] = 4843, + [4889] = 4889, + [4890] = 4844, [4891] = 4891, - [4892] = 4801, - [4893] = 4827, - [4894] = 4792, - [4895] = 4793, - [4896] = 4794, - [4897] = 4807, - [4898] = 4810, - [4899] = 4801, - [4900] = 4810, - [4901] = 4792, - [4902] = 4793, - [4903] = 4794, + [4892] = 4845, + [4893] = 4893, + [4894] = 4894, + [4895] = 999, + [4896] = 365, + [4897] = 4831, + [4898] = 4898, + [4899] = 2224, + [4900] = 4900, + [4901] = 4856, + [4902] = 4902, + [4903] = 4903, [4904] = 4904, - [4905] = 491, - [4906] = 4801, + [4905] = 4819, + [4906] = 947, [4907] = 4907, - [4908] = 4792, - [4909] = 4793, - [4910] = 4794, + [4908] = 4820, + [4909] = 3770, + [4910] = 1054, [4911] = 4911, - [4912] = 4801, - [4913] = 4792, - [4914] = 4793, - [4915] = 4794, + [4912] = 4912, + [4913] = 3723, + [4914] = 4914, + [4915] = 4915, [4916] = 4916, [4917] = 4917, - [4918] = 4851, - [4919] = 4811, + [4918] = 946, + [4919] = 4919, [4920] = 4920, [4921] = 4921, [4922] = 4922, - [4923] = 4923, - [4924] = 4924, - [4925] = 4808, - [4926] = 4809, - [4927] = 4867, + [4923] = 4821, + [4924] = 4862, + [4925] = 4831, + [4926] = 4822, + [4927] = 4927, [4928] = 4928, [4929] = 4929, [4930] = 4930, - [4931] = 4879, - [4932] = 4932, + [4931] = 4931, + [4932] = 4853, [4933] = 4933, - [4934] = 4809, - [4935] = 2530, - [4936] = 498, + [4934] = 4914, + [4935] = 940, + [4936] = 4915, [4937] = 4937, - [4938] = 4827, - [4939] = 4792, - [4940] = 4793, - [4941] = 4929, - [4942] = 4806, - [4943] = 4943, - [4944] = 4870, - [4945] = 4794, - [4946] = 4851, - [4947] = 4929, - [4948] = 491, - [4949] = 4797, - [4950] = 4950, - [4951] = 4951, - [4952] = 4823, - [4953] = 4933, + [4938] = 4938, + [4939] = 4920, + [4940] = 949, + [4941] = 950, + [4942] = 4831, + [4943] = 715, + [4944] = 4930, + [4945] = 4937, + [4946] = 4946, + [4947] = 4831, + [4948] = 4948, + [4949] = 4949, + [4950] = 4856, + [4951] = 943, + [4952] = 944, + [4953] = 4946, [4954] = 4954, - [4955] = 4797, - [4956] = 4794, + [4955] = 4948, + [4956] = 4826, [4957] = 4957, - [4958] = 4820, - [4959] = 4959, + [4958] = 4866, + [4959] = 4867, [4960] = 4960, - [4961] = 4819, - [4962] = 4823, - [4963] = 930, - [4964] = 4803, - [4965] = 4965, - [4966] = 4966, - [4967] = 4967, - [4968] = 4798, - [4969] = 2570, - [4970] = 4802, + [4961] = 4830, + [4962] = 4855, + [4963] = 493, + [4964] = 977, + [4965] = 4851, + [4966] = 4949, + [4967] = 4852, + [4968] = 3347, + [4969] = 939, + [4970] = 354, [4971] = 4971, - [4972] = 4770, - [4973] = 4921, - [4974] = 4820, - [4975] = 4797, - [4976] = 4803, - [4977] = 4977, - [4978] = 4791, - [4979] = 4802, - [4980] = 4809, - [4981] = 4922, - [4982] = 4982, - [4983] = 4827, - [4984] = 4806, - [4985] = 4920, - [4986] = 4932, - [4987] = 2517, - [4988] = 4801, + [4972] = 4833, + [4973] = 3352, + [4974] = 4835, + [4975] = 4866, + [4976] = 4866, + [4977] = 4867, + [4978] = 4580, + [4979] = 4867, + [4980] = 4853, + [4981] = 4981, + [4982] = 492, + [4983] = 4983, + [4984] = 4984, + [4985] = 4983, + [4986] = 4986, + [4987] = 4987, + [4988] = 4984, [4989] = 4989, - [4990] = 4801, - [4991] = 4991, - [4992] = 4851, - [4993] = 4797, - [4994] = 4810, - [4995] = 4929, + [4990] = 4990, + [4991] = 4986, + [4992] = 4992, + [4993] = 4987, + [4994] = 4994, + [4995] = 4995, [4996] = 4996, [4997] = 4997, - [4998] = 4916, - [4999] = 2541, - [5000] = 4862, - [5001] = 4791, + [4998] = 4998, + [4999] = 2767, + [5000] = 5000, + [5001] = 4989, [5002] = 5002, - [5003] = 4809, - [5004] = 4933, + [5003] = 5003, + [5004] = 5004, [5005] = 5005, - [5006] = 4827, + [5006] = 5006, [5007] = 5007, - [5008] = 4819, - [5009] = 4791, - [5010] = 4863, - [5011] = 4810, - [5012] = 4929, - [5013] = 4820, - [5014] = 4809, - [5015] = 4929, - [5016] = 4803, + [5008] = 5008, + [5009] = 5009, + [5010] = 4990, + [5011] = 5011, + [5012] = 4983, + [5013] = 4987, + [5014] = 5014, + [5015] = 5007, + [5016] = 5016, [5017] = 5017, - [5018] = 4797, - [5019] = 4871, - [5020] = 4801, + [5018] = 5018, + [5019] = 5019, + [5020] = 4997, [5021] = 5021, - [5022] = 4792, - [5023] = 4836, - [5024] = 5024, - [5025] = 4807, - [5026] = 2526, - [5027] = 4808, - [5028] = 4793, - [5029] = 4801, - [5030] = 5030, - [5031] = 4794, - [5032] = 4851, - [5033] = 4836, - [5034] = 4827, - [5035] = 5035, - [5036] = 4967, - [5037] = 4794, + [5022] = 5022, + [5023] = 5023, + [5024] = 4989, + [5025] = 5003, + [5026] = 5008, + [5027] = 5009, + [5028] = 5007, + [5029] = 5008, + [5030] = 5009, + [5031] = 5031, + [5032] = 5032, + [5033] = 4987, + [5034] = 5034, + [5035] = 4983, + [5036] = 5036, + [5037] = 5002, [5038] = 4997, - [5039] = 4862, - [5040] = 4840, - [5041] = 4809, - [5042] = 4823, - [5043] = 4929, - [5044] = 4797, - [5045] = 936, - [5046] = 4827, - [5047] = 4809, - [5048] = 498, - [5049] = 4827, - [5050] = 4851, - [5051] = 4797, - [5052] = 4891, - [5053] = 4929, - [5054] = 4797, - [5055] = 4810, - [5056] = 4809, - [5057] = 4916, - [5058] = 4920, - [5059] = 4921, - [5060] = 4922, - [5061] = 4819, - [5062] = 886, - [5063] = 4959, - [5064] = 4943, - [5065] = 4803, - [5066] = 4929, - [5067] = 4798, - [5068] = 4928, - [5069] = 500, - [5070] = 4793, - [5071] = 4802, - [5072] = 4794, - [5073] = 503, - [5074] = 4820, - [5075] = 490, - [5076] = 4792, - [5077] = 4996, - [5078] = 4793, - [5079] = 4794, - [5080] = 4809, - [5081] = 4820, - [5082] = 4823, - [5083] = 4967, - [5084] = 4791, - [5085] = 4816, - [5086] = 5021, - [5087] = 5087, - [5088] = 5002, - [5089] = 4943, - [5090] = 4868, - [5091] = 4870, - [5092] = 4960, - [5093] = 5002, - [5094] = 4916, - [5095] = 4920, - [5096] = 4921, - [5097] = 4922, - [5098] = 4797, - [5099] = 4943, - [5100] = 4791, - [5101] = 4827, - [5102] = 5102, - [5103] = 5103, - [5104] = 4871, - [5105] = 4798, - [5106] = 4916, - [5107] = 4920, - [5108] = 4921, - [5109] = 4922, - [5110] = 4916, - [5111] = 4920, - [5112] = 4921, - [5113] = 4922, - [5114] = 4916, - [5115] = 4920, - [5116] = 4921, - [5117] = 4922, - [5118] = 4916, - [5119] = 4921, - [5120] = 4922, - [5121] = 4916, - [5122] = 4921, - [5123] = 4922, - [5124] = 4916, - [5125] = 4921, - [5126] = 4922, - [5127] = 4916, - [5128] = 4921, - [5129] = 4922, - [5130] = 4916, - [5131] = 4921, - [5132] = 4922, - [5133] = 4916, - [5134] = 4921, - [5135] = 4922, - [5136] = 4916, - [5137] = 4921, - [5138] = 4922, - [5139] = 4916, - [5140] = 4921, - [5141] = 4922, - [5142] = 4916, - [5143] = 4921, - [5144] = 4922, - [5145] = 4916, - [5146] = 4921, - [5147] = 4922, - [5148] = 4916, - [5149] = 4921, - [5150] = 4922, - [5151] = 4916, - [5152] = 4921, - [5153] = 4922, - [5154] = 4916, - [5155] = 4921, - [5156] = 4922, - [5157] = 4823, - [5158] = 4801, - [5159] = 5035, - [5160] = 4810, - [5161] = 5161, - [5162] = 5162, - [5163] = 4828, - [5164] = 4924, - [5165] = 5165, - [5166] = 5166, - [5167] = 4904, - [5168] = 4907, - [5169] = 5169, - [5170] = 5170, + [5039] = 5039, + [5040] = 4990, + [5041] = 5041, + [5042] = 4989, + [5043] = 5043, + [5044] = 5044, + [5045] = 5007, + [5046] = 5008, + [5047] = 5009, + [5048] = 4987, + [5049] = 5049, + [5050] = 5050, + [5051] = 489, + [5052] = 4997, + [5053] = 5053, + [5054] = 4812, + [5055] = 4995, + [5056] = 5043, + [5057] = 5057, + [5058] = 5007, + [5059] = 5008, + [5060] = 5009, + [5061] = 4987, + [5062] = 4998, + [5063] = 5063, + [5064] = 5031, + [5065] = 4997, + [5066] = 5023, + [5067] = 4997, + [5068] = 5068, + [5069] = 4989, + [5070] = 5036, + [5071] = 5007, + [5072] = 5008, + [5073] = 5009, + [5074] = 4987, + [5075] = 5075, + [5076] = 5005, + [5077] = 5077, + [5078] = 4997, + [5079] = 5079, + [5080] = 4987, + [5081] = 492, + [5082] = 5082, + [5083] = 5007, + [5084] = 5008, + [5085] = 5009, + [5086] = 2763, + [5087] = 4989, + [5088] = 4997, + [5089] = 5089, + [5090] = 5007, + [5091] = 5008, + [5092] = 5009, + [5093] = 2764, + [5094] = 5094, + [5095] = 4997, + [5096] = 5096, + [5097] = 5007, + [5098] = 5008, + [5099] = 5009, + [5100] = 5003, + [5101] = 5101, + [5102] = 4997, + [5103] = 5003, + [5104] = 5007, + [5105] = 5008, + [5106] = 5009, + [5107] = 5000, + [5108] = 5108, + [5109] = 4997, + [5110] = 5075, + [5111] = 5007, + [5112] = 5008, + [5113] = 5009, + [5114] = 5005, + [5115] = 5050, + [5116] = 4997, + [5117] = 5117, + [5118] = 5007, + [5119] = 5008, + [5120] = 5009, + [5121] = 5007, + [5122] = 4997, + [5123] = 5008, + [5124] = 5007, + [5125] = 5008, + [5126] = 5009, + [5127] = 5127, + [5128] = 4997, + [5129] = 5129, + [5130] = 5007, + [5131] = 5008, + [5132] = 5009, + [5133] = 5009, + [5134] = 4997, + [5135] = 5007, + [5136] = 5008, + [5137] = 5009, + [5138] = 5138, + [5139] = 4997, + [5140] = 5007, + [5141] = 5008, + [5142] = 5009, + [5143] = 5004, + [5144] = 5011, + [5145] = 5145, + [5146] = 4995, + [5147] = 5147, + [5148] = 5148, + [5149] = 5149, + [5150] = 5032, + [5151] = 5043, + [5152] = 5152, + [5153] = 5129, + [5154] = 5050, + [5155] = 5155, + [5156] = 4990, + [5157] = 4983, + [5158] = 5034, + [5159] = 5145, + [5160] = 5160, + [5161] = 4989, + [5162] = 492, + [5163] = 4984, + [5164] = 4992, + [5165] = 5003, + [5166] = 2776, + [5167] = 5101, + [5168] = 5005, + [5169] = 4986, + [5170] = 4987, [5171] = 5171, - [5172] = 4819, - [5173] = 5173, - [5174] = 4803, - [5175] = 4798, - [5176] = 4929, - [5177] = 4809, - [5178] = 4811, - [5179] = 4795, - [5180] = 4797, - [5181] = 4792, - [5182] = 4802, - [5183] = 4806, - [5184] = 4827, - [5185] = 4819, - [5186] = 5186, - [5187] = 4793, - [5188] = 4794, - [5189] = 4795, - [5190] = 4816, - [5191] = 4929, - [5192] = 4989, - [5193] = 4823, - [5194] = 4967, - [5195] = 4836, - [5196] = 4802, - [5197] = 4950, - [5198] = 4868, - [5199] = 4872, - [5200] = 5002, - [5201] = 2540, - [5202] = 4792, - [5203] = 5203, + [5172] = 5172, + [5173] = 4995, + [5174] = 5174, + [5175] = 5175, + [5176] = 4983, + [5177] = 4994, + [5178] = 4998, + [5179] = 5179, + [5180] = 489, + [5181] = 5152, + [5182] = 5039, + [5183] = 4990, + [5184] = 5138, + [5185] = 5018, + [5186] = 5021, + [5187] = 5049, + [5188] = 5188, + [5189] = 5189, + [5190] = 5050, + [5191] = 5191, + [5192] = 5192, + [5193] = 5044, + [5194] = 5194, + [5195] = 5089, + [5196] = 5196, + [5197] = 5050, + [5198] = 5000, + [5199] = 4983, + [5200] = 4997, + [5201] = 5147, + [5202] = 5196, + [5203] = 493, + [5204] = 5036, + [5205] = 5057, + [5206] = 5017, + [5207] = 508, + [5208] = 5036, + [5209] = 513, + [5210] = 5075, + [5211] = 4990, + [5212] = 4989, + [5213] = 5005, + [5214] = 5003, + [5215] = 893, + [5216] = 5000, + [5217] = 5108, + [5218] = 5218, + [5219] = 5219, + [5220] = 5005, + [5221] = 4997, + [5222] = 5023, + [5223] = 5007, + [5224] = 5008, + [5225] = 5009, + [5226] = 5032, + [5227] = 5227, + [5228] = 5043, + [5229] = 5191, + [5230] = 4983, + [5231] = 4984, + [5232] = 5232, + [5233] = 4986, + [5234] = 4987, + [5235] = 5036, + [5236] = 4995, + [5237] = 973, + [5238] = 4990, + [5239] = 5239, + [5240] = 5050, + [5241] = 5050, + [5242] = 5242, + [5243] = 5007, + [5244] = 5077, + [5245] = 5148, + [5246] = 5003, + [5247] = 5247, + [5248] = 2758, + [5249] = 5249, + [5250] = 4997, + [5251] = 5251, + [5252] = 4997, + [5253] = 5023, + [5254] = 5149, + [5255] = 5036, + [5256] = 5008, + [5257] = 5009, + [5258] = 4989, + [5259] = 5036, + [5260] = 5005, + [5261] = 4983, + [5262] = 5108, + [5263] = 5003, + [5264] = 5006, + [5265] = 5063, + [5266] = 5266, + [5267] = 4989, + [5268] = 5219, + [5269] = 5063, + [5270] = 5005, + [5271] = 4983, + [5272] = 5003, + [5273] = 4989, + [5274] = 5004, + [5275] = 5147, + [5276] = 5148, + [5277] = 5149, + [5278] = 4989, + [5279] = 4989, + [5280] = 5003, + [5281] = 5000, + [5282] = 489, + [5283] = 5283, + [5284] = 5000, + [5285] = 5003, + [5286] = 5286, + [5287] = 5005, + [5288] = 5288, + [5289] = 5005, + [5290] = 5007, + [5291] = 5008, + [5292] = 5009, + [5293] = 5293, + [5294] = 5000, + [5295] = 5295, + [5296] = 5043, + [5297] = 5057, + [5298] = 5063, + [5299] = 5077, + [5300] = 5300, + [5301] = 5007, + [5302] = 5191, + [5303] = 5044, + [5304] = 5008, + [5305] = 4983, + [5306] = 4998, + [5307] = 5009, + [5308] = 5308, + [5309] = 5019, + [5310] = 5004, + [5311] = 5147, + [5312] = 5148, + [5313] = 5149, + [5314] = 4984, + [5315] = 5127, + [5316] = 5043, + [5317] = 967, + [5318] = 4986, + [5319] = 4983, + [5320] = 4984, + [5321] = 5004, + [5322] = 5147, + [5323] = 5148, + [5324] = 5149, + [5325] = 5004, + [5326] = 5147, + [5327] = 5148, + [5328] = 5149, + [5329] = 5004, + [5330] = 5147, + [5331] = 5148, + [5332] = 5149, + [5333] = 5004, + [5334] = 5147, + [5335] = 5148, + [5336] = 5149, + [5337] = 5004, + [5338] = 5148, + [5339] = 5149, + [5340] = 5004, + [5341] = 5148, + [5342] = 5149, + [5343] = 5004, + [5344] = 5148, + [5345] = 5149, + [5346] = 5004, + [5347] = 5148, + [5348] = 5149, + [5349] = 5004, + [5350] = 5148, + [5351] = 5149, + [5352] = 5004, + [5353] = 5148, + [5354] = 5149, + [5355] = 5004, + [5356] = 5148, + [5357] = 5149, + [5358] = 5004, + [5359] = 5148, + [5360] = 5149, + [5361] = 5004, + [5362] = 5148, + [5363] = 5149, + [5364] = 5004, + [5365] = 5148, + [5366] = 5149, + [5367] = 5004, + [5368] = 5148, + [5369] = 5149, + [5370] = 5004, + [5371] = 5148, + [5372] = 5149, + [5373] = 5004, + [5374] = 5148, + [5375] = 5149, + [5376] = 5004, + [5377] = 5148, + [5378] = 5149, + [5379] = 5004, + [5380] = 5148, + [5381] = 5149, + [5382] = 5005, + [5383] = 4986, + [5384] = 5172, + [5385] = 4987, + [5386] = 4984, + [5387] = 4995, + [5388] = 4984, + [5389] = 5179, + [5390] = 5022, + [5391] = 4986, + [5392] = 4987, + [5393] = 4990, + [5394] = 4995, + [5395] = 5007, + [5396] = 4998, + [5397] = 5008, + [5398] = 5009, + [5399] = 4986, + [5400] = 5400, + [5401] = 4987, + [5402] = 5043, + [5403] = 4997, + [5404] = 5288, + [5405] = 5057, + [5406] = 5036, + [5407] = 4997, + [5408] = 5077, + [5409] = 4989, + [5410] = 4997, + [5411] = 5003, + [5412] = 5006, + [5413] = 5000, + [5414] = 5288, + [5415] = 5415, + [5416] = 5416, + [5417] = 5417, + [5418] = 5079, + [5419] = 5019, + [5420] = 5005, + [5421] = 5022, + [5422] = 5191, + [5423] = 5007, + [5424] = 5008, + [5425] = 5009, + [5426] = 5044, + [5427] = 2748, + [5428] = 5428, }; static const TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -10679,5357 +10918,6862 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '$', 1510, - '&', 824, - '\'', 1688, - '(', 1561, - ')', 1616, - '*', 1112, - '+', 1117, - ',', 1469, - '-', 1118, - '.', 1721, - '/', 1114, - ':', 1713, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1144, - '?', 1717, - '@', 1481, - '[', 1665, - ']', 1466, - '^', 1731, - '_', 1502, - '`', 1692, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1816, + '"', 1783, + '#', 2420, + '$', 1574, + '&', 852, + '\'', 1786, + '(', 1625, + ')', 1698, + '*', 1144, + '+', 1149, + ',', 1527, + '-', 1150, + '.', 1819, + '/', 1146, + ':', 1811, + ';', 1509, + '<', 1173, + '=', 701, + '>', 1176, + '?', 1815, + '@', 1539, + '[', 1758, + ']', 1524, + '^', 1831, + '_', 1565, + '`', 1790, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(571); + lookahead == '\r' || + lookahead == ' ') SKIP(616); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1373); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1405); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1448); - END_STATE(); - case 2: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1724, - ':', 1463, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1479, - '?', 1717, - '@', 1481, - '[', 1465, - ']', 1466, - '{', 1498, - '|', 1452, - '}', 1499, - ); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(1); + if (lookahead == '"') ADVANCE(1783); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(1529); + if (lookahead == '\'') ADVANCE(1786); + if (lookahead == '(') ADVANCE(1525); + if (lookahead == '+') ADVANCE(2224); + if (lookahead == '-') ADVANCE(1547); + if (lookahead == '.') ADVANCE(2222); + if (lookahead == '0') ADVANCE(1707); + if (lookahead == ':') ADVANCE(1811); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'N') ADVANCE(2279); + if (lookahead == '[') ADVANCE(1523); + if (lookahead == '_') ADVANCE(2238); + if (lookahead == '`') ADVANCE(1790); + if (lookahead == 'e') ADVANCE(2211); + if (lookahead == 'f') ADVANCE(2247); + if (lookahead == 'n') ADVANCE(2275); + if (lookahead == 'o') ADVANCE(2212); + if (lookahead == 't') ADVANCE(2262); + if (lookahead == '{') ADVANCE(1561); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(3); + lookahead == ' ') ADVANCE(1507); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`') ADVANCE(1373); + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']') ADVANCE(2302); + END_STATE(); + case 2: + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(2); + if (lookahead == '"') ADVANCE(1783); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(1529); + if (lookahead == '\'') ADVANCE(1786); + if (lookahead == '(') ADVANCE(1525); + if (lookahead == '+') ADVANCE(730); + if (lookahead == '-') ADVANCE(1554); + if (lookahead == '.') ADVANCE(725); + if (lookahead == '0') ADVANCE(1706); + if (lookahead == 'I') ADVANCE(837); + if (lookahead == 'N') ADVANCE(833); + if (lookahead == '[') ADVANCE(1523); + if (lookahead == '^') ADVANCE(1831); + if (lookahead == '_') ADVANCE(744); + if (lookahead == '`') ADVANCE(1790); + if (lookahead == 'a') ADVANCE(782); + if (lookahead == 'c') ADVANCE(749); + if (lookahead == 'd') ADVANCE(759); + if (lookahead == 'e') ADVANCE(787); + if (lookahead == 'f') ADVANCE(751); + if (lookahead == 'i') ADVANCE(743); + if (lookahead == 'l') ADVANCE(767); + if (lookahead == 'm') ADVANCE(753); + if (lookahead == 'n') ADVANCE(797); + if (lookahead == 't') ADVANCE(800); + if (lookahead == 'u') ADVANCE(813); + if (lookahead == 'w') ADVANCE(779); + if (lookahead == '{') ADVANCE(1561); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1508); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1725); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); case 3: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1725, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '?', 1717, - '[', 1465, - ']', 1466, - '{', 1498, - '|', 1452, - '}', 1499, - ); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(4); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == ':') ADVANCE(1811); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == '=') ADVANCE(1829); + if (lookahead == 'e') ADVANCE(315); + if (lookahead == 'o') ADVANCE(317); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(3); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`') ADVANCE(1373); + lookahead == ' ') ADVANCE(1507); END_STATE(); case 4: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1720, - ':', 1713, - ';', 1451, - '=', 323, - '?', 1717, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - ); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(4); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == ':') ADVANCE(1811); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'e') ADVANCE(315); + if (lookahead == 'o') ADVANCE(317); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(4); + lookahead == ' ') ADVANCE(1507); END_STATE(); case 5: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1722, - ':', 1713, - ';', 1451, - '=', 323, - '?', 1717, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1816, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 1823, + '0', 1707, + ';', 1509, + '?', 1815, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(4); + lookahead == '\r' || + lookahead == ' ') SKIP(7); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 6: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1506, + '!', 1816, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 1823, + '0', 1707, + ';', 1509, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(8); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 7: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1506, + '!', 1816, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 1822, + '0', 1707, + ';', 1509, + '?', 1815, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(7); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 8: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '\n', 1506, + '!', 1816, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 1822, + '0', 1707, + ';', 1509, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(8); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 9: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1506, + '!', 1816, + '#', 2420, + '$', 1528, + '(', 1525, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 1825, + ':', 1521, + ';', 1509, + '<', 1173, + '=', 701, + '>', 1537, + '?', 1815, + '@', 1539, + '[', 1523, + ']', 1524, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(10); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`') ADVANCE(1405); END_STATE(); case 10: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '\n', 1506, + '!', 1816, + '#', 2420, + '$', 1528, + '(', 1525, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 1824, + ':', 1521, + ';', 1509, + '=', 701, + '>', 1537, + '?', 1815, + '[', 1523, + ']', 1524, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(10); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`') ADVANCE(1405); END_STATE(); case 11: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '\n', 1506, + '!', 1816, + '#', 2420, + ')', 1526, + '.', 1818, + ':', 1811, + ';', 1509, + '=', 351, + '?', 1815, + 'a', 447, + 'e', 315, + 'i', 413, + 'o', 316, + 'x', 457, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(11); END_STATE(); case 12: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1808, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '\n', 1506, + '!', 1816, + '#', 2420, + ')', 1526, + '.', 1820, + ':', 1811, + ';', 1509, + '=', 351, + '?', 1815, + 'a', 447, + 'e', 315, + 'i', 413, + 'o', 316, + 'x', 457, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(11); END_STATE(); case 13: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1506, + '!', 1964, + '#', 2420, + '$', 1528, + '(', 1625, + '*', 1576, + '+', 1640, + '-', 1556, + '.', 1676, + '/', 1631, + '<', 1614, + '=', 1966, + '>', 1538, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 2053, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); case 14: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1506, + '!', 1964, + '#', 2420, + '$', 1528, + '(', 1625, + '*', 1576, + '+', 1640, + '-', 1556, + '.', 1991, + '/', 1631, + '<', 1614, + '=', 1966, + '>', 1538, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 2053, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); case 15: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1661, + '/', 1631, + '<', 1614, + '=', 1966, + '>', 1538, + 'B', 1742, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1980, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 2068, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '{', 1561, + 0xb5, 2085, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 16: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1661, + '/', 1631, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1992, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 17: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + '<', 1614, + '=', 1966, + '>', 1538, + 'B', 1742, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + '_', 1989, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1980, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 2068, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '{', 1561, + 0xb5, 2085, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(35); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 18: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + '<', 1614, + '=', 1966, + '>', 1538, + 'B', 1742, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1980, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 2068, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '{', 1561, + 0xb5, 2085, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 19: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + '<', 1614, + '=', 1966, + '>', 1538, + 'B', 1742, + 'E', 1986, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1983, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 2068, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '{', 1561, + 0xb5, 2085, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 20: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, - '{', 1498, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 1992, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(20); + lookahead == '\r' || + lookahead == ' ') SKIP(35); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 21: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1992, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); + lookahead == '\r' || + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 22: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + '<', 1614, + '=', 1966, + '>', 1538, + 'a', 2052, + 'b', 2036, + 'e', 2053, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); + lookahead == '\r' || + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 23: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1660, + '/', 1631, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1992, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); + lookahead == '\r' || + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 24: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 1992, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); + lookahead == '\r' || + lookahead == ' ') SKIP(35); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 25: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1992, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); + lookahead == '\r' || + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 26: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + '<', 1614, + '=', 1966, + '>', 1538, + 'a', 2052, + 'b', 2036, + 'e', 2053, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); + lookahead == '\r' || + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 27: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1506, + '!', 348, + '#', 2420, + '$', 1528, + '*', 1576, + '+', 1641, + '-', 1557, + '.', 364, + '/', 1631, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 451, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 477, + 's', 511, + 'x', 457, + '{', 1561, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(27); END_STATE(); case 28: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, - '{', 1498, + '\n', 1506, + '!', 348, + '#', 2420, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 312, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 306, + 's', 511, + 'x', 457, + '|', 1510, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1713, - ';', 1451, - '=', 1729, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '}', 1499, + '\n', 1506, + '!', 348, + '#', 2420, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 314, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 316, + 's', 511, + 'x', 457, + '|', 1510, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1713, - ';', 1451, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '}', 1499, + '\n', 1506, + '!', 348, + '#', 2420, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ':', 1811, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 312, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 306, + 's', 511, + 'x', 457, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(30); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); END_STATE(); case 31: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 1580, - '-', 1491, - '.', 698, - '0', 1623, - ':', 1463, - ';', 1451, - '<', 1141, - '=', 323, - '>', 1479, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 348, + '#', 2420, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 312, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 306, + 's', 511, + 'x', 457, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead)) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(31); END_STATE(); case 32: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 1580, - '-', 1491, - '.', 698, - '0', 1623, - ':', 1463, - ';', 1451, - '=', 323, - '>', 1479, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 348, + '#', 2420, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 314, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 316, + 's', 511, + 'x', 457, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead)) ADVANCE(824); END_STATE(); case 33: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ';', 1451, - '=', 1729, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, - '\t', 1450, - ' ', 1450, + '\n', 1506, + '!', 348, + '#', 2420, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 312, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 306, + 's', 511, + 'x', 457, + '|', 1510, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(33); END_STATE(); case 34: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - '=', 673, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '\n', 1506, + '!', 348, + '#', 2420, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 314, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 316, + 's', 511, + 'x', 457, + '|', 1510, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(34); END_STATE(); case 35: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - '=', 673, - '>', 1479, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '\n', 1506, + '!', 348, + '#', 2420, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 451, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 477, + 's', 511, + 'x', 457, + '{', 1561, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); END_STATE(); case 36: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 691, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 'o', 693, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 2224, + '-', 1547, + '.', 2222, + '0', 1707, + ';', 1509, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 37: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 299, - '.', 718, - '=', 1729, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 1957, + '-', 1549, + '.', 1672, + '0', 1683, + ';', 1509, + 'N', 2127, + '[', 1523, + '_', 1989, + '`', 1790, + 'e', 1930, + 'f', 2004, + 'n', 2109, + 'o', 1935, + 't', 2073, + '{', 1561, + 'I', 2134, + 'i', 2134, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(88); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1690); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 38: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 299, - '.', 718, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 1957, + '-', 1549, + '.', 1958, + '0', 1683, + ';', 1509, + 'N', 2127, + '[', 1523, + '_', 1989, + '`', 1790, + 'e', 1930, + 'f', 2004, + 'n', 2109, + 'o', 1935, + 't', 2073, + '{', 1561, + 'I', 2134, + 'i', 2134, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(88); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1690); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 39: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 308, - '-', 1491, - '.', 309, - '0', 1626, - ':', 1713, - 'N', 533, - '[', 1465, - '_', 342, - '`', 1692, - 'f', 347, - 'n', 442, - 't', 457, - '{', 1498, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 1960, + '-', 1552, + '.', 1663, + '0', 1710, + ';', 1509, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'N', 2127, + 'P', 1986, + 'T', 1986, + '[', 1523, + '_', 1998, + '`', 1790, + 'd', 2003, + 'e', 1923, + 'f', 2004, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2084, + 'o', 1935, + 'p', 1985, + 's', 2021, + 't', 1984, + 'u', 2085, + 'w', 2042, + '{', 1561, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, + 'I', 2134, + 'i', 2134, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(542); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1729); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 40: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 1580, - '-', 1491, - '.', 701, - '0', 1628, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 1960, + '-', 1552, + '.', 1663, + '0', 1710, + ';', 1509, + 'E', 1996, + 'N', 2127, + '[', 1523, + '_', 1998, + '`', 1790, + 'e', 1924, + 'f', 2004, + 'n', 2109, + 'o', 1935, + 't', 2073, + '{', 1561, + 'I', 2134, + 'i', 2134, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1729); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 41: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1491, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2027, - 't', 2030, - '{', 1498, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 1960, + '-', 1552, + '.', 1956, + '0', 1683, + ';', 1509, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'N', 2127, + 'P', 1986, + 'T', 1986, + '[', 1523, + '_', 1989, + '`', 1790, + 'd', 2003, + 'e', 1923, + 'f', 2004, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2084, + 'o', 1935, + 'p', 1985, + 's', 2021, + 't', 1984, + 'u', 2085, + 'w', 2042, + '{', 1561, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, + 'I', 2134, + 'i', 2134, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(41); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1690); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 42: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ':', 1713, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1989, - 'f', 2015, - 'n', 2043, - 'o', 1990, - 't', 2030, - '{', 1498, - '|', 1452, - '}', 1499, - '\t', 1449, - ' ', 1449, - 'I', 2051, - 'i', 2051, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 1960, + '-', 1552, + '.', 1956, + '0', 1683, + ';', 1509, + 'E', 1996, + 'N', 2127, + '[', 1523, + '_', 1989, + '`', 1790, + 'e', 1924, + 'f', 2004, + 'n', 2109, + 'o', 1935, + 't', 2073, + '{', 1561, + 'I', 2134, + 'i', 2134, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1690); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(2070); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 43: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1993, - 'f', 2015, - 'n', 2043, - 'o', 1994, - 't', 2030, - '{', 1498, - '\t', 1450, - ' ', 1450, - 'I', 2051, - 'i', 2051, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 1960, + '-', 1552, + '.', 1956, + '0', 1710, + ';', 1509, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'N', 2127, + 'P', 1986, + 'T', 1986, + '[', 1523, + '_', 1998, + '`', 1790, + 'd', 2003, + 'e', 1923, + 'f', 2004, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2084, + 'o', 1935, + 'p', 1985, + 's', 2021, + 't', 1984, + 'u', 2085, + 'w', 2042, + '{', 1561, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, + 'I', 2134, + 'i', 2134, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1729); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 44: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2082, - ',', 1469, - '-', 2081, - '.', 2083, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 1960, + '-', 1552, + '.', 1956, + '0', 1710, + ';', 1509, + 'E', 1986, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'N', 2127, + 'P', 1986, + 'T', 1986, + '[', 1523, + '_', 1998, + '`', 1790, + 'd', 2003, + 'e', 1929, + 'f', 2004, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2084, + 'o', 1935, + 'p', 1985, + 's', 2021, + 't', 1984, + 'u', 2085, + 'w', 2042, + '{', 1561, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, + 'I', 2134, + 'i', 2134, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(44); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1729); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 45: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2139, - '-', 2138, - '.', 2137, - '0', 1627, - 'N', 2154, - '[', 1465, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, - '{', 1498, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 1960, + '-', 1552, + '.', 1956, + '0', 1710, + ';', 1509, + 'E', 1996, + 'N', 2127, + '[', 1523, + '_', 1998, + '`', 1790, + 'e', 1924, + 'f', 2004, + 'n', 2109, + 'o', 1935, + 't', 2073, + '{', 1561, + 'I', 2134, + 'i', 2134, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(45); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2160); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2174); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1729); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 46: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 298, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 1501, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '}', 1499, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 1960, + '-', 1552, + '.', 1956, + '0', 1710, + ';', 1509, + 'N', 2127, + '[', 1523, + '_', 1998, + '`', 1790, + 'e', 1930, + 'f', 2004, + 'n', 2109, + 'o', 1935, + 't', 2073, + '{', 1561, + 'I', 2134, + 'i', 2134, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(46); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1729); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 47: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2082, - ',', 1469, - '-', 2081, - '.', 2080, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 1960, + '-', 1552, + '.', 1959, + '0', 1683, + ';', 1509, + 'E', 1996, + 'N', 2127, + '[', 1523, + '_', 1989, + '`', 1790, + 'e', 1924, + 'f', 2004, + 'n', 2109, + 'o', 1935, + 't', 2073, + '{', 1561, + 'I', 2134, + 'i', 2134, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(47); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1690); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 48: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '-', 1486, - '`', 1692, - 'f', 1515, - 'n', 1519, - 't', 1520, - '{', 1498, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 1960, + '-', 1552, + '.', 1959, + '0', 1710, + ';', 1509, + 'E', 1996, + 'N', 2127, + '[', 1523, + '_', 1998, + '`', 1790, + 'e', 1924, + 'f', 2004, + 'n', 2109, + 'o', 1935, + 't', 2073, + '{', 1561, + 'I', 2134, + 'i', 2134, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(48); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1729); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 49: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 2139, - '-', 2138, - '.', 2137, - '>', 1479, - 'N', 2154, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 1960, + '-', 1552, + '.', 1959, + '0', 1710, + ';', 1509, + 'N', 2127, + '[', 1523, + '_', 1998, + '`', 1790, + 'e', 1930, + 'f', 2004, + 'n', 2109, + 'o', 1935, + 't', 2073, + '{', 1561, + 'I', 2134, + 'i', 2134, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(49); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2174); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1729); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 50: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 1492, - '.', 849, - '0', 864, - ':', 1713, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 944, - 't', 959, - '{', 1498, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 1960, + '-', 1552, + '.', 1673, + '0', 1710, + ';', 1509, + 'E', 1996, + 'N', 2127, + '[', 1523, + '_', 1998, + '`', 1790, + 'e', 1924, + 'f', 2004, + 'n', 2109, + 'o', 1935, + 't', 2073, + '{', 1561, + 'I', 2134, + 'i', 2134, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(869); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1729); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 51: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '+', 1963, - ',', 1469, - '-', 1489, - '.', 1601, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 2226, + '-', 1550, + '.', 1669, + '0', 1684, + ';', 1509, + 'N', 2279, + '[', 1523, + '_', 2243, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(88); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1691); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 52: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '+', 1963, - ',', 1469, - '-', 1489, - '.', 1964, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 2226, + '-', 1550, + '.', 2223, + '0', 1684, + ';', 1509, + 'N', 2279, + '[', 1523, + '_', 2243, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(88); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1691); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 53: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1599, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + ')', 1526, + '+', 730, + '-', 1554, + '.', 725, + '0', 1706, + ':', 1811, + ';', 1509, + '=', 1829, + '@', 1520, + 'I', 837, + 'N', 833, + '[', 1523, + '^', 1831, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 797, + 't', 800, + 'u', 813, + 'w', 775, + '{', 1561, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(54); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1725); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(852); END_STATE(); case 54: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1599, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + ')', 1526, + '+', 730, + '-', 1554, + '.', 725, + '0', 1706, + ':', 1811, + ';', 1509, + '@', 1520, + 'I', 837, + 'N', 833, + '[', 1523, + '^', 1831, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 797, + 't', 800, + 'u', 813, + 'w', 775, + '{', 1561, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(54); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1725); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(852); END_STATE(); case 55: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - '_', 1345, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + ')', 1526, + '+', 1644, + '-', 1554, + '.', 726, + '0', 1706, + ':', 1521, + ';', 1509, + '<', 1173, + '=', 351, + '>', 1537, + '@', 1520, + 'I', 837, + 'N', 833, + '[', 1523, + ']', 1524, + '^', 1831, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 797, + 't', 800, + 'u', 813, + 'w', 775, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(56); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1725); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead)) ADVANCE(852); END_STATE(); case 56: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + ')', 1526, + '+', 1644, + '-', 1554, + '.', 726, + '0', 1706, + ':', 1521, + ';', 1509, + '=', 351, + '>', 1537, + '@', 1520, + 'I', 837, + 'N', 833, + '[', 1523, + ']', 1524, + '^', 1831, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 797, + 't', 800, + 'u', 813, + 'w', 775, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(56); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1725); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead)) ADVANCE(852); END_STATE(); case 57: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1343, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1342, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 730, + '-', 1554, + '.', 725, + '0', 1706, + '=', 701, + '>', 1537, + '@', 1539, + 'I', 837, + 'N', 833, + '[', 1523, + '^', 1831, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 797, + 't', 800, + 'u', 813, + 'w', 779, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(58); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1725); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(852); END_STATE(); case 58: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 730, + '-', 1554, + '.', 725, + '0', 1706, + '=', 701, + '>', 1537, + 'I', 837, + 'N', 833, + '[', 1523, + '^', 1831, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 797, + 't', 800, + 'u', 813, + 'w', 779, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(58); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1725); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); case 59: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 730, + '-', 1554, + '.', 725, + '0', 1706, + 'I', 837, + 'N', 833, + '[', 1523, + '^', 1831, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 719, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 797, + 'o', 721, + 't', 800, + 'u', 813, + 'w', 775, + '{', 1561, + '|', 1510, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(59); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1725); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); case 60: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 730, + '-', 326, + '.', 746, + '=', 1829, + 'I', 837, + 'N', 833, + '[', 1523, + ']', 1524, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(61); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); case 61: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1600, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 730, + '-', 326, + '.', 746, + 'I', 837, + 'N', 833, + '[', 1523, + ']', 1524, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(61); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); case 62: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 336, + '-', 1554, + '.', 337, + '0', 1709, + ':', 1811, + 'N', 558, + '[', 1523, + '_', 369, + '`', 1790, + 'f', 374, + 'n', 468, + 't', 482, + '{', 1561, + 'I', 567, + 'i', 567, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(62); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1728); END_STATE(); case 63: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 1644, + '-', 1554, + '.', 729, + '0', 1712, + 'I', 837, + 'N', 833, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(63); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); case 64: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1554, + '.', 2221, + '0', 1707, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'f', 2247, + 'n', 2259, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == '<' || - lookahead == '?' || - lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(64); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 65: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 1823, + '0', 1707, + ';', 1509, + '?', 1815, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(73); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 66: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 1823, + '0', 1707, + ';', 1509, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(75); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(74); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 67: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - '=', 1796, - '_', 1813, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 2222, + '0', 1419, + ';', 1509, + '=', 1829, + 'N', 1487, + '[', 1523, + '_', 1420, + '`', 1790, + 'e', 1408, + 'f', 1425, + 'n', 1484, + 'o', 1409, + 't', 1462, + '{', 1561, + 'I', 1492, + 'i', 1492, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1423); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1505); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '_' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 68: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 2222, + '0', 1707, + ';', 1509, + '=', 1829, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 69: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 2222, + '0', 1707, + ';', 1509, + 'E', 2245, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2213, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(75); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 70: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - '=', 1796, - '_', 1813, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 2222, + '0', 1707, + ';', 1509, + 'N', 2279, + '[', 1758, + '_', 2238, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 71: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 312, - ':', 1463, - '=', 673, - '?', 1483, - '[', 1665, - ']', 1466, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 2222, + '0', 1707, + ';', 1509, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 72: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 312, - ':', 1463, - '=', 673, - '[', 1465, - ']', 1466, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 2222, + '0', 1684, + ';', 1509, + 'E', 2245, + 'N', 2279, + '[', 1523, + '_', 2243, + '`', 1790, + 'e', 2213, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1691); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 73: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - '+', 314, - ',', 1469, - '-', 1490, - '.', 313, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 1822, + '0', 1707, + ';', 1509, + '?', 1815, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(73); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 74: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 312, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 1822, + '0', 1707, + ';', 1509, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(74); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 75: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '.', 337, - '=', 323, - 'i', 386, - '|', 1452, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 1670, + '0', 1707, + ';', 1509, + 'E', 2245, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2213, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(75); - if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 2225, + '0', 1707, + ';', 1509, + 'E', 2245, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2213, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 77: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 2225, + '0', 1707, + ';', 1509, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 78: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1595, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 2225, + '0', 1684, + ';', 1509, + 'E', 2245, + 'N', 2279, + '[', 1523, + '_', 2243, + '`', 1790, + 'e', 2213, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1691); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 79: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1547, + '.', 1668, + '0', 1707, + ';', 1509, + 'E', 2245, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2213, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 80: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 1553, + '.', 2222, + '0', 1873, + ';', 1509, + '=', 1829, + 'N', 1892, + '[', 1523, + '_', 1874, + '`', 1790, + 'e', 1859, + 'f', 1878, 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + 'o', 1860, + 't', 1884, + '{', 1561, + 'I', 1897, + 'i', 1897, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1877); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '_' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 81: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2314, + ',', 1527, + '-', 2313, + '.', 2315, + '0', 1708, + 'N', 2332, + '[', 1523, + ']', 1524, + '_', 2319, + '`', 1790, + 'f', 2322, + 'n', 2331, + 't', 2328, + '{', 1561, + 'I', 2338, + 'i', 2338, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(81); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1727); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2360); END_STATE(); case 82: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2371, + '-', 2370, + '.', 2369, + '0', 1711, + 'N', 2386, + '[', 1523, + '_', 2373, + '`', 1790, + 'f', 2376, + 'n', 2385, + 't', 2382, + '{', 1561, + 'I', 2392, + 'i', 2392, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(82); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1730); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2406); END_STATE(); case 83: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 1960, + '-', 1552, + '.', 1663, + '0', 1710, + ';', 1509, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'N', 2127, + 'P', 1986, + 'T', 1986, + '[', 1523, + '_', 1998, + '`', 1790, + 'd', 2003, + 'e', 1923, + 'f', 2004, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2084, + 'o', 1935, + 'p', 1985, + 's', 2021, + 't', 1984, + 'u', 2085, + 'w', 2042, + '{', 1561, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, + 'I', 2134, + 'i', 2134, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1729); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 84: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '\t', 1450, - ' ', 1450, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 1960, + '-', 1552, + '.', 1956, + '0', 1683, + ';', 1509, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'N', 2127, + 'P', 1986, + 'T', 1986, + '[', 1523, + '_', 1989, + '`', 1790, + 'd', 2003, + 'e', 1923, + 'f', 2004, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2084, + 'o', 1935, + 'p', 1985, + 's', 2021, + 't', 1984, + 'u', 2085, + 'w', 2042, + '{', 1561, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, + 'I', 2134, + 'i', 2134, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1690); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 85: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1594, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 1960, + '-', 1552, + '.', 1956, + '0', 1710, + ';', 1509, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'N', 2127, + 'P', 1986, + 'T', 1986, + '[', 1523, + '_', 1998, + '`', 1790, + 'd', 2003, + 'e', 1923, + 'f', 2004, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2084, + 'o', 1935, + 'p', 1985, + 's', 2021, + 't', 1984, + 'u', 2085, + 'w', 2042, + '{', 1561, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, + 'I', 2134, + 'i', 2134, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1729); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 86: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 1960, + '-', 1552, + '.', 1956, + '0', 1710, + ';', 1509, + 'E', 1986, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'N', 2127, + 'P', 1986, + 'T', 1986, + '[', 1523, + '_', 1998, + '`', 1790, + 'd', 2003, + 'e', 1929, + 'f', 2004, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2084, + 'o', 1935, + 'p', 1985, + 's', 2021, + 't', 1984, + 'u', 2085, + 'w', 2042, + '{', 1561, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, + 'I', 2134, + 'i', 2134, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1729); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 87: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 1960, + '-', 1552, + '.', 1959, + '0', 1710, + ';', 1509, + 'N', 2127, + '[', 1523, + '_', 1998, + '`', 1790, + 'e', 1930, + 'f', 2004, + 'n', 2109, + 'o', 1935, + 't', 2073, + '{', 1561, + 'I', 2134, + 'i', 2134, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1729); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 88: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ';') ADVANCE(1451); + ADVANCE_MAP( + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2226, + '-', 1550, + '.', 2223, + '0', 1707, + ';', 1509, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'e', 2216, + 'f', 2247, + 'n', 2275, + 'o', 2217, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, + ); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(88); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 89: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 297, - '.', 1723, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '@', 1481, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '{', 1498, - '}', 1499, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1528, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 334, + '.', 2221, + '0', 1707, + 'N', 2279, + '[', 1523, + '_', 1564, + '`', 1790, + 'f', 2247, + 'n', 2275, + 't', 2262, + '{', 1561, + '}', 1562, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(90); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(89); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); case 90: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 297, - '.', 1723, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '{', 1498, - '}', 1499, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1528, + '\'', 1786, + '(', 1525, + '+', 2314, + ',', 1527, + '-', 2313, + '.', 2312, + '0', 1708, + 'N', 2332, + '[', 1523, + ']', 1524, + '_', 2319, + '`', 1790, + 'f', 2322, + 'n', 2331, + 't', 2328, + '{', 1561, + 'I', 2338, + 'i', 2338, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(90); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1727); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2360); END_STATE(); case 91: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - '.', 310, - ':', 1463, - ';', 1451, - '=', 675, - '>', 1479, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1528, + '\'', 1786, + '(', 1525, + '-', 1545, + '`', 1790, + 'f', 1579, + 'n', 1583, + 't', 1584, + '{', 1561, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(92); + lookahead == '\r' || + lookahead == ' ') SKIP(91); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1589); END_STATE(); case 92: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - ':', 1463, - ';', 1451, - '=', 675, - '>', 1479, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1506, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 2371, + '-', 2370, + '.', 2369, + '>', 1537, + 'N', 2386, + '_', 2373, + '`', 1790, + 'f', 2376, + 'n', 2385, + 't', 2382, + 'I', 2392, + 'i', 2392, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(92); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1730); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2406); END_STATE(); case 93: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ',', 1469, - ':', 1463, - '=', 673, - ']', 1466, - 'i', 422, + '\n', 1506, + '"', 1783, + '#', 2423, + '$', 1530, + '\'', 1786, + '(', 1525, + '+', 876, + '-', 1555, + '.', 877, + '0', 892, + ':', 1811, + 'N', 1048, + '[', 1523, + '_', 894, + '`', 1790, + 'f', 902, + 'n', 972, + 't', 987, + '{', 1561, + 'I', 1053, + 'i', 1053, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(93); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1666); + lookahead == '\r' || + lookahead == ' ') SKIP(62); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(897); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1074); END_STATE(); case 94: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1595, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + '+', 2184, + ',', 1527, + '-', 1548, + '.', 2185, + ':', 1521, + '=', 701, + ']', 1524, + '_', 1377, + '|', 1510, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(114); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1405); END_STATE(); case 95: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1595, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + '+', 2184, + ',', 1527, + '-', 1548, + '.', 1667, + ':', 1521, + '=', 701, + ']', 1524, + '_', 1377, + '|', 1510, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(114); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1405); END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 1671, + ':', 1521, + '=', 701, + 'E', 1367, + 'G', 1375, + 'K', 1375, + 'M', 1375, + 'P', 1375, + 'T', 1375, + ']', 1524, + 'd', 1380, + 'e', 1366, + 'g', 1374, + 'h', 1398, + 'k', 1374, + 'm', 1376, + 'n', 1400, + 'p', 1374, + 's', 1385, + 't', 1374, + 'u', 1400, + 'w', 1386, + '|', 1510, + 0xb5, 1400, + 'B', 1746, + 'b', 1746, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(116); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1405); END_STATE(); case 97: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 1671, + ':', 1521, + '=', 701, + ']', 1524, + '|', 1510, + 'E', 1368, + 'e', 1368, + ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1405); END_STATE(); case 98: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 2187, + ':', 1521, + '=', 701, + 'E', 1367, + 'G', 1375, + 'K', 1375, + 'M', 1375, + 'P', 1375, + 'T', 1375, + ']', 1524, + '_', 1377, + 'd', 1380, + 'e', 1366, + 'g', 1374, + 'h', 1398, + 'k', 1374, + 'm', 1376, + 'n', 1400, + 'p', 1374, + 's', 1385, + 't', 1374, + 'u', 1400, + 'w', 1386, + '|', 1510, + 0xb5, 1400, + 'B', 1746, + 'b', 1746, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(116); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1405); END_STATE(); case 99: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 2187, + ':', 1521, + '=', 701, + 'E', 1367, + 'G', 1375, + 'K', 1375, + 'M', 1375, + 'P', 1375, + 'T', 1375, + ']', 1524, + 'd', 1380, + 'e', 1366, + 'g', 1374, + 'h', 1398, + 'k', 1374, + 'm', 1376, + 'n', 1400, + 'p', 1374, + 's', 1385, + 't', 1374, + 'u', 1400, + 'w', 1386, + '|', 1510, + 0xb5, 1400, + 'B', 1746, + 'b', 1746, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(116); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1405); END_STATE(); case 100: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 2187, + ':', 1521, + '=', 701, + 'E', 1375, + 'G', 1375, + 'K', 1375, + 'M', 1375, + 'P', 1375, + 'T', 1375, + ']', 1524, + 'd', 1380, + 'e', 1374, + 'g', 1374, + 'h', 1398, + 'k', 1374, + 'm', 1376, + 'n', 1400, + 'p', 1374, + 's', 1385, + 't', 1374, + 'u', 1400, + 'w', 1386, + '|', 1510, + 0xb5, 1400, + 'B', 1746, + 'b', 1746, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(116); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1405); END_STATE(); case 101: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 2187, + ':', 1521, + '=', 701, + ']', 1524, + '_', 1377, + '|', 1510, + 'E', 1368, + 'e', 1368, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(116); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1405); END_STATE(); case 102: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 2187, + ':', 1521, + '=', 701, + ']', 1524, + '|', 1510, + 'E', 1368, + 'e', 1368, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(116); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1405); END_STATE(); case 103: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 2187, + ':', 1521, + '=', 701, + ']', 1524, + '|', 1510, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(116); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1405); END_STATE(); case 104: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 1666, + ':', 1521, + '=', 701, + ']', 1524, + '|', 1510, + 'E', 1368, + 'e', 1368, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(116); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1405); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 2186, + ':', 1521, + '=', 701, + ']', 1524, + '_', 1377, + '|', 1510, + 'E', 1368, + 'e', 1368, + ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1405); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 2186, + ':', 1521, + '=', 701, + ']', 1524, + '|', 1510, + 'E', 1368, + 'e', 1368, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(116); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1405); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 2186, + ':', 1521, + '=', 701, + ']', 1524, + '|', 1510, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(116); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1405); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + '.', 1676, + '=', 1967, + '_', 1989, + 'i', 2029, + '|', 1510, + '+', 1957, + '-', 1957, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + '.', 1676, + '=', 1967, + '_', 1989, + '|', 1510, + '+', 1957, + '-', 1957, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); case 110: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + '.', 1991, + '=', 1967, + '_', 1989, + 'i', 2029, + '|', 1510, + '+', 1957, + '-', 1957, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); case 111: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + '.', 1991, + '=', 1967, + '_', 1989, + '|', 1510, + '+', 1957, + '-', 1957, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); case 112: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ':', 1713, - ';', 1451, - '=', 1729, - 'e', 288, - 'o', 290, - '|', 1452, - '}', 1499, - '\t', 1449, - ' ', 1449, + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1525, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 340, + ':', 1521, + '=', 701, + '[', 1523, + ']', 1524, + '|', 1510, ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(112); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1405); END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '{') ADVANCE(1498); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1525, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 2186, + ':', 1521, + '=', 701, + '[', 1758, + ']', 1524, + '|', 1510, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(113); + lookahead == '\r' || + lookahead == ' ') SKIP(112); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(2208); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1405); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ';') ADVANCE(1451); - if (lookahead == '=') ADVANCE(1729); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + ')', 1526, + '+', 342, + ',', 1527, + '-', 1551, + '.', 341, + ':', 1521, + '=', 701, + ']', 1524, + '|', 1510, + ); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + lookahead == '\r' || + lookahead == ' ') SKIP(114); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1405); END_STATE(); case 115: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(323); - if (lookahead == 'i') ADVANCE(386); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 340, + ':', 1521, + '=', 701, + '?', 1541, + ']', 1524, + '|', 1510, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == '\r' || + lookahead == ' ') SKIP(116); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1405); END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + ')', 1526, + ',', 1527, + '-', 1546, + '.', 340, + ':', 1521, + '=', 701, + ']', 1524, + '|', 1510, + ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(116); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1405); END_STATE(); case 117: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + '.', 364, + '=', 351, + 'i', 412, + '|', 1510, + '+', 342, + '-', 342, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(117); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + '.', 364, + '=', 351, + '|', 1510, + '+', 342, + '-', 342, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(118); END_STATE(); case 119: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1525, + ')', 1526, + ',', 1527, + '-', 324, + '.', 1821, + ':', 1521, + ';', 1509, + '=', 701, + '>', 1537, + '@', 1539, + '[', 1523, + ']', 1524, + 'c', 1383, + 'f', 1402, + 'i', 1391, + 'o', 1394, + 'v', 1379, + '{', 1561, + '}', 1562, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(120); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1405); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1525, + ')', 1526, + ',', 1527, + '-', 324, + '.', 1821, + ':', 1521, + ';', 1509, + '=', 701, + '>', 1537, + '[', 1523, + ']', 1524, + 'c', 1383, + 'f', 1402, + 'i', 1391, + 'o', 1394, + 'v', 1379, + '{', 1561, + '}', 1562, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(120); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1405); END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1525, + ')', 1526, + '-', 324, + '.', 338, + ':', 1521, + ';', 1509, + '=', 703, + '>', 1537, + '[', 1523, + 'a', 447, + 'e', 315, + 'i', 413, + 'o', 316, + 'x', 457, + '{', 1561, + '|', 1510, + '}', 1562, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(122); END_STATE(); case 122: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1525, + ')', 1526, + '-', 324, + ':', 1521, + ';', 1509, + '=', 703, + '>', 1537, + '[', 1523, + 'a', 447, + 'e', 315, + 'i', 413, + 'o', 316, + 'x', 457, + '{', 1561, + '|', 1510, + '}', 1562, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(122); END_STATE(); case 123: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2191); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == ',') ADVANCE(1527); + if (lookahead == ':') ADVANCE(1521); + if (lookahead == '=') ADVANCE(701); + if (lookahead == ']') ADVANCE(1524); + if (lookahead == 'i') ADVANCE(448); if (lookahead == '\t' || - lookahead == ' ') SKIP(113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '\r' || + lookahead == ' ') SKIP(123); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1759); END_STATE(); case 124: ADVANCE_MAP( - '\n', 1707, - '\r', 1707, - '!', 1719, - '#', 2188, - '(', 1561, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1722, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1481, - '[', 1465, - ']', 1466, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, - '\t', 1708, - ' ', 1708, - 0x0b, 1707, - '\f', 1707, - ',', 1707, + '\n', 1506, + '#', 2420, + '.', 1661, + '=', 1967, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'd', 2003, + 'e', 1981, + 'g', 1985, + 'h', 2067, + 'i', 2029, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + '|', 1510, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(143); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 125: ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '$', 181, - '\'', 1688, - '.', 1720, - ';', 1716, - '?', 1717, - '`', 1692, - '\t', 125, - ' ', 125, + '\n', 1506, + '#', 2420, + '.', 1661, + '=', 1967, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'd', 2003, + 'e', 1981, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + '|', 1510, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(144); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 126: ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '$', 181, - '\'', 1688, - '.', 1720, - ';', 1716, - '?', 1717, - '`', 1692, - '\t', 125, - ' ', 125, + '\n', 1506, + '#', 2420, + '.', 1661, + '=', 1967, + 'i', 2029, + '|', 1510, + 'E', 1996, + 'e', 1996, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (lookahead != 0 && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != '[' && - lookahead != ']' && - lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1730); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(143); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 127: - ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - '?', 1717, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - ); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1661); + if (lookahead == '=') ADVANCE(1967); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1996); if (lookahead == '\t' || - lookahead == ' ') SKIP(127); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(144); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 128: ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '\n', 1506, + '#', 2420, + '.', 1955, + '=', 1967, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + '_', 1989, + 'd', 2003, + 'e', 1981, + 'g', 1985, + 'h', 2067, + 'i', 2029, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + '|', 1510, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(128); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 129: ADVANCE_MAP( - '!', 1718, - '#', 2188, - ',', 1707, - '.', 1723, - ';', 1716, - '?', 1717, - ']', 1466, - '\t', 1710, - ' ', 1710, + '\n', 1506, + '#', 2420, + '.', 1955, + '=', 1967, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + '_', 1989, + 'd', 2003, + 'e', 1981, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + '|', 1510, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 130: ADVANCE_MAP( - '!', 1718, - '#', 2188, - '.', 1722, - ':', 1713, - '>', 1479, - '?', 1717, - 'E', 333, - 'G', 333, - 'K', 333, - 'M', 333, - 'P', 333, - 'T', 333, - ']', 1466, - 'd', 346, - 'e', 332, - 'g', 332, - 'h', 451, - 'k', 332, - 'm', 335, - 'n', 469, - 'p', 332, - 's', 376, - 't', 332, - 'u', 469, - 'w', 408, - '}', 1499, - 0xb5, 469, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '\n', 1506, + '#', 2420, + '.', 1955, + '=', 1967, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'd', 2003, + 'e', 1981, + 'g', 1985, + 'h', 2067, + 'i', 2029, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + '|', 1510, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(143); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 131: ADVANCE_MAP( - '!', 1718, - '#', 2188, - '.', 1723, - ':', 1463, - '>', 1479, - '?', 1717, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, + '\n', 1506, + '#', 2420, + '.', 1955, + '=', 1967, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'd', 2003, + 'e', 1981, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + '|', 1510, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(144); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 132: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '\n', 1506, + '#', 2420, + '.', 1955, + '=', 1967, + 'E', 1986, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'd', 2003, + 'e', 1985, + 'g', 1985, + 'h', 2067, + 'i', 2029, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + '|', 1510, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(143); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 133: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '\n', 1506, + '#', 2420, + '.', 1955, + '=', 1967, + 'E', 1986, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'd', 2003, + 'e', 1985, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + '|', 1510, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(144); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 134: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '\n', 1506, + '#', 2420, + '.', 1955, + '=', 1967, + '_', 1989, + 'i', 2029, + '|', 1510, + 'E', 1996, + 'e', 1996, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 135: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '\n', 1506, + '#', 2420, + '.', 1955, + '=', 1967, + '_', 1989, + '|', 1510, + 'E', 1996, + 'e', 1996, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 136: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '\n', 1506, + '#', 2420, + '.', 1955, + '=', 1967, + 'i', 2029, + '|', 1510, + 'E', 1996, + 'e', 1996, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(143); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 137: + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1955); + if (lookahead == '=') ADVANCE(1967); + if (lookahead == 'i') ADVANCE(2029); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(143); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 138: + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1955); + if (lookahead == '=') ADVANCE(1967); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1996); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(144); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 139: + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1955); + if (lookahead == '=') ADVANCE(1967); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(144); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 140: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '\n', 1506, + '#', 2420, + '.', 1660, + '=', 1967, + 'i', 2029, + '|', 1510, + 'E', 1996, + 'e', 1996, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(143); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 138: + case 141: + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1660); + if (lookahead == '=') ADVANCE(1967); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1996); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(144); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 142: + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == ':') ADVANCE(1811); + if (lookahead == '{') ADVANCE(1561); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(142); + END_STATE(); + case 143: + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '=') ADVANCE(351); + if (lookahead == 'i') ADVANCE(412); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(143); + END_STATE(); + case 144: + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '=') ADVANCE(351); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(144); + END_STATE(); + case 145: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1808, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '\n', 1506, + '#', 2420, + '=', 1967, + '_', 1989, + 'i', 2029, + '|', 1510, + 'E', 1996, + 'e', 1996, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 139: + case 146: + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '=') ADVANCE(1967); + if (lookahead == '_') ADVANCE(1989); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1996); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 147: + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '=') ADVANCE(1967); + if (lookahead == 'i') ADVANCE(2029); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1996); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(143); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 148: + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '=') ADVANCE(1967); + if (lookahead == 'i') ADVANCE(2029); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(143); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 149: + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '=') ADVANCE(1967); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1996); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(144); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 150: + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '=') ADVANCE(1967); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(144); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 151: + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '#') ADVANCE(2423); + if (lookahead == ':') ADVANCE(1811); + if (lookahead == '{') ADVANCE(1561); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(142); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); + END_STATE(); + case 152: + ADVANCE_MAP( + '\n', 1805, + '!', 1817, + '#', 2420, + '(', 1625, + '*', 1577, + '+', 1642, + '-', 1558, + '.', 1820, + '/', 1632, + ':', 1811, + ';', 1509, + '<', 1614, + '=', 702, + '>', 1538, + '?', 1815, + '@', 1539, + '[', 1523, + ']', 1524, + 'a', 447, + 'b', 426, + 'e', 312, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 306, + 's', 511, + 'x', 457, + '|', 1510, + '}', 1562, + '\t', 1806, + '\r', 1806, + ' ', 1806, + 0x0b, 1805, + '\f', 1805, + ',', 1805, + ); + END_STATE(); + case 153: + ADVANCE_MAP( + '!', 1816, + '"', 1783, + '#', 2420, + '$', 209, + '\'', 1786, + '.', 1818, + ';', 1814, + '?', 1815, + '`', 1790, + '\t', 153, + '\r', 153, + ' ', 153, + ); + if (('\n' <= lookahead && lookahead <= '\f')) ADVANCE(346); + END_STATE(); + case 154: + ADVANCE_MAP( + '!', 1816, + '"', 1783, + '#', 2420, + '$', 209, + '\'', 1786, + '.', 1818, + ';', 1814, + '?', 1815, + '`', 1790, + '\t', 153, + '\r', 153, + ' ', 153, + ); + if (('\n' <= lookahead && lookahead <= '\f')) ADVANCE(346); + if (lookahead != 0 && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '[' && + lookahead != ']' && + lookahead != '^' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1830); + END_STATE(); + case 155: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1816, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 730, + '-', 326, + '.', 1826, + '?', 1815, + 'I', 837, + 'N', 833, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); - case 140: + case 156: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1816, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 730, + '-', 326, + '.', 1826, + 'I', 837, + 'N', 833, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); - case 141: + case 157: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1816, + '#', 2420, + ',', 1805, + '.', 1821, + ';', 1814, + '?', 1815, + ']', 1524, + '\t', 1808, + '\r', 1808, + ' ', 1808, + ); + if (('\n' <= lookahead && lookahead <= '\f')) ADVANCE(1809); + END_STATE(); + case 158: + ADVANCE_MAP( + '!', 1816, + '#', 2420, + '.', 1820, + ':', 1811, + '>', 1537, + '?', 1815, + ']', 1524, + '}', 1562, + '\t', 1810, + '\r', 1810, + ' ', 1810, + ); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + END_STATE(); + case 159: + ADVANCE_MAP( + '!', 1816, + '#', 2420, + '.', 1821, + ':', 1521, + '>', 1537, + '?', 1815, + ']', 1524, + '}', 1562, + '\t', 1810, + '\r', 1810, + ' ', 1810, + ); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + END_STATE(); + case 160: + ADVANCE_MAP( + '!', 1964, + '#', 2420, + '$', 1528, + '(', 1625, + '*', 1576, + '+', 1640, + '-', 1556, + '.', 1676, + '/', 1631, + '<', 1614, + '=', 1965, + '>', 1538, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 2053, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); - case 142: + case 161: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1964, + '#', 2420, + '$', 1528, + '(', 1625, + '*', 1576, + '+', 1640, + '-', 1556, + '.', 1991, + '/', 1631, + '<', 1614, + '=', 1965, + '>', 1538, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 2053, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); - case 143: + case 162: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1661, + '/', 1631, + '<', 1614, + '=', 1965, + '>', 1538, + 'B', 1742, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1980, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 2068, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + 0xb5, 2085, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(175); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 144: + case 163: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1661, + '/', 1631, + '<', 1614, + '=', 1965, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1992, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(175); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 145: + case 164: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + '<', 1614, + '=', 1965, + '>', 1538, + 'B', 1742, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + '_', 1989, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1980, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 2068, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + 0xb5, 2085, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(175); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 146: + case 165: ADVANCE_MAP( - '!', 320, - '#', 2188, - '$', 1470, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - '<', 1550, - '=', 321, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + '<', 1614, + '=', 1965, + '>', 1538, + 'B', 1742, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1980, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 2068, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + 0xb5, 2085, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); + lookahead == '\r' || + lookahead == ' ') SKIP(175); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 147: + case 166: ADVANCE_MAP( - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 321, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + '<', 1614, + '=', 1965, + '>', 1538, + 'B', 1742, + 'E', 1986, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1983, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 2068, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + 0xb5, 2085, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); + lookahead == '\r' || + lookahead == ' ') SKIP(175); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 148: + case 167: + ADVANCE_MAP( + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + '<', 1614, + '=', 1965, + '>', 1538, + 'E', 1996, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 1992, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(175); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 168: + ADVANCE_MAP( + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + '<', 1614, + '=', 1965, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1992, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(175); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 169: + ADVANCE_MAP( + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + '<', 1614, + '=', 1965, + '>', 1538, + 'a', 2052, + 'b', 2036, + 'e', 2053, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(175); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 170: + ADVANCE_MAP( + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1660, + '/', 1631, + '<', 1614, + '=', 1965, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1992, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(175); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 171: + ADVANCE_MAP( + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + '<', 1614, + '=', 1965, + '>', 1538, + 'E', 1996, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 1992, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(175); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 172: + ADVANCE_MAP( + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + '<', 1614, + '=', 1965, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1992, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(175); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 173: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1561, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - ';', 1716, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '\t', 151, - ' ', 151, - 'I', 2051, - 'i', 2051, + '!', 1964, + '#', 2420, + '(', 1625, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + '<', 1614, + '=', 1965, + '>', 1538, + 'a', 2052, + 'b', 2036, + 'e', 2053, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 2068, + 's', 2094, + 'x', 2058, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(175); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 174: + ADVANCE_MAP( + '!', 348, + '#', 2420, + '$', 1528, + '*', 1576, + '+', 1641, + '-', 1557, + '.', 364, + '/', 1631, + '<', 1614, + '=', 349, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 451, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 477, + 's', 511, + 'x', 457, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(174); + END_STATE(); + case 175: + ADVANCE_MAP( + '!', 348, + '#', 2420, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + '<', 1614, + '=', 349, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 451, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 477, + 's', 511, + 'x', 457, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(175); + END_STATE(); + case 176: + ADVANCE_MAP( + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1625, + '+', 2224, + '-', 335, + '.', 2221, + '0', 1707, + ';', 1814, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'f', 2247, + 'n', 2275, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, + '\t', 179, + '\r', 179, + ' ', 179, + ); + if (('\n' <= lookahead && lookahead <= '\f')) ADVANCE(346); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); - case 149: + case 177: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 1580, - '-', 1491, - '.', 701, - '0', 1628, - ':', 1463, - '<', 1141, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - '\t', 1712, - ' ', 1712, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 1644, + '-', 1554, + '.', 729, + '0', 1712, + ':', 1521, + '<', 1173, + '>', 1537, + '@', 1539, + 'I', 837, + 'N', 833, + ']', 1524, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, + '}', 1562, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1731); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(852); END_STATE(); - case 150: + case 178: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - ':', 1713, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 335, + '.', 2221, + '0', 1707, + ':', 1811, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'f', 2247, + 'n', 2275, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(150); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == '\r' || + lookahead == ' ') SKIP(178); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); - case 151: + case 179: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - ';', 1716, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '\t', 151, - ' ', 151, - 'I', 2051, - 'i', 2051, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 335, + '.', 2221, + '0', 1707, + ';', 1814, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'f', 2247, + 'n', 2275, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, + '\t', 179, + '\r', 179, + ' ', 179, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('\n' <= lookahead && lookahead <= '\f')) ADVANCE(346); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); - case 152: + case 180: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 335, + '.', 2221, + '0', 1707, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'f', 2247, + 'n', 2275, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(152); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == '\r' || + lookahead == ' ') SKIP(180); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); - case 153: + case 181: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - ':', 1713, - 'N', 2047, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 335, + '.', 2221, + ':', 1811, + 'N', 2279, + '_', 2238, + '`', 1790, + 'f', 2247, + 'n', 2275, + 't', 2262, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(153); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == '\r' || + lookahead == ' ') SKIP(181); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1726); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); - case 154: + case 182: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - 'N', 2047, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 335, + '.', 2221, + 'N', 2279, + '_', 2238, + '`', 1790, + 'f', 2247, + 'n', 2275, + 't', 2262, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(154); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == '\r' || + lookahead == ' ') SKIP(182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1726); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); - case 155: + case 183: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2082, - '-', 2081, - '.', 2083, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, - '\t', 1712, - ' ', 1712, - 'I', 2106, - 'i', 2106, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 2314, + '-', 2313, + '.', 2315, + '0', 1708, + 'N', 2332, + '[', 1523, + ']', 1524, + '_', 2319, + '`', 1790, + 'f', 2322, + 'n', 2331, + 't', 2328, + '{', 1561, + 'I', 2338, + 'i', 2338, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1727); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2360); END_STATE(); - case 156: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1471); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '`') ADVANCE(1692); + case 184: + if (lookahead == '"') ADVANCE(1783); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(1529); + if (lookahead == '\'') ADVANCE(1786); + if (lookahead == '(') ADVANCE(1525); + if (lookahead == '`') ADVANCE(1790); if (lookahead == '\t' || - lookahead == ' ') SKIP(156); + lookahead == '\r' || + lookahead == ' ') SKIP(184); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2209); END_STATE(); - case 157: + case 185: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, - ',', 1707, - '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 1501, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '}', 1499, - '\t', 1709, - ' ', 1709, - 'I', 2051, - 'i', 2051, + '"', 1783, + '#', 2420, + '$', 1528, + '\'', 1786, + '(', 1525, + '+', 2224, + ',', 1805, + '-', 335, + '.', 2221, + '0', 1707, + 'N', 2279, + '[', 1523, + '_', 1564, + '`', 1790, + 'f', 2247, + 'n', 2275, + 't', 2262, + '{', 1561, + '}', 1562, + 'I', 2283, + 'i', 2283, + '\t', 1807, + '\r', 1807, + ' ', 1807, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('\n' <= lookahead && lookahead <= '\f')) ADVANCE(1805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); - case 158: + case 186: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '"', 1783, + '#', 2420, + '$', 1528, + '\'', 1786, + '(', 1525, + '+', 2224, + '-', 335, + '.', 2221, + '0', 1707, + 'N', 2279, + '[', 1523, + '_', 2238, + '`', 1790, + 'f', 2247, + 'n', 2275, + 't', 2262, + '{', 1561, + 'I', 2283, + 'i', 2283, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(158); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == '\r' || + lookahead == ' ') SKIP(186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2302); END_STATE(); - case 159: + case 187: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2082, - '-', 2081, - '.', 2080, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, - '\t', 1712, - ' ', 1712, - 'I', 2106, - 'i', 2106, + '"', 1783, + '#', 2420, + '$', 1528, + '\'', 1786, + '(', 1525, + '+', 2314, + '-', 2313, + '.', 2312, + '0', 1708, + 'N', 2332, + '[', 1523, + ']', 1524, + '_', 2319, + '`', 1790, + 'f', 2322, + 'n', 2331, + 't', 2328, + '{', 1561, + 'I', 2338, + 'i', 2338, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1727); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2360); END_STATE(); - case 160: + case 188: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1561, - '+', 702, - '-', 307, - '.', 718, - ':', 1463, - '>', 1479, - 'I', 809, - 'N', 805, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - '\t', 1712, - ' ', 1712, + '"', 1783, + '#', 2420, + '\'', 1786, + '(', 1625, + '+', 730, + '-', 335, + '.', 746, + ':', 1521, + '>', 1537, + 'I', 837, + 'N', 833, + ']', 1524, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, + '}', 1562, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); - case 161: + case 189: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 307, - '.', 718, - ':', 1713, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 730, + '-', 335, + '.', 746, + ':', 1811, + 'I', 837, + 'N', 833, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(189); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); - case 162: + case 190: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - '?', 1717, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 730, + '-', 326, + '.', 1826, + '?', 1815, + 'I', 837, + 'N', 833, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(190); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); - case 163: + case 191: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 730, + '-', 326, + '.', 1826, + 'I', 837, + 'N', 833, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(191); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); - case 164: + case 192: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 718, - ':', 1713, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 730, + '-', 326, + '.', 746, + ':', 1811, + 'I', 837, + 'N', 833, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(192); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); - case 165: + case 193: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 718, - '=', 1729, - 'I', 1443, - 'N', 1438, - '_', 1379, - '`', 1692, - 'a', 1403, - 'c', 1380, - 'd', 1387, - 'e', 1408, - 'f', 1381, - 'i', 1378, - 'l', 1394, - 'm', 1383, - 'n', 1434, - 't', 1417, - 'u', 1423, - 'w', 1400, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 730, + '-', 326, + '.', 746, + '=', 1829, + 'I', 1492, + 'N', 1487, + '_', 1420, + '`', 1790, + 'a', 1450, + 'c', 1426, + 'd', 1434, + 'e', 1454, + 'f', 1424, + 'i', 1417, + 'l', 1439, + 'm', 1428, + 'n', 1484, + 't', 1464, + 'u', 1471, + 'w', 1445, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1379); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1420); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1505); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); - case 166: + case 194: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 718, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 730, + '-', 326, + '.', 746, + 'I', 837, + 'N', 833, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); - case 167: + case 195: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 1596, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 730, + '-', 1946, + '.', 746, + 'I', 837, + 'N', 833, + '[', 1758, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == '\r' || + lookahead == ' ') SKIP(194); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(852); END_STATE(); - case 168: + case 196: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 718, - 'I', 809, - 'N', 805, - '[', 1665, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 730, + '-', 1946, + '.', 728, + 'E', 737, + 'G', 742, + 'I', 837, + 'K', 742, + 'M', 742, + 'N', 833, + 'P', 742, + 'T', 742, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 750, + 'e', 736, + 'f', 751, + 'g', 741, + 'h', 802, + 'i', 743, + 'k', 741, + 'l', 767, + 'm', 738, + 'n', 810, + 'p', 741, + 's', 768, + 't', 740, + 'u', 812, + 'w', 778, + 0xb5, 811, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == '\r' || + lookahead == ' ') SKIP(194); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(852); END_STATE(); - case 169: + case 197: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 730, + '-', 1946, + '.', 728, + 'E', 737, + 'G', 742, + 'I', 837, + 'K', 742, + 'M', 742, + 'N', 833, + 'P', 742, + 'T', 742, + '_', 748, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 750, + 'e', 736, + 'f', 751, + 'g', 741, + 'h', 802, + 'i', 743, + 'k', 741, + 'l', 767, + 'm', 738, + 'n', 810, + 'p', 741, + 's', 768, + 't', 740, + 'u', 812, + 'w', 778, + 0xb5, 811, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == '\r' || + lookahead == ' ') SKIP(194); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(852); END_STATE(); - case 170: + case 198: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 720, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 730, + '-', 1946, + '.', 728, + 'E', 742, + 'G', 742, + 'I', 837, + 'K', 742, + 'M', 742, + 'N', 833, + 'P', 742, + 'T', 742, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 750, + 'e', 739, + 'f', 751, + 'g', 741, + 'h', 802, + 'i', 743, + 'k', 741, + 'l', 767, + 'm', 738, + 'n', 810, + 'p', 741, + 's', 768, + 't', 740, + 'u', 812, + 'w', 778, + 0xb5, 811, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == '\r' || + lookahead == ' ') SKIP(194); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == '^') ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(852); END_STATE(); - case 171: + case 199: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 714, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 711, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 730, + '-', 1946, + '.', 1662, + 'E', 737, + 'G', 742, + 'I', 837, + 'K', 742, + 'M', 742, + 'N', 833, + 'P', 742, + 'T', 742, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 750, + 'e', 736, + 'f', 751, + 'g', 741, + 'h', 802, + 'i', 743, + 'k', 741, + 'l', 767, + 'm', 738, + 'n', 810, + 'p', 741, + 's', 768, + 't', 740, + 'u', 812, + 'w', 778, + 0xb5, 811, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == '\r' || + lookahead == ' ') SKIP(194); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(2156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(852); END_STATE(); - case 172: + case 200: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 2139, - '-', 2138, - '.', 2137, - '>', 1479, - 'N', 2154, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, - '\t', 1712, - ' ', 1712, - 'I', 2160, - 'i', 2160, + '"', 1783, + '#', 2420, + '\'', 1786, + '+', 2371, + '-', 2370, + '.', 2369, + '>', 1537, + 'N', 2386, + '_', 2373, + '`', 1790, + 'f', 2376, + 'n', 2385, + 't', 2382, + 'I', 2392, + 'i', 2392, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1730); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2174); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2406); END_STATE(); - case 173: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '`') ADVANCE(1692); + case 201: + if (lookahead == '"') ADVANCE(1783); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '\'') ADVANCE(1786); + if (lookahead == '`') ADVANCE(1790); if (lookahead == '\t' || - lookahead == ' ') SKIP(173); + lookahead == '\r' || + lookahead == ' ') SKIP(201); END_STATE(); - case 174: + case 202: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - '0', 865, - ':', 1713, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, - '{', 1498, + '"', 1783, + '#', 2423, + '$', 1530, + '\'', 1786, + '(', 1525, + '+', 876, + '-', 875, + '.', 877, + '0', 893, + ':', 1811, + 'N', 1048, + '[', 1523, + '_', 894, + '`', 1790, + 'f', 902, + 'n', 1038, + 't', 987, + '{', 1561, + 'I', 1053, + 'i', 1053, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(150); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == '\r' || + lookahead == ' ') SKIP(178); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2302); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(900); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1074); END_STATE(); - case 175: + case 203: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - '0', 865, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, - '{', 1498, + '"', 1783, + '#', 2423, + '$', 1530, + '\'', 1786, + '(', 1525, + '+', 876, + '-', 875, + '.', 877, + '0', 893, + 'N', 1048, + '[', 1523, + '_', 894, + '`', 1790, + 'f', 902, + 'n', 1038, + 't', 987, + '{', 1561, + 'I', 1053, + 'i', 1053, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(152); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == '\r' || + lookahead == ' ') SKIP(180); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2302); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(900); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1074); END_STATE(); - case 176: + case 204: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - ':', 1713, - 'N', 1020, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, + '"', 1783, + '#', 2423, + '$', 1530, + '\'', 1786, + '(', 1525, + '+', 876, + '-', 875, + '.', 877, + ':', 1811, + 'N', 1048, + '_', 894, + '`', 1790, + 'f', 902, + 'n', 1038, + 't', 987, + 'I', 1053, + 'i', 1053, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(153); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == '\r' || + lookahead == ' ') SKIP(181); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2302); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(900); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1074); END_STATE(); - case 177: + case 205: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - 'N', 1020, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, + '"', 1783, + '#', 2423, + '$', 1530, + '\'', 1786, + '(', 1525, + '+', 876, + '-', 875, + '.', 877, + 'N', 1048, + '_', 894, + '`', 1790, + 'f', 902, + 'n', 1038, + 't', 987, + 'I', 1053, + 'i', 1053, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(154); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == '\r' || + lookahead == ' ') SKIP(182); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2302); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(900); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1074); END_STATE(); - case 178: + case 206: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '\'', 1688, - '+', 848, - '-', 847, - '.', 866, - ':', 1713, - 'I', 1025, - 'N', 1020, - '_', 866, - '`', 1692, - 'a', 932, - 'c', 879, - 'd', 895, - 'e', 935, - 'f', 873, - 'i', 861, - 'l', 905, - 'm', 881, - 'n', 1010, - 't', 964, - 'u', 980, - 'w', 916, + '"', 1783, + '#', 2423, + '\'', 1786, + '+', 876, + '-', 875, + '.', 894, + ':', 1811, + 'I', 1053, + 'N', 1048, + '_', 894, + '`', 1790, + 'a', 960, + 'c', 907, + 'd', 923, + 'e', 963, + 'f', 901, + 'i', 889, + 'l', 933, + 'm', 909, + 'n', 1038, + 't', 992, + 'u', 1008, + 'w', 944, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(161); + lookahead == '\r' || + lookahead == ' ') SKIP(189); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '^') ADVANCE(1074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); - case 179: + case 207: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '\'', 1688, - '+', 848, - '-', 840, - '.', 866, - ':', 1713, - 'I', 1025, - 'N', 1020, - '_', 866, - '`', 1692, - 'a', 932, - 'c', 879, - 'd', 895, - 'e', 935, - 'f', 873, - 'i', 861, - 'l', 905, - 'm', 881, - 'n', 1010, - 't', 964, - 'u', 980, - 'w', 916, + '"', 1783, + '#', 2423, + '\'', 1786, + '+', 876, + '-', 868, + '.', 894, + ':', 1811, + 'I', 1053, + 'N', 1048, + '_', 894, + '`', 1790, + 'a', 960, + 'c', 907, + 'd', 923, + 'e', 963, + 'f', 901, + 'i', 889, + 'l', 933, + 'm', 909, + 'n', 1038, + 't', 992, + 'u', 1008, + 'w', 944, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(164); + lookahead == '\r' || + lookahead == ' ') SKIP(192); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '^') ADVANCE(1074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); - case 180: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(1687); - if (lookahead == '\\') ADVANCE(512); + case 208: + if (lookahead == '"') ADVANCE(1783); + if (lookahead == '#') ADVANCE(1785); + if (lookahead == '\\') ADVANCE(537); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1686); - if (lookahead != 0) ADVANCE(1687); + lookahead == '\r' || + lookahead == ' ') ADVANCE(1784); + if (lookahead != 0) ADVANCE(1785); END_STATE(); - case 181: - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + case 209: + if (lookahead == '"') ADVANCE(1800); + if (lookahead == '\'') ADVANCE(1799); END_STATE(); - case 182: - if (lookahead == '"') ADVANCE(1703); - if (lookahead == '#') ADVANCE(1698); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '\\') ADVANCE(507); + case 210: + if (lookahead == '"') ADVANCE(1801); + if (lookahead == '#') ADVANCE(1796); + if (lookahead == '(') ADVANCE(1525); + if (lookahead == '\\') ADVANCE(532); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1697); - if (lookahead != 0) ADVANCE(1698); + lookahead == '\r' || + lookahead == ' ') ADVANCE(1795); + if (lookahead != 0) ADVANCE(1796); END_STATE(); - case 183: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1604); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + case 211: + ADVANCE_MAP( + '#', 2420, + '$', 1528, + '(', 1625, + '.', 1676, + '_', 1989, + '{', 1561, + '+', 1957, + '-', 1957, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(220); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); - case 184: + case 212: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1603, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2420, + '$', 1528, + '(', 1625, + '.', 1674, + ']', 1524, + '_', 2197, + '}', 1562, + '+', 2184, + '-', 2184, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2208); + END_STATE(); + case 213: + ADVANCE_MAP( + '#', 2420, + '$', 1528, + '(', 1625, + '.', 2194, + '_', 2197, + '}', 1562, + '+', 2184, + '-', 2184, + '\t', 1810, + '\r', 1810, + ' ', 1810, + ); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2208); + END_STATE(); + case 214: + ADVANCE_MAP( + '#', 2420, + '$', 1528, + '(', 1625, + '.', 2167, + ']', 1524, + '_', 2166, + '+', 2160, + '-', 2160, + '\t', 1810, + '\r', 1810, + ' ', 1810, + ); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16037,42 +17781,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 185: - ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1972, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1963, - '-', 1963, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1986); - END_STATE(); - case 186: + case 215: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1945, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2420, + '$', 1528, + '(', 1625, + '.', 2158, + ']', 1524, + '_', 2166, + '+', 2160, + '-', 2160, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16080,24 +17807,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 187: + case 216: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1936, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2420, + '$', 1528, + '(', 1625, + '.', 1675, + ']', 1524, + '_', 2166, + '+', 2160, + '-', 2160, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16105,177 +17833,127 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 188: + case 217: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1602, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1963, - '-', 1963, + '#', 2420, + '$', 1528, + '(', 1625, + '.', 1991, + '_', 1989, + '{', 1561, + '+', 1957, + '-', 1957, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1986); - END_STATE(); - case 189: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(220); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); - case 190: + case 218: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1598, - '[', 1665, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2420, + '$', 1528, + '(', 1625, + '.', 1665, + '[', 1758, + ']', 1524, + '_', 2166, + '}', 1562, + '+', 2160, + '-', 2160, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 191: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '\t' || - lookahead == ' ') SKIP(191); + case 219: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(1528); + if (lookahead == '.') ADVANCE(364); + if (lookahead == ']') ADVANCE(1524); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); - END_STATE(); - case 192: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '{') ADVANCE(1498); + lookahead == '-') ADVANCE(342); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); - if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '\r' || + lookahead == ' ') SKIP(219); END_STATE(); - case 193: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '\t' || - lookahead == ' ') SKIP(193); + case 220: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(1528); + if (lookahead == '.') ADVANCE(364); + if (lookahead == '{') ADVANCE(1561); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(342); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(220); END_STATE(); - case 194: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == ':') ADVANCE(1713); + case 221: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(1528); + if (lookahead == '.') ADVANCE(364); + if (lookahead == '+' || + lookahead == '-') ADVANCE(342); if (lookahead == '\t' || - lookahead == ' ') SKIP(194); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(221); END_STATE(); - case 195: - ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + case 222: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(1528); + if (lookahead == ':') ADVANCE(1811); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(222); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1405); END_STATE(); - case 196: + case 223: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2420, + '(', 1625, + '.', 1661, + 'E', 2162, + 'G', 2164, + 'K', 2164, + 'M', 2164, + 'P', 2164, + 'T', 2164, + ']', 1524, + 'd', 2171, + 'e', 2161, + 'g', 2163, + 'h', 2177, + 'k', 2163, + 'm', 2165, + 'n', 2178, + 'p', 2163, + 's', 2174, + 't', 2163, + 'u', 2178, + 'w', 2175, + '}', 1562, + 0xb5, 2178, + 'B', 1742, + 'b', 1742, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16283,56 +17961,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 197: + case 224: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2420, + '(', 1625, + '.', 1661, + 'E', 2189, + 'G', 2191, + 'K', 2191, + 'M', 2191, + 'P', 2191, + 'T', 2191, + 'd', 2198, + 'e', 2188, + 'g', 2190, + 'h', 2204, + 'k', 2190, + 'm', 2192, + 'n', 2205, + 'p', 2190, + 's', 2201, + 't', 2190, + 'u', 2205, + 'w', 2202, + '}', 1562, + 0xb5, 2205, + 'B', 1742, + 'b', 1742, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 198: + case 225: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2420, + '(', 1625, + '.', 1661, + ']', 1524, + '}', 1562, + 'E', 2169, + 'e', 2169, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16340,21 +18020,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 199: + case 226: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2420, + '(', 1625, + '.', 1661, + ']', 1524, + 'E', 2169, + 'e', 2169, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16362,37 +18043,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 200: + case 227: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2420, + '(', 1625, + '.', 1661, + '}', 1562, + 'E', 2195, + 'e', 2195, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 201: + case 228: + ADVANCE_MAP( + '#', 2420, + '(', 1625, + '.', 1660, + ']', 1524, + '}', 1562, + 'E', 2195, + 'e', 2195, + '\t', 1810, + '\r', 1810, + ' ', 1810, + ); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 229: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1594, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2420, + '(', 1625, + '.', 1660, + ']', 1524, + 'E', 2169, + 'e', 2169, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16400,58 +18099,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 202: - ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1594, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); - END_STATE(); - case 203: + case 230: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - '_', 1944, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2420, + '(', 1625, + '.', 2157, + 'E', 2162, + 'G', 2164, + 'K', 2164, + 'M', 2164, + 'P', 2164, + 'T', 2164, + ']', 1524, + '_', 2166, + 'd', 2171, + 'e', 2161, + 'g', 2163, + 'h', 2177, + 'k', 2163, + 'm', 2165, + 'n', 2178, + 'p', 2163, + 's', 2174, + 't', 2163, + 'u', 2178, + 'w', 2175, + '}', 1562, + 0xb5, 2178, + 'B', 1742, + 'b', 1742, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16460,42 +18145,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 204: + case 231: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - '_', 1944, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2420, + '(', 1625, + '.', 2157, + 'E', 2162, + 'G', 2164, + 'K', 2164, + 'M', 2164, + 'P', 2164, + 'T', 2164, + ']', 1524, + '_', 2166, + 'd', 2171, + 'e', 2161, + 'g', 2163, + 'h', 2177, + 'k', 2163, + 'm', 2165, + 'n', 2178, + 'p', 2163, + 's', 2174, + 't', 2163, + 'u', 2178, + 'w', 2175, + 0xb5, 2178, + 'B', 1742, + 'b', 1742, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16504,41 +18190,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 205: + case 232: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2420, + '(', 1625, + '.', 2157, + 'E', 2162, + 'G', 2164, + 'K', 2164, + 'M', 2164, + 'P', 2164, + 'T', 2164, + ']', 1524, + 'd', 2171, + 'e', 2161, + 'g', 2163, + 'h', 2177, + 'k', 2163, + 'm', 2165, + 'n', 2178, + 'p', 2163, + 's', 2174, + 't', 2163, + 'u', 2178, + 'w', 2175, + '}', 1562, + 0xb5, 2178, + 'B', 1742, + 'b', 1742, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16546,40 +18233,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 206: + case 233: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2420, + '(', 1625, + '.', 2157, + 'E', 2162, + 'G', 2164, + 'K', 2164, + 'M', 2164, + 'P', 2164, + 'T', 2164, + ']', 1524, + 'd', 2171, + 'e', 2161, + 'g', 2163, + 'h', 2177, + 'k', 2163, + 'm', 2165, + 'n', 2178, + 'p', 2163, + 's', 2174, + 't', 2163, + 'u', 2178, + 'w', 2175, + 0xb5, 2178, + 'B', 1742, + 'b', 1742, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16587,41 +18275,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 207: + case 234: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1942, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1941, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2420, + '(', 1625, + '.', 2157, + 'E', 2164, + 'G', 2164, + 'K', 2164, + 'M', 2164, + 'P', 2164, + 'T', 2164, + ']', 1524, + 'd', 2171, + 'e', 2163, + 'g', 2163, + 'h', 2177, + 'k', 2163, + 'm', 2165, + 'n', 2178, + 'p', 2163, + 's', 2174, + 't', 2163, + 'u', 2178, + 'w', 2175, + '}', 1562, + 0xb5, 2178, + 'B', 1742, + 'b', 1742, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16629,40 +18318,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 208: + case 235: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1942, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1941, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2420, + '(', 1625, + '.', 2157, + 'E', 2164, + 'G', 2164, + 'K', 2164, + 'M', 2164, + 'P', 2164, + 'T', 2164, + ']', 1524, + 'd', 2171, + 'e', 2163, + 'g', 2163, + 'h', 2177, + 'k', 2163, + 'm', 2165, + 'n', 2178, + 'p', 2163, + 's', 2174, + 't', 2163, + 'u', 2178, + 'w', 2175, + 0xb5, 2178, + 'B', 1742, + 'b', 1742, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16670,24 +18360,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 209: + case 236: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2420, + '(', 1625, + '.', 2157, + ']', 1524, + '_', 2166, + '}', 1562, + 'E', 2169, + 'e', 2169, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16696,23 +18387,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 210: + case 237: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2420, + '(', 1625, + '.', 2157, + ']', 1524, + '_', 2166, + 'E', 2169, + 'e', 2169, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16721,22 +18413,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 211: + case 238: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2420, + '(', 1625, + '.', 2157, + ']', 1524, + '}', 1562, + 'E', 2169, + 'e', 2169, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16744,18 +18437,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 212: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1935); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '}') ADVANCE(1499); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + case 239: + ADVANCE_MAP( + '#', 2420, + '(', 1625, + '.', 2157, + ']', 1524, + '}', 1562, + '\t', 1810, + '\r', 1810, + ' ', 1810, + ); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16763,21 +18459,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 213: + case 240: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2420, + '(', 1625, + '.', 2157, + ']', 1524, + 'E', 2169, + 'e', 2169, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16785,17 +18482,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 214: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1935); - if (lookahead == ']') ADVANCE(1466); + case 241: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == '.') ADVANCE(2157); + if (lookahead == ']') ADVANCE(1524); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == '\r' || + lookahead == ' ') ADVANCE(1810); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16803,23 +18501,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 215: + case 242: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1937, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2420, + '(', 1625, + '.', 2159, + ']', 1524, + '_', 2166, + 'E', 2169, + 'e', 2169, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16828,21 +18527,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 216: + case 243: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1937, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2420, + '(', 1625, + '.', 2159, + ']', 1524, + 'E', 2169, + 'e', 2169, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16850,17 +18550,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 217: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1937); - if (lookahead == ']') ADVANCE(1466); + case 244: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == '.') ADVANCE(2159); + if (lookahead == ']') ADVANCE(1524); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == '\r' || + lookahead == ' ') ADVANCE(1810); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16868,21 +18569,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 218: + case 245: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1597, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2420, + '(', 1625, + '.', 1664, + ']', 1524, + 'E', 2169, + 'e', 2169, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16890,169 +18592,176 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 219: + case 246: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - '_', 1975, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2420, + '(', 1625, + '.', 2182, + 'E', 2189, + 'G', 2191, + 'K', 2191, + 'M', 2191, + 'P', 2191, + 'T', 2191, + '_', 2197, + 'd', 2198, + 'e', 2188, + 'g', 2190, + 'h', 2204, + 'k', 2190, + 'm', 2192, + 'n', 2205, + 'p', 2190, + 's', 2201, + 't', 2190, + 'u', 2205, + 'w', 2202, + '}', 1562, + 0xb5, 2205, + 'B', 1742, + 'b', 1742, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 220: + case 247: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2420, + '(', 1625, + '.', 2182, + 'E', 2189, + 'G', 2191, + 'K', 2191, + 'M', 2191, + 'P', 2191, + 'T', 2191, + 'd', 2198, + 'e', 2188, + 'g', 2190, + 'h', 2204, + 'k', 2190, + 'm', 2192, + 'n', 2205, + 'p', 2190, + 's', 2201, + 't', 2190, + 'u', 2205, + 'w', 2202, + '}', 1562, + 0xb5, 2205, + 'B', 1742, + 'b', 1742, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 221: + case 248: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1968, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2420, + '(', 1625, + '.', 2182, + 'E', 2191, + 'G', 2191, + 'K', 2191, + 'M', 2191, + 'P', 2191, + 'T', 2191, + 'd', 2198, + 'e', 2190, + 'g', 2190, + 'h', 2204, + 'k', 2190, + 'm', 2192, + 'n', 2205, + 'p', 2190, + 's', 2201, + 't', 2190, + 'u', 2205, + 'w', 2202, + '}', 1562, + 0xb5, 2205, + 'B', 1742, + 'b', 1742, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 222: + case 249: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2420, + '(', 1625, + '.', 2182, + '_', 2197, + '}', 1562, + 'E', 2195, + 'e', 2195, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 223: + case 250: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2420, + '(', 1625, + '.', 2182, + '}', 1562, + 'E', 2195, + 'e', 2195, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 224: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1960); - if (lookahead == '}') ADVANCE(1499); + case 251: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == '.') ADVANCE(2182); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '\r' || + lookahead == ' ') ADVANCE(1810); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 225: + case 252: ADVANCE_MAP( - '#', 2188, - '(', 1561, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2420, + '(', 1625, + ']', 1524, + '_', 2166, + 'E', 2169, + 'e', 2169, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17061,17 +18770,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 226: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '}') ADVANCE(1499); + case 253: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ']') ADVANCE(1524); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == '\r' || + lookahead == ' ') ADVANCE(1810); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17079,18 +18789,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 227: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1947); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + case 254: + ADVANCE_MAP( + '#', 2420, + '(', 1625, + ']', 1524, + 'E', 2169, + 'e', 2169, + '\t', 1810, + '\r', 1810, + ' ', 1810, + ); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17098,668 +18811,710 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2181); END_STATE(); - case 228: + case 255: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2420, + '(', 1625, + '_', 2197, + '}', 1562, + 'E', 2195, + 'e', 2195, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 229: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '{') ADVANCE(1498); + case 256: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == '{') ADVANCE(1561); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(298); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 230: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '}') ADVANCE(1499); + case 257: + ADVANCE_MAP( + '#', 2420, + '(', 1625, + '}', 1562, + 'E', 2195, + 'e', 2195, + '\t', 1810, + '\r', 1810, + ' ', 1810, + ); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 258: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '\r' || + lookahead == ' ') ADVANCE(1810); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 231: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '}') ADVANCE(1499); + case 259: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 232: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); + case 260: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); - case 233: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); + case 261: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1525); + if (lookahead == '-') ADVANCE(324); + if (lookahead == '=') ADVANCE(1829); + if (lookahead == '[') ADVANCE(1523); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == '\r' || + lookahead == ' ') SKIP(262); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1505); END_STATE(); - case 234: - ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1595, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - ); + case 262: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1525); + if (lookahead == '-') ADVANCE(324); + if (lookahead == '[') ADVANCE(1523); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(262); END_STATE(); - case 235: + case 263: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2420, + '(', 1525, + '-', 1947, + '.', 1661, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + '[', 1523, + 'd', 2003, + 'e', 1981, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(262); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 236: + case 264: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2420, + '(', 1525, + '-', 1947, + '.', 1955, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + '[', 1523, + '_', 1989, + 'd', 2003, + 'e', 1981, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(262); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 237: + case 265: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2420, + '(', 1525, + '-', 1947, + '.', 1955, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + '[', 1523, + 'd', 2003, + 'e', 1981, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); - END_STATE(); - case 238: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(1783); - if (lookahead == '[') ADVANCE(1465); - if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(262); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 239: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(297); - if (lookahead == '=') ADVANCE(1729); - if (lookahead == '[') ADVANCE(1465); + case 266: + ADVANCE_MAP( + '#', 2420, + '(', 1525, + '-', 1947, + '.', 1955, + 'E', 1986, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + '[', 1523, + 'd', 2003, + 'e', 1985, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + lookahead == '\r' || + lookahead == ' ') SKIP(262); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 240: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(297); - if (lookahead == '[') ADVANCE(1465); + case 267: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1525); + if (lookahead == '-') ADVANCE(1947); + if (lookahead == '[') ADVANCE(1523); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == '\r' || + lookahead == ' ') SKIP(262); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 241: + case 268: ADVANCE_MAP( - '#', 2188, - '.', 1595, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2420, + '.', 1661, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'd', 2003, + 'e', 1981, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + '{', 1561, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(298); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 242: + case 269: ADVANCE_MAP( - '#', 2188, - '.', 1595, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2420, + '.', 1661, + 'E', 2189, + 'G', 2191, + 'K', 2191, + 'M', 2191, + 'P', 2191, + 'T', 2191, + 'd', 2198, + 'e', 2188, + 'g', 2190, + 'h', 2204, + 'k', 2190, + 'm', 2192, + 'n', 2205, + 'p', 2190, + 's', 2201, + 't', 2190, + 'u', 2205, + 'w', 2202, + 0xb5, 2205, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 243: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '{') ADVANCE(1498); - if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + case 270: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1661); + if (lookahead == '{') ADVANCE(1561); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); - END_STATE(); - case 244: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); + lookahead == 'e') ADVANCE(1996); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '\r' || + lookahead == ' ') SKIP(298); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 245: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1720); - if (lookahead == 'i') ADVANCE(1361); + case 271: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1661); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2195); if (lookahead == '\t' || - lookahead == ' ') SKIP(245); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 246: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1604); - if (lookahead == '_') ADVANCE(1813); + case 272: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == 'i') ADVANCE(1393); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == '\r' || + lookahead == ' ') SKIP(272); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1405); + END_STATE(); + case 273: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1676); + if (lookahead == '_') ADVANCE(1989); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1957); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(282); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 247: + case 274: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2420, + '.', 1955, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + '_', 1989, + 'd', 2003, + 'e', 1981, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + '{', 1561, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 248: + case 275: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2420, + '.', 1955, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'd', 2003, + 'e', 1981, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + '{', 1561, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(298); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 249: + case 276: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2420, + '.', 1955, + 'E', 1986, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'd', 2003, + 'e', 1985, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + '{', 1561, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(298); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 250: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); - if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + case 277: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1955); + if (lookahead == '_') ADVANCE(1989); + if (lookahead == '{') ADVANCE(1561); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); - END_STATE(); - case 251: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '{') ADVANCE(1498); + lookahead == 'e') ADVANCE(1996); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 252: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '{') ADVANCE(1498); + case 278: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1955); + if (lookahead == '{') ADVANCE(1561); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1996); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(298); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 253: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '{') ADVANCE(1498); + case 279: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1955); + if (lookahead == '{') ADVANCE(1561); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(298); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 254: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + case 280: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1660); + if (lookahead == '{') ADVANCE(1561); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); - END_STATE(); - case 255: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(337); + lookahead == 'e') ADVANCE(1996); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); - if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '\r' || + lookahead == ' ') SKIP(298); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 256: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1972); - if (lookahead == '_') ADVANCE(1975); + case 281: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1660); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2195); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 257: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1602); - if (lookahead == '_') ADVANCE(1975); + case 282: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(364); + if (lookahead == '+' || + lookahead == '-') ADVANCE(342); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == '\r' || + lookahead == ' ') SKIP(282); + END_STATE(); + case 283: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1674); + if (lookahead == '_') ADVANCE(2197); if (lookahead == '+' || - lookahead == '-') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '-') ADVANCE(2184); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(282); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 258: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '_') ADVANCE(1813); + case 284: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(2194); + if (lookahead == '_') ADVANCE(2197); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2184); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == '\r' || + lookahead == ' ') SKIP(282); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 285: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(1991); + if (lookahead == '_') ADVANCE(1989); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1957); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(282); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 259: + case 286: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - '_', 1975, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2420, + '.', 2182, + 'E', 2189, + 'G', 2191, + 'K', 2191, + 'M', 2191, + 'P', 2191, + 'T', 2191, + '_', 2197, + 'd', 2198, + 'e', 2188, + 'g', 2190, + 'h', 2204, + 'k', 2190, + 'm', 2192, + 'n', 2205, + 'p', 2190, + 's', 2201, + 't', 2190, + 'u', 2205, + 'w', 2202, + 0xb5, 2205, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 260: + case 287: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2420, + '.', 2182, + 'E', 2189, + 'G', 2191, + 'K', 2191, + 'M', 2191, + 'P', 2191, + 'T', 2191, + 'd', 2198, + 'e', 2188, + 'g', 2190, + 'h', 2204, + 'k', 2190, + 'm', 2192, + 'n', 2205, + 'p', 2190, + 's', 2201, + 't', 2190, + 'u', 2205, + 'w', 2202, + 0xb5, 2205, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 261: + case 288: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1968, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2420, + '.', 2182, + 'E', 2191, + 'G', 2191, + 'K', 2191, + 'M', 2191, + 'P', 2191, + 'T', 2191, + 'd', 2198, + 'e', 2190, + 'g', 2190, + 'h', 2204, + 'k', 2190, + 'm', 2192, + 'n', 2205, + 'p', 2190, + 's', 2201, + 't', 2190, + 'u', 2205, + 'w', 2202, + 0xb5, 2205, + 'B', 1742, + 'b', 1742, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 262: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); - if (lookahead == '_') ADVANCE(1975); - if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + case 289: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(2182); + if (lookahead == '_') ADVANCE(2197); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); - END_STATE(); - case 263: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); + lookahead == 'e') ADVANCE(2195); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 290: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(2182); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(2195); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 264: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); + case 291: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(2182); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 265: + case 292: ADVANCE_MAP( - '#', 2188, - ':', 1713, - 'a', 413, - 'c', 439, - 'd', 374, - 'e', 518, - 'm', 437, - 'u', 475, + '#', 2420, + ':', 1811, + 'a', 439, + 'c', 465, + 'd', 401, + 'e', 543, + 'm', 463, + 'u', 500, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); + lookahead == '\r' || + lookahead == ' ') SKIP(292); END_STATE(); - case 266: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ':') ADVANCE(1713); + case 293: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == ':') ADVANCE(1811); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); + lookahead == '\r' || + lookahead == ' ') SKIP(293); END_STATE(); - case 267: + case 294: ADVANCE_MAP( - '#', 2188, - '>', 1479, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '\t', 1712, - ' ', 1712, + '#', 2420, + '>', 1537, + '[', 1523, + ']', 1524, + 'c', 1383, + 'f', 1402, + 'i', 1391, + 'o', 1394, + 'v', 1379, + '\t', 1810, + '\r', 1810, + ' ', 1810, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -17767,75 +19522,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1373); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1405); END_STATE(); - case 268: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); - if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + case 295: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '_') ADVANCE(1989); + if (lookahead == '{') ADVANCE(1561); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); - END_STATE(); - case 269: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '_') ADVANCE(1975); + lookahead == 'e') ADVANCE(1996); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == '\r' || + lookahead == ' ') SKIP(298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); + END_STATE(); + case 296: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '_') ADVANCE(2197); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(2195); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 270: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '{') ADVANCE(1498); + case 297: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '{') ADVANCE(1561); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1996); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == '\r' || + lookahead == ' ') SKIP(298); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); - case 271: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '{') ADVANCE(1498); + case 298: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '{') ADVANCE(1561); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(298); END_STATE(); - case 272: - if (lookahead == '#') ADVANCE(2188); + case 299: + if (lookahead == '#') ADVANCE(2420); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2195); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); END_STATE(); - case 273: - if (lookahead == '#') ADVANCE(2188); + case 300: + if (lookahead == '#') ADVANCE(2420); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '\r' || + lookahead == ' ') SKIP(300); END_STATE(); - case 274: - if (lookahead == '#') ADVANCE(2188); + case 301: + if (lookahead == '#') ADVANCE(2420); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1461); + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1519); END_STATE(); - case 275: - if (lookahead == '#') ADVANCE(2188); + case 302: + if (lookahead == '#') ADVANCE(2420); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1497); + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1560); END_STATE(); - case 276: - if (lookahead == '#') ADVANCE(2191); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == ':') ADVANCE(1713); + case 303: + if (lookahead == '#') ADVANCE(2423); + if (lookahead == '$') ADVANCE(1531); + if (lookahead == ':') ADVANCE(1811); if (lookahead == '\t' || - lookahead == ' ') SKIP(194); + lookahead == '\r' || + lookahead == ' ') SKIP(222); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -17844,14529 +19608,15781 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1030); + lookahead == '^') ADVANCE(1074); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1058); END_STATE(); - case 277: + case 304: ADVANCE_MAP( - '#', 2191, - ':', 1713, - 'a', 932, - 'c', 951, - 'd', 895, - 'e', 1019, - 'm', 952, - 'u', 980, + '#', 2423, + ':', 1811, + 'a', 960, + 'c', 979, + 'd', 923, + 'e', 1047, + 'm', 980, + 'u', 1008, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); - END_STATE(); - case 278: - if (lookahead == '#') ADVANCE(1700); - if (lookahead == '\'') ADVANCE(1691); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1699); - if (lookahead != 0) ADVANCE(1700); - END_STATE(); - case 279: - if (lookahead == '+') ADVANCE(378); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(488); - END_STATE(); - case 280: - if (lookahead == '+') ADVANCE(339); - if (lookahead == '-') ADVANCE(341); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == '_') ADVANCE(341); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - END_STATE(); - case 281: - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(1735); - END_STATE(); - case 282: - ADVANCE_MAP( - '+', 430, - '>', 1737, - 'I', 534, - 'i', 534, - 'n', 364, - 'r', 453, - 'B', 1653, - 'b', 1653, - ); - END_STATE(); - case 283: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); - END_STATE(); - case 284: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); - if (lookahead == 'x') ADVANCE(445); - END_STATE(); - case 285: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); - END_STATE(); - case 286: - if (lookahead == '+') ADVANCE(429); - if (lookahead == '>') ADVANCE(1733); - END_STATE(); - case 287: - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(458); - END_STATE(); - case 288: - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(458); - END_STATE(); - case 289: - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(493); - END_STATE(); - case 290: - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(493); - END_STATE(); - case 291: - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); - END_STATE(); - case 292: - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); - END_STATE(); - case 293: - if (lookahead == '-') ADVANCE(355); - END_STATE(); - case 294: - if (lookahead == '-') ADVANCE(385); - END_STATE(); - case 295: - if (lookahead == '-') ADVANCE(385); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - END_STATE(); - case 296: - if (lookahead == '-') ADVANCE(513); - END_STATE(); - case 297: - if (lookahead == '-') ADVANCE(1484); - END_STATE(); - case 298: - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '>') ADVANCE(1464); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - END_STATE(); - case 299: - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - END_STATE(); - case 300: - if (lookahead == '-') ADVANCE(433); - END_STATE(); - case 301: - if (lookahead == '-') ADVANCE(490); - END_STATE(); - case 302: - if (lookahead == '-') ADVANCE(560); - END_STATE(); - case 303: - if (lookahead == '-') ADVANCE(514); - END_STATE(); - case 304: - if (lookahead == '-') ADVANCE(515); + lookahead == '\r' || + lookahead == ' ') SKIP(292); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 305: - if (lookahead == '-') ADVANCE(450); + if (lookahead == '#') ADVANCE(1798); + if (lookahead == '\'') ADVANCE(1789); + if (lookahead == '(') ADVANCE(1525); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1797); + if (lookahead != 0) ADVANCE(1798); END_STATE(); case 306: - if (lookahead == '-') ADVANCE(516); + if (lookahead == '+') ADVANCE(404); + if (lookahead == '>') ADVANCE(1839); + if (lookahead == 'r') ADVANCE(1595); + if (lookahead == 'u') ADVANCE(513); END_STATE(); case 307: - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '+') ADVANCE(366); + if (lookahead == '-') ADVANCE(368); + if (lookahead == '>') ADVANCE(1837); + if (lookahead == '_') ADVANCE(368); + if (lookahead == 'l') ADVANCE(498); + if (lookahead == 'n') ADVANCE(391); + if (lookahead == 'r') ADVANCE(478); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); END_STATE(); case 308: - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '+') ADVANCE(405); + if (lookahead == '>') ADVANCE(1835); END_STATE(); case 309: - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + ADVANCE_MAP( + '+', 456, + '>', 1837, + 'I', 559, + 'i', 559, + 'n', 391, + 'r', 478, + 'B', 1742, + 'b', 1742, + ); END_STATE(); case 310: - if (lookahead == '.') ADVANCE(1593); + if (lookahead == '+') ADVANCE(456); + if (lookahead == '>') ADVANCE(1837); + if (lookahead == 'l') ADVANCE(498); + if (lookahead == 'n') ADVANCE(391); + if (lookahead == 'r') ADVANCE(478); END_STATE(); case 311: - if (lookahead == '.') ADVANCE(1482); + if (lookahead == '+') ADVANCE(456); + if (lookahead == '>') ADVANCE(1837); + if (lookahead == 'l') ADVANCE(498); + if (lookahead == 'n') ADVANCE(391); + if (lookahead == 'r') ADVANCE(478); + if (lookahead == 'x') ADVANCE(471); END_STATE(); case 312: - if (lookahead == '.') ADVANCE(311); + if (lookahead == '+') ADVANCE(456); + if (lookahead == '>') ADVANCE(1837); + if (lookahead == 'n') ADVANCE(391); + if (lookahead == 'r') ADVANCE(478); END_STATE(); case 313: - if (lookahead == '.') ADVANCE(311); - if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '+') ADVANCE(455); + if (lookahead == '>') ADVANCE(1833); END_STATE(); case 314: - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '+') ADVANCE(464); + if (lookahead == '>') ADVANCE(548); + if (lookahead == 'n') ADVANCE(391); + if (lookahead == 'r') ADVANCE(483); END_STATE(); case 315: - if (lookahead == '2') ADVANCE(548); - if (lookahead == '0' || - lookahead == '1') ADVANCE(554); + if (lookahead == '+') ADVANCE(464); + if (lookahead == '>') ADVANCE(548); + if (lookahead == 'r') ADVANCE(483); END_STATE(); case 316: - if (lookahead == ':') ADVANCE(555); + if (lookahead == '+') ADVANCE(406); + if (lookahead == '>') ADVANCE(549); + if (lookahead == 'r') ADVANCE(1595); + if (lookahead == 'u') ADVANCE(518); END_STATE(); case 317: - if (lookahead == ':') ADVANCE(556); + if (lookahead == '+') ADVANCE(406); + if (lookahead == '>') ADVANCE(549); + if (lookahead == 'u') ADVANCE(518); END_STATE(); case 318: - if (lookahead == ';') ADVANCE(1716); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(318); + if (lookahead == '+') ADVANCE(469); + if (lookahead == '>') ADVANCE(551); END_STATE(); case 319: - if (lookahead == '=') ADVANCE(1139); - if (lookahead == '~') ADVANCE(1121); + if (lookahead == '+') ADVANCE(410); + if (lookahead == '>') ADVANCE(553); END_STATE(); case 320: - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); + if (lookahead == '-') ADVANCE(382); END_STATE(); case 321: - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '>') ADVANCE(1500); - if (lookahead == '~') ADVANCE(1553); + if (lookahead == '-') ADVANCE(411); END_STATE(); case 322: - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); + if (lookahead == '-') ADVANCE(411); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1624); END_STATE(); case 323: - if (lookahead == '>') ADVANCE(1500); + if (lookahead == '-') ADVANCE(538); END_STATE(); case 324: - if (lookahead == '>') ADVANCE(1747); + if (lookahead == '-') ADVANCE(1542); END_STATE(); case 325: - if (lookahead == '>') ADVANCE(1745); + if (lookahead == '-') ADVANCE(1542); + if (lookahead == '.') ADVANCE(363); + if (lookahead == '>') ADVANCE(1522); + if (lookahead == '_') ADVANCE(336); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); END_STATE(); case 326: - if (lookahead == '>') ADVANCE(1741); + if (lookahead == '-') ADVANCE(1542); + if (lookahead == '.') ADVANCE(363); + if (lookahead == '_') ADVANCE(336); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); END_STATE(); case 327: - if (lookahead == '>') ADVANCE(1743); + if (lookahead == '-') ADVANCE(459); END_STATE(); case 328: - if (lookahead == '>') ADVANCE(525); + if (lookahead == '-') ADVANCE(515); END_STATE(); case 329: - if (lookahead == '>') ADVANCE(527); + if (lookahead == '-') ADVANCE(585); END_STATE(); case 330: - if (lookahead == '>') ADVANCE(529); + if (lookahead == '-') ADVANCE(539); END_STATE(); case 331: - if (lookahead == '>') ADVANCE(530); + if (lookahead == '-') ADVANCE(540); END_STATE(); case 332: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(534); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '-') ADVANCE(476); END_STATE(); case 333: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(357); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '-') ADVANCE(541); END_STATE(); case 334: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(420); - if (lookahead == 'o') ADVANCE(362); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '.') ADVANCE(363); + if (lookahead == '>') ADVANCE(1522); + if (lookahead == '_') ADVANCE(336); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); END_STATE(); case 335: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(420); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '.') ADVANCE(363); + if (lookahead == '_') ADVANCE(336); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); END_STATE(); case 336: + if (lookahead == '.') ADVANCE(363); if (lookahead == '_') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); END_STATE(); case 337: - if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1571); + if (lookahead == '_') ADVANCE(370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); END_STATE(); case 338: - if (lookahead == '_') ADVANCE(338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (lookahead == '.') ADVANCE(1659); END_STATE(); case 339: - if (lookahead == '_') ADVANCE(341); - if (lookahead == 'o') ADVANCE(324); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '.') ADVANCE(1540); END_STATE(); case 340: - if (lookahead == '_') ADVANCE(341); - if (lookahead == '+' || - lookahead == '-') ADVANCE(341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '.') ADVANCE(339); END_STATE(); case 341: - if (lookahead == '_') ADVANCE(341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '.') ADVANCE(339); + if (lookahead == '_') ADVANCE(364); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); END_STATE(); case 342: + if (lookahead == '.') ADVANCE(365); if (lookahead == '_') ADVANCE(342); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); END_STATE(); case 343: - if (lookahead == '_') ADVANCE(343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '2') ADVANCE(573); + if (lookahead == '0' || + lookahead == '1') ADVANCE(579); END_STATE(); case 344: - if (lookahead == 'a') ADVANCE(470); + if (lookahead == ':') ADVANCE(580); END_STATE(); case 345: - if (lookahead == 'a') ADVANCE(470); - if (lookahead == 'r') ADVANCE(1658); + if (lookahead == ':') ADVANCE(581); END_STATE(); case 346: - if (lookahead == 'a') ADVANCE(519); + if (lookahead == ';') ADVANCE(1814); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(346); END_STATE(); case 347: - if (lookahead == 'a') ADVANCE(418); + if (lookahead == '=') ADVANCE(1171); + if (lookahead == '~') ADVANCE(1153); END_STATE(); case 348: - if (lookahead == 'a') ADVANCE(462); + if (lookahead == '=') ADVANCE(1612); + if (lookahead == '~') ADVANCE(1618); END_STATE(); case 349: - if (lookahead == 'a') ADVANCE(471); + if (lookahead == '=') ADVANCE(1611); + if (lookahead == '>') ADVANCE(1563); + if (lookahead == '~') ADVANCE(1617); END_STATE(); case 350: - if (lookahead == 'a') ADVANCE(468); + if (lookahead == '=') ADVANCE(1611); + if (lookahead == '~') ADVANCE(1617); END_STATE(); case 351: - if (lookahead == 'a') ADVANCE(482); + if (lookahead == '>') ADVANCE(1563); END_STATE(); case 352: - if (lookahead == 'a') ADVANCE(499); + if (lookahead == '>') ADVANCE(1847); END_STATE(); case 353: - if (lookahead == 'a') ADVANCE(501); + if (lookahead == '>') ADVANCE(1845); END_STATE(); case 354: - if (lookahead == 'a') ADVANCE(500); + if (lookahead == '>') ADVANCE(1841); END_STATE(); case 355: - if (lookahead == 'a') ADVANCE(426); - if (lookahead == 'o') ADVANCE(455); - if (lookahead == 's') ADVANCE(391); - if (lookahead == 'x') ADVANCE(440); + if (lookahead == '>') ADVANCE(1843); END_STATE(); case 356: - if (lookahead == 'a') ADVANCE(467); + if (lookahead == '>') ADVANCE(550); END_STATE(); case 357: - if (lookahead == 'b') ADVANCE(1653); + if (lookahead == '>') ADVANCE(552); END_STATE(); case 358: - if (lookahead == 'c') ADVANCE(1658); + if (lookahead == '>') ADVANCE(554); END_STATE(); case 359: - if (lookahead == 'c') ADVANCE(390); + if (lookahead == '>') ADVANCE(555); END_STATE(); case 360: - if (lookahead == 'c') ADVANCE(383); + if (lookahead == 'I') ADVANCE(559); + if (lookahead == 'i') ADVANCE(559); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); END_STATE(); case 361: - if (lookahead == 'd') ADVANCE(1527); + if (lookahead == 'I') ADVANCE(559); + if (lookahead == 'i') ADVANCE(384); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); END_STATE(); case 362: - if (lookahead == 'd') ADVANCE(1571); + if (lookahead == 'I') ADVANCE(559); + if (lookahead == 'i') ADVANCE(446); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 's') ADVANCE(1747); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); END_STATE(); case 363: - if (lookahead == 'd') ADVANCE(1585); + if (lookahead == '_') ADVANCE(363); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1734); END_STATE(); case 364: - if (lookahead == 'd') ADVANCE(472); + if (lookahead == '_') ADVANCE(364); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); END_STATE(); case 365: - if (lookahead == 'd') ADVANCE(509); + if (lookahead == '_') ADVANCE(365); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); END_STATE(); case 366: - if (lookahead == 'd') ADVANCE(478); + if (lookahead == '_') ADVANCE(368); + if (lookahead == 'o') ADVANCE(352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); END_STATE(); case 367: - if (lookahead == 'e') ADVANCE(1047); + if (lookahead == '_') ADVANCE(368); + if (lookahead == '+' || + lookahead == '-') ADVANCE(368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); END_STATE(); case 368: - if (lookahead == 'e') ADVANCE(1071); + if (lookahead == '_') ADVANCE(368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); END_STATE(); case 369: - if (lookahead == 'e') ADVANCE(1089); + if (lookahead == '_') ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); END_STATE(); case 370: - if (lookahead == 'e') ADVANCE(1092); + if (lookahead == '_') ADVANCE(370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); END_STATE(); case 371: - if (lookahead == 'e') ADVANCE(1056); + if (lookahead == 'a') ADVANCE(495); END_STATE(); case 372: - if (lookahead == 'e') ADVANCE(1556); + if (lookahead == 'a') ADVANCE(495); + if (lookahead == 'r') ADVANCE(1747); END_STATE(); case 373: - if (lookahead == 'e') ADVANCE(1558); + if (lookahead == 'a') ADVANCE(544); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(388); + if (lookahead == 'a') ADVANCE(444); END_STATE(); case 375: - if (lookahead == 'e') ADVANCE(1478); + if (lookahead == 'a') ADVANCE(487); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(358); + if (lookahead == 'a') ADVANCE(496); END_STATE(); case 377: - if (lookahead == 'e') ADVANCE(358); - if (lookahead == 't') ADVANCE(348); + if (lookahead == 'a') ADVANCE(493); END_STATE(); case 378: - if (lookahead == 'e') ADVANCE(325); + if (lookahead == 'a') ADVANCE(507); END_STATE(); case 379: - if (lookahead == 'e') ADVANCE(463); + if (lookahead == 'a') ADVANCE(524); END_STATE(); case 380: - if (lookahead == 'e') ADVANCE(329); + if (lookahead == 'a') ADVANCE(526); END_STATE(); case 381: - if (lookahead == 'e') ADVANCE(459); + if (lookahead == 'a') ADVANCE(525); END_STATE(); case 382: - if (lookahead == 'e') ADVANCE(461); + if (lookahead == 'a') ADVANCE(452); + if (lookahead == 'o') ADVANCE(480); + if (lookahead == 's') ADVANCE(417); + if (lookahead == 'x') ADVANCE(466); END_STATE(); case 383: - if (lookahead == 'e') ADVANCE(415); + if (lookahead == 'a') ADVANCE(492); END_STATE(); case 384: - if (lookahead == 'e') ADVANCE(464); + if (lookahead == 'b') ADVANCE(1742); END_STATE(); case 385: - if (lookahead == 'e') ADVANCE(428); - if (lookahead == 'h') ADVANCE(349); - if (lookahead == 'i') ADVANCE(423); - if (lookahead == 'l') ADVANCE(406); - if (lookahead == 's') ADVANCE(506); + if (lookahead == 'c') ADVANCE(1747); END_STATE(); case 386: - if (lookahead == 'f') ADVANCE(1068); + if (lookahead == 'c') ADVANCE(416); END_STATE(); case 387: - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'n') ADVANCE(1083); + if (lookahead == 'c') ADVANCE(409); END_STATE(); case 388: - if (lookahead == 'f') ADVANCE(825); + if (lookahead == 'd') ADVANCE(1591); END_STATE(); case 389: - if (lookahead == 'f') ADVANCE(1477); + if (lookahead == 'd') ADVANCE(1635); END_STATE(); case 390: - if (lookahead == 'h') ADVANCE(1077); + if (lookahead == 'd') ADVANCE(1649); END_STATE(); case 391: - if (lookahead == 'h') ADVANCE(412); + if (lookahead == 'd') ADVANCE(497); END_STATE(); case 392: - if (lookahead == 'h') ADVANCE(1543); + if (lookahead == 'd') ADVANCE(534); END_STATE(); case 393: - if (lookahead == 'h') ADVANCE(1539); + if (lookahead == 'd') ADVANCE(503); END_STATE(); case 394: - if (lookahead == 'h') ADVANCE(1545); + if (lookahead == 'e') ADVANCE(1075); END_STATE(); case 395: - if (lookahead == 'h') ADVANCE(1541); + if (lookahead == 'e') ADVANCE(1099); END_STATE(); case 396: - if (lookahead == 'h') ADVANCE(1474); + if (lookahead == 'e') ADVANCE(1117); END_STATE(); case 397: - if (lookahead == 'h') ADVANCE(1475); + if (lookahead == 'e') ADVANCE(1121); END_STATE(); case 398: - if (lookahead == 'h') ADVANCE(300); + if (lookahead == 'e') ADVANCE(1084); END_STATE(); case 399: - if (lookahead == 'i') ADVANCE(409); + if (lookahead == 'e') ADVANCE(1620); END_STATE(); case 400: - if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'e') ADVANCE(1622); END_STATE(); case 401: - if (lookahead == 'i') ADVANCE(489); + if (lookahead == 'e') ADVANCE(414); END_STATE(); case 402: - if (lookahead == 'i') ADVANCE(491); + if (lookahead == 'e') ADVANCE(1536); END_STATE(); case 403: - if (lookahead == 'i') ADVANCE(494); + if (lookahead == 'e') ADVANCE(385); + if (lookahead == 't') ADVANCE(375); END_STATE(); case 404: - if (lookahead == 'i') ADVANCE(495); + if (lookahead == 'e') ADVANCE(353); END_STATE(); case 405: - if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'e') ADVANCE(488); END_STATE(); case 406: - if (lookahead == 'i') ADVANCE(410); + if (lookahead == 'e') ADVANCE(357); END_STATE(); case 407: - if (lookahead == 'i') ADVANCE(350); + if (lookahead == 'e') ADVANCE(484); END_STATE(); case 408: - if (lookahead == 'k') ADVANCE(1658); + if (lookahead == 'e') ADVANCE(486); END_STATE(); case 409: - if (lookahead == 'k') ADVANCE(372); + if (lookahead == 'e') ADVANCE(441); END_STATE(); case 410: - if (lookahead == 'k') ADVANCE(373); + if (lookahead == 'e') ADVANCE(489); END_STATE(); case 411: - if (lookahead == 'l') ADVANCE(1095); + if (lookahead == 'e') ADVANCE(454); + if (lookahead == 'h') ADVANCE(376); + if (lookahead == 'i') ADVANCE(449); + if (lookahead == 'l') ADVANCE(432); + if (lookahead == 's') ADVANCE(531); END_STATE(); case 412: - if (lookahead == 'l') ADVANCE(1581); - if (lookahead == 'r') ADVANCE(1583); + if (lookahead == 'f') ADVANCE(1096); END_STATE(); case 413: - if (lookahead == 'l') ADVANCE(407); + if (lookahead == 'f') ADVANCE(1096); + if (lookahead == 'n') ADVANCE(1111); END_STATE(); case 414: - if (lookahead == 'l') ADVANCE(411); + if (lookahead == 'f') ADVANCE(853); END_STATE(); case 415: - if (lookahead == 'l') ADVANCE(416); + if (lookahead == 'f') ADVANCE(1535); END_STATE(); case 416: - if (lookahead == 'l') ADVANCE(305); + if (lookahead == 'h') ADVANCE(1105); END_STATE(); case 417: - if (lookahead == 'l') ADVANCE(371); + if (lookahead == 'h') ADVANCE(438); END_STATE(); case 418: - if (lookahead == 'l') ADVANCE(474); + if (lookahead == 'h') ADVANCE(1607); END_STATE(); case 419: - if (lookahead == 'n') ADVANCE(1053); + if (lookahead == 'h') ADVANCE(1603); END_STATE(); case 420: - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == 'h') ADVANCE(1609); END_STATE(); case 421: - if (lookahead == 'n') ADVANCE(361); + if (lookahead == 'h') ADVANCE(1605); END_STATE(); case 422: - if (lookahead == 'n') ADVANCE(1083); + if (lookahead == 'h') ADVANCE(1532); END_STATE(); case 423: - if (lookahead == 'n') ADVANCE(1533); + if (lookahead == 'h') ADVANCE(1533); END_STATE(); case 424: - if (lookahead == 'n') ADVANCE(1476); + if (lookahead == 'h') ADVANCE(327); END_STATE(); case 425: - if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'i') ADVANCE(435); END_STATE(); case 426: - if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'i') ADVANCE(506); END_STATE(); case 427: - if (lookahead == 'n') ADVANCE(476); + if (lookahead == 'i') ADVANCE(514); END_STATE(); case 428: - if (lookahead == 'n') ADVANCE(366); + if (lookahead == 'i') ADVANCE(516); END_STATE(); case 429: - if (lookahead == 'o') ADVANCE(508); + if (lookahead == 'i') ADVANCE(519); END_STATE(); case 430: - if (lookahead == 'o') ADVANCE(324); + if (lookahead == 'i') ADVANCE(520); END_STATE(); case 431: - if (lookahead == 'o') ADVANCE(454); + if (lookahead == 'i') ADVANCE(521); END_STATE(); case 432: - if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'i') ADVANCE(436); END_STATE(); case 433: - if (lookahead == 'o') ADVANCE(447); + if (lookahead == 'i') ADVANCE(377); END_STATE(); case 434: - if (lookahead == 'o') ADVANCE(487); + if (lookahead == 'k') ADVANCE(1747); END_STATE(); case 435: - if (lookahead == 'o') ADVANCE(487); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'k') ADVANCE(399); END_STATE(); case 436: - if (lookahead == 'o') ADVANCE(362); + if (lookahead == 'k') ADVANCE(400); END_STATE(); case 437: - if (lookahead == 'o') ADVANCE(365); + if (lookahead == 'l') ADVANCE(1125); END_STATE(); case 438: - if (lookahead == 'o') ADVANCE(328); + if (lookahead == 'l') ADVANCE(1645); + if (lookahead == 'r') ADVANCE(1647); END_STATE(); case 439: - if (lookahead == 'o') ADVANCE(427); + if (lookahead == 'l') ADVANCE(433); END_STATE(); case 440: - if (lookahead == 'o') ADVANCE(456); + if (lookahead == 'l') ADVANCE(437); END_STATE(); case 441: - if (lookahead == 'o') ADVANCE(484); + if (lookahead == 'l') ADVANCE(442); END_STATE(); case 442: - if (lookahead == 'o') ADVANCE(485); - if (lookahead == 'u') ADVANCE(414); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(540); + if (lookahead == 'l') ADVANCE(332); END_STATE(); case 443: - if (lookahead == 'o') ADVANCE(511); + if (lookahead == 'l') ADVANCE(398); END_STATE(); case 444: - if (lookahead == 'o') ADVANCE(466); + if (lookahead == 'l') ADVANCE(499); END_STATE(); case 445: - if (lookahead == 'p') ADVANCE(444); - if (lookahead == 't') ADVANCE(381); + if (lookahead == 'n') ADVANCE(1081); END_STATE(); case 446: - if (lookahead == 'p') ADVANCE(375); + if (lookahead == 'n') ADVANCE(1747); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); END_STATE(); case 447: - if (lookahead == 'p') ADVANCE(498); + if (lookahead == 'n') ADVANCE(388); END_STATE(); case 448: - if (lookahead == 'p') ADVANCE(352); + if (lookahead == 'n') ADVANCE(1111); END_STATE(); case 449: - if (lookahead == 'p') ADVANCE(353); + if (lookahead == 'n') ADVANCE(1597); END_STATE(); case 450: - if (lookahead == 'p') ADVANCE(354); + if (lookahead == 'n') ADVANCE(1534); END_STATE(); case 451: - if (lookahead == 'r') ADVANCE(1658); + if (lookahead == 'n') ADVANCE(391); END_STATE(); case 452: - if (lookahead == 'r') ADVANCE(1531); + if (lookahead == 'n') ADVANCE(390); END_STATE(); case 453: - if (lookahead == 'r') ADVANCE(286); + if (lookahead == 'n') ADVANCE(501); END_STATE(); case 454: - if (lookahead == 'r') ADVANCE(1529); + if (lookahead == 'n') ADVANCE(393); END_STATE(); case 455: - if (lookahead == 'r') ADVANCE(1589); + if (lookahead == 'o') ADVANCE(533); END_STATE(); case 456: - if (lookahead == 'r') ADVANCE(1587); + if (lookahead == 'o') ADVANCE(352); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(510); + if (lookahead == 'o') ADVANCE(479); END_STATE(); case 458: - if (lookahead == 'r') ADVANCE(291); + if (lookahead == 'o') ADVANCE(415); END_STATE(); case 459: - if (lookahead == 'r') ADVANCE(419); + if (lookahead == 'o') ADVANCE(473); END_STATE(); case 460: - if (lookahead == 'r') ADVANCE(327); + if (lookahead == 'o') ADVANCE(512); END_STATE(); case 461: - if (lookahead == 'r') ADVANCE(424); + if (lookahead == 'o') ADVANCE(512); + if (lookahead == 's') ADVANCE(1747); END_STATE(); case 462: - if (lookahead == 'r') ADVANCE(504); + if (lookahead == 'o') ADVANCE(389); END_STATE(); case 463: - if (lookahead == 'r') ADVANCE(460); + if (lookahead == 'o') ADVANCE(392); END_STATE(); case 464: - if (lookahead == 'r') ADVANCE(465); + if (lookahead == 'o') ADVANCE(356); END_STATE(); case 465: - if (lookahead == 'r') ADVANCE(331); + if (lookahead == 'o') ADVANCE(453); END_STATE(); case 466: - if (lookahead == 'r') ADVANCE(483); + if (lookahead == 'o') ADVANCE(481); END_STATE(); case 467: - if (lookahead == 'r') ADVANCE(505); + if (lookahead == 'o') ADVANCE(509); END_STATE(); case 468: - if (lookahead == 's') ADVANCE(670); + if (lookahead == 'o') ADVANCE(510); + if (lookahead == 'u') ADVANCE(440); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(565); END_STATE(); case 469: - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'o') ADVANCE(536); END_STATE(); case 470: - if (lookahead == 's') ADVANCE(1535); + if (lookahead == 'o') ADVANCE(491); END_STATE(); case 471: - if (lookahead == 's') ADVANCE(1537); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 't') ADVANCE(407); END_STATE(); case 472: - if (lookahead == 's') ADVANCE(296); + if (lookahead == 'p') ADVANCE(402); END_STATE(); case 473: - if (lookahead == 's') ADVANCE(368); + if (lookahead == 'p') ADVANCE(523); END_STATE(); case 474: - if (lookahead == 's') ADVANCE(370); + if (lookahead == 'p') ADVANCE(379); END_STATE(); case 475: - if (lookahead == 's') ADVANCE(367); + if (lookahead == 'p') ADVANCE(380); END_STATE(); case 476: - if (lookahead == 's') ADVANCE(480); + if (lookahead == 'p') ADVANCE(381); END_STATE(); case 477: - if (lookahead == 's') ADVANCE(303); + if (lookahead == 'r') ADVANCE(1595); END_STATE(); case 478: - if (lookahead == 's') ADVANCE(304); + if (lookahead == 'r') ADVANCE(313); END_STATE(); case 479: - if (lookahead == 's') ADVANCE(306); + if (lookahead == 'r') ADVANCE(1593); END_STATE(); case 480: - if (lookahead == 't') ADVANCE(682); + if (lookahead == 'r') ADVANCE(1653); END_STATE(); case 481: - if (lookahead == 't') ADVANCE(293); + if (lookahead == 'r') ADVANCE(1651); END_STATE(); case 482: - if (lookahead == 't') ADVANCE(359); + if (lookahead == 'r') ADVANCE(535); END_STATE(); case 483: - if (lookahead == 't') ADVANCE(666); + if (lookahead == 'r') ADVANCE(318); END_STATE(); case 484: - if (lookahead == 't') ADVANCE(295); + if (lookahead == 'r') ADVANCE(445); END_STATE(); case 485: - if (lookahead == 't') ADVANCE(549); + if (lookahead == 'r') ADVANCE(355); END_STATE(); case 486: - if (lookahead == 't') ADVANCE(348); + if (lookahead == 'r') ADVANCE(450); END_STATE(); case 487: - if (lookahead == 't') ADVANCE(294); + if (lookahead == 'r') ADVANCE(529); END_STATE(); case 488: - if (lookahead == 't') ADVANCE(281); + if (lookahead == 'r') ADVANCE(485); END_STATE(); case 489: - if (lookahead == 't') ADVANCE(392); + if (lookahead == 'r') ADVANCE(490); END_STATE(); case 490: - if (lookahead == 't') ADVANCE(520); + if (lookahead == 'r') ADVANCE(359); END_STATE(); case 491: - if (lookahead == 't') ADVANCE(393); + if (lookahead == 'r') ADVANCE(508); END_STATE(); case 492: - if (lookahead == 't') ADVANCE(326); + if (lookahead == 'r') ADVANCE(530); END_STATE(); case 493: - if (lookahead == 't') ADVANCE(292); + if (lookahead == 's') ADVANCE(698); END_STATE(); case 494: - if (lookahead == 't') ADVANCE(394); + if (lookahead == 's') ADVANCE(1747); END_STATE(); case 495: - if (lookahead == 't') ADVANCE(395); + if (lookahead == 's') ADVANCE(1599); END_STATE(); case 496: - if (lookahead == 't') ADVANCE(398); + if (lookahead == 's') ADVANCE(1601); END_STATE(); case 497: - if (lookahead == 't') ADVANCE(330); + if (lookahead == 's') ADVANCE(323); END_STATE(); case 498: - if (lookahead == 't') ADVANCE(301); + if (lookahead == 's') ADVANCE(395); END_STATE(); case 499: - if (lookahead == 't') ADVANCE(396); + if (lookahead == 's') ADVANCE(397); END_STATE(); case 500: - if (lookahead == 't') ADVANCE(397); + if (lookahead == 's') ADVANCE(394); END_STATE(); case 501: - if (lookahead == 't') ADVANCE(503); + if (lookahead == 's') ADVANCE(505); END_STATE(); case 502: - if (lookahead == 't') ADVANCE(381); + if (lookahead == 's') ADVANCE(330); END_STATE(); case 503: - if (lookahead == 't') ADVANCE(382); + if (lookahead == 's') ADVANCE(331); END_STATE(); case 504: - if (lookahead == 't') ADVANCE(477); + if (lookahead == 's') ADVANCE(333); END_STATE(); case 505: - if (lookahead == 't') ADVANCE(479); + if (lookahead == 't') ADVANCE(710); END_STATE(); case 506: - if (lookahead == 't') ADVANCE(356); + if (lookahead == 't') ADVANCE(320); END_STATE(); case 507: - if (lookahead == 'u') ADVANCE(521); - if (lookahead == 'x') ADVANCE(568); - if (lookahead != 0) ADVANCE(1704); + if (lookahead == 't') ADVANCE(386); END_STATE(); case 508: - if (lookahead == 'u') ADVANCE(492); + if (lookahead == 't') ADVANCE(694); END_STATE(); case 509: - if (lookahead == 'u') ADVANCE(417); + if (lookahead == 't') ADVANCE(322); END_STATE(); case 510: - if (lookahead == 'u') ADVANCE(369); + if (lookahead == 't') ADVANCE(574); END_STATE(); case 511: - if (lookahead == 'u') ADVANCE(497); + if (lookahead == 't') ADVANCE(375); END_STATE(); case 512: - if (lookahead == 'u') ADVANCE(522); - if (lookahead == 'x') ADVANCE(569); - if (lookahead != 0) ADVANCE(1696); + if (lookahead == 't') ADVANCE(321); END_STATE(); case 513: - if (lookahead == 'w') ADVANCE(401); + if (lookahead == 't') ADVANCE(308); END_STATE(); case 514: - if (lookahead == 'w') ADVANCE(402); + if (lookahead == 't') ADVANCE(418); END_STATE(); case 515: - if (lookahead == 'w') ADVANCE(403); + if (lookahead == 't') ADVANCE(545); END_STATE(); case 516: - if (lookahead == 'w') ADVANCE(404); + if (lookahead == 't') ADVANCE(419); END_STATE(); case 517: - if (lookahead == 'w') ADVANCE(405); + if (lookahead == 't') ADVANCE(354); END_STATE(); case 518: - if (lookahead == 'x') ADVANCE(502); + if (lookahead == 't') ADVANCE(319); END_STATE(); case 519: - if (lookahead == 'y') ADVANCE(1658); + if (lookahead == 't') ADVANCE(420); END_STATE(); case 520: - if (lookahead == 'y') ADVANCE(446); + if (lookahead == 't') ADVANCE(421); END_STATE(); case 521: - if (lookahead == '{') ADVANCE(565); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); + if (lookahead == 't') ADVANCE(424); END_STATE(); case 522: - if (lookahead == '{') ADVANCE(567); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(570); + if (lookahead == 't') ADVANCE(358); END_STATE(); case 523: - if (lookahead == '|') ADVANCE(1455); + if (lookahead == 't') ADVANCE(328); END_STATE(); case 524: - if (lookahead == '|') ADVANCE(1456); + if (lookahead == 't') ADVANCE(422); END_STATE(); case 525: - if (lookahead == '|') ADVANCE(1460); + if (lookahead == 't') ADVANCE(423); END_STATE(); case 526: - if (lookahead == '|') ADVANCE(1453); + if (lookahead == 't') ADVANCE(528); END_STATE(); case 527: - if (lookahead == '|') ADVANCE(1459); + if (lookahead == 't') ADVANCE(407); END_STATE(); case 528: - if (lookahead == '|') ADVANCE(1454); + if (lookahead == 't') ADVANCE(408); END_STATE(); case 529: - if (lookahead == '|') ADVANCE(1457); + if (lookahead == 't') ADVANCE(502); END_STATE(); case 530: - if (lookahead == '|') ADVANCE(1458); + if (lookahead == 't') ADVANCE(504); END_STATE(); case 531: - if (lookahead == '}') ADVANCE(1704); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + if (lookahead == 't') ADVANCE(383); END_STATE(); case 532: - if (lookahead == '}') ADVANCE(1696); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); + if (lookahead == 'u') ADVANCE(546); + if (lookahead == 'x') ADVANCE(593); + if (lookahead != 0) ADVANCE(1802); END_STATE(); case 533: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(540); + if (lookahead == 'u') ADVANCE(517); END_STATE(); case 534: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == 'u') ADVANCE(443); END_STATE(); case 535: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1105); + if (lookahead == 'u') ADVANCE(396); END_STATE(); case 536: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1103); + if (lookahead == 'u') ADVANCE(522); END_STATE(); case 537: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(544); + if (lookahead == 'u') ADVANCE(547); + if (lookahead == 'x') ADVANCE(594); + if (lookahead != 0) ADVANCE(1794); END_STATE(); case 538: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(545); + if (lookahead == 'w') ADVANCE(427); END_STATE(); case 539: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(535); + if (lookahead == 'w') ADVANCE(428); END_STATE(); case 540: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); + if (lookahead == 'w') ADVANCE(429); END_STATE(); case 541: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(537); + if (lookahead == 'w') ADVANCE(430); END_STATE(); case 542: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(536); + if (lookahead == 'w') ADVANCE(431); END_STATE(); case 543: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(538); + if (lookahead == 'x') ADVANCE(527); END_STATE(); case 544: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(547); + if (lookahead == 'y') ADVANCE(1747); END_STATE(); case 545: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(546); + if (lookahead == 'y') ADVANCE(472); END_STATE(); case 546: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); + if (lookahead == '{') ADVANCE(590); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(588); END_STATE(); case 547: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); + if (lookahead == '{') ADVANCE(592); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(595); END_STATE(); case 548: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1671); + if (lookahead == '|') ADVANCE(1513); END_STATE(); case 549: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); + if (lookahead == '|') ADVANCE(1514); END_STATE(); case 550: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); + if (lookahead == '|') ADVANCE(1518); END_STATE(); case 551: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if (lookahead == '|') ADVANCE(1511); END_STATE(); case 552: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (lookahead == '|') ADVANCE(1517); END_STATE(); case 553: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + if (lookahead == '|') ADVANCE(1512); END_STATE(); case 554: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if (lookahead == '|') ADVANCE(1515); END_STATE(); case 555: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); + if (lookahead == '|') ADVANCE(1516); END_STATE(); case 556: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(551); + if (lookahead == '}') ADVANCE(1802); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(556); END_STATE(); case 557: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); + if (lookahead == '}') ADVANCE(1794); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(557); END_STATE(); case 558: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(565); END_STATE(); case 559: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(558); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); END_STATE(); case 560: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(557); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1137); END_STATE(); case 561: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1135); END_STATE(); case 562: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(561); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(569); END_STATE(); case 563: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(570); END_STATE(); case 564: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1704); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(560); END_STATE(); case 565: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1141); END_STATE(); case 566: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1696); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(562); END_STATE(); case 567: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(561); END_STATE(); case 568: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(564); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(563); END_STATE(); case 569: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(566); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(572); END_STATE(); case 570: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(571); END_STATE(); case 571: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '$', 1471, - '&', 824, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - ',', 1469, - '-', 1486, - '.', 1721, - '/', 1570, - ':', 1713, - ';', 1451, - '<', 1549, - '=', 673, - '>', 1480, - '?', 1717, - '@', 1462, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 1502, - '`', 1692, - '{', 1498, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(571); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1373); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1129); END_STATE(); case 572: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - '?', 1717, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(572); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '\'' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1136); END_STATE(); case 573: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1765); END_STATE(); case 574: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - '.', 1720, - ':', 1713, - ';', 1451, - '=', 675, - '>', 1479, - '?', 1717, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(574); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1624); END_STATE(); case 575: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - '.', 1722, - ':', 1713, - ';', 1451, - '=', 675, - '>', 1479, - '?', 1717, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(574); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(345); END_STATE(); case 576: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1722, - ';', 1451, - '=', 1729, - '?', 1717, - 'e', 1374, - 'o', 1375, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - ); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1761); END_STATE(); case 577: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1719, - '#', 2188, - '$', 1509, - '\'', 1691, - '(', 1561, - ')', 1468, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1722, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1462, - ']', 1466, - '`', 1695, - 'a', 421, - 'b', 400, - 'c', 351, - 'd', 374, - 'e', 284, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(580); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1760); END_STATE(); case 578: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1719, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1722, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - '?', 1717, - 'B', 1653, - 'E', 333, - 'G', 333, - 'K', 333, - 'M', 333, - 'P', 333, - 'T', 333, - '[', 1665, - 'a', 421, - 'b', 1655, - 'd', 346, - 'e', 282, - 'g', 332, - 'h', 345, - 'i', 387, - 'k', 332, - 'l', 399, - 'm', 334, - 'n', 435, - 'o', 279, - 'p', 332, - 's', 377, - 't', 332, - 'u', 469, - 'w', 408, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - 0xb5, 469, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1775); END_STATE(); case 579: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1719, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1720, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - '?', 1717, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1765); END_STATE(); case 580: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1719, - '#', 2188, - ')', 1468, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1720, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1462, - ']', 1466, - 'a', 421, - 'b', 400, - 'c', 351, - 'd', 374, - 'e', 284, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(580); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(575); END_STATE(); case 581: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(576); END_STATE(); case 582: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1774); END_STATE(); case 583: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(329); END_STATE(); case 584: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(583); END_STATE(); case 585: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(582); END_STATE(); case 586: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); END_STATE(); case 587: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(586); END_STATE(); case 588: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(593); END_STATE(); case 589: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1802); END_STATE(); case 590: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(556); END_STATE(); case 591: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1794); END_STATE(); case 592: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(557); END_STATE(); case 593: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1771, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(589); END_STATE(); case 594: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1774, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(591); END_STATE(); case 595: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(594); END_STATE(); case 596: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(596); + if (lookahead == '"') ADVANCE(1783); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(1529); + if (lookahead == '\'') ADVANCE(1786); + if (lookahead == '(') ADVANCE(1525); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '+') ADVANCE(2224); + if (lookahead == '-') ADVANCE(1547); + if (lookahead == '.') ADVANCE(2222); + if (lookahead == '0') ADVANCE(1707); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'N') ADVANCE(2279); + if (lookahead == '[') ADVANCE(1523); + if (lookahead == '_') ADVANCE(2238); + if (lookahead == '`') ADVANCE(1790); + if (lookahead == 'e') ADVANCE(2211); + if (lookahead == 'f') ADVANCE(2247); + if (lookahead == 'n') ADVANCE(2275); + if (lookahead == 'o') ADVANCE(2212); + if (lookahead == 't') ADVANCE(2262); + if (lookahead == '{') ADVANCE(1561); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1508); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1726); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ']') ADVANCE(2302); END_STATE(); case 597: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(599); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(1528); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '.') ADVANCE(1676); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == '[') ADVANCE(1758); + if (lookahead == '_') ADVANCE(1989); + if (lookahead == 'e') ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1942); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') ADVANCE(1508); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1957); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 598: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(599); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(1528); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '.') ADVANCE(1991); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == '_') ADVANCE(1989); + if (lookahead == 'e') ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1942); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1508); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1957); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); case 599: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(599); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(1528); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '.') ADVANCE(364); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'e') ADVANCE(315); + if (lookahead == 'o') ADVANCE(317); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + lookahead == ' ') ADVANCE(1508); + if (lookahead == '+' || + lookahead == '-') ADVANCE(342); END_STATE(); case 600: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(613); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '.') ADVANCE(1661); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'E') ADVANCE(1982); + if (lookahead == 'G') ADVANCE(1986); + if (lookahead == 'K') ADVANCE(1986); + if (lookahead == 'M') ADVANCE(1986); + if (lookahead == 'P') ADVANCE(1986); + if (lookahead == 'T') ADVANCE(1986); + if (lookahead == 'd') ADVANCE(2003); + if (lookahead == 'e') ADVANCE(1937); + if (lookahead == 'g') ADVANCE(1985); + if (lookahead == 'h') ADVANCE(2067); + if (lookahead == 'k') ADVANCE(1985); + if (lookahead == 'm') ADVANCE(1988); + if (lookahead == 'n') ADVANCE(2085); + if (lookahead == 'o') ADVANCE(1942); + if (lookahead == 'p') ADVANCE(1985); + if (lookahead == 's') ADVANCE(2021); + if (lookahead == 't') ADVANCE(1985); + if (lookahead == 'u') ADVANCE(2085); + if (lookahead == 'w') ADVANCE(2042); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); + if (lookahead == 0xb5) ADVANCE(2085); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1508); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 601: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(613); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '.') ADVANCE(1661); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'E') ADVANCE(1996); + if (lookahead == 'e') ADVANCE(1939); + if (lookahead == 'o') ADVANCE(1942); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1508); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 602: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(613); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '.') ADVANCE(1955); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'E') ADVANCE(1982); + if (lookahead == 'G') ADVANCE(1986); + if (lookahead == 'K') ADVANCE(1986); + if (lookahead == 'M') ADVANCE(1986); + if (lookahead == 'P') ADVANCE(1986); + if (lookahead == 'T') ADVANCE(1986); + if (lookahead == '_') ADVANCE(1989); + if (lookahead == 'd') ADVANCE(2003); + if (lookahead == 'e') ADVANCE(1937); + if (lookahead == 'g') ADVANCE(1985); + if (lookahead == 'h') ADVANCE(2067); + if (lookahead == 'k') ADVANCE(1985); + if (lookahead == 'm') ADVANCE(1988); + if (lookahead == 'n') ADVANCE(2085); + if (lookahead == 'o') ADVANCE(1942); + if (lookahead == 'p') ADVANCE(1985); + if (lookahead == 's') ADVANCE(2021); + if (lookahead == 't') ADVANCE(1985); + if (lookahead == 'u') ADVANCE(2085); + if (lookahead == 'w') ADVANCE(2042); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); + if (lookahead == 0xb5) ADVANCE(2085); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1508); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 603: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(613); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '.') ADVANCE(1955); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'E') ADVANCE(1982); + if (lookahead == 'G') ADVANCE(1986); + if (lookahead == 'K') ADVANCE(1986); + if (lookahead == 'M') ADVANCE(1986); + if (lookahead == 'P') ADVANCE(1986); + if (lookahead == 'T') ADVANCE(1986); + if (lookahead == 'd') ADVANCE(2003); + if (lookahead == 'e') ADVANCE(1937); + if (lookahead == 'g') ADVANCE(1985); + if (lookahead == 'h') ADVANCE(2067); + if (lookahead == 'k') ADVANCE(1985); + if (lookahead == 'm') ADVANCE(1988); + if (lookahead == 'n') ADVANCE(2085); + if (lookahead == 'o') ADVANCE(1942); + if (lookahead == 'p') ADVANCE(1985); + if (lookahead == 's') ADVANCE(2021); + if (lookahead == 't') ADVANCE(1985); + if (lookahead == 'u') ADVANCE(2085); + if (lookahead == 'w') ADVANCE(2042); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); + if (lookahead == 0xb5) ADVANCE(2085); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1508); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 604: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(613); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '.') ADVANCE(1955); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'E') ADVANCE(1986); + if (lookahead == 'G') ADVANCE(1986); + if (lookahead == 'K') ADVANCE(1986); + if (lookahead == 'M') ADVANCE(1986); + if (lookahead == 'P') ADVANCE(1986); + if (lookahead == 'T') ADVANCE(1986); + if (lookahead == 'd') ADVANCE(2003); + if (lookahead == 'e') ADVANCE(1932); + if (lookahead == 'g') ADVANCE(1985); + if (lookahead == 'h') ADVANCE(2067); + if (lookahead == 'k') ADVANCE(1985); + if (lookahead == 'm') ADVANCE(1988); + if (lookahead == 'n') ADVANCE(2085); + if (lookahead == 'o') ADVANCE(1942); + if (lookahead == 'p') ADVANCE(1985); + if (lookahead == 's') ADVANCE(2021); + if (lookahead == 't') ADVANCE(1985); + if (lookahead == 'u') ADVANCE(2085); + if (lookahead == 'w') ADVANCE(2042); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); + if (lookahead == 0xb5) ADVANCE(2085); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1508); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 605: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(613); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '.') ADVANCE(1955); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'E') ADVANCE(1996); + if (lookahead == '_') ADVANCE(1989); + if (lookahead == 'e') ADVANCE(1939); + if (lookahead == 'o') ADVANCE(1942); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 606: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(613); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '.') ADVANCE(1955); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'E') ADVANCE(1996); + if (lookahead == 'e') ADVANCE(1939); + if (lookahead == 'o') ADVANCE(1942); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1508); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 607: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(613); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '.') ADVANCE(1955); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'e') ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1942); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + lookahead == ' ') ADVANCE(1508); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 608: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(613); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '.') ADVANCE(1660); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'E') ADVANCE(1996); + if (lookahead == 'e') ADVANCE(1939); + if (lookahead == 'o') ADVANCE(1942); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1508); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 609: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 852, - '#', 2191, - ')', 1468, - '*', 1514, - '+', 1579, - '-', 1496, - '/', 1569, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 936, - 'b', 918, - 'e', 829, - 'h', 875, - 'i', 937, - 'l', 917, - 'm', 949, - 'n', 950, - 'o', 828, - 's', 995, - 'x', 948, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(613); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'E') ADVANCE(1996); + if (lookahead == '_') ADVANCE(1989); + if (lookahead == 'e') ADVANCE(1939); + if (lookahead == 'o') ADVANCE(1942); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(616); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + lookahead == ' ') ADVANCE(1508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 610: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 852, - '#', 2191, - ')', 1468, - '*', 1514, - '+', 1579, - '-', 1496, - '/', 1569, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 936, - 'b', 918, - 'e', 833, - 'h', 875, - 'i', 937, - 'l', 917, - 'm', 949, - 'n', 950, - 'o', 832, - 's', 995, - 'x', 948, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(613); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'E') ADVANCE(1996); + if (lookahead == 'e') ADVANCE(1939); + if (lookahead == 'o') ADVANCE(1942); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + lookahead == ' ') ADVANCE(1508); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 611: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ':', 1463, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - 'E', 340, - '[', 1465, - 'a', 421, - 'b', 400, - 'c', 351, - 'e', 280, - 'f', 347, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 441, - 'o', 279, - 's', 486, - 't', 457, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(613); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'e') ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1942); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(612); + lookahead == ' ') ADVANCE(1508); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 612: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1463, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - '[', 1465, - 'a', 421, - 'b', 400, - 'c', 351, - 'e', 283, - 'f', 347, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 441, - 'o', 279, - 's', 486, - 't', 457, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(613); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == '=') ADVANCE(1829); + if (lookahead == 'e') ADVANCE(1857); + if (lookahead == 'o') ADVANCE(1858); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(612); + lookahead == ' ') ADVANCE(1508); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 613: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(613); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == 'e') ADVANCE(315); + if (lookahead == 'o') ADVANCE(317); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); + lookahead == ' ') ADVANCE(1508); END_STATE(); case 614: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(614); + if (lookahead == '!') ADVANCE(1816); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == '?') ADVANCE(1815); + if (lookahead == 'e') ADVANCE(315); + if (lookahead == 'o') ADVANCE(317); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(614); + lookahead == ' ') ADVANCE(1508); END_STATE(); case 615: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, - ); + if (eof) ADVANCE(689); + if (lookahead == '\n') ADVANCE(1506); + if (lookahead == '\r') SKIP(614); + if (lookahead == '!') ADVANCE(1816); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == ')') ADVANCE(1526); + if (lookahead == '.') ADVANCE(1820); + if (lookahead == ';') ADVANCE(1509); + if (lookahead == '=') ADVANCE(1829); + if (lookahead == '?') ADVANCE(1815); + if (lookahead == 'e') ADVANCE(1406); + if (lookahead == 'o') ADVANCE(1407); + if (lookahead == '|') ADVANCE(1510); + if (lookahead == '}') ADVANCE(1562); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); + lookahead == ' ') ADVANCE(1508); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1505); END_STATE(); case 616: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1816, + '"', 1783, + '#', 2420, + '$', 1529, + '&', 852, + '\'', 1786, + '(', 1525, + ')', 1526, + '*', 1576, + '+', 1639, + ',', 1527, + '-', 1545, + '.', 1819, + '/', 1634, + ':', 1811, + ';', 1509, + '<', 1613, + '=', 701, + '>', 1538, + '?', 1815, + '@', 1520, + '[', 1523, + ']', 1524, + '^', 1831, + '_', 1565, + '`', 1790, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(616); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1405); END_STATE(); case 617: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1816, + '"', 1783, + '#', 2420, + '\'', 1786, + ')', 1526, + '*', 1575, + '+', 730, + '-', 335, + '.', 1826, + ';', 1509, + '?', 1815, + 'I', 837, + 'N', 833, + '[', 1523, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, + '}', 1562, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '\'' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(852); END_STATE(); case 618: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1816, + '"', 1783, + '#', 2420, + '\'', 1786, + ')', 1526, + '*', 1575, + '+', 730, + '-', 335, + '.', 1826, + ';', 1509, + 'I', 837, + 'N', 833, + '[', 1523, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, + '}', 1562, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(618); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); case 619: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1816, + '#', 2420, + '(', 1525, + ')', 1526, + '-', 324, + '.', 1818, + ':', 1811, + ';', 1509, + '=', 703, + '>', 1537, + '?', 1815, + '[', 1523, + 'a', 447, + 'e', 315, + 'i', 413, + 'o', 316, + 'x', 457, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(619); END_STATE(); case 620: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1506, + '!', 1816, + '#', 2420, + '(', 1525, + ')', 1526, + '-', 324, + '.', 1820, + ':', 1811, + ';', 1509, + '=', 703, + '>', 1537, + '?', 1815, + '[', 1523, + 'a', 447, + 'e', 315, + 'i', 413, + 'o', 316, + 'x', 457, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); + lookahead == '\r' || + lookahead == ' ') SKIP(619); END_STATE(); case 621: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1506, + '!', 1817, + '#', 2420, + '$', 1573, + '\'', 1789, + '(', 1625, + ')', 1526, + '*', 1577, + '+', 1642, + '-', 1558, + '.', 1820, + '/', 1632, + ':', 1811, + ';', 1509, + '<', 1614, + '=', 702, + '>', 1538, + '?', 1815, + '@', 1520, + ']', 1524, + '`', 1793, + 'a', 447, + 'b', 426, + 'c', 378, + 'd', 401, + 'e', 311, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 306, + 's', 511, + 'x', 457, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); + lookahead == '\r' || + lookahead == ' ') SKIP(624); END_STATE(); case 622: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1616, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1463, - ';', 1451, - '=', 673, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1817, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1820, + '/', 1631, + ':', 1811, + ';', 1509, + '<', 1614, + '=', 349, + '>', 1538, + '?', 1815, + 'B', 1742, + 'E', 361, + 'G', 361, + 'K', 361, + 'M', 361, + 'P', 361, + 'T', 361, + '[', 1758, + 'a', 447, + 'b', 1744, + 'd', 373, + 'e', 309, + 'g', 360, + 'h', 372, + 'i', 413, + 'k', 360, + 'l', 425, + 'm', 362, + 'n', 461, + 'o', 306, + 'p', 360, + 's', 403, + 't', 360, + 'u', 494, + 'w', 434, + 'x', 457, + '{', 1561, + '|', 1510, + '}', 1562, + 0xb5, 494, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(824); END_STATE(); case 623: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1463, - ';', 1451, - '=', 673, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1817, + '#', 2420, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1818, + '/', 1631, + ':', 1811, + ';', 1509, + '<', 1614, + '=', 349, + '>', 1538, + '?', 1815, + 'a', 447, + 'b', 426, + 'e', 312, + 'h', 371, + 'i', 413, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 306, + 's', 511, + 'x', 457, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(824); END_STATE(); case 624: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1989, - 'f', 2015, - 'n', 2043, - 'o', 1990, - 't', 2030, - '{', 1498, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - 'I', 2051, - 'i', 2051, + '\n', 1506, + '!', 1817, + '#', 2420, + ')', 1526, + '*', 1577, + '+', 1642, + '-', 1558, + '.', 1818, + '/', 1632, + ':', 1811, + ';', 1509, + '<', 1614, + '=', 702, + '>', 1538, + '?', 1815, + '@', 1520, + ']', 1524, + 'a', 447, + 'b', 426, + 'c', 378, + 'd', 401, + 'e', 311, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 306, + 's', 511, + 'x', 457, + '{', 1561, + '|', 1510, + '}', 1562, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2070); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(624); END_STATE(); case 625: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1511, - '+', 702, - '-', 298, - '.', 718, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1640, + '-', 1556, + '.', 1676, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 1927, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1920, + 's', 2094, + 'x', 2058, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '\r' || + lookahead == ' ') SKIP(657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '_' || 'b' < lookahead)) ADVANCE(2156); END_STATE(); case 626: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1511, - '+', 702, - '-', 298, - '.', 718, - ';', 1451, - '=', 673, - '>', 1479, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1640, + '-', 1556, + '.', 1676, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 1933, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1941, + 's', 2094, + 'x', 2058, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(659); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); case 627: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - '?', 1717, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1640, + '-', 1556, + '.', 1991, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 1927, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1920, + 's', 2094, + 'x', 2058, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(658); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); case 628: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1640, + '-', 1556, + '.', 1991, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 1933, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1941, + 's', 2094, + 'x', 2058, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(628); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(659); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); case 629: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2190, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ';', 1451, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1661, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'B', 1742, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1921, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 1920, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '|', 1510, + '}', 1562, + 0xb5, 2085, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(629); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + lookahead == '\r' || + lookahead == ' ') SKIP(662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 630: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1604, - ';', 1451, - '[', 1665, - '_', 1813, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1661, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'B', 1742, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1936, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 1941, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '|', 1510, + '}', 1562, + 0xb5, 2085, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ']' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 631: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1604, - ';', 1451, - '_', 1813, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1661, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1922, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1920, + 's', 2094, + 'x', 2058, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(661); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(2156); END_STATE(); case 632: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1815, - ';', 1451, - '_', 1813, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1661, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1938, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1941, + 's', 2094, + 'x', 2058, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 633: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1815, - ';', 1451, - '_', 1813, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'B', 1742, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + '_', 1989, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1921, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 1920, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '|', 1510, + '}', 1562, + 0xb5, 2085, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 634: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - '.', 337, - ';', 1451, - 'a', 421, - 'e', 288, - 'o', 289, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'B', 1742, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + '_', 1989, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1936, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 1941, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '|', 1510, + '}', 1562, + 0xb5, 2085, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); - if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '\r' || + lookahead == ' ') SKIP(663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 635: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'B', 1742, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1921, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 1920, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '|', 1510, + '}', 1562, + 0xb5, 2085, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 636: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'B', 1742, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1936, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 1941, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '|', 1510, + '}', 1562, + 0xb5, 2085, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 637: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'B', 1742, + 'E', 1986, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1926, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 1920, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '|', 1510, + '}', 1562, + 0xb5, 2085, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 638: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'B', 1742, + 'E', 1986, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'b', 1745, + 'd', 2003, + 'e', 1931, + 'g', 1985, + 'h', 2001, + 'i', 2050, + 'k', 1985, + 'l', 2035, + 'm', 1987, + 'n', 2059, + 'o', 1941, + 'p', 1985, + 's', 2020, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '|', 1510, + '}', 1562, + 0xb5, 2085, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 639: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 1922, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1920, + 's', 2094, + 'x', 2058, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '_' || 'b' < lookahead)) ADVANCE(2156); END_STATE(); case 640: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 1938, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1941, + 's', 2094, + 'x', 2058, + '|', 1510, + '}', 1562, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 641: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1922, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1920, + 's', 2094, + 'x', 2058, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(661); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(2156); END_STATE(); case 642: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1938, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1941, + 's', 2094, + 'x', 2058, + '|', 1510, + '}', 1562, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 643: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1775, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'a', 2052, + 'b', 2036, + 'e', 1927, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1920, + 's', 2094, + 'x', 2058, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(661); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(2156); END_STATE(); case 644: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1775, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1955, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'a', 2052, + 'b', 2036, + 'e', 1933, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1941, + 's', 2094, + 'x', 2058, + '|', 1510, + '}', 1562, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 645: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1660, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1922, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1920, + 's', 2094, + 'x', 2058, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 646: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - '_', 1813, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1660, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1938, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1941, + 's', 2094, + 'x', 2058, + '|', 1510, + '}', 1562, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 647: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 1922, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1920, + 's', 2094, + 'x', 2058, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 648: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + '_', 1989, + 'a', 2052, + 'b', 2036, + 'e', 1938, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1941, + 's', 2094, + 'x', 2058, + '|', 1510, + '}', 1562, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 649: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1922, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1920, + 's', 2094, + 'x', 2058, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 650: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'E', 1996, + 'a', 2052, + 'b', 2036, + 'e', 1938, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1941, + 's', 2094, + 'x', 2058, + '|', 1510, + '}', 1562, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 651: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1594, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'a', 2052, + 'b', 2036, + 'e', 1927, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1920, + 's', 2094, + 'x', 2058, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(661); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(2156); END_STATE(); case 652: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1594, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1506, + '!', 1964, + '#', 2420, + '(', 1625, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 1966, + '>', 1538, + 'a', 2052, + 'b', 2036, + 'e', 1933, + 'h', 2002, + 'i', 2050, + 'l', 2035, + 'm', 2061, + 'n', 2060, + 'o', 1941, + 's', 2094, + 'x', 2058, + '|', 1510, + '}', 1562, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 653: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 880, + '#', 2423, + ')', 1526, + '*', 1578, + '+', 1643, + '-', 1559, + '/', 1633, + ':', 1811, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 964, + 'b', 946, + 'e', 857, + 'h', 903, + 'i', 965, + 'l', 945, + 'm', 977, + 'n', 978, + 'o', 856, + 's', 1023, + 'x', 976, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1074); END_STATE(); case 654: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - '_', 1813, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1506, + '!', 880, + '#', 2423, + ')', 1526, + '*', 1578, + '+', 1643, + '-', 1559, + '/', 1633, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 964, + 'b', 946, + 'e', 861, + 'h', 903, + 'i', 965, + 'l', 945, + 'm', 977, + 'n', 978, + 'o', 860, + 's', 1023, + 'x', 976, + '|', 1510, + '}', 1562, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1074); END_STATE(); case 655: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 348, + '#', 2420, + '$', 1528, + '(', 1525, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '.', 1660, + '/', 1631, + ':', 1521, + ';', 1509, + '<', 1614, + '=', 349, + '>', 1538, + 'E', 367, + '[', 1523, + 'a', 447, + 'b', 426, + 'c', 378, + 'e', 307, + 'f', 374, + 'h', 371, + 'i', 413, + 'l', 425, + 'm', 462, + 'n', 467, + 'o', 306, + 's', 511, + 't', 482, + 'x', 457, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(656); END_STATE(); case 656: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1506, + '!', 348, + '#', 2420, + '$', 1528, + '(', 1525, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ':', 1521, + ';', 1509, + '<', 1614, + '=', 349, + '>', 1538, + '[', 1523, + 'a', 447, + 'b', 426, + 'c', 378, + 'e', 310, + 'f', 374, + 'h', 371, + 'i', 413, + 'l', 425, + 'm', 462, + 'n', 467, + 'o', 306, + 's', 511, + 't', 482, + 'x', 457, + '{', 1561, + '|', 1510, + '}', 1562, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(656); END_STATE(); case 657: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 348, + '#', 2420, + '$', 1528, + ')', 1526, + '*', 1576, + '+', 1641, + '-', 1557, + '.', 364, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 312, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 306, + 's', 511, + 'x', 457, + '{', 1561, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '\r' || + lookahead == ' ') SKIP(657); END_STATE(); case 658: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1506, + '!', 348, + '#', 2420, + '$', 1528, + ')', 1526, + '*', 1576, + '+', 1641, + '-', 1557, + '.', 364, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 312, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 306, + 's', 511, + 'x', 457, + '|', 1510, + '}', 1562, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(658); END_STATE(); case 659: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ')', 1468, - ';', 1451, - '=', 1729, - 'e', 1756, - 'o', 1757, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1506, + '!', 348, + '#', 2420, + '$', 1528, + ')', 1526, + '*', 1576, + '+', 1641, + '-', 1557, + '.', 364, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 314, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 316, + 's', 511, + 'x', 457, + '|', 1510, + '}', 1562, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(659); END_STATE(); case 660: - if (eof) ADVANCE(661); + if (eof) ADVANCE(689); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ')', 1468, - ';', 1451, - 'a', 421, - 'e', 288, - 'o', 289, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1506, + '!', 348, + '#', 2420, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ':', 1811, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 312, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 306, + 's', 511, + 'x', 457, + '|', 1510, + '}', 1562, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(660); END_STATE(); case 661: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 348, + '#', 2420, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 312, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 306, + 's', 511, + 'x', 457, + '{', 1561, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(661); END_STATE(); case 662: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 348, + '#', 2420, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 312, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 306, + 's', 511, + 'x', 457, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(662); END_STATE(); case 663: - ACCEPT_TOKEN(aux_sym_shebang_token1); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 348, + '#', 2420, + ')', 1526, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 314, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 316, + 's', 511, + 'x', 457, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(663); END_STATE(); case 664: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead == '#') ADVANCE(2189); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 348, + '#', 2420, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 312, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 306, + 's', 511, + 'x', 457, + '|', 1510, + ); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(664); - if (lookahead != 0) ADVANCE(665); + lookahead == '\r' || + lookahead == ' ') SKIP(664); END_STATE(); case 665: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead != 0) ADVANCE(665); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 348, + '#', 2420, + '*', 1576, + '+', 1639, + '-', 1545, + '/', 1631, + ';', 1509, + '<', 1614, + '=', 350, + '>', 1538, + 'a', 447, + 'b', 426, + 'e', 314, + 'h', 371, + 'i', 448, + 'l', 425, + 'm', 462, + 'n', 460, + 'o', 316, + 's', 511, + 'x', 457, + '|', 1510, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(665); END_STATE(); case 666: - ACCEPT_TOKEN(anon_sym_export); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + ')', 1698, + '+', 730, + '-', 1554, + '.', 725, + '0', 1706, + ':', 1521, + ';', 1509, + '=', 701, + '@', 1520, + 'I', 837, + 'N', 833, + '[', 1523, + '^', 1831, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 797, + 't', 800, + 'u', 813, + 'w', 775, + '{', 1561, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1725); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(852); END_STATE(); case 667: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1395); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '"', 1783, + '#', 2420, + '$', 1529, + '\'', 1786, + '(', 1525, + ')', 1526, + '+', 730, + '-', 1554, + '.', 725, + '0', 1706, + ':', 1521, + ';', 1509, + '=', 701, + '@', 1520, + 'I', 837, + 'N', 833, + '[', 1523, + '^', 1831, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 797, + 't', 800, + 'u', 813, + 'w', 775, + '{', 1561, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1725); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(852); END_STATE(); case 668: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(742); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '"', 1783, + '#', 2420, + '\'', 1786, + '(', 1525, + ')', 1526, + '*', 1575, + '+', 730, + '-', 325, + '.', 746, + ';', 1509, + '<', 1173, + '=', 701, + '>', 1537, + '@', 1539, + 'I', 837, + 'N', 833, + '[', 1523, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, + '{', 1561, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(852); END_STATE(); case 669: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '"', 1783, + '#', 2420, + '\'', 1786, + '(', 1525, + ')', 1526, + '*', 1575, + '+', 730, + '-', 325, + '.', 746, + ';', 1509, + '=', 701, + '>', 1537, + 'I', 837, + 'N', 833, + '[', 1523, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, + '{', 1561, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); case 670: - ACCEPT_TOKEN(anon_sym_alias); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '"', 1783, + '#', 2420, + '\'', 1786, + ')', 1526, + '*', 1575, + '+', 730, + '-', 335, + '.', 1826, + ';', 1509, + '?', 1815, + 'I', 837, + 'N', 833, + '[', 1523, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(852); END_STATE(); case 671: - ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '"', 1783, + '#', 2420, + '\'', 1786, + ')', 1526, + '*', 1575, + '+', 730, + '-', 335, + '.', 1826, + ';', 1509, + 'I', 837, + 'N', 833, + '[', 1523, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 826, + 't', 800, + 'u', 813, + 'w', 779, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(852); END_STATE(); case 672: - ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '"', 1783, + '#', 2422, + '$', 1529, + '\'', 1786, + '(', 1525, + '+', 730, + '-', 1554, + '.', 725, + '0', 1706, + ';', 1509, + '@', 1520, + 'I', 837, + 'N', 833, + '[', 1523, + '^', 1831, + '_', 744, + '`', 1790, + 'a', 782, + 'c', 749, + 'd', 759, + 'e', 787, + 'f', 751, + 'i', 743, + 'l', 767, + 'm', 753, + 'n', 797, + 't', 800, + 'u', 813, + 'w', 775, + '{', 1561, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(672); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1725); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(852); END_STATE(); case 673: - ACCEPT_TOKEN(anon_sym_EQ); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + '.', 1676, + ';', 1509, + '_', 1989, + 'a', 2052, + 'e', 1934, + 'o', 1941, + 'x', 2058, + '|', 1510, + '}', 1562, + '+', 1957, + '-', 1957, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); case 674: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + '(', 1625, + ')', 1526, + '.', 1991, + ';', 1509, + '_', 1989, + 'a', 2052, + 'e', 1934, + 'o', 1941, + 'x', 2058, + '|', 1510, + '}', 1562, + '+', 1957, + '-', 1957, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); case 675: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(1500); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '$', 1528, + ')', 1526, + '.', 364, + ';', 1509, + 'a', 447, + 'e', 315, + 'o', 316, + 'x', 457, + '|', 1510, + '}', 1562, + '+', 342, + '-', 342, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(675); END_STATE(); case 676: - ACCEPT_TOKEN(anon_sym_let); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1625, + ')', 1526, + '.', 1661, + ';', 1509, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'd', 2003, + 'e', 1937, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'o', 1941, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '|', 1510, + '}', 1562, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(688); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 677: - ACCEPT_TOKEN(anon_sym_let); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1625, + ')', 1526, + '.', 1661, + ';', 1509, + 'E', 1996, + 'a', 2052, + 'e', 1939, + 'o', 1941, + 'x', 2058, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(688); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 678: - ACCEPT_TOKEN(anon_sym_let); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1625, + ')', 1526, + '.', 1955, + ';', 1509, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + '_', 1989, + 'a', 2052, + 'd', 2003, + 'e', 1937, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'o', 1941, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '|', 1510, + '}', 1562, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(688); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 679: - ACCEPT_TOKEN(anon_sym_mut); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1625, + ')', 1526, + '.', 1955, + ';', 1509, + 'E', 1982, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'd', 2003, + 'e', 1937, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'o', 1941, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '|', 1510, + '}', 1562, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(688); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 680: - ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1625, + ')', 1526, + '.', 1955, + ';', 1509, + 'E', 1986, + 'G', 1986, + 'K', 1986, + 'M', 1986, + 'P', 1986, + 'T', 1986, + 'a', 2052, + 'd', 2003, + 'e', 1932, + 'g', 1985, + 'h', 2067, + 'k', 1985, + 'm', 1988, + 'n', 2085, + 'o', 1941, + 'p', 1985, + 's', 2021, + 't', 1985, + 'u', 2085, + 'w', 2042, + 'x', 2058, + '|', 1510, + '}', 1562, + 0xb5, 2085, + 'B', 1742, + 'b', 1742, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(688); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 681: - ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1625, + ')', 1526, + '.', 1955, + ';', 1509, + 'E', 1996, + '_', 1989, + 'a', 2052, + 'e', 1939, + 'o', 1941, + 'x', 2058, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(688); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 682: - ACCEPT_TOKEN(anon_sym_const); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1625, + ')', 1526, + '.', 1955, + ';', 1509, + 'E', 1996, + 'a', 2052, + 'e', 1939, + 'o', 1941, + 'x', 2058, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(688); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 683: - ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1625, + ')', 1526, + '.', 1955, + ';', 1509, + 'a', 2052, + 'e', 1934, + 'o', 1941, + 'x', 2058, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(688); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 684: - ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1625, + ')', 1526, + '.', 1660, + ';', 1509, + 'E', 1996, + 'a', 2052, + 'e', 1939, + 'o', 1941, + 'x', 2058, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(688); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1625, + ')', 1526, + ';', 1509, + 'E', 1996, + '_', 1989, + 'a', 2052, + 'e', 1939, + 'o', 1941, + 'x', 2058, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(688); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 686: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1625, + ')', 1526, + ';', 1509, + 'E', 1996, + 'a', 2052, + 'e', 1939, + 'o', 1941, + 'x', 2058, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(688); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 687: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + '(', 1625, + ')', 1526, + ';', 1509, + 'a', 2052, + 'e', 1934, + 'o', 1941, + 'x', 2058, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(688); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '#', 2420, + ')', 1526, + ';', 1509, + 'a', 447, + 'e', 315, + 'o', 316, + 'x', 457, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(688); END_STATE(); case 689: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 690: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '{') ADVANCE(1706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); case 691: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(766); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'r') ADVANCE(775); - if (lookahead == 'x') ADVANCE(771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); case 692: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(767); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(691); + if (lookahead == '#') ADVANCE(2421); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(692); + if (lookahead != 0) ADVANCE(693); END_STATE(); case 693: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(745); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(795); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(691); + if (lookahead != 0) ADVANCE(693); END_STATE(); case 694: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(744); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 695: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(1440); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 696: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(770); END_STATE(); case 697: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 698: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1504); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 699: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_alias); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 700: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1593); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_alias); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 701: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(699); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 702: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(717); - if (lookahead == '_') ADVANCE(702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1611); + if (lookahead == '~') ADVANCE(1617); END_STATE(); case 703: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(1563); END_STATE(); case 704: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 705: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_let); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 706: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_let); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 707: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); case 708: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 806, - '_', 719, - 'i', 806, - 'l', 786, - 'x', 771, - '+', 719, - '-', 719, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_mut); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 709: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == '_') ADVANCE(719); - if (lookahead == 'i') ADVANCE(726); - if (lookahead == '+' || - lookahead == '-') ADVANCE(719); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_mut); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 710: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 806, - 'a', 796, - 'i', 763, - 'o', 730, - 's', 1658, - 'u', 791, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 711: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'x') ADVANCE(771); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_const); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 712: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); - if (lookahead == 'r') ADVANCE(799); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_const); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 713: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 714: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(726); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 715: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(807); - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'n') ADVANCE(1084); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 716: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(716); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 717: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(717); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '$') ADVANCE(1699); + if (lookahead == '(') ADVANCE(1655); + if (lookahead == '{') ADVANCE(1804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(719); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(794); + if (lookahead == '>') ADVANCE(548); + if (lookahead == 'l') ADVANCE(814); + if (lookahead == 'r') ADVANCE(803); + if (lookahead == 'x') ADVANCE(799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(795); + if (lookahead == '>') ADVANCE(551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(789); - if (lookahead == 'o') ADVANCE(764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(773); + if (lookahead == '>') ADVANCE(549); + if (lookahead == 'u') ADVANCE(823); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(803); - if (lookahead == 'e') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(772); + if (lookahead == '>') ADVANCE(553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'o') ADVANCE(773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '-') ADVANCE(849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(781); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(796); - if (lookahead == 'o') ADVANCE(730); - if (lookahead == 'u') ADVANCE(791); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1571); + if (lookahead == '_') ADVANCE(746); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1567); + if (lookahead == '_') ADVANCE(746); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(718); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1659); + if (lookahead == '_') ADVANCE(746); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(727); + if (lookahead == '_') ADVANCE(746); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(745); + if (lookahead == '_') ADVANCE(730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == ':') ADVANCE(580); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(550); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(552); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(555); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ADVANCE_MAP( + 'I', 834, + '_', 747, + 'i', 834, + 'l', 814, + 'x', 799, + '+', 747, + '-', 747, + 'B', 1742, + 'b', 1742, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(834); + if (lookahead == '_') ADVANCE(747); + if (lookahead == 'i') ADVANCE(754); + if (lookahead == '+' || + lookahead == '-') ADVANCE(747); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ADVANCE_MAP( + 'I', 834, + 'a', 824, + 'i', 791, + 'o', 758, + 's', 1747, + 'u', 819, + 'B', 1742, + 'b', 1742, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(790); - if (lookahead == 'o') ADVANCE(765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(834); + if (lookahead == 'i') ADVANCE(834); + if (lookahead == 'l') ADVANCE(814); + if (lookahead == 'x') ADVANCE(799); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(727); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(834); + if (lookahead == 'i') ADVANCE(834); + if (lookahead == 'r') ADVANCE(827); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(778); - if (lookahead == 'i') ADVANCE(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(834); + if (lookahead == 'i') ADVANCE(834); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(762); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(834); + if (lookahead == 'i') ADVANCE(754); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(776); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N') ADVANCE(835); + if (lookahead == 'f') ADVANCE(1096); + if (lookahead == 'n') ADVANCE(1112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(745); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(746); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(747); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(748); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(817); + if (lookahead == 'o') ADVANCE(792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(753); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(831); + if (lookahead == 'e') ADVANCE(774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(788); + if (lookahead == 'o') ADVANCE(801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(724); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(809); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(824); + if (lookahead == 'o') ADVANCE(758); + if (lookahead == 'u') ADVANCE(819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(752); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(776); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'd') ADVANCE(829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'x') ADVANCE(771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1053); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1099); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1117); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1121); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1590); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(818); + if (lookahead == 'o') ADVANCE(793); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(777); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(755); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(792); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(806); + if (lookahead == 'i') ADVANCE(785); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(768); - if (lookahead == 't') ADVANCE(743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1059); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'f') ADVANCE(853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(1105); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(1108); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(781); + if (lookahead == 'k') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(780); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(781); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'i') ADVANCE(752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'i') ADVANCE(785); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(780); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(1125); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1659); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(732); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(793); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(814); + if (lookahead == 'x') ADVANCE(799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(1081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(679); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(1747); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(815); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(798); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(694); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(805); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(820); + if (lookahead == 'u') ADVANCE(784); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'p') ADVANCE(1090); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(734); - if (lookahead == 'y') ADVANCE(1074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'p') ADVANCE(796); + if (lookahead == 't') ADVANCE(771); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(1087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '{') ADVANCE(1706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(789); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1099); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(808); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(812); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(698); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1747); + if (lookahead == 'u') ADVANCE(784); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(808); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(821); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(756); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 825: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 't') ADVANCE(734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 826: - ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(784); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 827: - ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(762); + if (lookahead == 'y') ADVANCE(1102); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 828: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(900); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1532); - if (lookahead == 'u') ADVANCE(993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 829: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(945); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(889); - if (lookahead == 'r') ADVANCE(960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'u') ADVANCE(786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 830: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(901); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'v') ADVANCE(1078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 831: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(947); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'y') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 832: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(903); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1532); - if (lookahead == 'u') ADVANCE(999); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '{') ADVANCE(1804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 833: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(953); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(889); - if (lookahead == 'r') ADVANCE(966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 834: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(955); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 835: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(906); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1130); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 836: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1036); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 837: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 838: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 839: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 840: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1485); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 841: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1038); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 842: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1736); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 843: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1624); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 844: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 845: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 846: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1044); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 847: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 848: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 849: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(1508); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 850: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 851: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(2069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 852: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(852); END_STATE(); case 853: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 854: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_def); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 855: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_def); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(928); + if (lookahead == '>') ADVANCE(1839); + if (lookahead == 'r') ADVANCE(1596); + if (lookahead == 'u') ADVANCE(1021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(973); + if (lookahead == '>') ADVANCE(1837); + if (lookahead == 'n') ADVANCE(917); + if (lookahead == 'r') ADVANCE(988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(929); + if (lookahead == '>') ADVANCE(1835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(975); + if (lookahead == '>') ADVANCE(1833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(931); + if (lookahead == '>') ADVANCE(549); + if (lookahead == 'r') ADVANCE(1596); + if (lookahead == 'u') ADVANCE(1027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N') ADVANCE(1021); - if (lookahead == 'f') ADVANCE(1070); - if (lookahead == 'n') ADVANCE(1085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(981); + if (lookahead == '>') ADVANCE(548); + if (lookahead == 'n') ADVANCE(917); + if (lookahead == 'r') ADVANCE(994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(983); + if (lookahead == '>') ADVANCE(551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(934); + if (lookahead == '>') ADVANCE(553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'o') ADVANCE(1662); - if (lookahead == 'x') ADVANCE(1664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1064); + if (lookahead == '_') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'o') ADVANCE(1662); - if (lookahead == 'x') ADVANCE(1664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1544); + if (lookahead == '.') ADVANCE(894); + if (lookahead == '_') ADVANCE(876); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1053); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1070); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(928); - if (lookahead == 'o') ADVANCE(965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1072); + if (lookahead == '_') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(894); + if (lookahead == '_') ADVANCE(876); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1053); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(894); + if (lookahead == '_') ADVANCE(876); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(1572); + if (lookahead == '_') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == ':') ADVANCE(580); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(987); - if (lookahead == 'o') ADVANCE(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == ':') ADVANCE(2301); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(941); - if (lookahead == 'o') ADVANCE(962); - if (lookahead == 's') ADVANCE(909); - if (lookahead == 'x') ADVANCE(954); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '=') ADVANCE(1612); + if (lookahead == '~') ADVANCE(1619); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(1003); - if (lookahead == 'o') ADVANCE(888); - if (lookahead == 'u') ADVANCE(989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(550); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(552); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(555); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N') ADVANCE(1049); + if (lookahead == 'f') ADVANCE(1098); + if (lookahead == 'n') ADVANCE(1113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'T') ADVANCE(1067); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'T') ADVANCE(1068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(894); + if (lookahead == 'b') ADVANCE(1739); + if (lookahead == 'o') ADVANCE(1751); + if (lookahead == 'x') ADVANCE(1755); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(894); + if (lookahead == 'b') ADVANCE(1739); + if (lookahead == 'o') ADVANCE(1751); + if (lookahead == 'x') ADVANCE(1755); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(874); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(956); + if (lookahead == 'o') ADVANCE(993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(956); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(1003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(988); - if (lookahead == 'o') ADVANCE(946); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(1004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(1005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(943); - if (lookahead == 'h') ADVANCE(877); - if (lookahead == 'i') ADVANCE(938); - if (lookahead == 'l') ADVANCE(924); - if (lookahead == 's') ADVANCE(1007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(1015); + if (lookahead == 'o') ADVANCE(970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'f') ADVANCE(827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(969); + if (lookahead == 'o') ADVANCE(990); + if (lookahead == 's') ADVANCE(937); + if (lookahead == 'x') ADVANCE(982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(1031); + if (lookahead == 'o') ADVANCE(916); + if (lookahead == 'u') ADVANCE(1017); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1544); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'c') ADVANCE(942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1546); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'c') ADVANCE(943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1592); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1041); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1124); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1101); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1095); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1582); - if (lookahead == 'r') ADVANCE(1584); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1016); + if (lookahead == 'o') ADVANCE(974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(981); - if (lookahead == 'x') ADVANCE(958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(971); + if (lookahead == 'h') ADVANCE(905); + if (lookahead == 'i') ADVANCE(966); + if (lookahead == 'l') ADVANCE(952); + if (lookahead == 's') ADVANCE(1035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'f') ADVANCE(855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1604); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1606); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1107); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1110); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(986); - if (lookahead == 'u') ADVANCE(931); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(954); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(1020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(1022); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(1029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'k') ADVANCE(921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'k') ADVANCE(922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(1006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(1064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(1128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(956); - if (lookahead == 't') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(1646); + if (lookahead == 'r') ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1590); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(1009); + if (lookahead == 'x') ADVANCE(986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1116); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1598); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1005); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(967); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1014); + if (lookahead == 'u') ADVANCE(959); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(885); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'p') ADVANCE(1092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'p') ADVANCE(984); + if (lookahead == 't') ADVANCE(932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1089); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(888); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(884); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(1600); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(1602); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(891); - if (lookahead == 'y') ADVANCE(1076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(931); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(1018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(1002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(934); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'v') ADVANCE(1052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(1059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(712); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'x') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(697); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1030); + if (lookahead == 't') ADVANCE(887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(1011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(1013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(919); + if (lookahead == 'y') ADVANCE(1104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(959); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'v') ADVANCE(1080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(948); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1047: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'x') ADVANCE(1032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1048: - ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1049: - ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1050: - ACCEPT_TOKEN(anon_sym_export_DASHenv); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1051: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1052: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1053: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1054: - ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1055: - ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1056: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1057: - ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1058: - ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1074); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1058); END_STATE(); case 1059: - ACCEPT_TOKEN(anon_sym_for); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1624); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1060: - ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1061: - ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1062: - ACCEPT_TOKEN(anon_sym_loop); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1063: - ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(878); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1064: - ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1065: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(879); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1066: - ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1067: - ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1068: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1069: - ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(891); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1070: - ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1071: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1072: - ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1073: - ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1074: - ACCEPT_TOKEN(anon_sym_try); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1075: - ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 1076: - ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_use); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1077: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_use); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1078: - ACCEPT_TOKEN(anon_sym_catch); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_export_DASHenv); END_STATE(); case 1079: - ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1080: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1081: - ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 1082: - ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_extern); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1083: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_extern); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1084: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1099); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 1085: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_module); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1086: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_module); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1087: - ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 1088: - ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_for); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1089: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_for); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1090: - ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 1091: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_loop); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1092: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_loop); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1093: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 1094: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_while); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1095: - ACCEPT_TOKEN(anon_sym_null); + ACCEPT_TOKEN(anon_sym_while); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1096: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 1097: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_if); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1098: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1099: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(811); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 1100: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2052); + ACCEPT_TOKEN(anon_sym_else); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1101: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2107); + ACCEPT_TOKEN(anon_sym_else); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1102: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2161); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 1103: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(543); + ACCEPT_TOKEN(anon_sym_try); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1104: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + ACCEPT_TOKEN(anon_sym_try); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1105: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(541); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 1106: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1931); + ACCEPT_TOKEN(anon_sym_catch); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1107: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2109); + ACCEPT_TOKEN(anon_sym_catch); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1108: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2163); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 1109: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + ACCEPT_TOKEN(anon_sym_match); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1110: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_match); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1111: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 1112: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1110); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1130); END_STATE(); case 1113: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1116); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1114: - ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1490); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1115: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_in); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1116: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_in); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1117: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1111); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 1118: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1119: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1120: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1121: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 1122: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1123: - ACCEPT_TOKEN(anon_sym_like); + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1124: - ACCEPT_TOKEN(anon_sym_not_DASHlike); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1125: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 1126: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1127: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1128: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1129: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); END_STATE(); case 1130: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(839); END_STATE(); case 1131: - ACCEPT_TOKEN(anon_sym_in2); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2284); END_STATE(); case 1132: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2339); END_STATE(); case 1133: - ACCEPT_TOKEN(anon_sym_has); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2135); END_STATE(); case 1134: - ACCEPT_TOKEN(anon_sym_not_DASHhas); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2393); END_STATE(); case 1135: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(568); END_STATE(); case 1136: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); END_STATE(); case 1137: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(566); END_STATE(); case 1138: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2341); END_STATE(); case 1139: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2137); END_STATE(); case 1140: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2395); END_STATE(); case 1141: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); END_STATE(); case 1142: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1143); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 1143: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 1144: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1145); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(1142); END_STATE(); case 1145: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(1148); END_STATE(); case 1146: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_SLASH); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1147: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 1148: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 1149: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1143); END_STATE(); case 1150: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 1151: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); case 1152: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); case 1153: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 1154: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 1155: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_like); END_STATE(); case 1156: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_not_DASHlike); END_STATE(); case 1157: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); case 1158: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); case 1159: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); case 1160: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 1161: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 1162: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 1163: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_in2); END_STATE(); case 1164: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); case 1165: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_has); END_STATE(); case 1166: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_not_DASHhas); END_STATE(); case 1167: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); case 1168: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); END_STATE(); case 1169: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); case 1170: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); END_STATE(); case 1171: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 1172: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 1173: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 1174: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(1175); END_STATE(); case 1175: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 1176: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1177); END_STATE(); case 1177: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + '\n', 1506, + '!', 1241, + '#', 2420, + ')', 1526, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + '_', 1256, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == '\r' || + lookahead == ' ') SKIP(28); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, + '\n', 1506, + '!', 1241, + '#', 2420, + ')', 1526, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + '_', 1256, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1230, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == '\r' || + lookahead == ' ') SKIP(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1594, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1506, + '!', 1241, + '#', 2420, + ')', 1526, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == '\r' || + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1594, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1506, + '!', 1241, + '#', 2420, + ')', 1526, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1230, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == '\r' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1506, + '!', 1241, + '#', 2420, + ')', 1526, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1254, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1225, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == '\r' || + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1506, + '!', 1241, + '#', 2420, + ')', 1526, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1254, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1228, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == '\r' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1220, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1506, + '!', 1241, + '#', 2420, + ')', 1526, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1661, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == '\r' || + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1506, + '!', 1241, + '#', 2420, + ')', 1526, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1661, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1230, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == '\r' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1506, + '!', 1241, + '#', 2420, + ')', 1526, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'a', 1298, + 'b', 1287, + 'e', 1226, + 'h', 1262, + 'i', 1300, + 'l', 1288, + 'm', 1308, + 'n', 1312, + 'o', 1223, + 's', 1334, + 'x', 1307, + '|', 1510, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == '\r' || + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1220, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1506, + '!', 1241, + '#', 2420, + ')', 1526, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'a', 1298, + 'b', 1287, + 'e', 1229, + 'h', 1262, + 'i', 1300, + 'l', 1288, + 'm', 1308, + 'n', 1312, + 'o', 1231, + 's', 1334, + 'x', 1307, + '|', 1510, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == '\r' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1270, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1282, - 's', 1302, - 'x', 1275, + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ':', 1811, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + '_', 1256, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + '}', 1562, + 0xb5, 1326, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == '\r' || + lookahead == ' ') SKIP(30); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '#') ADVANCE(2188); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ':', 1811, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + '}', 1562, + 0xb5, 1326, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + lookahead == '\r' || + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1224, - '-', 1226, - '>', 1737, - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - 'r', 1283, - 'B', 1653, - 'b', 1653, + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ':', 1811, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1254, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1225, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + '}', 1562, + 0xb5, 1326, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1245); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1130); - if (lookahead == 'u') ADVANCE(1304); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + '_', 1256, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + '}', 1562, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1274); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + '_', 1256, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1230, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + '}', 1562, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1273, - '>', 1737, - 'I', 1322, - 'i', 1322, - 'n', 1240, - 'r', 1283, - 'B', 1653, - 'b', 1653, + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + '}', 1562, + 0xb5, 1326, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1273); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1230, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + '}', 1562, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1246); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1254, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1225, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + '}', 1562, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1277, - '>', 523, - 'I', 1322, - 'i', 1322, - 'n', 1240, - 'r', 1288, - 'B', 1653, - 'b', 1653, + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1254, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1228, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + '}', 1562, + 0xb5, 1326, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1277); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1288); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + '_', 1256, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(33); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1225, - '-', 1226, - '>', 523, - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - 'r', 1288, - 'B', 1653, - 'b', 1653, + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + '_', 1256, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1230, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(34); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1247); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1130); - if (lookahead == 'u') ADVANCE(1308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1281); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1230, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1248); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1254, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1225, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1254, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1228, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1661, + '/', 1145, + ':', 1811, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + '}', 1562, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1661, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + '}', 1562, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1661, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1230, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + '}', 1562, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1661, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1661, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1230, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'a', 1298, + 'b', 1287, + 'e', 1226, + 'h', 1262, + 'i', 1300, + 'l', 1288, + 'm', 1308, + 'n', 1312, + 'o', 1223, + 's', 1334, + 'x', 1307, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '=') ADVANCE(1140); - if (lookahead == '~') ADVANCE(1122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'a', 1298, + 'b', 1287, + 'e', 1229, + 'h', 1262, + 'i', 1300, + 'l', 1288, + 'm', 1308, + 'n', 1312, + 'o', 1231, + 's', 1334, + 'x', 1307, + '|', 1510, + '}', 1562, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'a', 1298, + 'b', 1287, + 'e', 1226, + 'h', 1262, + 'i', 1300, + 'l', 1288, + 'm', 1308, + 'n', 1312, + 'o', 1223, + 's', 1334, + 'x', 1307, + '|', 1510, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'a', 1298, + 'b', 1287, + 'e', 1229, + 'h', 1262, + 'i', 1300, + 'l', 1288, + 'm', 1308, + 'n', 1312, + 'o', 1231, + 's', 1334, + 'x', 1307, + '|', 1510, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1660, + '/', 1145, + ':', 1811, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1250, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1314, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(293); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1660, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1250, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1314, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + ':', 1811, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + '_', 1256, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1250, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1314, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + ':', 1811, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1250, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1314, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(293); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + ':', 1811, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1254, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1252, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1314, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(293); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + '_', 1256, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1250, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1314, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - '+', 1226, - '-', 1226, - 'B', 1653, - 'b', 1653, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1250, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1314, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + 0xb5, 1326, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'i') ADVANCE(1235); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1226); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1254, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1252, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1314, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1322); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + '<', 1174, + '=', 347, + '>', 1176, + 'a', 1298, + 'b', 1287, + 'e', 1302, + 'h', 1262, + 'i', 1300, + 'l', 1288, + 'm', 1308, + 'n', 1312, + 'o', 1314, + 's', 1334, + 'x', 1307, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1322); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1235); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '+', 1257, + '-', 1259, + '>', 1837, + 'I', 1354, + '_', 1259, + 'i', 1354, + 'n', 1272, + 'r', 1315, + 'B', 1742, + 'b', 1742, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1267); - if (lookahead == 'o') ADVANCE(1238); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1277); + if (lookahead == '>') ADVANCE(1839); + if (lookahead == 'r') ADVANCE(1162); + if (lookahead == 'u') ADVANCE(1336); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'o') ADVANCE(1210); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1306); + if (lookahead == '>') ADVANCE(1833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'o') ADVANCE(1214); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '+', 1305, + '>', 1837, + 'I', 1354, + 'i', 1354, + 'n', 1272, + 'r', 1315, + 'B', 1742, + 'b', 1742, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1305); + if (lookahead == '>') ADVANCE(1837); + if (lookahead == 'n') ADVANCE(1272); + if (lookahead == 'r') ADVANCE(1315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1227); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1278); + if (lookahead == '>') ADVANCE(1835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '+', 1309, + '>', 548, + 'I', 1354, + 'i', 1354, + 'n', 1272, + 'r', 1320, + 'B', 1742, + 'b', 1742, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1295); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1309); + if (lookahead == '>') ADVANCE(548); + if (lookahead == 'n') ADVANCE(1272); + if (lookahead == 'r') ADVANCE(1320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1295); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '+', 1258, + '-', 1259, + '>', 548, + 'I', 1354, + '_', 1259, + 'i', 1354, + 'n', 1272, + 'r', 1320, + 'B', 1742, + 'b', 1742, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1287); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1279); + if (lookahead == '>') ADVANCE(549); + if (lookahead == 'r') ADVANCE(1162); + if (lookahead == 'u') ADVANCE(1340); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1296); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1313); + if (lookahead == '>') ADVANCE(551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1271); - if (lookahead == 'o') ADVANCE(1285); - if (lookahead == 's') ADVANCE(1250); - if (lookahead == 'x') ADVANCE(1278); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1280); + if (lookahead == '>') ADVANCE(553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1265); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1281); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1349); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1350); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1351); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1125); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1297); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '.') ADVANCE(1659); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '=') ADVANCE(1172); + if (lookahead == '~') ADVANCE(1154); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1236); - if (lookahead == 't') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1123); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1124); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1211); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1290); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(550); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1215); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(552); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1291); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1272); - if (lookahead == 'h') ADVANCE(1232); - if (lookahead == 'i') ADVANCE(1269); - if (lookahead == 'l') ADVANCE(1261); - if (lookahead == 's') ADVANCE(1314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(555); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + 'I', 1354, + '_', 1259, + 'i', 1354, + 'n', 1272, + '+', 1259, + '-', 1259, + 'B', 1742, + 'b', 1742, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1137); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1354); + if (lookahead == '_') ADVANCE(1259); + if (lookahead == 'i') ADVANCE(1267); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1259); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1135); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1354); + if (lookahead == 'i') ADVANCE(1354); + if (lookahead == 'n') ADVANCE(1272); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1354); + if (lookahead == 'i') ADVANCE(1354); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1136); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1354); + if (lookahead == 'i') ADVANCE(1267); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1354); + if (lookahead == 'i') ADVANCE(1299); + if (lookahead == 'o') ADVANCE(1270); + if (lookahead == 's') ADVANCE(1747); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1256); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1305); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1259); + if (lookahead == 'o') ADVANCE(1242); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1307); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1259); + if (lookahead == 'o') ADVANCE(1246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1353); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1327); + if (lookahead == 'r') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1327); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1319); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1328); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'l') ADVANCE(1119); - if (lookahead == 'r') ADVANCE(1120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1303); + if (lookahead == 'o') ADVANCE(1317); + if (lookahead == 's') ADVANCE(1282); + if (lookahead == 'x') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1325); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'c') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1160); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1147); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1157); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1329); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1210); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1331); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1268); + if (lookahead == 't') ADVANCE(1263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1284); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1155); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1156); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1243); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1286); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1322); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1303); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1303); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1316); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1304); + if (lookahead == 'h') ADVANCE(1264); + if (lookahead == 'i') ADVANCE(1301); + if (lookahead == 'l') ADVANCE(1293); + if (lookahead == 's') ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1297); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1192); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1169); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1129); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1167); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1170); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1168); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1312); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1333); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1200); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1295); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1289); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1339); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1217); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1342); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1296); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1133); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1276); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'l') ADVANCE(1151); + if (lookahead == 'r') ADVANCE(1152); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1205); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1269); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1206); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1747); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1163); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1202); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1164); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1272); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1203); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1273); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1347); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1252); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1201); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1270); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1246); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1216); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1335); + if (lookahead == 's') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1298); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1335); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1300); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1348); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1162); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1224); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1161); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1159); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1158); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1344); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1232); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1245); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1345); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1165); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1166); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1334: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == '_') ADVANCE(1346); - if (lookahead == 'i') ADVANCE(1372); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1335: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == '_') ADVANCE(1346); - if (lookahead == 'i') ADVANCE(1349); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1336: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == '_') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1227); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1337: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(448); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1283); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1338: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(360); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1244); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1339: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(432); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1284); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1340: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(449); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1341: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(517); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1285); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1342: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1372); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1286); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1343: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1349); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1344: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1360); - if (lookahead == 's') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1330); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1345: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1332); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1346: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1266); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1347: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1367); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'u') ADVANCE(1338); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1348: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1371); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'u') ADVANCE(1343); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1349: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'w') ADVANCE(1289); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1350: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'w') ADVANCE(1290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1351: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1355); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'w') ADVANCE(1291); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1352: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1339); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'w') ADVANCE(1292); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1353: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1350); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'y') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1354: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1355: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1356); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1355); END_STATE(); case 1356: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1337); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + '_', 1256, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1357: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1338); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + '_', 1256, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1230, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1358: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1357); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1359: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1364); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1230, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(665); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1360: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1254, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1225, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1361: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1087); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1240, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1254, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1228, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(665); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1362: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1352); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1661, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1222, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1223, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1363: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1365); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '.', 1661, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'B', 1742, + 'E', 1251, + 'G', 1254, + 'K', 1254, + 'M', 1254, + 'P', 1254, + 'T', 1254, + 'a', 1298, + 'b', 1743, + 'd', 1260, + 'e', 1230, + 'g', 1253, + 'h', 1261, + 'i', 1300, + 'k', 1253, + 'l', 1288, + 'm', 1255, + 'n', 1311, + 'o', 1231, + 'p', 1253, + 's', 1274, + 't', 1253, + 'u', 1326, + 'w', 1294, + 'x', 1307, + '|', 1510, + 0xb5, 1326, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(665); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1364: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(1363); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'a', 1298, + 'b', 1287, + 'e', 1226, + 'h', 1262, + 'i', 1300, + 'l', 1288, + 'm', 1308, + 'n', 1312, + 'o', 1223, + 's', 1334, + 'x', 1307, + '|', 1510, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1365: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1369); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(689); + ADVANCE_MAP( + '\n', 1506, + '!', 1241, + '#', 2420, + '*', 1144, + '+', 1149, + '-', 1150, + '/', 1145, + ';', 1509, + '<', 1174, + '=', 347, + '>', 1176, + 'a', 1298, + 'b', 1287, + 'e', 1229, + 'h', 1262, + 'i', 1300, + 'l', 1288, + 'm', 1308, + 'n', 1312, + 'o', 1231, + 's', 1334, + 'x', 1307, + '|', 1510, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(665); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1355); END_STATE(); case 1366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '+') ADVANCE(1378); + if (lookahead == '-') ADVANCE(2196); + if (lookahead == 'I') ADVANCE(1404); + if (lookahead == '_') ADVANCE(1378); + if (lookahead == 'i') ADVANCE(1404); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1746); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1341); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '+') ADVANCE(1378); + if (lookahead == '-') ADVANCE(2196); + if (lookahead == 'I') ADVANCE(1404); + if (lookahead == '_') ADVANCE(1378); + if (lookahead == 'i') ADVANCE(1381); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1746); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '+') ADVANCE(1378); + if (lookahead == '-') ADVANCE(2196); + if (lookahead == '_') ADVANCE(1378); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(474); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1358); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(387); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(458); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(475); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1373: ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(542); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1374: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1419); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(1404); + if (lookahead == 'i') ADVANCE(1404); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1746); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1375: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(1432); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(1404); + if (lookahead == 'i') ADVANCE(1381); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1746); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1376: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(1404); + if (lookahead == 'i') ADVANCE(1392); + if (lookahead == 's') ADVANCE(1749); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1746); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1377: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(1377); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1378: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(1439); - if (lookahead == 'f') ADVANCE(1069); - if (lookahead == 'n') ADVANCE(1086); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(1378); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1379: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1379); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(1399); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1380: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1427); - if (lookahead == 'o') ADVANCE(1412); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(1403); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1381: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1409); - if (lookahead == 'o') ADVANCE(1418); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'b') ADVANCE(1746); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1382: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1422); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(1749); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1383: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1433); - if (lookahead == 'o') ADVANCE(1386); - if (lookahead == 'u') ADVANCE(1429); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(1387); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1384: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1398); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(1371); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1385: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1399); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(1382); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1386: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1436); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'k') ADVANCE(1749); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1387: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1397); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(1388); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1388: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1048); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(1369); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1389: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1072); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(1370); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1390: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1090); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(1389); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1391: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1093); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(1396); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1392: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1066); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(1749); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1746); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1393: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1057); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(1115); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1394: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1428); - if (lookahead == 'o') ADVANCE(1413); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(1384); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1395: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1411); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(1397); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1396: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1420); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(1395); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1397: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(826); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(1401); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1398: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1078); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(1749); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1399: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1081); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1400: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1402); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(1749); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1401: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1382); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1402: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1406); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(1390); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1403: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1401); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(1749); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1404: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1096); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1746); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1405: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1404); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1406: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1392); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(464); + if (lookahead == '>') ADVANCE(548); + if (lookahead == 'r') ADVANCE(1467); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1407: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1393); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(406); + if (lookahead == '>') ADVANCE(549); + if (lookahead == 'u') ADVANCE(1480); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1408: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1424); - if (lookahead == 'x') ADVANCE(1416); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(2260); + if (lookahead == '>') ADVANCE(1836); + if (lookahead == 'r') ADVANCE(1463); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1409: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1426); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(2252); + if (lookahead == '>') ADVANCE(1838); + if (lookahead == 'u') ADVANCE(1479); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1410: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1054); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(469); + if (lookahead == '>') ADVANCE(551); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1411: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1437); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(2261); + if (lookahead == '>') ADVANCE(1832); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1412: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1425); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(410); + if (lookahead == '>') ADVANCE(553); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1413: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1415); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(2253); + if (lookahead == '>') ADVANCE(1834); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1414: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1421); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '-') ADVANCE(1501); + if (lookahead == '_') ADVANCE(1420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1420); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1415: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1063); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '-') ADVANCE(1502); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1416: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1414); - if (lookahead == 't') ADVANCE(1396); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == ':') ADVANCE(2301); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1417: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1435); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N') ADVANCE(1488); + if (lookahead == 'f') ADVANCE(1097); + if (lookahead == 'n') ADVANCE(1114); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1418: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1060); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'T') ADVANCE(1503); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1419: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1376); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '_') ADVANCE(1420); + if (lookahead == 'b') ADVANCE(1741); + if (lookahead == 'o') ADVANCE(1753); + if (lookahead == 'x') ADVANCE(1757); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1422); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1410); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '_') ADVANCE(1420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1420); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1431); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '_') ADVANCE(1420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1414); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(671); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '_') ADVANCE(1420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1421); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1423: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1388); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '_') ADVANCE(1420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1422); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1389); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1448); + if (lookahead == 'o') ADVANCE(1465); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1425: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1430); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1448); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1426: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1391); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1474); + if (lookahead == 'o') ADVANCE(1457); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1427: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1384); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1469); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(677); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1481); + if (lookahead == 'o') ADVANCE(1431); + if (lookahead == 'u') ADVANCE(1476); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(680); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'c') ADVANCE(1443); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1430: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(683); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'c') ADVANCE(1444); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(667); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'd') ADVANCE(1485); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1432: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1377); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1118); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1385); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1122); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1405); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1442); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1390); - if (lookahead == 'y') ADVANCE(1075); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1076); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1407); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1100); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1051); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1094); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1438: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1085); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1439: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1475); + if (lookahead == 'o') ADVANCE(1458); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1445); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1456); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1444); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1466); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'f') ADVANCE(854); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1443: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1439); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1106); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1444: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1440); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1109); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1445: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1446); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1446: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'i') ADVANCE(1427); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1447: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'i') ADVANCE(1452); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1448: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(1470); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1449: - ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1449); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(1126); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1450: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1451: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(1449); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1452: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(1437); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1453: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(1438); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1454: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(1473); + if (lookahead == 'x') ADVANCE(1461); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1455: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'n') ADVANCE(1082); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1456: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'n') ADVANCE(1486); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1457: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'n') ADVANCE(1472); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1458: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'o') ADVANCE(1460); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1459: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'o') ADVANCE(1468); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1460: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'p') ADVANCE(1091); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1461: - ACCEPT_TOKEN(sym_attribute_identifier); - if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1461); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'p') ADVANCE(1459); + if (lookahead == 't') ADVANCE(1441); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1462: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(1483); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1463: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(1411); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1464: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(1482); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1465: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(1088); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1466: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(1455); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1467: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(1410); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1468: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(1478); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1469: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(699); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1470: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(1433); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1471: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(1435); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1472: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(1477); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1473: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(1436); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1474: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(1429); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1475: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(705); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1476: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(708); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1477: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(711); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1478: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(695); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1479: - ACCEPT_TOKEN(anon_sym_GT2); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(1413); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1480: - ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(1552); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(1412); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1481: - ACCEPT_TOKEN(anon_sym_AT2); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(1430); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1482: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(1432); + if (lookahead == 'y') ADVANCE(1103); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1483: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(1432); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1484: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(1451); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1491); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1485: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(1453); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1486: - ACCEPT_TOKEN(anon_sym_DASH2); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'v') ADVANCE(1079); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1487: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1491); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1488: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1490); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1489: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(1971); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1494); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1490: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1493); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1491: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1505); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1492: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1488); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1493: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1489); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1494: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1495); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1495: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(686); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1505); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1496: - ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1496); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1497: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1497); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1498: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1415); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1499: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1418); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1500: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1416); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1501: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1498); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1502: - ACCEPT_TOKEN(anon_sym__); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1499); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1503: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1500); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1504: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(690); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1504); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1505: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1988); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1506: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2078); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 1507: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + ACCEPT_TOKEN(sym__space); + if (lookahead == ':') ADVANCE(1811); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1507); END_STATE(); case 1508: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(sym__space); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1508); END_STATE(); case 1509: - ACCEPT_TOKEN(anon_sym_DOLLAR2); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 1510: - ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 1511: - ACCEPT_TOKEN(anon_sym_STAR2); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 1512: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1562); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 1513: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1562); - if (lookahead == '=') ADVANCE(687); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 1514: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1563); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 1515: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'a') ADVANCE(1518); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 1516: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 1517: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 1518: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'l') ADVANCE(1521); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 1519: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'o') ADVANCE(1522); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(sym_attribute_identifier); + if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1519); END_STATE(); case 1520: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'r') ADVANCE(1523); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 1521: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 's') ADVANCE(1517); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 1522: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 't') ADVANCE(1524); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 1523: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'u') ADVANCE(1516); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 1524: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 1525: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 1526: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 1527: - ACCEPT_TOKEN(anon_sym_and2); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 1528: - ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 1529: - ACCEPT_TOKEN(anon_sym_xor2); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1800); + if (lookahead == '\'') ADVANCE(1799); END_STATE(); case 1530: - ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1800); + if (lookahead == '\'') ADVANCE(1799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1531: - ACCEPT_TOKEN(anon_sym_or2); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1532: - ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 1533: - ACCEPT_TOKEN(anon_sym_not_DASHin2); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 1534: - ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 1535: - ACCEPT_TOKEN(anon_sym_has2); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 1536: - ACCEPT_TOKEN(anon_sym_has2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 1537: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); case 1538: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(1616); END_STATE(); case 1539: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); case 1540: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 1541: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 1542: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 1543: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1544: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1545: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); case 1546: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1542); END_STATE(); case 1547: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1542); + if (lookahead == '.') ADVANCE(363); + if (lookahead == '_') ADVANCE(336); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); END_STATE(); case 1548: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1542); + if (lookahead == '.') ADVANCE(2193); + if (lookahead == '_') ADVANCE(2184); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); END_STATE(); case 1549: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1542); + if (lookahead == '.') ADVANCE(1990); + if (lookahead == '_') ADVANCE(1957); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); END_STATE(); case 1550: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1551); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1542); + if (lookahead == '.') ADVANCE(365); + if (lookahead == '_') ADVANCE(342); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); END_STATE(); case 1551: - ACCEPT_TOKEN(anon_sym_LT_EQ2); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1542); + if (lookahead == '.') ADVANCE(365); + if (lookahead == '_') ADVANCE(342); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); END_STATE(); case 1552: - ACCEPT_TOKEN(anon_sym_GT_EQ2); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1542); + if (lookahead == '.') ADVANCE(1999); + if (lookahead == '_') ADVANCE(1960); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); END_STATE(); case 1553: - ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1543); + if (lookahead == '.') ADVANCE(363); + if (lookahead == '_') ADVANCE(1867); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1897); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1874); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1554: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(363); + if (lookahead == '_') ADVANCE(336); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); END_STATE(); case 1555: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(894); + if (lookahead == '_') ADVANCE(876); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1053); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1556: - ACCEPT_TOKEN(anon_sym_like2); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(1990); + if (lookahead == '_') ADVANCE(1957); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); END_STATE(); case 1557: - ACCEPT_TOKEN(anon_sym_like2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(365); + if (lookahead == '_') ADVANCE(342); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); END_STATE(); case 1558: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '=') ADVANCE(714); END_STATE(); case 1559: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1560: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 1561: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 1562: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 1563: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 1564: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(2238); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); END_STATE(); case 1565: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(689); + ACCEPT_TOKEN(anon_sym__); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1566: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 1567: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1573); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(718); + if (lookahead == '<') ADVANCE(1678); + if (lookahead == '=') ADVANCE(1677); END_STATE(); case 1568: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1573); - if (lookahead == '=') ADVANCE(688); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(2210); + if (lookahead == '<') ADVANCE(1678); + if (lookahead == '=') ADVANCE(1677); END_STATE(); case 1569: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1574); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(2310); + if (lookahead == '<') ADVANCE(1678); + if (lookahead == '=') ADVANCE(1677); END_STATE(); case 1570: - ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(1919); + if (lookahead == '<') ADVANCE(1678); + if (lookahead == '=') ADVANCE(1677); END_STATE(); case 1571: - ACCEPT_TOKEN(anon_sym_mod2); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(1678); + if (lookahead == '=') ADVANCE(1677); END_STATE(); case 1572: - ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(1678); + if (lookahead == '=') ADVANCE(1677); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1074); END_STATE(); case 1573: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); case 1574: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DOLLAR2); + if (lookahead == '"') ADVANCE(1800); + if (lookahead == '\'') ADVANCE(1799); END_STATE(); case 1575: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); + ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); case 1576: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1626); END_STATE(); case 1577: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1626); + if (lookahead == '=') ADVANCE(715); END_STATE(); case 1578: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1565); - if (lookahead == '=') ADVANCE(685); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1627); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1579: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'a') ADVANCE(1582); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1589); END_STATE(); case 1580: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(717); - if (lookahead == '_') ADVANCE(702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'e') ADVANCE(1117); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1589); END_STATE(); case 1581: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'e') ADVANCE(1121); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1589); END_STATE(); case 1582: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'l') ADVANCE(1585); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1589); END_STATE(); case 1583: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'o') ADVANCE(1586); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1589); END_STATE(); case 1584: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'r') ADVANCE(1587); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1589); END_STATE(); case 1585: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 's') ADVANCE(1581); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1589); END_STATE(); case 1586: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 't') ADVANCE(1588); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1589); END_STATE(); case 1587: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'u') ADVANCE(1580); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1589); END_STATE(); case 1588: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1624); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1589); END_STATE(); case 1589: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1589); END_STATE(); case 1590: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 1591: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_and2); END_STATE(); case 1592: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1482); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_and2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1593: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); case 1594: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_xor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1595: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1593); + ACCEPT_TOKEN(anon_sym_or2); END_STATE(); case 1596: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1593); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + ACCEPT_TOKEN(anon_sym_or2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1597: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1503); + ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); case 1598: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1503); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + ACCEPT_TOKEN(anon_sym_not_DASHin2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1599: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1592); + ACCEPT_TOKEN(anon_sym_has2); END_STATE(); case 1600: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1962); + ACCEPT_TOKEN(anon_sym_has2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1601: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); END_STATE(); case 1602: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1603: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); case 1604: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1605: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); END_STATE(); case 1606: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1607: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); case 1608: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1609: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1609); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); END_STATE(); case 1610: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1611: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(1611); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); case 1612: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(1612); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); case 1613: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(1613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 1614: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(1614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(1615); END_STATE(); case 1615: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(1615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); case 1616: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); case 1617: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); case 1618: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(820); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); case 1619: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2064); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1620: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2118); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_like2); END_STATE(); case 1621: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2170); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_like2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1622: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(559); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); END_STATE(); case 1623: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1630); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1624: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); case 1625: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 1626: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); case 1627: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1628: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(814); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'x') ADVANCE(823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); case 1629: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if (lookahead == '=') ADVANCE(717); END_STATE(); case 1630: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1629); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1631: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1637); END_STATE(); case 1632: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1637); + if (lookahead == '=') ADVANCE(716); END_STATE(); case 1633: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1620); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1634: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + ACCEPT_TOKEN(anon_sym_SLASH2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1635: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1622); + ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); case 1636: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + ACCEPT_TOKEN(anon_sym_mod2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1637: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1621); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); case 1638: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1639: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1630); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1628); END_STATE(); case 1640: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1628); + if (lookahead == '.') ADVANCE(1990); + if (lookahead == '_') ADVANCE(1957); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); END_STATE(); case 1641: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1628); + if (lookahead == '.') ADVANCE(365); + if (lookahead == '_') ADVANCE(342); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); END_STATE(); case 1642: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1629); + if (lookahead == '=') ADVANCE(713); END_STATE(); case 1643: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1630); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1644: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(745); + if (lookahead == '_') ADVANCE(730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); END_STATE(); case 1645: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(1645); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); case 1646: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1647: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); case 1648: - ACCEPT_TOKEN(aux_sym__val_number_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1649: - ACCEPT_TOKEN(aux_sym__val_number_token2); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1649); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); case 1650: - ACCEPT_TOKEN(aux_sym__val_number_token3); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1651: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1649); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); case 1652: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1653: - ACCEPT_TOKEN(sym_filesize_unit); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); case 1654: - ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1301); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1655: - ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(481); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 1656: - ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1898); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(2210); + if (lookahead == '<') ADVANCE(1680); + if (lookahead == '=') ADVANCE(1679); END_STATE(); case 1657: - ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1919); + if (lookahead == '<') ADVANCE(1680); + if (lookahead == '=') ADVANCE(1679); END_STATE(); case 1658: - ACCEPT_TOKEN(sym_duration_unit); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1540); + if (lookahead == '<') ADVANCE(1680); + if (lookahead == '=') ADVANCE(1679); END_STATE(); case 1659: - ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1047); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '<') ADVANCE(1680); + if (lookahead == '=') ADVANCE(1679); END_STATE(); case 1660: - ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 1661: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1659); END_STATE(); case 1662: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1659); + if (lookahead == '_') ADVANCE(746); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); END_STATE(); case 1663: - ACCEPT_TOKEN(anon_sym_0x); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1657); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); END_STATE(); case 1664: - ACCEPT_TOKEN(anon_sym_0x); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1566); END_STATE(); case 1665: - ACCEPT_TOKEN(anon_sym_LBRACK2); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1566); + if (lookahead == '_') ADVANCE(2167); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); END_STATE(); case 1666: - ACCEPT_TOKEN(sym_hex_digit); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1666); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(2183); END_STATE(); case 1667: - ACCEPT_TOKEN(sym_val_date); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(2183); + if (lookahead == '_') ADVANCE(2194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); END_STATE(); case 1668: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(553); - if (lookahead == '+' || - lookahead == '-') ADVANCE(315); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1568); + if (lookahead == '_') ADVANCE(2240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); END_STATE(); case 1669: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2062); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1568); + if (lookahead == '_') ADVANCE(2242); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); END_STATE(); case 1670: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2121); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2084); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1656); + if (lookahead == '_') ADVANCE(2240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); END_STATE(); case 1671: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1682); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1658); END_STATE(); case 1672: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1683); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2057); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1570); + if (lookahead == '_') ADVANCE(1991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); END_STATE(); case 1673: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1684); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2115); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1570); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); END_STATE(); case 1674: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(822); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(2194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); END_STATE(); case 1675: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2066); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(2167); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); END_STATE(); case 1676: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2124); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(1991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); END_STATE(); case 1677: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2172); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 1678: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(562); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 1679: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(315); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 1680: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 1681: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2084); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(2296); + if (lookahead == '_') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); END_STATE(); case 1682: - ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(2145); + if (lookahead == '_') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); END_STATE(); case 1683: - ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2057); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1685); + if (lookahead == 'b') ADVANCE(1738); + if (lookahead == 'o') ADVANCE(1750); + if (lookahead == 'x') ADVANCE(1754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1687); END_STATE(); case 1684: - ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2115); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1685); + if (lookahead == 'b') ADVANCE(1738); + if (lookahead == 'o') ADVANCE(1750); + if (lookahead == 'x') ADVANCE(1754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1689); END_STATE(); case 1685: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); END_STATE(); case 1686: - ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(1687); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1686); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - lookahead != '\\') ADVANCE(1687); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1682); END_STATE(); case 1687: - ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1687); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1686); END_STATE(); case 1688: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); END_STATE(); case 1689: - ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); - if (lookahead == '#') ADVANCE(1690); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1689); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(1690); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1688); END_STATE(); case 1690: - ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(1690); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1687); END_STATE(); case 1691: - ACCEPT_TOKEN(anon_sym_SQUOTE2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1689); END_STATE(); case 1692: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1692); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1693: - ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); - if (lookahead == '#') ADVANCE(1694); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1693); - if (lookahead != 0 && - lookahead != '`') ADVANCE(1694); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + if (lookahead == '_') ADVANCE(1693); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); END_STATE(); case 1694: - ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); - if (lookahead != 0 && - lookahead != '`') ADVANCE(1694); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + if (lookahead == '_') ADVANCE(1694); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); END_STATE(); case 1695: - ACCEPT_TOKEN(anon_sym_BQUOTE2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(1695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); END_STATE(); case 1696: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + if (lookahead == '_') ADVANCE(1696); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); END_STATE(); case 1697: - ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(1698); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1697); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - lookahead != '(' && - lookahead != '\\') ADVANCE(1698); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + if (lookahead == '_') ADVANCE(1697); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1698: - ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '(' && - lookahead != '\\') ADVANCE(1698); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 1699: - ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(1700); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1699); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '(') ADVANCE(1700); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); case 1700: - ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '(') ADVANCE(1700); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(848); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); END_STATE(); case 1701: - ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(2296); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); END_STATE(); case 1702: - ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(2350); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); END_STATE(); case 1703: - ACCEPT_TOKEN(anon_sym_DQUOTE2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(2145); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); END_STATE(); case 1704: - ACCEPT_TOKEN(sym_inter_escape_sequence); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(2402); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); END_STATE(); case 1705: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(584); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); END_STATE(); case 1706: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (lookahead == 'b') ADVANCE(1738); + if (lookahead == 'o') ADVANCE(1750); + if (lookahead == 'x') ADVANCE(1754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1714); END_STATE(); case 1707: - ACCEPT_TOKEN(sym__entry_separator); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (lookahead == 'b') ADVANCE(1738); + if (lookahead == 'o') ADVANCE(1750); + if (lookahead == 'x') ADVANCE(1754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1716); END_STATE(); case 1708: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\n') ADVANCE(1707); - if (lookahead == '\r') ADVANCE(1707); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1708); - if (lookahead == 0x0b || - lookahead == '\f' || - lookahead == ',') ADVANCE(1707); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (lookahead == 'b') ADVANCE(1738); + if (lookahead == 'o') ADVANCE(1750); + if (lookahead == 'x') ADVANCE(1754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1718); END_STATE(); case 1709: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1707); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1709); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1707); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (lookahead == 'b') ADVANCE(1738); + if (lookahead == 'o') ADVANCE(1750); + if (lookahead == 'x') ADVANCE(1754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1720); END_STATE(); case 1710: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1707); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1710); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (lookahead == 'b') ADVANCE(1738); + if (lookahead == 'o') ADVANCE(1750); + if (lookahead == 'x') ADVANCE(1754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1722); END_STATE(); case 1711: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(1716); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(318); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (lookahead == 'b') ADVANCE(1738); + if (lookahead == 'o') ADVANCE(1750); + if (lookahead == 'x') ADVANCE(1754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1724); END_STATE(); case 1712: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (lookahead == 'b') ADVANCE(842); + if (lookahead == 'o') ADVANCE(844); + if (lookahead == 'x') ADVANCE(851); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); END_STATE(); case 1713: - ACCEPT_TOKEN(anon_sym_COLON2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1700); END_STATE(); case 1714: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(2192); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1713); END_STATE(); case 1715: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1701); END_STATE(); case 1716: - ACCEPT_TOKEN(sym__table_head_separator); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1715); END_STATE(); case 1717: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1702); END_STATE(); case 1718: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1717); END_STATE(); case 1719: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1705); END_STATE(); case 1720: - ACCEPT_TOKEN(anon_sym_DOT2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1719); END_STATE(); case 1721: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(696); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1703); END_STATE(); case 1722: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1593); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1721); END_STATE(); case 1723: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1503); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1704); END_STATE(); case 1724: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1592); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1723); END_STATE(); case 1725: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(311); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1714); END_STATE(); case 1726: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1716); END_STATE(); case 1727: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '`') ADVANCE(1692); - if (lookahead == '\t' || - lookahead == ' ') SKIP(173); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1728); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1718); END_STATE(); case 1728: - ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1728); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1720); END_STATE(); case 1729: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1722); END_STATE(); case 1730: - ACCEPT_TOKEN(aux_sym_env_var_token1); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1730); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1724); END_STATE(); case 1731: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); END_STATE(); case 1732: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1748); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); + if (lookahead == '_') ADVANCE(1732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); END_STATE(); case 1733: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1748); - if (lookahead == '|') ADVANCE(1453); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(1733); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); END_STATE(); case 1734: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1749); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); + if (lookahead == '_') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1734); END_STATE(); case 1735: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1749); - if (lookahead == '|') ADVANCE(1454); + ACCEPT_TOKEN(aux_sym__val_number_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1735); END_STATE(); case 1736: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1750); + ACCEPT_TOKEN(aux_sym__val_number_token2); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1736); END_STATE(); case 1737: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1750); - if (lookahead == '|') ADVANCE(1455); + ACCEPT_TOKEN(aux_sym__val_number_token3); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1737); END_STATE(); case 1738: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1751); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1736); END_STATE(); case 1739: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1751); - if (lookahead == '|') ADVANCE(1456); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1740: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1752); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1901); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1741: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1752); - if (lookahead == '|') ADVANCE(1457); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1496); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1742: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1753); + ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); case 1743: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1753); - if (lookahead == '|') ADVANCE(1458); + ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'i') ADVANCE(1333); END_STATE(); case 1744: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1754); + ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'i') ADVANCE(506); END_STATE(); case 1745: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1754); - if (lookahead == '|') ADVANCE(1459); + ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'i') ADVANCE(2093); END_STATE(); case 1746: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1755); + ACCEPT_TOKEN(sym_filesize_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1747: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1755); - if (lookahead == '|') ADVANCE(1460); + ACCEPT_TOKEN(sym_duration_unit); END_STATE(); case 1748: - ACCEPT_TOKEN(anon_sym_err_GT_GT); + ACCEPT_TOKEN(sym_duration_unit); + if (lookahead == 'e') ADVANCE(1075); END_STATE(); case 1749: - ACCEPT_TOKEN(anon_sym_out_GT_GT); + ACCEPT_TOKEN(sym_duration_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1405); END_STATE(); case 1750: - ACCEPT_TOKEN(anon_sym_e_GT_GT); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1737); END_STATE(); case 1751: - ACCEPT_TOKEN(anon_sym_o_GT_GT); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1752: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1904); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1753: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1497); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1754: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + ACCEPT_TOKEN(anon_sym_0x); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1735); END_STATE(); case 1755: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + ACCEPT_TOKEN(anon_sym_0x); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); case 1756: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1760); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_0x); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1917); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1757: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(1761); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_0x); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1504); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1505); END_STATE(); case 1758: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); case 1759: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(sym_hex_digit); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1759); END_STATE(); case 1760: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(1758); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(sym_val_date); END_STATE(); case 1761: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(1759); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '.') ADVANCE(578); + if (lookahead == '+' || + lookahead == '-') ADVANCE(343); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1760); END_STATE(); case 1762: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '.') ADVANCE(2294); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2227); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1760); END_STATE(); case 1763: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1840); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(1901); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '.') ADVANCE(2353); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2316); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1760); END_STATE(); case 1764: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1817, - '-', 1820, - '>', 1737, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - 'r', 1883, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '.') ADVANCE(2148); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1961); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1760); END_STATE(); case 1765: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1817); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == ':') ADVANCE(1779); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(577); END_STATE(); case 1766: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1818, - '-', 1820, - '>', 1919, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - 'r', 1884, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == ':') ADVANCE(1780); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2289); END_STATE(); case 1767: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1818, - '-', 1820, - '>', 1919, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'r', 1884, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == ':') ADVANCE(1781); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2347); END_STATE(); case 1768: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1818); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == ':') ADVANCE(1782); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2143); END_STATE(); case 1769: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1818); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'r') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(850); END_STATE(); case 1770: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1841); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(2298); END_STATE(); case 1771: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1869, - '>', 1737, - 'I', 1927, - 'i', 1927, - 'n', 1834, - 'r', 1883, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(2356); END_STATE(); case 1772: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1869); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1883); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(2151); END_STATE(); case 1773: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1870); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(2404); END_STATE(); case 1774: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1875, - '>', 1919, - 'I', 1927, - 'i', 1927, - 'n', 1834, - 'r', 1884, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == 'T') ADVANCE(587); END_STATE(); case 1775: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == 'r') ADVANCE(1884); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '+' || + lookahead == '-') ADVANCE(343); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1760); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1775); END_STATE(); case 1776: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2227); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1760); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1776); END_STATE(); case 1777: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'r') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2316); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1760); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1777); END_STATE(); case 1778: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1842); - if (lookahead == '>') ADVANCE(1920); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(1905); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1961); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1760); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1778); END_STATE(); case 1779: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1842); - if (lookahead == '>') ADVANCE(1920); - if (lookahead == 'u') ADVANCE(1905); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(577); END_STATE(); case 1780: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1877); - if (lookahead == '>') ADVANCE(1922); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2289); END_STATE(); case 1781: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1843); - if (lookahead == '>') ADVANCE(1924); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2347); END_STATE(); case 1782: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(1821); - if (lookahead == '_') ADVANCE(1792); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1930); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2143); END_STATE(); case 1783: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1484); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 1784: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1827); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym__escaped_str_content); + if (lookahead == '#') ADVANCE(1785); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1784); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + lookahead != '\\') ADVANCE(1785); END_STATE(); case 1785: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym__escaped_str_content); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1785); END_STATE(); case 1786: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1914); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 1787: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1915); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); + if (lookahead == '#') ADVANCE(1788); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1787); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(1788); END_STATE(); case 1788: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1916); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(1788); END_STATE(); case 1789: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1917); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); case 1790: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 1791: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); + if (lookahead == '#') ADVANCE(1792); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1791); + if (lookahead != 0 && + lookahead != '`') ADVANCE(1792); END_STATE(); case 1792: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1821); - if (lookahead == '_') ADVANCE(1792); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); + if (lookahead != 0 && + lookahead != '`') ADVANCE(1792); END_STATE(); case 1793: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_BQUOTE2); END_STATE(); case 1794: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '>') ADVANCE(1500); - if (lookahead == '~') ADVANCE(1553); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 1795: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_escaped_interpolated_content); + if (lookahead == '#') ADVANCE(1796); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1795); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + lookahead != '(' && + lookahead != '\\') ADVANCE(1796); END_STATE(); case 1796: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1500); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_escaped_interpolated_content); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '(' && + lookahead != '\\') ADVANCE(1796); END_STATE(); case 1797: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_unescaped_interpolated_content); + if (lookahead == '#') ADVANCE(1798); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1797); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '(') ADVANCE(1798); END_STATE(); case 1798: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_unescaped_interpolated_content); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '(') ADVANCE(1798); END_STATE(); case 1799: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); case 1800: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); case 1801: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1921); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); case 1802: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1923); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); case 1803: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1925); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); case 1804: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1926); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); case 1805: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - '+', 1820, - '-', 1820, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym__entry_separator); END_STATE(); case 1806: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == '\n') ADVANCE(1805); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1806); + if (lookahead == 0x0b || + lookahead == '\f' || + lookahead == ',') ADVANCE(1805); END_STATE(); case 1807: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'i') ADVANCE(1829); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == ',') ADVANCE(1805); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1807); + if (('\n' <= lookahead && lookahead <= '\f')) ADVANCE(1805); END_STATE(); case 1808: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == ',') ADVANCE(1805); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1808); + if (('\n' <= lookahead && lookahead <= '\f')) ADVANCE(1809); END_STATE(); case 1809: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == ';') ADVANCE(1814); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(346); END_STATE(); case 1810: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1829); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1810); + if (('\n' <= lookahead && lookahead <= '\f') || + lookahead == ',') ADVANCE(1805); END_STATE(); case 1811: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1862); - if (lookahead == 'o') ADVANCE(1832); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); case 1812: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1862); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if (lookahead == '#') ADVANCE(2424); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1813); END_STATE(); case 1813: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1813); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1813); END_STATE(); case 1814: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); case 1815: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 1816: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 1817: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'o') ADVANCE(1797); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(1612); + if (lookahead == '~') ADVANCE(1618); END_STATE(); case 1818: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'o') ADVANCE(1801); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DOT2); END_STATE(); case 1819: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(724); END_STATE(); case 1820: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(1659); END_STATE(); case 1821: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(1566); END_STATE(); case 1822: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1892); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(1568); + if (lookahead == '_') ADVANCE(2240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); END_STATE(); case 1823: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1892); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(1656); + if (lookahead == '_') ADVANCE(2240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); END_STATE(); case 1824: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1918); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(339); END_STATE(); case 1825: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1886); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(1658); END_STATE(); case 1826: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1893); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '_') ADVANCE(746); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); END_STATE(); case 1827: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1867); - if (lookahead == 'o') ADVANCE(1881); - if (lookahead == 's') ADVANCE(1850); - if (lookahead == 'x') ADVANCE(1876); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '"') ADVANCE(1783); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '\'') ADVANCE(1786); + if (lookahead == '`') ADVANCE(1790); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(201); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1828); END_STATE(); case 1828: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1890); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(aux_sym_path_token1); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1828); END_STATE(); case 1829: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 1830: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(aux_sym_env_var_token1); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1830); END_STATE(); case 1831: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1527); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 1832: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1571); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(1848); END_STATE(); case 1833: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1585); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(1848); + if (lookahead == '|') ADVANCE(1511); END_STATE(); case 1834: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1894); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(1849); END_STATE(); case 1835: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1896); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(1849); + if (lookahead == '|') ADVANCE(1512); END_STATE(); case 1836: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1556); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(1850); END_STATE(); case 1837: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1558); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1513); END_STATE(); case 1838: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1830); - if (lookahead == 't') ADVANCE(1825); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(1851); END_STATE(); case 1839: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1830); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(1851); + if (lookahead == '|') ADVANCE(1514); END_STATE(); case 1840: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1798); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(1852); END_STATE(); case 1841: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1887); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(1852); + if (lookahead == '|') ADVANCE(1515); END_STATE(); case 1842: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1802); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(1853); END_STATE(); case 1843: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1888); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(1853); + if (lookahead == '|') ADVANCE(1516); END_STATE(); case 1844: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1868); - if (lookahead == 'h') ADVANCE(1826); - if (lookahead == 'i') ADVANCE(1864); - if (lookahead == 'l') ADVANCE(1857); - if (lookahead == 's') ADVANCE(1911); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(1854); END_STATE(); case 1845: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'f') ADVANCE(1068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(1854); + if (lookahead == '|') ADVANCE(1517); END_STATE(); case 1846: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1543); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(1855); END_STATE(); case 1847: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1539); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(1855); + if (lookahead == '|') ADVANCE(1518); END_STATE(); case 1848: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1545); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); case 1849: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1541); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); case 1850: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1861); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); case 1851: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1859); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); case 1852: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1898); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); case 1853: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1902); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); case 1854: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1904); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); case 1855: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1906); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); case 1856: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1907); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(2227); + if (lookahead == '-') ADVANCE(1868); + if (lookahead == '.') ADVANCE(2294); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1918); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1857: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1860); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(464); + if (lookahead == '>') ADVANCE(548); + if (lookahead == 'r') ADVANCE(1886); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1858: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(406); + if (lookahead == '>') ADVANCE(549); + if (lookahead == 'u') ADVANCE(1889); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1859: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1836); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(2260); + if (lookahead == '>') ADVANCE(1836); + if (lookahead == 'r') ADVANCE(1885); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1860: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1837); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(2252); + if (lookahead == '>') ADVANCE(1838); + if (lookahead == 'u') ADVANCE(1888); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1861: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'l') ADVANCE(1581); - if (lookahead == 'r') ADVANCE(1583); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(469); + if (lookahead == '>') ADVANCE(551); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1862: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(2261); + if (lookahead == '>') ADVANCE(1832); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1863: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1083); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(410); + if (lookahead == '>') ADVANCE(553); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1864: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1533); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(2253); + if (lookahead == '>') ADVANCE(1834); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1865: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1831); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '-') ADVANCE(1911); + if (lookahead == '_') ADVANCE(1874); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1874); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1866: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1834); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '-') ADVANCE(1912); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1867: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1833); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '.') ADVANCE(363); + if (lookahead == '_') ADVANCE(1867); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1874); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1868: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1835); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '2') ADVANCE(1902); + if (lookahead == '0' || + lookahead == '1') ADVANCE(1910); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1869: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1797); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == ':') ADVANCE(1903); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1905); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1870: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1912); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == ':') ADVANCE(1914); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1871: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1880); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == ':') ADVANCE(1916); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1872: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1900); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'T') ADVANCE(1913); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1873: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1900); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(1874); + if (lookahead == 'b') ADVANCE(1740); + if (lookahead == 'o') ADVANCE(1752); + if (lookahead == 'x') ADVANCE(1756); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1874: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1832); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(1874); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1874); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1875: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1801); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(1874); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1865); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1876: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1882); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(1874); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1875); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1877: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1913); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '_') ADVANCE(1874); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1876); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1878: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'a') ADVANCE(1881); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1879: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1531); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'e') ADVANCE(1119); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1880: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1529); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'e') ADVANCE(1123); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1881: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1589); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'l') ADVANCE(1887); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1882: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1587); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'l') ADVANCE(1127); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1883: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1773); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'l') ADVANCE(1882); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1884: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1780); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'r') ADVANCE(1890); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1885: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1800); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'r') ADVANCE(1862); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1886: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1909); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'r') ADVANCE(1861); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1887: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1885); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 's') ADVANCE(1880); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1888: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1889); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 't') ADVANCE(1864); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1889: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1804); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 't') ADVANCE(1863); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1890: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1910); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'u') ADVANCE(1879); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1891: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'u') ADVANCE(1883); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1896); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1892: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1535); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1896); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1893: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1537); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1895); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1894: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1786); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1899); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1895: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1787); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1898); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1896: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1788); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1918); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1897: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1789); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1893); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1898: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1784); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1894); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1899: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1825); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1900); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1900: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1785); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1918); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1901: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1770); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1901); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1902: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1869); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1903: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1799); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1905); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1904: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1904); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1905: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1781); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1918); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1906: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1848); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1866); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1907: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1849); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1872); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1908: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1803); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1871); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1909: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1895); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1856); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1910: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1897); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1869); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1911: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1828); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1906); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1912: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1903); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1907); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1913: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1908); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1908); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1914: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1853); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1909); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1915: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1854); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1870); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1916: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1855); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1915); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1917: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1856); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1917); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1918: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1918); END_STATE(); case 1919: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1455); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '$') ADVANCE(1699); + if (lookahead == '(') ADVANCE(1655); + if (lookahead == '[') ADVANCE(1803); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1920: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1456); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(2022); + if (lookahead == '>') ADVANCE(1839); + if (lookahead == 'r') ADVANCE(1595); + if (lookahead == 'u') ADVANCE(2096); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1921: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1460); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1993, + '-', 1997, + '>', 1837, + 'I', 2128, + '_', 1997, + 'i', 2128, + 'n', 2014, + 'r', 2072, + 'B', 1742, + 'b', 1742, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1922: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1453); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1993); + if (lookahead == '-') ADVANCE(1997); + if (lookahead == '>') ADVANCE(1837); + if (lookahead == '_') ADVANCE(1997); + if (lookahead == 'n') ADVANCE(2014); + if (lookahead == 'r') ADVANCE(2072); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1923: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1459); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1994, + '-', 1997, + '>', 1836, + 'I', 2128, + '_', 1997, + 'i', 2128, + 'r', 2074, + 'B', 1742, + 'b', 1742, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1924: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1454); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1994); + if (lookahead == '-') ADVANCE(1997); + if (lookahead == '>') ADVANCE(1836); + if (lookahead == '_') ADVANCE(1997); + if (lookahead == 'r') ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1925: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1457); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(2023); + if (lookahead == '>') ADVANCE(1835); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1926: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1458); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 2056, + '>', 1837, + 'I', 2128, + 'i', 2128, + 'n', 2014, + 'r', 2072, + 'B', 1742, + 'b', 1742, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1927: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(2056); + if (lookahead == '>') ADVANCE(1837); + if (lookahead == 'n') ADVANCE(2014); + if (lookahead == 'r') ADVANCE(2072); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1928: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1106); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(2057); + if (lookahead == '>') ADVANCE(1833); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1929: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1932); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(2062); + if (lookahead == '>') ADVANCE(1836); + if (lookahead == 'I') ADVANCE(2128); + if (lookahead == 'i') ADVANCE(2128); + if (lookahead == 'r') ADVANCE(2074); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1930: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1928); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(2062); + if (lookahead == '>') ADVANCE(1836); + if (lookahead == 'r') ADVANCE(2074); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1931: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1929); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 2064, + '>', 2119, + 'I', 2128, + 'i', 2128, + 'n', 2014, + 'r', 2077, + 'B', 1742, + 'b', 1742, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1932: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1933); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(2064); + if (lookahead == '>') ADVANCE(2119); + if (lookahead == 'I') ADVANCE(2128); + if (lookahead == 'i') ADVANCE(2128); + if (lookahead == 'r') ADVANCE(2077); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1933: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(2064); + if (lookahead == '>') ADVANCE(2119); + if (lookahead == 'n') ADVANCE(2014); + if (lookahead == 'r') ADVANCE(2077); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1934: ACCEPT_TOKEN(sym__unquoted_pattern); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(2064); + if (lookahead == '>') ADVANCE(2119); + if (lookahead == 'r') ADVANCE(2077); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1935: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(2024); + if (lookahead == '>') ADVANCE(1838); + if (lookahead == 'u') ADVANCE(2100); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1936: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1503); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + ADVANCE_MAP( + '+', 1995, + '-', 1997, + '>', 2119, + 'I', 2128, + '_', 1997, + 'i', 2128, + 'n', 2014, + 'r', 2077, + 'B', 1742, + 'b', 1742, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1937: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1503); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + ADVANCE_MAP( + '+', 1995, + '-', 1997, + '>', 2119, + 'I', 2128, + '_', 1997, + 'i', 2128, + 'r', 2077, + 'B', 1742, + 'b', 1742, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1938: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1946); - if (lookahead == '_') ADVANCE(1938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(1995); + if (lookahead == '-') ADVANCE(1997); + if (lookahead == '>') ADVANCE(2119); + if (lookahead == '_') ADVANCE(1997); + if (lookahead == 'n') ADVANCE(2014); + if (lookahead == 'r') ADVANCE(2077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1939: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == 'i') ADVANCE(1958); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(1995); + if (lookahead == '-') ADVANCE(1997); + if (lookahead == '>') ADVANCE(2119); + if (lookahead == '_') ADVANCE(1997); + if (lookahead == 'r') ADVANCE(2077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1940: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == 'i') ADVANCE(1950); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(2065); + if (lookahead == '>') ADVANCE(1832); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1941: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1958); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(2025); + if (lookahead == '>') ADVANCE(2120); + if (lookahead == 'r') ADVANCE(1595); + if (lookahead == 'u') ADVANCE(2103); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1942: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1950); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(2025); + if (lookahead == '>') ADVANCE(2120); + if (lookahead == 'u') ADVANCE(2103); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1943: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1954); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(2066); + if (lookahead == '>') ADVANCE(2122); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1944: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(2026); + if (lookahead == '>') ADVANCE(1834); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1945: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(2028); + if (lookahead == '>') ADVANCE(2124); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1946: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1946); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '-') ADVANCE(1542); + if (lookahead == '.') ADVANCE(1999); + if (lookahead == '_') ADVANCE(1960); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1947: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '-') ADVANCE(1542); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1948: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1948); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '-') ADVANCE(2007); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1949: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'a') ADVANCE(1957); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '-') ADVANCE(2027); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1950: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '-') ADVANCE(2114); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1951: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '-') ADVANCE(2146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1952: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'e') ADVANCE(1951); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '-') ADVANCE(2115); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1953: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '-') ADVANCE(2116); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1954: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '-') ADVANCE(2117); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1955: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '.') ADVANCE(1659); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1956: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '.') ADVANCE(1657); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1957: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '.') ADVANCE(1990); + if (lookahead == '_') ADVANCE(1957); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1958: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '.') ADVANCE(1570); + if (lookahead == '_') ADVANCE(1991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1959: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '.') ADVANCE(1570); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1960: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '.') ADVANCE(1999); + if (lookahead == '_') ADVANCE(1960); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1961: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1592); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '2') ADVANCE(2142); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2149); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1962: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1482); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == ':') ADVANCE(2153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1963: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1971); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == ':') ADVANCE(2155); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1964: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '=') ADVANCE(1612); + if (lookahead == '~') ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1965: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1962); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '=') ADVANCE(1611); + if (lookahead == '>') ADVANCE(1563); + if (lookahead == '~') ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1966: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1985); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '=') ADVANCE(1611); + if (lookahead == '~') ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1967: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1977); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '>') ADVANCE(1563); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1968: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1985); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '>') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1969: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1977); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '>') ADVANCE(1845); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1970: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1981); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '>') ADVANCE(1841); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1971: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1971); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '>') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1972: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '>') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1973: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '>') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1974: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '>') ADVANCE(1840); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1975: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1975); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '>') ADVANCE(1842); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1976: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'a') ADVANCE(1984); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '>') ADVANCE(2121); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1977: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '>') ADVANCE(2123); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1978: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '>') ADVANCE(2125); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1979: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'e') ADVANCE(1978); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '>') ADVANCE(2126); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1980: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + ADVANCE_MAP( + 'I', 2128, + '_', 1997, + 'i', 2128, + 'n', 2014, + '+', 1997, + '-', 1997, + 'B', 1742, + 'b', 1742, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1981: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'n') ADVANCE(1658); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'I') ADVANCE(2128); + if (lookahead == '_') ADVANCE(1997); + if (lookahead == 'i') ADVANCE(2128); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1997); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1742); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1982: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'I') ADVANCE(2128); + if (lookahead == '_') ADVANCE(1997); + if (lookahead == 'i') ADVANCE(2009); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1997); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1983: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'I') ADVANCE(2128); + if (lookahead == 'i') ADVANCE(2128); + if (lookahead == 'n') ADVANCE(2014); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1984: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'I') ADVANCE(2128); + if (lookahead == 'i') ADVANCE(2128); + if (lookahead == 'r') ADVANCE(2110); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1985: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'I') ADVANCE(2128); + if (lookahead == 'i') ADVANCE(2128); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1986: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'I') ADVANCE(2128); + if (lookahead == 'i') ADVANCE(2009); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1987: - ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'I') ADVANCE(2128); + if (lookahead == 'i') ADVANCE(2049); + if (lookahead == 'o') ADVANCE(2012); + if (lookahead == 's') ADVANCE(1747); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1988: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '[') ADVANCE(1705); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'I') ADVANCE(2128); + if (lookahead == 'i') ADVANCE(2049); + if (lookahead == 's') ADVANCE(1747); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1989: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2025); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'r') ADVANCE(2031); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '_') ADVANCE(1989); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1990: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2018); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'u') ADVANCE(2039); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '_') ADVANCE(1990); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1991: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2026); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '_') ADVANCE(1991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1992: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2019); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '_') ADVANCE(1997); + if (lookahead == 'n') ADVANCE(2014); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1997); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1993: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2028); - if (lookahead == '>') ADVANCE(1736); - if (lookahead == 'r') ADVANCE(2032); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '_') ADVANCE(1997); + if (lookahead == 'o') ADVANCE(1968); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1994: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2020); - if (lookahead == '>') ADVANCE(1738); - if (lookahead == 'u') ADVANCE(2041); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '_') ADVANCE(1997); + if (lookahead == 'o') ADVANCE(1972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1995: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2029); - if (lookahead == '>') ADVANCE(1732); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '_') ADVANCE(1997); + if (lookahead == 'o') ADVANCE(1976); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1996: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2021); - if (lookahead == '>') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '_') ADVANCE(1997); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1997); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1997: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2065); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '_') ADVANCE(1997); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1998: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '_') ADVANCE(1998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 1999: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1505); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '_') ADVANCE(1999); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2000: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2013); + ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2001: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(2055); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2063); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'a') ADVANCE(2086); + if (lookahead == 'r') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2002: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2067); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'a') ADVANCE(2086); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2003: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2069); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'a') ADVANCE(2118); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2004: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'a') ADVANCE(2048); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2005: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'a') ADVANCE(2076); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2006: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'a') ADVANCE(2087); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2007: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'a') ADVANCE(2054); + if (lookahead == 'o') ADVANCE(2070); + if (lookahead == 's') ADVANCE(2034); + if (lookahead == 'x') ADVANCE(2063); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2008: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1746); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'a') ADVANCE(2083); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2009: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1744); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2010: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1740); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'c') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2011: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1742); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'd') ADVANCE(1591); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2012: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'd') ADVANCE(1635); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2013: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'd') ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2014: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'd') ADVANCE(2088); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2015: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2023); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'd') ADVANCE(2091); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2016: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'e') ADVANCE(1117); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2017: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'e') ADVANCE(1121); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2018: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2005); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'e') ADVANCE(1620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2019: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2033); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'e') ADVANCE(1622); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2020: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2009); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'e') ADVANCE(2010); + if (lookahead == 't') ADVANCE(2005); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2021: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2036); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'e') ADVANCE(2010); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2022: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'e') ADVANCE(1969); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2023: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2037); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'e') ADVANCE(2078); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2024: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2022); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'e') ADVANCE(1973); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2025: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2004); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'e') ADVANCE(1977); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2026: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2045); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'e') ADVANCE(2080); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2027: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2038); - if (lookahead == 'u') ADVANCE(2024); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'e') ADVANCE(2055); + if (lookahead == 'h') ADVANCE(2006); + if (lookahead == 'i') ADVANCE(2051); + if (lookahead == 'l') ADVANCE(2041); + if (lookahead == 's') ADVANCE(2108); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2028: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2008); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'e') ADVANCE(2081); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2029: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2046); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'f') ADVANCE(1096); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2030: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2044); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'h') ADVANCE(1607); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2031: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1991); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'h') ADVANCE(1603); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2032: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1995); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'h') ADVANCE(1609); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2033: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2034); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'h') ADVANCE(1605); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2034: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2007); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'h') ADVANCE(2046); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2035: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2011); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'i') ADVANCE(2043); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2036: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2035); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'i') ADVANCE(2093); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2037: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2017); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'i') ADVANCE(2097); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2038: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2056); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'i') ADVANCE(2099); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2039: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1992); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'i') ADVANCE(2101); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2040: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2006); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'i') ADVANCE(2102); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2041: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1996); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'i') ADVANCE(2044); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2042: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2010); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'k') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2043: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2024); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'k') ADVANCE(2018); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2044: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2016); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'k') ADVANCE(2019); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2045: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2040); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'l') ADVANCE(1125); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2046: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2042); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'l') ADVANCE(1645); + if (lookahead == 'r') ADVANCE(1647); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2047: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'l') ADVANCE(2045); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2048: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1100); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'l') ADVANCE(2089); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2049: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2053); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'n') ADVANCE(1747); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2050: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'n') ADVANCE(1111); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2051: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2048); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'n') ADVANCE(1597); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2052: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2049); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'n') ADVANCE(2011); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2053: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2054); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'n') ADVANCE(2014); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2054: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'n') ADVANCE(2013); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2055: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'n') ADVANCE(2015); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2056: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'o') ADVANCE(1968); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2057: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'o') ADVANCE(2111); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2058: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1997); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'o') ADVANCE(2069); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2059: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2003); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'o') ADVANCE(2095); + if (lookahead == 's') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2060: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'o') ADVANCE(2095); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2061: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'o') ADVANCE(2012); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2062: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'o') ADVANCE(1972); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2063: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'o') ADVANCE(2071); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2064: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2058); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'o') ADVANCE(1976); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2065: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2060); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'o') ADVANCE(2112); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2066: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2059); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'o') ADVANCE(2113); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2067: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2061); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2068: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2002); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(1595); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2069: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(1593); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2070: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(1653); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2071: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2074); - if (lookahead == '_') ADVANCE(2075); - if (lookahead == '\t' || - lookahead == ' ') SKIP(193); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(1651); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2072: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(2074); - if (lookahead == '_') ADVANCE(2075); - if (lookahead == '\t' || - lookahead == ' ') SKIP(255); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(1928); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2073: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2076); - if (lookahead == '_') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(2110); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2074: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2074); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(1940); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2075: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2075); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(1971); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2076: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2076); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(2106); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2077: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(1943); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2078: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '[') ADVANCE(1705); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(2075); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2079: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(2123); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(1975); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2080: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(2079); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2081: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2088); - if (lookahead == '_') ADVANCE(2082); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2108); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(2082); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2082: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2088); - if (lookahead == '_') ADVANCE(2082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(1979); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2083: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1506); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'r') ADVANCE(2107); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2084: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(2114); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2122); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 's') ADVANCE(1747); + if (lookahead == 'u') ADVANCE(2047); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2133); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2085: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2125); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 's') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2086: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2127); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 's') ADVANCE(1599); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2087: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2087); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 's') ADVANCE(1601); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2088: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2088); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 's') ADVANCE(1950); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2089: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 's') ADVANCE(2017); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2090: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(2094); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 's') ADVANCE(1952); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2091: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 's') ADVANCE(1953); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2092: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 's') ADVANCE(1954); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2093: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(1948); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2094: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2097); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(2005); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2095: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2093); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(1949); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2096: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(2098); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(1925); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2097: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(2092); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(2030); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2098: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2091); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(1970); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2099: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2095); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2105); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(2031); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2100: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2105); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(1944); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2101: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1107); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(2032); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2102: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1101); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(2033); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2103: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2110); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(1945); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2104: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2111); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(1974); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2105: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(1978); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2106: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2102); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(2090); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2107: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2103); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(2092); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2108: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2101); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(2008); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2109: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'u') ADVANCE(2047); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2133); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2110: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2112); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'u') ADVANCE(2016); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2111: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2113); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'u') ADVANCE(2098); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2112: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'u') ADVANCE(2104); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2113: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'u') ADVANCE(2105); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2114: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'w') ADVANCE(2037); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2115: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'w') ADVANCE(2038); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2116: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2079); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'w') ADVANCE(2039); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2117: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2086); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'w') ADVANCE(2040); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2118: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2116); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'y') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2119: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1513); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2120: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1514); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2121: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1518); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2122: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1511); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2123: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2119); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1517); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2124: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2117); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1512); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2125: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2120); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1515); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2126: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2085); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1516); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2127: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2126); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2133); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2128: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2129: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1509); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2132); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '_') ADVANCE(2133); - if (lookahead == '\t' || - lookahead == ' ') SKIP(191); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1139); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2130: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2132); - if (lookahead == '_') ADVANCE(2133); - if (lookahead == '\t' || - lookahead == ' ') SKIP(193); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1133); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2131: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2134); - if (lookahead == '_') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2138); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2132: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2132); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2139); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2133: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1141); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2134: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2134); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2130); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2135: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2131); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2136: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(2171); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2129); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2137: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2132); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2138: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2142); - if (lookahead == '_') ADVANCE(2139); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2140); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2139: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2142); - if (lookahead == '_') ADVANCE(2139); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2141); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2140: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1129); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2141: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1136); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2142: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2142); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1768); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2143: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1760); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2144: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(2148); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1963); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2145: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2150); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2146: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2152); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2147: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1764); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2148: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2151); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1778); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2149: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2147); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1768); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2150: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(2152); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1951); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2151: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(2146); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2144); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2152: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2145); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1772); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2153: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2149); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2159); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2147); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2154: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2159); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2155: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1108); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2154); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2156: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1102); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2156); END_STATE(); case 2157: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1659); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2158: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2165); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1566); + if (lookahead == '_') ADVANCE(2167); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2159: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1566); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2160: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2156); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '_') ADVANCE(2160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2161: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2157); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'I') ADVANCE(2180); + if (lookahead == '_') ADVANCE(2170); + if (lookahead == 'i') ADVANCE(2180); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2170); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2162: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2155); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'I') ADVANCE(2180); + if (lookahead == '_') ADVANCE(2170); + if (lookahead == 'i') ADVANCE(2172); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2170); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2163: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2158); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'I') ADVANCE(2180); + if (lookahead == 'i') ADVANCE(2180); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2164: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2166); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'I') ADVANCE(2180); + if (lookahead == 'i') ADVANCE(2172); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2165: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2167); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'I') ADVANCE(2180); + if (lookahead == 'i') ADVANCE(2176); + if (lookahead == 's') ADVANCE(1747); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2166: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '_') ADVANCE(2166); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2167: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '_') ADVANCE(2167); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2168: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2136); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '_') ADVANCE(2168); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2169: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2140); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '_') ADVANCE(2170); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2170: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2168); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '_') ADVANCE(2170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2171: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2173); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'a') ADVANCE(2179); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2172: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2169); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2173: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'c') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2174: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'e') ADVANCE(2173); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2175: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2178); - if (lookahead == '_') ADVANCE(2179); - if (lookahead == '\t' || - lookahead == ' ') SKIP(193); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2181); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'k') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); END_STATE(); case 2176: + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'n') ADVANCE(1747); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); + END_STATE(); + case 2177: + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'r') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); + END_STATE(); + case 2178: + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 's') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); + END_STATE(); + case 2179: + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'y') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); + END_STATE(); + case 2180: + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); + END_STATE(); + case 2181: + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2181); + END_STATE(); + case 2182: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1659); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2183: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1540); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2184: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(2193); + if (lookahead == '_') ADVANCE(2184); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2185: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(2183); + if (lookahead == '_') ADVANCE(2194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2186: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(2183); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2187: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1658); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2188: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'I') ADVANCE(2207); + if (lookahead == '_') ADVANCE(2196); + if (lookahead == 'i') ADVANCE(2207); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2196); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2189: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'I') ADVANCE(2207); + if (lookahead == '_') ADVANCE(2196); + if (lookahead == 'i') ADVANCE(2199); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2196); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2190: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'I') ADVANCE(2207); + if (lookahead == 'i') ADVANCE(2207); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2191: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'I') ADVANCE(2207); + if (lookahead == 'i') ADVANCE(2199); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2192: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'I') ADVANCE(2207); + if (lookahead == 'i') ADVANCE(2203); + if (lookahead == 's') ADVANCE(1747); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2193: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '_') ADVANCE(2193); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2194: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '_') ADVANCE(2194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2195: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '_') ADVANCE(2196); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2196: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '_') ADVANCE(2196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2197: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '_') ADVANCE(2197); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2198: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'a') ADVANCE(2206); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2199: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2200: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'c') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2201: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'e') ADVANCE(2200); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2202: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'k') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2203: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'n') ADVANCE(1747); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2204: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'r') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2205: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 's') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2206: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'y') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2207: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2208: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2208); + END_STATE(); + case 2209: + ACCEPT_TOKEN(sym__unquoted_naive); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2209); + END_STATE(); + case 2210: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '$') ADVANCE(1699); + if (lookahead == '(') ADVANCE(1655); + if (lookahead == '[') ADVANCE(1803); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2211: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(2257); + if (lookahead == '>') ADVANCE(1837); + if (lookahead == 'r') ADVANCE(2263); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2212: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(2250); + if (lookahead == '>') ADVANCE(1839); + if (lookahead == 'u') ADVANCE(2271); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2213: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(2244); + if (lookahead == '-') ADVANCE(2246); + if (lookahead == '>') ADVANCE(1836); + if (lookahead == '_') ADVANCE(2246); + if (lookahead == 'r') ADVANCE(2264); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2214: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(2258); + if (lookahead == '>') ADVANCE(1833); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2215: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(2251); + if (lookahead == '>') ADVANCE(1835); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2216: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(2260); + if (lookahead == '>') ADVANCE(1836); + if (lookahead == 'r') ADVANCE(2264); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2217: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(2252); + if (lookahead == '>') ADVANCE(1838); + if (lookahead == 'u') ADVANCE(2273); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2218: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(2261); + if (lookahead == '>') ADVANCE(1832); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2219: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(2253); + if (lookahead == '>') ADVANCE(1834); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2220: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '-') ADVANCE(2297); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2221: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(1571); + if (lookahead == '_') ADVANCE(2240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2222: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(1568); + if (lookahead == '_') ADVANCE(2240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2223: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(1568); + if (lookahead == '_') ADVANCE(2242); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2224: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(2239); + if (lookahead == '_') ADVANCE(2224); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2225: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(1656); + if (lookahead == '_') ADVANCE(2240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2226: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(2241); + if (lookahead == '_') ADVANCE(2226); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2227: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '2') ADVANCE(2287); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2295); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2228: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ':') ADVANCE(2299); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2229: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ':') ADVANCE(2301); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2230: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2231: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(1845); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2232: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(1841); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2233: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2234: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2235: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2236: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(1840); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2237: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(1842); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2238: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(2238); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2239: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(2239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2240: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(2240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2241: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(2241); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2242: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(2242); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2243: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(2243); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2244: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(2246); + if (lookahead == 'o') ADVANCE(2234); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2245: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(2246); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2246: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(2246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2247: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'a') ADVANCE(2255); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2248: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(1117); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2249: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(1121); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2250: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(2231); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2251: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(2265); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2252: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(2235); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2253: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(2268); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2254: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'l') ADVANCE(1125); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2255: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'l') ADVANCE(2269); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2256: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'l') ADVANCE(2254); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2257: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(2230); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2258: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(2277); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2259: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(2270); + if (lookahead == 'u') ADVANCE(2256); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2282); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2260: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(2234); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2261: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(2278); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2262: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(2276); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2263: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(2214); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2264: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(2218); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2265: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(2266); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2266: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(2233); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2267: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(2237); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2268: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(2267); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2269: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 's') ADVANCE(2249); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2270: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(2288); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2271: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(2215); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2272: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(2232); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2273: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(2219); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2274: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(2236); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2275: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(2256); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2282); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2276: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(2248); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2277: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(2272); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2278: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(2274); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2279: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2282); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2280: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1131); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2281: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2285); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2282: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1141); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2283: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2280); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2284: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2281); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2285: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2286); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2286: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1129); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2287: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1766); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2288: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1624); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2289: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1760); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2290: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2220); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2291: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2229); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2292: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1770); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2293: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1762); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2294: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1776); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2295: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1766); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2296: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2290); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2297: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2292); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2298: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2291); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2299: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2293); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2300: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2228); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2301: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2300); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2302: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2302); + END_STATE(); + case 2303: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(1528); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == '.') ADVANCE(2306); + if (lookahead == '_') ADVANCE(2307); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2305); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2309); + END_STATE(); + case 2304: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(2306); + if (lookahead == '_') ADVANCE(2307); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2305); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(282); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2309); + END_STATE(); + case 2305: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(2308); + if (lookahead == '_') ADVANCE(2305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2309); + END_STATE(); + case 2306: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2306); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2309); + END_STATE(); + case 2307: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2307); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2309); + END_STATE(); + case 2308: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2308); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2309); + END_STATE(); + case 2309: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2309); + END_STATE(); + case 2310: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '$') ADVANCE(1699); + if (lookahead == '(') ADVANCE(1655); + if (lookahead == '[') ADVANCE(1803); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2360); + END_STATE(); + case 2311: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '-') ADVANCE(2355); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2312: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(1571); + if (lookahead == '_') ADVANCE(2321); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2313: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(2320); + if (lookahead == '_') ADVANCE(2314); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2314: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(2320); + if (lookahead == '_') ADVANCE(2314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2315: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(1569); + if (lookahead == '_') ADVANCE(2321); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2316: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '2') ADVANCE(2346); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2354); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2317: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(2357); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2318: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(2359); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2319: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(2319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2320: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(2320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2321: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(2321); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2322: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'a') ADVANCE(2326); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2323: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'e') ADVANCE(1117); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2324: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'e') ADVANCE(1121); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2325: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'l') ADVANCE(1125); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2326: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'l') ADVANCE(2329); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2327: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'l') ADVANCE(2325); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2328: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(2330); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2329: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 's') ADVANCE(2324); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2330: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'u') ADVANCE(2323); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2331: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'u') ADVANCE(2327); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2337); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2332: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2337); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2333: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1138); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2334: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1132); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2335: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2342); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2336: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2343); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2337: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1141); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2338: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2334); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2339: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2335); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2340: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2333); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2341: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2336); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2342: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2344); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2343: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2345); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2344: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1129); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2345: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1136); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2346: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1767); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2347: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1760); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2348: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2311); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2349: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2318); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2350: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2348); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2351: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1771); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2352: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1763); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2353: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1777); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2354: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1767); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2355: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2351); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2356: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2349); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2357: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2352); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2358: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2317); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2359: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2358); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2360: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2360); + END_STATE(); + case 2361: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + ADVANCE_MAP( + '#', 2420, + '$', 1573, + '(', 1625, + '.', 2364, + ']', 1524, + '_', 2365, + '+', 2363, + '-', 2363, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(219); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2367); + END_STATE(); + case 2362: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(1528); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == '.') ADVANCE(2364); + if (lookahead == '_') ADVANCE(2365); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2363); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2367); + END_STATE(); + case 2363: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(2366); + if (lookahead == '_') ADVANCE(2363); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2367); + END_STATE(); + case 2364: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(2364); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2367); + END_STATE(); + case 2365: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(2365); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2367); + END_STATE(); + case 2366: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(2366); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2367); + END_STATE(); + case 2367: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2367); + END_STATE(); + case 2368: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '-') ADVANCE(2403); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2369: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(1571); + if (lookahead == '_') ADVANCE(2375); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2370: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(2374); + if (lookahead == '_') ADVANCE(2371); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2394); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2371: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(2374); + if (lookahead == '_') ADVANCE(2371); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1732); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2372: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == ':') ADVANCE(580); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2373: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(2373); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1731); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2374: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(2374); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2375: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(2375); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1733); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2376: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'a') ADVANCE(2380); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2377: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'e') ADVANCE(1117); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2378: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'e') ADVANCE(1121); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2379: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'l') ADVANCE(1125); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2380: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'l') ADVANCE(2383); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2381: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'l') ADVANCE(2379); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2382: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(2384); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2383: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 's') ADVANCE(2378); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2384: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(2377); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2385: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(2381); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2391); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2386: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2391); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2387: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1140); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2388: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1134); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2389: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2396); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2390: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2397); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2391: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1141); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2392: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2388); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2393: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2389); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2394: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2387); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2395: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2390); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2396: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2398); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2397: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2399); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2398: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1129); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2399: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1136); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2400: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2401: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2372); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2402: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2400); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2403: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2405); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2404: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2401); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2405: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1773); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2406: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2406); + END_STATE(); + case 2407: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(2178); - if (lookahead == '_') ADVANCE(2179); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '$') ADVANCE(1528); + if (lookahead == '(') ADVANCE(1625); + if (lookahead == '.') ADVANCE(2410); + if (lookahead == '_') ADVANCE(2411); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2409); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == '\r' || + lookahead == ' ') SKIP(221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2413); + END_STATE(); + case 2408: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '#') ADVANCE(2420); + if (lookahead == '.') ADVANCE(2410); + if (lookahead == '_') ADVANCE(2411); if (lookahead == '+' || - lookahead == '-') ADVANCE(2177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + lookahead == '-') ADVANCE(2409); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(282); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2413); END_STATE(); - case 2177: + case 2409: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2180); - if (lookahead == '_') ADVANCE(2177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(2409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2413); END_STATE(); - case 2178: + case 2410: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2178); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '_') ADVANCE(2410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2413); END_STATE(); - case 2179: + case 2411: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2179); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '_') ADVANCE(2411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2413); END_STATE(); - case 2180: + case 2412: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '_') ADVANCE(2412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2413); END_STATE(); - case 2181: + case 2413: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2413); END_STATE(); - case 2182: + case 2414: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(2195); + if (lookahead == '#') ADVANCE(2427); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2415); END_STATE(); - case 2183: + case 2415: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32374,20 +35390,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2415); END_STATE(); - case 2184: + case 2416: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(2194); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2185); + if (lookahead == '#') ADVANCE(2426); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2417); END_STATE(); - case 2185: + case 2417: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2185); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2417); END_STATE(); - case 2186: + case 2418: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(2193); + if (lookahead == '#') ADVANCE(2425); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -32396,9 +35412,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2419); END_STATE(); - case 2187: + case 2419: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32408,30 +35424,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2419); END_STATE(); - case 2188: + case 2420: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 2189: + case 2421: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead != 0) ADVANCE(665); + if (lookahead == '\n') ADVANCE(691); + if (lookahead != 0) ADVANCE(693); END_STATE(); - case 2190: + case 2422: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(662); + if (lookahead == '!') ADVANCE(690); END_STATE(); - case 2191: + case 2423: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1074); END_STATE(); - case 2192: + case 2424: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1813); END_STATE(); - case 2193: + case 2425: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32441,13 +35456,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2419); END_STATE(); - case 2194: + case 2426: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2185); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2417); END_STATE(); - case 2195: + case 2427: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32455,26 +35470,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2415); END_STATE(); - case 2196: + case 2428: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2430); END_STATE(); - case 2197: + case 2429: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(2196); + if (lookahead == '#') ADVANCE(2428); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2197); + lookahead == '\r' || + lookahead == ' ') ADVANCE(2429); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2430); END_STATE(); - case 2198: + case 2430: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2430); END_STATE(); default: return false; @@ -32507,6 +35523,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { 'v', 18, ); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(0); END_STATE(); case 1: @@ -33022,5209 +36039,5434 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 629, .external_lex_state = 2}, - [2] = {.lex_state = 31, .external_lex_state = 2}, - [3] = {.lex_state = 31, .external_lex_state = 2}, - [4] = {.lex_state = 31, .external_lex_state = 2}, - [5] = {.lex_state = 31, .external_lex_state = 2}, - [6] = {.lex_state = 31, .external_lex_state = 2}, - [7] = {.lex_state = 31, .external_lex_state = 2}, - [8] = {.lex_state = 31, .external_lex_state = 2}, - [9] = {.lex_state = 31, .external_lex_state = 2}, - [10] = {.lex_state = 31, .external_lex_state = 2}, - [11] = {.lex_state = 31, .external_lex_state = 2}, - [12] = {.lex_state = 31, .external_lex_state = 2}, - [13] = {.lex_state = 31, .external_lex_state = 2}, - [14] = {.lex_state = 31, .external_lex_state = 2}, - [15] = {.lex_state = 31, .external_lex_state = 2}, - [16] = {.lex_state = 622, .external_lex_state = 2}, - [17] = {.lex_state = 622, .external_lex_state = 2}, - [18] = {.lex_state = 622, .external_lex_state = 2}, - [19] = {.lex_state = 622, .external_lex_state = 2}, - [20] = {.lex_state = 622, .external_lex_state = 2}, - [21] = {.lex_state = 622, .external_lex_state = 2}, - [22] = {.lex_state = 622, .external_lex_state = 2}, - [23] = {.lex_state = 622, .external_lex_state = 2}, - [24] = {.lex_state = 622, .external_lex_state = 2}, - [25] = {.lex_state = 622, .external_lex_state = 2}, - [26] = {.lex_state = 622, .external_lex_state = 2}, - [27] = {.lex_state = 622, .external_lex_state = 2}, - [28] = {.lex_state = 622, .external_lex_state = 2}, - [29] = {.lex_state = 622, .external_lex_state = 2}, - [30] = {.lex_state = 622, .external_lex_state = 2}, - [31] = {.lex_state = 622, .external_lex_state = 2}, - [32] = {.lex_state = 622, .external_lex_state = 2}, - [33] = {.lex_state = 622, .external_lex_state = 2}, - [34] = {.lex_state = 622, .external_lex_state = 2}, - [35] = {.lex_state = 29, .external_lex_state = 2}, - [36] = {.lex_state = 29, .external_lex_state = 2}, - [37] = {.lex_state = 622, .external_lex_state = 2}, - [38] = {.lex_state = 29, .external_lex_state = 2}, - [39] = {.lex_state = 29, .external_lex_state = 2}, - [40] = {.lex_state = 622, .external_lex_state = 2}, - [41] = {.lex_state = 29, .external_lex_state = 2}, - [42] = {.lex_state = 622, .external_lex_state = 2}, - [43] = {.lex_state = 29, .external_lex_state = 2}, - [44] = {.lex_state = 622, .external_lex_state = 2}, - [45] = {.lex_state = 622, .external_lex_state = 2}, - [46] = {.lex_state = 29, .external_lex_state = 2}, - [47] = {.lex_state = 29, .external_lex_state = 2}, - [48] = {.lex_state = 29, .external_lex_state = 2}, - [49] = {.lex_state = 622, .external_lex_state = 2}, - [50] = {.lex_state = 29, .external_lex_state = 2}, - [51] = {.lex_state = 29, .external_lex_state = 2}, - [52] = {.lex_state = 29, .external_lex_state = 2}, - [53] = {.lex_state = 622, .external_lex_state = 2}, - [54] = {.lex_state = 29, .external_lex_state = 2}, - [55] = {.lex_state = 622, .external_lex_state = 2}, - [56] = {.lex_state = 29, .external_lex_state = 2}, - [57] = {.lex_state = 622, .external_lex_state = 2}, - [58] = {.lex_state = 29, .external_lex_state = 2}, - [59] = {.lex_state = 622, .external_lex_state = 2}, - [60] = {.lex_state = 29, .external_lex_state = 2}, - [61] = {.lex_state = 622, .external_lex_state = 2}, - [62] = {.lex_state = 29, .external_lex_state = 2}, - [63] = {.lex_state = 622, .external_lex_state = 2}, - [64] = {.lex_state = 622, .external_lex_state = 2}, - [65] = {.lex_state = 29, .external_lex_state = 2}, - [66] = {.lex_state = 622, .external_lex_state = 2}, - [67] = {.lex_state = 29, .external_lex_state = 2}, - [68] = {.lex_state = 29, .external_lex_state = 2}, - [69] = {.lex_state = 622, .external_lex_state = 2}, - [70] = {.lex_state = 29, .external_lex_state = 2}, - [71] = {.lex_state = 622, .external_lex_state = 2}, - [72] = {.lex_state = 29, .external_lex_state = 2}, - [73] = {.lex_state = 622, .external_lex_state = 2}, - [74] = {.lex_state = 29, .external_lex_state = 2}, - [75] = {.lex_state = 622, .external_lex_state = 2}, - [76] = {.lex_state = 622, .external_lex_state = 2}, - [77] = {.lex_state = 29, .external_lex_state = 2}, - [78] = {.lex_state = 622, .external_lex_state = 2}, - [79] = {.lex_state = 622, .external_lex_state = 2}, - [80] = {.lex_state = 622, .external_lex_state = 2}, - [81] = {.lex_state = 622, .external_lex_state = 2}, - [82] = {.lex_state = 622, .external_lex_state = 2}, - [83] = {.lex_state = 622, .external_lex_state = 2}, - [84] = {.lex_state = 622, .external_lex_state = 2}, - [85] = {.lex_state = 622, .external_lex_state = 2}, - [86] = {.lex_state = 622, .external_lex_state = 2}, - [87] = {.lex_state = 622, .external_lex_state = 2}, - [88] = {.lex_state = 622, .external_lex_state = 2}, - [89] = {.lex_state = 622, .external_lex_state = 2}, - [90] = {.lex_state = 622, .external_lex_state = 2}, - [91] = {.lex_state = 622, .external_lex_state = 2}, - [92] = {.lex_state = 1156}, - [93] = {.lex_state = 1161}, - [94] = {.lex_state = 1324}, - [95] = {.lex_state = 1146}, - [96] = {.lex_state = 1148}, - [97] = {.lex_state = 1326}, - [98] = {.lex_state = 1162}, - [99] = {.lex_state = 1162}, - [100] = {.lex_state = 1157}, - [101] = {.lex_state = 1164}, - [102] = {.lex_state = 1166}, - [103] = {.lex_state = 624, .external_lex_state = 2}, - [104] = {.lex_state = 1326}, - [105] = {.lex_state = 1163}, - [106] = {.lex_state = 1163}, - [107] = {.lex_state = 1150}, - [108] = {.lex_state = 1163}, - [109] = {.lex_state = 42, .external_lex_state = 2}, - [110] = {.lex_state = 1324}, - [111] = {.lex_state = 1328}, - [112] = {.lex_state = 1166}, - [113] = {.lex_state = 1150}, - [114] = {.lex_state = 1328}, - [115] = {.lex_state = 1163}, - [116] = {.lex_state = 1152}, - [117] = {.lex_state = 1152}, - [118] = {.lex_state = 1152}, - [119] = {.lex_state = 1328}, - [120] = {.lex_state = 624, .external_lex_state = 2}, - [121] = {.lex_state = 1168}, - [122] = {.lex_state = 1328}, - [123] = {.lex_state = 1168}, - [124] = {.lex_state = 1330}, - [125] = {.lex_state = 1168}, - [126] = {.lex_state = 1168}, - [127] = {.lex_state = 1152}, - [128] = {.lex_state = 624, .external_lex_state = 2}, - [129] = {.lex_state = 1330}, - [130] = {.lex_state = 1159}, - [131] = {.lex_state = 1170}, - [132] = {.lex_state = 1330}, - [133] = {.lex_state = 1330}, - [134] = {.lex_state = 1330}, - [135] = {.lex_state = 1172}, - [136] = {.lex_state = 1330}, - [137] = {.lex_state = 1330}, - [138] = {.lex_state = 1330}, - [139] = {.lex_state = 1172}, - [140] = {.lex_state = 1174}, - [141] = {.lex_state = 1174}, - [142] = {.lex_state = 1174}, - [143] = {.lex_state = 1174}, - [144] = {.lex_state = 1332}, - [145] = {.lex_state = 1176}, - [146] = {.lex_state = 1154}, - [147] = {.lex_state = 1154}, - [148] = {.lex_state = 1176}, - [149] = {.lex_state = 1176}, - [150] = {.lex_state = 1332}, - [151] = {.lex_state = 1176}, - [152] = {.lex_state = 622, .external_lex_state = 2}, - [153] = {.lex_state = 622, .external_lex_state = 2}, - [154] = {.lex_state = 622, .external_lex_state = 2}, - [155] = {.lex_state = 622, .external_lex_state = 2}, - [156] = {.lex_state = 622, .external_lex_state = 2}, - [157] = {.lex_state = 622, .external_lex_state = 2}, - [158] = {.lex_state = 622, .external_lex_state = 2}, - [159] = {.lex_state = 622, .external_lex_state = 2}, - [160] = {.lex_state = 622, .external_lex_state = 2}, - [161] = {.lex_state = 622, .external_lex_state = 2}, - [162] = {.lex_state = 622, .external_lex_state = 2}, - [163] = {.lex_state = 622, .external_lex_state = 2}, - [164] = {.lex_state = 622, .external_lex_state = 2}, - [165] = {.lex_state = 622, .external_lex_state = 2}, - [166] = {.lex_state = 622, .external_lex_state = 2}, - [167] = {.lex_state = 622, .external_lex_state = 2}, - [168] = {.lex_state = 622, .external_lex_state = 2}, - [169] = {.lex_state = 622, .external_lex_state = 2}, - [170] = {.lex_state = 622, .external_lex_state = 2}, - [171] = {.lex_state = 622, .external_lex_state = 2}, - [172] = {.lex_state = 1332}, - [173] = {.lex_state = 1332}, - [174] = {.lex_state = 622, .external_lex_state = 2}, - [175] = {.lex_state = 622, .external_lex_state = 2}, - [176] = {.lex_state = 622, .external_lex_state = 2}, - [177] = {.lex_state = 622, .external_lex_state = 2}, - [178] = {.lex_state = 622, .external_lex_state = 2}, - [179] = {.lex_state = 622, .external_lex_state = 2}, - [180] = {.lex_state = 622, .external_lex_state = 2}, - [181] = {.lex_state = 622, .external_lex_state = 2}, - [182] = {.lex_state = 622, .external_lex_state = 2}, - [183] = {.lex_state = 622, .external_lex_state = 2}, - [184] = {.lex_state = 622, .external_lex_state = 2}, - [185] = {.lex_state = 622, .external_lex_state = 2}, - [186] = {.lex_state = 622, .external_lex_state = 2}, - [187] = {.lex_state = 622, .external_lex_state = 2}, - [188] = {.lex_state = 622, .external_lex_state = 2}, - [189] = {.lex_state = 1178}, - [190] = {.lex_state = 1178}, - [191] = {.lex_state = 622, .external_lex_state = 2}, - [192] = {.lex_state = 622, .external_lex_state = 2}, - [193] = {.lex_state = 622, .external_lex_state = 2}, - [194] = {.lex_state = 43, .external_lex_state = 2}, - [195] = {.lex_state = 34, .external_lex_state = 2}, - [196] = {.lex_state = 34, .external_lex_state = 2}, - [197] = {.lex_state = 34, .external_lex_state = 2}, - [198] = {.lex_state = 34, .external_lex_state = 2}, - [199] = {.lex_state = 34, .external_lex_state = 2}, - [200] = {.lex_state = 34, .external_lex_state = 2}, - [201] = {.lex_state = 34, .external_lex_state = 2}, - [202] = {.lex_state = 34, .external_lex_state = 2}, - [203] = {.lex_state = 34, .external_lex_state = 2}, - [204] = {.lex_state = 34, .external_lex_state = 2}, - [205] = {.lex_state = 34, .external_lex_state = 2}, - [206] = {.lex_state = 34, .external_lex_state = 2}, - [207] = {.lex_state = 34, .external_lex_state = 2}, - [208] = {.lex_state = 34, .external_lex_state = 2}, - [209] = {.lex_state = 34, .external_lex_state = 2}, - [210] = {.lex_state = 34, .external_lex_state = 2}, - [211] = {.lex_state = 34, .external_lex_state = 2}, - [212] = {.lex_state = 34, .external_lex_state = 2}, - [213] = {.lex_state = 34, .external_lex_state = 2}, - [214] = {.lex_state = 34, .external_lex_state = 2}, - [215] = {.lex_state = 34, .external_lex_state = 2}, - [216] = {.lex_state = 34, .external_lex_state = 2}, - [217] = {.lex_state = 34, .external_lex_state = 2}, - [218] = {.lex_state = 34, .external_lex_state = 2}, - [219] = {.lex_state = 34, .external_lex_state = 2}, - [220] = {.lex_state = 34, .external_lex_state = 2}, - [221] = {.lex_state = 34, .external_lex_state = 2}, - [222] = {.lex_state = 34, .external_lex_state = 2}, - [223] = {.lex_state = 34, .external_lex_state = 2}, - [224] = {.lex_state = 34, .external_lex_state = 2}, - [225] = {.lex_state = 34, .external_lex_state = 2}, - [226] = {.lex_state = 34, .external_lex_state = 2}, - [227] = {.lex_state = 34, .external_lex_state = 2}, - [228] = {.lex_state = 34, .external_lex_state = 2}, - [229] = {.lex_state = 34, .external_lex_state = 2}, - [230] = {.lex_state = 34, .external_lex_state = 2}, - [231] = {.lex_state = 34, .external_lex_state = 2}, - [232] = {.lex_state = 34, .external_lex_state = 2}, - [233] = {.lex_state = 34, .external_lex_state = 2}, - [234] = {.lex_state = 34, .external_lex_state = 2}, - [235] = {.lex_state = 34, .external_lex_state = 2}, - [236] = {.lex_state = 34, .external_lex_state = 2}, - [237] = {.lex_state = 34, .external_lex_state = 2}, - [238] = {.lex_state = 34, .external_lex_state = 2}, - [239] = {.lex_state = 34, .external_lex_state = 2}, - [240] = {.lex_state = 34, .external_lex_state = 2}, - [241] = {.lex_state = 34, .external_lex_state = 2}, - [242] = {.lex_state = 34, .external_lex_state = 2}, - [243] = {.lex_state = 34, .external_lex_state = 2}, - [244] = {.lex_state = 34, .external_lex_state = 2}, - [245] = {.lex_state = 34, .external_lex_state = 2}, - [246] = {.lex_state = 34, .external_lex_state = 2}, - [247] = {.lex_state = 34, .external_lex_state = 2}, - [248] = {.lex_state = 34, .external_lex_state = 2}, - [249] = {.lex_state = 34, .external_lex_state = 2}, - [250] = {.lex_state = 34, .external_lex_state = 2}, - [251] = {.lex_state = 34, .external_lex_state = 2}, - [252] = {.lex_state = 34, .external_lex_state = 2}, - [253] = {.lex_state = 34, .external_lex_state = 2}, - [254] = {.lex_state = 34, .external_lex_state = 2}, - [255] = {.lex_state = 34, .external_lex_state = 2}, - [256] = {.lex_state = 34, .external_lex_state = 2}, - [257] = {.lex_state = 34, .external_lex_state = 2}, - [258] = {.lex_state = 34, .external_lex_state = 2}, - [259] = {.lex_state = 34, .external_lex_state = 2}, - [260] = {.lex_state = 34, .external_lex_state = 2}, - [261] = {.lex_state = 34, .external_lex_state = 2}, - [262] = {.lex_state = 34, .external_lex_state = 2}, - [263] = {.lex_state = 34, .external_lex_state = 2}, - [264] = {.lex_state = 34, .external_lex_state = 2}, - [265] = {.lex_state = 34, .external_lex_state = 2}, - [266] = {.lex_state = 34, .external_lex_state = 2}, - [267] = {.lex_state = 1158}, - [268] = {.lex_state = 1327}, - [269] = {.lex_state = 1147}, - [270] = {.lex_state = 1149}, - [271] = {.lex_state = 1165}, - [272] = {.lex_state = 1325}, - [273] = {.lex_state = 1167}, - [274] = {.lex_state = 34, .external_lex_state = 2}, - [275] = {.lex_state = 34, .external_lex_state = 2}, - [276] = {.lex_state = 34, .external_lex_state = 2}, - [277] = {.lex_state = 1325}, - [278] = {.lex_state = 1327}, - [279] = {.lex_state = 1167}, - [280] = {.lex_state = 34, .external_lex_state = 2}, - [281] = {.lex_state = 34, .external_lex_state = 2}, - [282] = {.lex_state = 1329}, - [283] = {.lex_state = 34, .external_lex_state = 2}, - [284] = {.lex_state = 1329}, - [285] = {.lex_state = 34, .external_lex_state = 2}, - [286] = {.lex_state = 1151}, - [287] = {.lex_state = 34, .external_lex_state = 2}, - [288] = {.lex_state = 34, .external_lex_state = 2}, - [289] = {.lex_state = 34, .external_lex_state = 2}, - [290] = {.lex_state = 34, .external_lex_state = 2}, - [291] = {.lex_state = 34, .external_lex_state = 2}, - [292] = {.lex_state = 34, .external_lex_state = 2}, - [293] = {.lex_state = 1151}, - [294] = {.lex_state = 1153}, - [295] = {.lex_state = 1329}, - [296] = {.lex_state = 1171}, - [297] = {.lex_state = 1169}, - [298] = {.lex_state = 1331}, - [299] = {.lex_state = 1331}, - [300] = {.lex_state = 1331}, - [301] = {.lex_state = 1153}, - [302] = {.lex_state = 1169}, - [303] = {.lex_state = 1153}, - [304] = {.lex_state = 1153}, - [305] = {.lex_state = 1169}, - [306] = {.lex_state = 1331}, - [307] = {.lex_state = 1169}, - [308] = {.lex_state = 1160}, - [309] = {.lex_state = 1329}, - [310] = {.lex_state = 1173}, - [311] = {.lex_state = 1331}, - [312] = {.lex_state = 1331}, - [313] = {.lex_state = 1331}, - [314] = {.lex_state = 1331}, - [315] = {.lex_state = 1173}, - [316] = {.lex_state = 1175}, - [317] = {.lex_state = 1175}, - [318] = {.lex_state = 1175}, - [319] = {.lex_state = 1175}, - [320] = {.lex_state = 44, .external_lex_state = 2}, - [321] = {.lex_state = 44, .external_lex_state = 2}, - [322] = {.lex_state = 44, .external_lex_state = 2}, - [323] = {.lex_state = 1333}, - [324] = {.lex_state = 1155}, - [325] = {.lex_state = 1177}, - [326] = {.lex_state = 1177}, - [327] = {.lex_state = 1155}, - [328] = {.lex_state = 1333}, - [329] = {.lex_state = 1333}, - [330] = {.lex_state = 1333}, - [331] = {.lex_state = 1179}, - [332] = {.lex_state = 1179}, - [333] = {.lex_state = 124}, - [334] = {.lex_state = 124}, - [335] = {.lex_state = 577}, - [336] = {.lex_state = 124}, - [337] = {.lex_state = 577}, - [338] = {.lex_state = 577}, - [339] = {.lex_state = 124}, - [340] = {.lex_state = 124}, - [341] = {.lex_state = 124}, - [342] = {.lex_state = 124}, - [343] = {.lex_state = 577}, - [344] = {.lex_state = 577}, - [345] = {.lex_state = 44, .external_lex_state = 2}, - [346] = {.lex_state = 577}, - [347] = {.lex_state = 44, .external_lex_state = 2}, - [348] = {.lex_state = 44, .external_lex_state = 2}, - [349] = {.lex_state = 577}, - [350] = {.lex_state = 44, .external_lex_state = 2}, - [351] = {.lex_state = 124}, - [352] = {.lex_state = 124}, - [353] = {.lex_state = 577}, - [354] = {.lex_state = 44, .external_lex_state = 2}, - [355] = {.lex_state = 577}, - [356] = {.lex_state = 44, .external_lex_state = 2}, - [357] = {.lex_state = 124}, - [358] = {.lex_state = 44, .external_lex_state = 2}, - [359] = {.lex_state = 44, .external_lex_state = 2}, - [360] = {.lex_state = 124}, - [361] = {.lex_state = 577}, - [362] = {.lex_state = 44, .external_lex_state = 2}, - [363] = {.lex_state = 124}, - [364] = {.lex_state = 124}, - [365] = {.lex_state = 124}, - [366] = {.lex_state = 44, .external_lex_state = 2}, - [367] = {.lex_state = 44, .external_lex_state = 2}, - [368] = {.lex_state = 124}, - [369] = {.lex_state = 577}, - [370] = {.lex_state = 577}, - [371] = {.lex_state = 44, .external_lex_state = 2}, - [372] = {.lex_state = 577}, - [373] = {.lex_state = 124}, - [374] = {.lex_state = 577}, - [375] = {.lex_state = 577}, - [376] = {.lex_state = 44, .external_lex_state = 2}, - [377] = {.lex_state = 581}, - [378] = {.lex_state = 581}, - [379] = {.lex_state = 44, .external_lex_state = 2}, - [380] = {.lex_state = 44, .external_lex_state = 2}, - [381] = {.lex_state = 577}, - [382] = {.lex_state = 577}, - [383] = {.lex_state = 44, .external_lex_state = 2}, - [384] = {.lex_state = 44, .external_lex_state = 2}, - [385] = {.lex_state = 577}, - [386] = {.lex_state = 44, .external_lex_state = 2}, - [387] = {.lex_state = 44, .external_lex_state = 2}, - [388] = {.lex_state = 577}, - [389] = {.lex_state = 581}, - [390] = {.lex_state = 577}, - [391] = {.lex_state = 577}, - [392] = {.lex_state = 577}, - [393] = {.lex_state = 577}, - [394] = {.lex_state = 577}, - [395] = {.lex_state = 577}, - [396] = {.lex_state = 44, .external_lex_state = 2}, - [397] = {.lex_state = 124}, - [398] = {.lex_state = 583}, - [399] = {.lex_state = 578}, - [400] = {.lex_state = 581}, - [401] = {.lex_state = 581}, - [402] = {.lex_state = 577}, - [403] = {.lex_state = 581}, - [404] = {.lex_state = 577}, - [405] = {.lex_state = 577}, - [406] = {.lex_state = 578}, - [407] = {.lex_state = 583}, - [408] = {.lex_state = 581}, - [409] = {.lex_state = 581}, - [410] = {.lex_state = 581}, - [411] = {.lex_state = 581}, - [412] = {.lex_state = 578}, - [413] = {.lex_state = 577}, - [414] = {.lex_state = 578}, - [415] = {.lex_state = 578}, - [416] = {.lex_state = 583}, - [417] = {.lex_state = 577}, - [418] = {.lex_state = 583}, - [419] = {.lex_state = 581}, - [420] = {.lex_state = 578}, - [421] = {.lex_state = 585}, - [422] = {.lex_state = 589}, - [423] = {.lex_state = 578}, - [424] = {.lex_state = 578}, - [425] = {.lex_state = 578}, - [426] = {.lex_state = 578}, - [427] = {.lex_state = 578}, - [428] = {.lex_state = 578}, - [429] = {.lex_state = 578}, - [430] = {.lex_state = 581}, - [431] = {.lex_state = 577}, - [432] = {.lex_state = 577}, - [433] = {.lex_state = 585}, - [434] = {.lex_state = 577}, - [435] = {.lex_state = 591}, - [436] = {.lex_state = 591}, - [437] = {.lex_state = 578}, - [438] = {.lex_state = 577}, - [439] = {.lex_state = 577}, - [440] = {.lex_state = 578}, - [441] = {.lex_state = 578}, - [442] = {.lex_state = 595}, - [443] = {.lex_state = 581}, - [444] = {.lex_state = 587}, - [445] = {.lex_state = 577}, - [446] = {.lex_state = 593}, - [447] = {.lex_state = 578}, - [448] = {.lex_state = 581}, - [449] = {.lex_state = 581}, - [450] = {.lex_state = 581}, - [451] = {.lex_state = 581}, - [452] = {.lex_state = 581}, - [453] = {.lex_state = 577}, - [454] = {.lex_state = 589}, - [455] = {.lex_state = 40, .external_lex_state = 2}, - [456] = {.lex_state = 40, .external_lex_state = 2}, - [457] = {.lex_state = 40, .external_lex_state = 2}, - [458] = {.lex_state = 40, .external_lex_state = 2}, - [459] = {.lex_state = 597}, - [460] = {.lex_state = 40, .external_lex_state = 2}, - [461] = {.lex_state = 40, .external_lex_state = 2}, - [462] = {.lex_state = 593}, - [463] = {.lex_state = 593}, - [464] = {.lex_state = 44, .external_lex_state = 2}, - [465] = {.lex_state = 578}, - [466] = {.lex_state = 578}, - [467] = {.lex_state = 593}, - [468] = {.lex_state = 40, .external_lex_state = 2}, - [469] = {.lex_state = 591}, - [470] = {.lex_state = 597}, - [471] = {.lex_state = 577}, - [472] = {.lex_state = 591}, - [473] = {.lex_state = 593}, - [474] = {.lex_state = 577}, - [475] = {.lex_state = 40, .external_lex_state = 2}, - [476] = {.lex_state = 593}, - [477] = {.lex_state = 595}, - [478] = {.lex_state = 578}, - [479] = {.lex_state = 578}, - [480] = {.lex_state = 578}, - [481] = {.lex_state = 587}, - [482] = {.lex_state = 578}, - [483] = {.lex_state = 578}, - [484] = {.lex_state = 578}, - [485] = {.lex_state = 578}, - [486] = {.lex_state = 578}, - [487] = {.lex_state = 578}, - [488] = {.lex_state = 578}, - [489] = {.lex_state = 578}, - [490] = {.lex_state = 599}, - [491] = {.lex_state = 578}, - [492] = {.lex_state = 578}, - [493] = {.lex_state = 578}, - [494] = {.lex_state = 578}, - [495] = {.lex_state = 593}, - [496] = {.lex_state = 578}, - [497] = {.lex_state = 578}, - [498] = {.lex_state = 578}, - [499] = {.lex_state = 593}, - [500] = {.lex_state = 599}, - [501] = {.lex_state = 40, .external_lex_state = 2}, - [502] = {.lex_state = 578}, - [503] = {.lex_state = 599}, - [504] = {.lex_state = 41, .external_lex_state = 2}, - [505] = {.lex_state = 41, .external_lex_state = 2}, - [506] = {.lex_state = 41, .external_lex_state = 2}, - [507] = {.lex_state = 41, .external_lex_state = 2}, - [508] = {.lex_state = 41, .external_lex_state = 2}, - [509] = {.lex_state = 41, .external_lex_state = 2}, - [510] = {.lex_state = 41, .external_lex_state = 2}, - [511] = {.lex_state = 41, .external_lex_state = 2}, - [512] = {.lex_state = 41, .external_lex_state = 2}, - [513] = {.lex_state = 41, .external_lex_state = 2}, - [514] = {.lex_state = 41, .external_lex_state = 2}, - [515] = {.lex_state = 41, .external_lex_state = 2}, - [516] = {.lex_state = 41, .external_lex_state = 2}, - [517] = {.lex_state = 578}, - [518] = {.lex_state = 578}, - [519] = {.lex_state = 41, .external_lex_state = 2}, - [520] = {.lex_state = 41, .external_lex_state = 2}, - [521] = {.lex_state = 41, .external_lex_state = 2}, - [522] = {.lex_state = 41, .external_lex_state = 2}, - [523] = {.lex_state = 41, .external_lex_state = 2}, - [524] = {.lex_state = 41, .external_lex_state = 2}, - [525] = {.lex_state = 41, .external_lex_state = 2}, - [526] = {.lex_state = 41, .external_lex_state = 2}, - [527] = {.lex_state = 41, .external_lex_state = 2}, - [528] = {.lex_state = 41, .external_lex_state = 2}, - [529] = {.lex_state = 41, .external_lex_state = 2}, - [530] = {.lex_state = 41, .external_lex_state = 2}, - [531] = {.lex_state = 41, .external_lex_state = 2}, - [532] = {.lex_state = 41, .external_lex_state = 2}, - [533] = {.lex_state = 41, .external_lex_state = 2}, - [534] = {.lex_state = 41, .external_lex_state = 2}, - [535] = {.lex_state = 41, .external_lex_state = 2}, - [536] = {.lex_state = 41, .external_lex_state = 2}, - [537] = {.lex_state = 41, .external_lex_state = 2}, - [538] = {.lex_state = 41, .external_lex_state = 2}, - [539] = {.lex_state = 41, .external_lex_state = 2}, - [540] = {.lex_state = 611}, - [541] = {.lex_state = 41, .external_lex_state = 2}, - [542] = {.lex_state = 41, .external_lex_state = 2}, - [543] = {.lex_state = 41, .external_lex_state = 2}, - [544] = {.lex_state = 41, .external_lex_state = 2}, - [545] = {.lex_state = 41, .external_lex_state = 2}, - [546] = {.lex_state = 41, .external_lex_state = 2}, - [547] = {.lex_state = 41, .external_lex_state = 2}, - [548] = {.lex_state = 41, .external_lex_state = 2}, - [549] = {.lex_state = 41, .external_lex_state = 2}, - [550] = {.lex_state = 41, .external_lex_state = 2}, - [551] = {.lex_state = 41, .external_lex_state = 2}, - [552] = {.lex_state = 41, .external_lex_state = 2}, - [553] = {.lex_state = 41, .external_lex_state = 2}, - [554] = {.lex_state = 41, .external_lex_state = 2}, - [555] = {.lex_state = 41, .external_lex_state = 2}, - [556] = {.lex_state = 41, .external_lex_state = 2}, - [557] = {.lex_state = 41, .external_lex_state = 2}, - [558] = {.lex_state = 41, .external_lex_state = 2}, - [559] = {.lex_state = 41, .external_lex_state = 2}, - [560] = {.lex_state = 41, .external_lex_state = 2}, - [561] = {.lex_state = 41, .external_lex_state = 2}, - [562] = {.lex_state = 41, .external_lex_state = 2}, - [563] = {.lex_state = 41, .external_lex_state = 2}, - [564] = {.lex_state = 41, .external_lex_state = 2}, - [565] = {.lex_state = 41, .external_lex_state = 2}, - [566] = {.lex_state = 41, .external_lex_state = 2}, - [567] = {.lex_state = 41, .external_lex_state = 2}, - [568] = {.lex_state = 41, .external_lex_state = 2}, - [569] = {.lex_state = 41, .external_lex_state = 2}, - [570] = {.lex_state = 41, .external_lex_state = 2}, - [571] = {.lex_state = 41, .external_lex_state = 2}, - [572] = {.lex_state = 41, .external_lex_state = 2}, - [573] = {.lex_state = 41, .external_lex_state = 2}, - [574] = {.lex_state = 41, .external_lex_state = 2}, - [575] = {.lex_state = 41, .external_lex_state = 2}, - [576] = {.lex_state = 41, .external_lex_state = 2}, - [577] = {.lex_state = 41, .external_lex_state = 2}, - [578] = {.lex_state = 41, .external_lex_state = 2}, - [579] = {.lex_state = 41, .external_lex_state = 2}, - [580] = {.lex_state = 41, .external_lex_state = 2}, - [581] = {.lex_state = 41, .external_lex_state = 2}, - [582] = {.lex_state = 41, .external_lex_state = 2}, - [583] = {.lex_state = 41, .external_lex_state = 2}, - [584] = {.lex_state = 41, .external_lex_state = 2}, - [585] = {.lex_state = 41, .external_lex_state = 2}, - [586] = {.lex_state = 41, .external_lex_state = 2}, - [587] = {.lex_state = 41, .external_lex_state = 2}, - [588] = {.lex_state = 41, .external_lex_state = 2}, - [589] = {.lex_state = 41, .external_lex_state = 2}, - [590] = {.lex_state = 41, .external_lex_state = 2}, - [591] = {.lex_state = 41, .external_lex_state = 2}, - [592] = {.lex_state = 41, .external_lex_state = 2}, - [593] = {.lex_state = 41, .external_lex_state = 2}, - [594] = {.lex_state = 41, .external_lex_state = 2}, - [595] = {.lex_state = 41, .external_lex_state = 2}, - [596] = {.lex_state = 41, .external_lex_state = 2}, - [597] = {.lex_state = 41, .external_lex_state = 2}, - [598] = {.lex_state = 41, .external_lex_state = 2}, - [599] = {.lex_state = 41, .external_lex_state = 2}, - [600] = {.lex_state = 41, .external_lex_state = 2}, - [601] = {.lex_state = 41, .external_lex_state = 2}, - [602] = {.lex_state = 41, .external_lex_state = 2}, - [603] = {.lex_state = 41, .external_lex_state = 2}, - [604] = {.lex_state = 41, .external_lex_state = 2}, - [605] = {.lex_state = 41, .external_lex_state = 2}, - [606] = {.lex_state = 41, .external_lex_state = 2}, - [607] = {.lex_state = 41, .external_lex_state = 2}, - [608] = {.lex_state = 41, .external_lex_state = 2}, - [609] = {.lex_state = 41, .external_lex_state = 2}, - [610] = {.lex_state = 41, .external_lex_state = 2}, - [611] = {.lex_state = 41, .external_lex_state = 2}, - [612] = {.lex_state = 41, .external_lex_state = 2}, - [613] = {.lex_state = 41, .external_lex_state = 2}, - [614] = {.lex_state = 41, .external_lex_state = 2}, - [615] = {.lex_state = 597}, - [616] = {.lex_state = 41, .external_lex_state = 2}, - [617] = {.lex_state = 41, .external_lex_state = 2}, - [618] = {.lex_state = 40, .external_lex_state = 2}, - [619] = {.lex_state = 41, .external_lex_state = 2}, - [620] = {.lex_state = 41, .external_lex_state = 2}, - [621] = {.lex_state = 41, .external_lex_state = 2}, - [622] = {.lex_state = 41, .external_lex_state = 2}, - [623] = {.lex_state = 41, .external_lex_state = 2}, - [624] = {.lex_state = 41, .external_lex_state = 2}, - [625] = {.lex_state = 40, .external_lex_state = 2}, - [626] = {.lex_state = 41, .external_lex_state = 2}, - [627] = {.lex_state = 41, .external_lex_state = 2}, - [628] = {.lex_state = 41, .external_lex_state = 2}, - [629] = {.lex_state = 44, .external_lex_state = 2}, - [630] = {.lex_state = 44, .external_lex_state = 2}, - [631] = {.lex_state = 41, .external_lex_state = 2}, - [632] = {.lex_state = 41, .external_lex_state = 2}, - [633] = {.lex_state = 41, .external_lex_state = 2}, - [634] = {.lex_state = 41, .external_lex_state = 2}, - [635] = {.lex_state = 41, .external_lex_state = 2}, - [636] = {.lex_state = 41, .external_lex_state = 2}, - [637] = {.lex_state = 41, .external_lex_state = 2}, - [638] = {.lex_state = 41, .external_lex_state = 2}, - [639] = {.lex_state = 41, .external_lex_state = 2}, - [640] = {.lex_state = 41, .external_lex_state = 2}, - [641] = {.lex_state = 41, .external_lex_state = 2}, - [642] = {.lex_state = 599}, - [643] = {.lex_state = 41, .external_lex_state = 2}, - [644] = {.lex_state = 41, .external_lex_state = 2}, - [645] = {.lex_state = 599}, - [646] = {.lex_state = 41, .external_lex_state = 2}, - [647] = {.lex_state = 41, .external_lex_state = 2}, - [648] = {.lex_state = 41, .external_lex_state = 2}, - [649] = {.lex_state = 41, .external_lex_state = 2}, - [650] = {.lex_state = 41, .external_lex_state = 2}, - [651] = {.lex_state = 41, .external_lex_state = 2}, - [652] = {.lex_state = 41, .external_lex_state = 2}, - [653] = {.lex_state = 41, .external_lex_state = 2}, - [654] = {.lex_state = 41, .external_lex_state = 2}, - [655] = {.lex_state = 41, .external_lex_state = 2}, - [656] = {.lex_state = 41, .external_lex_state = 2}, - [657] = {.lex_state = 44, .external_lex_state = 2}, - [658] = {.lex_state = 41, .external_lex_state = 2}, - [659] = {.lex_state = 41, .external_lex_state = 2}, - [660] = {.lex_state = 41, .external_lex_state = 2}, - [661] = {.lex_state = 41, .external_lex_state = 2}, - [662] = {.lex_state = 41, .external_lex_state = 2}, - [663] = {.lex_state = 41, .external_lex_state = 2}, - [664] = {.lex_state = 597}, - [665] = {.lex_state = 41, .external_lex_state = 2}, - [666] = {.lex_state = 41, .external_lex_state = 2}, - [667] = {.lex_state = 41, .external_lex_state = 2}, - [668] = {.lex_state = 41, .external_lex_state = 2}, - [669] = {.lex_state = 41, .external_lex_state = 2}, - [670] = {.lex_state = 41, .external_lex_state = 2}, - [671] = {.lex_state = 41, .external_lex_state = 2}, - [672] = {.lex_state = 601}, - [673] = {.lex_state = 599}, - [674] = {.lex_state = 578}, - [675] = {.lex_state = 578}, - [676] = {.lex_state = 578}, - [677] = {.lex_state = 578}, - [678] = {.lex_state = 599}, - [679] = {.lex_state = 578}, - [680] = {.lex_state = 599}, - [681] = {.lex_state = 578}, - [682] = {.lex_state = 578}, - [683] = {.lex_state = 578}, - [684] = {.lex_state = 599}, - [685] = {.lex_state = 578}, - [686] = {.lex_state = 578}, - [687] = {.lex_state = 578}, - [688] = {.lex_state = 578}, - [689] = {.lex_state = 578}, - [690] = {.lex_state = 578}, - [691] = {.lex_state = 611}, - [692] = {.lex_state = 578}, - [693] = {.lex_state = 599}, - [694] = {.lex_state = 578}, - [695] = {.lex_state = 578}, - [696] = {.lex_state = 603}, - [697] = {.lex_state = 578}, - [698] = {.lex_state = 578}, - [699] = {.lex_state = 578}, - [700] = {.lex_state = 578}, - [701] = {.lex_state = 578}, - [702] = {.lex_state = 578}, - [703] = {.lex_state = 578}, - [704] = {.lex_state = 578}, - [705] = {.lex_state = 578}, - [706] = {.lex_state = 578}, - [707] = {.lex_state = 578}, - [708] = {.lex_state = 578}, - [709] = {.lex_state = 578}, - [710] = {.lex_state = 578}, - [711] = {.lex_state = 578}, - [712] = {.lex_state = 578}, - [713] = {.lex_state = 41, .external_lex_state = 2}, - [714] = {.lex_state = 41, .external_lex_state = 2}, - [715] = {.lex_state = 41, .external_lex_state = 2}, - [716] = {.lex_state = 41, .external_lex_state = 2}, - [717] = {.lex_state = 41, .external_lex_state = 2}, - [718] = {.lex_state = 41, .external_lex_state = 2}, - [719] = {.lex_state = 578}, - [720] = {.lex_state = 578}, - [721] = {.lex_state = 578}, - [722] = {.lex_state = 578}, - [723] = {.lex_state = 578}, - [724] = {.lex_state = 578}, - [725] = {.lex_state = 41, .external_lex_state = 2}, - [726] = {.lex_state = 578}, - [727] = {.lex_state = 578}, - [728] = {.lex_state = 578}, - [729] = {.lex_state = 578}, - [730] = {.lex_state = 578}, - [731] = {.lex_state = 41, .external_lex_state = 2}, - [732] = {.lex_state = 41, .external_lex_state = 2}, - [733] = {.lex_state = 41, .external_lex_state = 2}, - [734] = {.lex_state = 41, .external_lex_state = 2}, - [735] = {.lex_state = 578}, - [736] = {.lex_state = 578}, - [737] = {.lex_state = 578}, - [738] = {.lex_state = 578}, - [739] = {.lex_state = 578}, - [740] = {.lex_state = 578}, - [741] = {.lex_state = 578}, - [742] = {.lex_state = 578}, - [743] = {.lex_state = 578}, - [744] = {.lex_state = 578}, - [745] = {.lex_state = 41, .external_lex_state = 2}, - [746] = {.lex_state = 578}, - [747] = {.lex_state = 578}, - [748] = {.lex_state = 41, .external_lex_state = 2}, - [749] = {.lex_state = 41, .external_lex_state = 2}, - [750] = {.lex_state = 41, .external_lex_state = 2}, - [751] = {.lex_state = 41, .external_lex_state = 2}, - [752] = {.lex_state = 41, .external_lex_state = 2}, - [753] = {.lex_state = 41, .external_lex_state = 2}, - [754] = {.lex_state = 41, .external_lex_state = 2}, - [755] = {.lex_state = 41, .external_lex_state = 2}, - [756] = {.lex_state = 41, .external_lex_state = 2}, - [757] = {.lex_state = 41, .external_lex_state = 2}, - [758] = {.lex_state = 41, .external_lex_state = 2}, - [759] = {.lex_state = 41, .external_lex_state = 2}, - [760] = {.lex_state = 41, .external_lex_state = 2}, - [761] = {.lex_state = 578}, - [762] = {.lex_state = 41, .external_lex_state = 2}, - [763] = {.lex_state = 578}, - [764] = {.lex_state = 578}, - [765] = {.lex_state = 41, .external_lex_state = 2}, - [766] = {.lex_state = 578}, - [767] = {.lex_state = 578}, - [768] = {.lex_state = 41, .external_lex_state = 2}, - [769] = {.lex_state = 578}, - [770] = {.lex_state = 578}, - [771] = {.lex_state = 578}, - [772] = {.lex_state = 578}, - [773] = {.lex_state = 578}, - [774] = {.lex_state = 578}, - [775] = {.lex_state = 578}, - [776] = {.lex_state = 578}, - [777] = {.lex_state = 578}, - [778] = {.lex_state = 578}, - [779] = {.lex_state = 611}, - [780] = {.lex_state = 578}, - [781] = {.lex_state = 578}, - [782] = {.lex_state = 578}, - [783] = {.lex_state = 578}, - [784] = {.lex_state = 578}, - [785] = {.lex_state = 578}, - [786] = {.lex_state = 603}, - [787] = {.lex_state = 578}, - [788] = {.lex_state = 36, .external_lex_state = 2}, - [789] = {.lex_state = 40, .external_lex_state = 2}, - [790] = {.lex_state = 578}, - [791] = {.lex_state = 601}, - [792] = {.lex_state = 578}, - [793] = {.lex_state = 578}, - [794] = {.lex_state = 578}, - [795] = {.lex_state = 605}, - [796] = {.lex_state = 41, .external_lex_state = 2}, - [797] = {.lex_state = 578}, - [798] = {.lex_state = 578}, - [799] = {.lex_state = 578}, - [800] = {.lex_state = 578}, - [801] = {.lex_state = 578}, - [802] = {.lex_state = 578}, - [803] = {.lex_state = 578}, - [804] = {.lex_state = 578}, - [805] = {.lex_state = 578}, - [806] = {.lex_state = 578}, - [807] = {.lex_state = 578}, - [808] = {.lex_state = 578}, - [809] = {.lex_state = 578}, - [810] = {.lex_state = 578}, - [811] = {.lex_state = 41, .external_lex_state = 2}, - [812] = {.lex_state = 41, .external_lex_state = 2}, - [813] = {.lex_state = 41, .external_lex_state = 2}, - [814] = {.lex_state = 41, .external_lex_state = 2}, - [815] = {.lex_state = 41, .external_lex_state = 2}, - [816] = {.lex_state = 41, .external_lex_state = 2}, - [817] = {.lex_state = 41, .external_lex_state = 2}, - [818] = {.lex_state = 41, .external_lex_state = 2}, - [819] = {.lex_state = 41, .external_lex_state = 2}, - [820] = {.lex_state = 41, .external_lex_state = 2}, - [821] = {.lex_state = 41, .external_lex_state = 2}, - [822] = {.lex_state = 41, .external_lex_state = 2}, - [823] = {.lex_state = 41, .external_lex_state = 2}, - [824] = {.lex_state = 578}, - [825] = {.lex_state = 578}, - [826] = {.lex_state = 40, .external_lex_state = 2}, - [827] = {.lex_state = 578}, - [828] = {.lex_state = 578}, - [829] = {.lex_state = 578}, - [830] = {.lex_state = 578}, - [831] = {.lex_state = 578}, - [832] = {.lex_state = 578}, - [833] = {.lex_state = 578}, - [834] = {.lex_state = 578}, - [835] = {.lex_state = 578}, - [836] = {.lex_state = 40, .external_lex_state = 2}, - [837] = {.lex_state = 40, .external_lex_state = 2}, - [838] = {.lex_state = 41, .external_lex_state = 2}, - [839] = {.lex_state = 41, .external_lex_state = 2}, - [840] = {.lex_state = 41, .external_lex_state = 2}, - [841] = {.lex_state = 41, .external_lex_state = 2}, - [842] = {.lex_state = 41, .external_lex_state = 2}, - [843] = {.lex_state = 41, .external_lex_state = 2}, - [844] = {.lex_state = 41, .external_lex_state = 2}, - [845] = {.lex_state = 41, .external_lex_state = 2}, - [846] = {.lex_state = 41, .external_lex_state = 2}, - [847] = {.lex_state = 41, .external_lex_state = 2}, - [848] = {.lex_state = 41, .external_lex_state = 2}, - [849] = {.lex_state = 41, .external_lex_state = 2}, - [850] = {.lex_state = 41, .external_lex_state = 2}, - [851] = {.lex_state = 578}, - [852] = {.lex_state = 578}, - [853] = {.lex_state = 578}, - [854] = {.lex_state = 578}, - [855] = {.lex_state = 578}, - [856] = {.lex_state = 578}, - [857] = {.lex_state = 578}, - [858] = {.lex_state = 578}, - [859] = {.lex_state = 578}, - [860] = {.lex_state = 578}, - [861] = {.lex_state = 578}, - [862] = {.lex_state = 578}, - [863] = {.lex_state = 578}, - [864] = {.lex_state = 578}, - [865] = {.lex_state = 41, .external_lex_state = 2}, - [866] = {.lex_state = 41, .external_lex_state = 2}, - [867] = {.lex_state = 41, .external_lex_state = 2}, - [868] = {.lex_state = 41, .external_lex_state = 2}, - [869] = {.lex_state = 41, .external_lex_state = 2}, - [870] = {.lex_state = 41, .external_lex_state = 2}, - [871] = {.lex_state = 41, .external_lex_state = 2}, - [872] = {.lex_state = 41, .external_lex_state = 2}, - [873] = {.lex_state = 41, .external_lex_state = 2}, - [874] = {.lex_state = 41, .external_lex_state = 2}, - [875] = {.lex_state = 41, .external_lex_state = 2}, - [876] = {.lex_state = 41, .external_lex_state = 2}, - [877] = {.lex_state = 41, .external_lex_state = 2}, - [878] = {.lex_state = 40, .external_lex_state = 2}, - [879] = {.lex_state = 40, .external_lex_state = 2}, - [880] = {.lex_state = 41, .external_lex_state = 2}, - [881] = {.lex_state = 36, .external_lex_state = 2}, - [882] = {.lex_state = 41, .external_lex_state = 2}, - [883] = {.lex_state = 41, .external_lex_state = 2}, - [884] = {.lex_state = 41, .external_lex_state = 2}, - [885] = {.lex_state = 36, .external_lex_state = 2}, - [886] = {.lex_state = 607}, - [887] = {.lex_state = 578}, - [888] = {.lex_state = 578}, - [889] = {.lex_state = 41, .external_lex_state = 2}, - [890] = {.lex_state = 41, .external_lex_state = 2}, - [891] = {.lex_state = 41, .external_lex_state = 2}, - [892] = {.lex_state = 41, .external_lex_state = 2}, - [893] = {.lex_state = 41, .external_lex_state = 2}, - [894] = {.lex_state = 41, .external_lex_state = 2}, - [895] = {.lex_state = 605}, - [896] = {.lex_state = 578}, - [897] = {.lex_state = 578}, - [898] = {.lex_state = 578}, - [899] = {.lex_state = 578}, - [900] = {.lex_state = 578}, - [901] = {.lex_state = 578}, - [902] = {.lex_state = 578}, - [903] = {.lex_state = 578}, - [904] = {.lex_state = 578}, - [905] = {.lex_state = 607}, - [906] = {.lex_state = 578}, - [907] = {.lex_state = 607}, - [908] = {.lex_state = 607}, - [909] = {.lex_state = 578}, - [910] = {.lex_state = 578}, - [911] = {.lex_state = 578}, - [912] = {.lex_state = 36, .external_lex_state = 2}, - [913] = {.lex_state = 578}, - [914] = {.lex_state = 578}, - [915] = {.lex_state = 578}, - [916] = {.lex_state = 578}, - [917] = {.lex_state = 578}, - [918] = {.lex_state = 578}, - [919] = {.lex_state = 578}, - [920] = {.lex_state = 578}, - [921] = {.lex_state = 50, .external_lex_state = 2}, - [922] = {.lex_state = 578}, - [923] = {.lex_state = 578}, - [924] = {.lex_state = 578}, - [925] = {.lex_state = 578}, - [926] = {.lex_state = 578}, - [927] = {.lex_state = 578}, - [928] = {.lex_state = 578}, - [929] = {.lex_state = 578}, - [930] = {.lex_state = 578}, - [931] = {.lex_state = 607}, - [932] = {.lex_state = 578}, - [933] = {.lex_state = 578}, - [934] = {.lex_state = 578}, - [935] = {.lex_state = 578}, - [936] = {.lex_state = 578}, - [937] = {.lex_state = 607}, - [938] = {.lex_state = 578}, - [939] = {.lex_state = 578}, - [940] = {.lex_state = 605}, - [941] = {.lex_state = 607}, - [942] = {.lex_state = 578}, - [943] = {.lex_state = 578}, - [944] = {.lex_state = 578}, - [945] = {.lex_state = 578}, - [946] = {.lex_state = 578}, - [947] = {.lex_state = 578}, - [948] = {.lex_state = 607}, - [949] = {.lex_state = 578}, - [950] = {.lex_state = 578}, - [951] = {.lex_state = 578}, - [952] = {.lex_state = 578}, - [953] = {.lex_state = 578}, - [954] = {.lex_state = 607}, - [955] = {.lex_state = 578}, - [956] = {.lex_state = 578}, - [957] = {.lex_state = 605}, - [958] = {.lex_state = 607}, - [959] = {.lex_state = 607}, - [960] = {.lex_state = 607}, - [961] = {.lex_state = 607}, - [962] = {.lex_state = 50, .external_lex_state = 2}, - [963] = {.lex_state = 50, .external_lex_state = 2}, - [964] = {.lex_state = 36, .external_lex_state = 2}, - [965] = {.lex_state = 36, .external_lex_state = 2}, - [966] = {.lex_state = 36, .external_lex_state = 2}, - [967] = {.lex_state = 607}, - [968] = {.lex_state = 578}, - [969] = {.lex_state = 578}, - [970] = {.lex_state = 607}, - [971] = {.lex_state = 47, .external_lex_state = 2}, - [972] = {.lex_state = 578}, - [973] = {.lex_state = 607}, - [974] = {.lex_state = 578}, - [975] = {.lex_state = 607}, - [976] = {.lex_state = 50, .external_lex_state = 2}, - [977] = {.lex_state = 50, .external_lex_state = 2}, - [978] = {.lex_state = 622, .external_lex_state = 2}, - [979] = {.lex_state = 578}, - [980] = {.lex_state = 578}, - [981] = {.lex_state = 578}, - [982] = {.lex_state = 578}, - [983] = {.lex_state = 578}, - [984] = {.lex_state = 578}, - [985] = {.lex_state = 41, .external_lex_state = 2}, - [986] = {.lex_state = 578}, - [987] = {.lex_state = 41, .external_lex_state = 2}, - [988] = {.lex_state = 41, .external_lex_state = 2}, - [989] = {.lex_state = 578}, - [990] = {.lex_state = 578}, - [991] = {.lex_state = 578}, - [992] = {.lex_state = 578}, - [993] = {.lex_state = 578}, - [994] = {.lex_state = 578}, - [995] = {.lex_state = 578}, - [996] = {.lex_state = 578}, - [997] = {.lex_state = 578}, - [998] = {.lex_state = 578}, - [999] = {.lex_state = 578}, - [1000] = {.lex_state = 578}, - [1001] = {.lex_state = 578}, - [1002] = {.lex_state = 578}, - [1003] = {.lex_state = 578}, - [1004] = {.lex_state = 578}, - [1005] = {.lex_state = 622, .external_lex_state = 2}, - [1006] = {.lex_state = 578}, - [1007] = {.lex_state = 578}, - [1008] = {.lex_state = 578}, - [1009] = {.lex_state = 578}, - [1010] = {.lex_state = 578}, - [1011] = {.lex_state = 578}, - [1012] = {.lex_state = 578}, - [1013] = {.lex_state = 578}, - [1014] = {.lex_state = 578}, - [1015] = {.lex_state = 578}, - [1016] = {.lex_state = 578}, - [1017] = {.lex_state = 578}, - [1018] = {.lex_state = 578}, - [1019] = {.lex_state = 578}, - [1020] = {.lex_state = 578}, - [1021] = {.lex_state = 47, .external_lex_state = 2}, - [1022] = {.lex_state = 578}, - [1023] = {.lex_state = 578}, - [1024] = {.lex_state = 578}, - [1025] = {.lex_state = 607}, - [1026] = {.lex_state = 607}, - [1027] = {.lex_state = 578}, - [1028] = {.lex_state = 607}, - [1029] = {.lex_state = 578}, - [1030] = {.lex_state = 578}, - [1031] = {.lex_state = 578}, - [1032] = {.lex_state = 578}, - [1033] = {.lex_state = 578}, - [1034] = {.lex_state = 578}, - [1035] = {.lex_state = 578}, - [1036] = {.lex_state = 578}, - [1037] = {.lex_state = 578}, - [1038] = {.lex_state = 578}, - [1039] = {.lex_state = 578}, - [1040] = {.lex_state = 578}, - [1041] = {.lex_state = 578}, - [1042] = {.lex_state = 578}, - [1043] = {.lex_state = 609}, - [1044] = {.lex_state = 578}, - [1045] = {.lex_state = 578}, - [1046] = {.lex_state = 578}, - [1047] = {.lex_state = 607}, - [1048] = {.lex_state = 578}, - [1049] = {.lex_state = 607}, - [1050] = {.lex_state = 607}, - [1051] = {.lex_state = 578}, - [1052] = {.lex_state = 578}, - [1053] = {.lex_state = 578}, - [1054] = {.lex_state = 578}, - [1055] = {.lex_state = 578}, - [1056] = {.lex_state = 578}, - [1057] = {.lex_state = 578}, - [1058] = {.lex_state = 578}, - [1059] = {.lex_state = 578}, - [1060] = {.lex_state = 578}, - [1061] = {.lex_state = 578}, - [1062] = {.lex_state = 578}, - [1063] = {.lex_state = 607}, - [1064] = {.lex_state = 578}, - [1065] = {.lex_state = 578}, - [1066] = {.lex_state = 578}, - [1067] = {.lex_state = 578}, - [1068] = {.lex_state = 607}, - [1069] = {.lex_state = 578}, - [1070] = {.lex_state = 578}, - [1071] = {.lex_state = 578}, - [1072] = {.lex_state = 578}, - [1073] = {.lex_state = 578}, - [1074] = {.lex_state = 578}, - [1075] = {.lex_state = 578}, - [1076] = {.lex_state = 578}, - [1077] = {.lex_state = 578}, - [1078] = {.lex_state = 578}, - [1079] = {.lex_state = 578}, - [1080] = {.lex_state = 578}, - [1081] = {.lex_state = 578}, - [1082] = {.lex_state = 578}, - [1083] = {.lex_state = 607}, - [1084] = {.lex_state = 578}, - [1085] = {.lex_state = 578}, - [1086] = {.lex_state = 578}, - [1087] = {.lex_state = 578}, - [1088] = {.lex_state = 578}, - [1089] = {.lex_state = 578}, - [1090] = {.lex_state = 607}, - [1091] = {.lex_state = 578}, - [1092] = {.lex_state = 578}, - [1093] = {.lex_state = 578}, - [1094] = {.lex_state = 578}, - [1095] = {.lex_state = 578}, - [1096] = {.lex_state = 578}, - [1097] = {.lex_state = 578}, - [1098] = {.lex_state = 578}, - [1099] = {.lex_state = 578}, - [1100] = {.lex_state = 578}, - [1101] = {.lex_state = 578}, - [1102] = {.lex_state = 578}, - [1103] = {.lex_state = 578}, - [1104] = {.lex_state = 578}, - [1105] = {.lex_state = 578}, - [1106] = {.lex_state = 578}, - [1107] = {.lex_state = 578}, - [1108] = {.lex_state = 578}, - [1109] = {.lex_state = 41, .external_lex_state = 2}, - [1110] = {.lex_state = 41, .external_lex_state = 2}, - [1111] = {.lex_state = 41, .external_lex_state = 2}, - [1112] = {.lex_state = 609}, - [1113] = {.lex_state = 609}, - [1114] = {.lex_state = 609}, - [1115] = {.lex_state = 578}, - [1116] = {.lex_state = 578}, - [1117] = {.lex_state = 36, .external_lex_state = 2}, - [1118] = {.lex_state = 36, .external_lex_state = 2}, - [1119] = {.lex_state = 578}, - [1120] = {.lex_state = 578}, - [1121] = {.lex_state = 578}, - [1122] = {.lex_state = 611}, - [1123] = {.lex_state = 578}, - [1124] = {.lex_state = 578}, - [1125] = {.lex_state = 47, .external_lex_state = 2}, - [1126] = {.lex_state = 578}, - [1127] = {.lex_state = 578}, - [1128] = {.lex_state = 578}, - [1129] = {.lex_state = 622, .external_lex_state = 2}, - [1130] = {.lex_state = 578}, - [1131] = {.lex_state = 578}, - [1132] = {.lex_state = 578}, - [1133] = {.lex_state = 578}, - [1134] = {.lex_state = 578}, - [1135] = {.lex_state = 578}, - [1136] = {.lex_state = 578}, - [1137] = {.lex_state = 578}, - [1138] = {.lex_state = 578}, - [1139] = {.lex_state = 578}, - [1140] = {.lex_state = 578}, - [1141] = {.lex_state = 578}, - [1142] = {.lex_state = 578}, - [1143] = {.lex_state = 578}, - [1144] = {.lex_state = 578}, - [1145] = {.lex_state = 578}, - [1146] = {.lex_state = 578}, - [1147] = {.lex_state = 578}, - [1148] = {.lex_state = 578}, - [1149] = {.lex_state = 46, .external_lex_state = 2}, - [1150] = {.lex_state = 578}, - [1151] = {.lex_state = 46, .external_lex_state = 2}, - [1152] = {.lex_state = 578}, - [1153] = {.lex_state = 578}, - [1154] = {.lex_state = 578}, - [1155] = {.lex_state = 578}, - [1156] = {.lex_state = 578}, - [1157] = {.lex_state = 578}, - [1158] = {.lex_state = 578}, - [1159] = {.lex_state = 578}, - [1160] = {.lex_state = 578}, - [1161] = {.lex_state = 578}, - [1162] = {.lex_state = 578}, - [1163] = {.lex_state = 609}, - [1164] = {.lex_state = 578}, - [1165] = {.lex_state = 578}, - [1166] = {.lex_state = 578}, - [1167] = {.lex_state = 578}, - [1168] = {.lex_state = 578}, - [1169] = {.lex_state = 578}, - [1170] = {.lex_state = 578}, - [1171] = {.lex_state = 578}, - [1172] = {.lex_state = 609}, - [1173] = {.lex_state = 578}, - [1174] = {.lex_state = 578}, - [1175] = {.lex_state = 578}, - [1176] = {.lex_state = 578}, - [1177] = {.lex_state = 578}, - [1178] = {.lex_state = 578}, - [1179] = {.lex_state = 578}, - [1180] = {.lex_state = 578}, - [1181] = {.lex_state = 578}, - [1182] = {.lex_state = 578}, - [1183] = {.lex_state = 578}, - [1184] = {.lex_state = 578}, - [1185] = {.lex_state = 578}, - [1186] = {.lex_state = 578}, - [1187] = {.lex_state = 578}, - [1188] = {.lex_state = 578}, - [1189] = {.lex_state = 578}, - [1190] = {.lex_state = 578}, - [1191] = {.lex_state = 578}, - [1192] = {.lex_state = 578}, - [1193] = {.lex_state = 578}, - [1194] = {.lex_state = 578}, - [1195] = {.lex_state = 578}, - [1196] = {.lex_state = 578}, - [1197] = {.lex_state = 578}, - [1198] = {.lex_state = 578}, - [1199] = {.lex_state = 578}, - [1200] = {.lex_state = 578}, - [1201] = {.lex_state = 578}, - [1202] = {.lex_state = 578}, - [1203] = {.lex_state = 578}, - [1204] = {.lex_state = 578}, - [1205] = {.lex_state = 607}, - [1206] = {.lex_state = 578}, - [1207] = {.lex_state = 609}, - [1208] = {.lex_state = 578}, - [1209] = {.lex_state = 578}, - [1210] = {.lex_state = 578}, - [1211] = {.lex_state = 578}, - [1212] = {.lex_state = 578}, - [1213] = {.lex_state = 578}, - [1214] = {.lex_state = 578}, - [1215] = {.lex_state = 578}, - [1216] = {.lex_state = 578}, - [1217] = {.lex_state = 578}, - [1218] = {.lex_state = 578}, - [1219] = {.lex_state = 578}, - [1220] = {.lex_state = 578}, - [1221] = {.lex_state = 578}, - [1222] = {.lex_state = 578}, - [1223] = {.lex_state = 578}, - [1224] = {.lex_state = 578}, - [1225] = {.lex_state = 578}, - [1226] = {.lex_state = 578}, - [1227] = {.lex_state = 578}, - [1228] = {.lex_state = 578}, - [1229] = {.lex_state = 578}, - [1230] = {.lex_state = 50, .external_lex_state = 2}, - [1231] = {.lex_state = 578}, - [1232] = {.lex_state = 50, .external_lex_state = 2}, - [1233] = {.lex_state = 578}, - [1234] = {.lex_state = 578}, - [1235] = {.lex_state = 578}, - [1236] = {.lex_state = 578}, - [1237] = {.lex_state = 46, .external_lex_state = 2}, - [1238] = {.lex_state = 578}, - [1239] = {.lex_state = 609}, - [1240] = {.lex_state = 50, .external_lex_state = 2}, - [1241] = {.lex_state = 578}, - [1242] = {.lex_state = 609}, - [1243] = {.lex_state = 578}, - [1244] = {.lex_state = 578}, - [1245] = {.lex_state = 578}, - [1246] = {.lex_state = 578}, - [1247] = {.lex_state = 578}, - [1248] = {.lex_state = 578}, - [1249] = {.lex_state = 578}, - [1250] = {.lex_state = 578}, - [1251] = {.lex_state = 578}, - [1252] = {.lex_state = 31, .external_lex_state = 2}, - [1253] = {.lex_state = 578}, - [1254] = {.lex_state = 578}, - [1255] = {.lex_state = 578}, - [1256] = {.lex_state = 50, .external_lex_state = 2}, - [1257] = {.lex_state = 50, .external_lex_state = 2}, - [1258] = {.lex_state = 50, .external_lex_state = 2}, - [1259] = {.lex_state = 50, .external_lex_state = 2}, - [1260] = {.lex_state = 46, .external_lex_state = 2}, - [1261] = {.lex_state = 578}, - [1262] = {.lex_state = 578}, - [1263] = {.lex_state = 578}, - [1264] = {.lex_state = 578}, - [1265] = {.lex_state = 578}, - [1266] = {.lex_state = 578}, - [1267] = {.lex_state = 578}, - [1268] = {.lex_state = 578}, - [1269] = {.lex_state = 578}, - [1270] = {.lex_state = 578}, - [1271] = {.lex_state = 578}, - [1272] = {.lex_state = 578}, - [1273] = {.lex_state = 578}, - [1274] = {.lex_state = 578}, - [1275] = {.lex_state = 622, .external_lex_state = 2}, - [1276] = {.lex_state = 578}, - [1277] = {.lex_state = 578}, - [1278] = {.lex_state = 578}, - [1279] = {.lex_state = 578}, - [1280] = {.lex_state = 578}, - [1281] = {.lex_state = 578}, - [1282] = {.lex_state = 578}, - [1283] = {.lex_state = 578}, - [1284] = {.lex_state = 578}, - [1285] = {.lex_state = 578}, - [1286] = {.lex_state = 578}, - [1287] = {.lex_state = 45, .external_lex_state = 2}, - [1288] = {.lex_state = 578}, - [1289] = {.lex_state = 578}, - [1290] = {.lex_state = 578}, - [1291] = {.lex_state = 45, .external_lex_state = 2}, - [1292] = {.lex_state = 578}, - [1293] = {.lex_state = 578}, - [1294] = {.lex_state = 578}, - [1295] = {.lex_state = 578}, - [1296] = {.lex_state = 578}, - [1297] = {.lex_state = 578}, - [1298] = {.lex_state = 578}, - [1299] = {.lex_state = 578}, - [1300] = {.lex_state = 578}, - [1301] = {.lex_state = 578}, - [1302] = {.lex_state = 578}, - [1303] = {.lex_state = 578}, - [1304] = {.lex_state = 578}, - [1305] = {.lex_state = 578}, - [1306] = {.lex_state = 578}, - [1307] = {.lex_state = 578}, - [1308] = {.lex_state = 578}, - [1309] = {.lex_state = 578}, - [1310] = {.lex_state = 578}, - [1311] = {.lex_state = 578}, - [1312] = {.lex_state = 578}, - [1313] = {.lex_state = 578}, - [1314] = {.lex_state = 578}, - [1315] = {.lex_state = 578}, - [1316] = {.lex_state = 578}, - [1317] = {.lex_state = 578}, - [1318] = {.lex_state = 578}, - [1319] = {.lex_state = 578}, - [1320] = {.lex_state = 578}, - [1321] = {.lex_state = 578}, - [1322] = {.lex_state = 578}, - [1323] = {.lex_state = 578}, - [1324] = {.lex_state = 578}, - [1325] = {.lex_state = 578}, - [1326] = {.lex_state = 578}, - [1327] = {.lex_state = 578}, - [1328] = {.lex_state = 622, .external_lex_state = 2}, - [1329] = {.lex_state = 45, .external_lex_state = 2}, - [1330] = {.lex_state = 578}, - [1331] = {.lex_state = 45, .external_lex_state = 2}, - [1332] = {.lex_state = 578}, - [1333] = {.lex_state = 578}, - [1334] = {.lex_state = 578}, - [1335] = {.lex_state = 578}, - [1336] = {.lex_state = 578}, - [1337] = {.lex_state = 578}, - [1338] = {.lex_state = 622, .external_lex_state = 2}, - [1339] = {.lex_state = 578}, - [1340] = {.lex_state = 578}, - [1341] = {.lex_state = 578}, - [1342] = {.lex_state = 578}, - [1343] = {.lex_state = 578}, - [1344] = {.lex_state = 578}, - [1345] = {.lex_state = 578}, - [1346] = {.lex_state = 174, .external_lex_state = 2}, - [1347] = {.lex_state = 46, .external_lex_state = 2}, - [1348] = {.lex_state = 175, .external_lex_state = 2}, - [1349] = {.lex_state = 175, .external_lex_state = 2}, - [1350] = {.lex_state = 29, .external_lex_state = 2}, - [1351] = {.lex_state = 45, .external_lex_state = 2}, - [1352] = {.lex_state = 45, .external_lex_state = 2}, - [1353] = {.lex_state = 45, .external_lex_state = 2}, - [1354] = {.lex_state = 29, .external_lex_state = 2}, - [1355] = {.lex_state = 622, .external_lex_state = 2}, - [1356] = {.lex_state = 29, .external_lex_state = 2}, - [1357] = {.lex_state = 29, .external_lex_state = 2}, - [1358] = {.lex_state = 629, .external_lex_state = 2}, - [1359] = {.lex_state = 622, .external_lex_state = 2}, - [1360] = {.lex_state = 46, .external_lex_state = 2}, - [1361] = {.lex_state = 46, .external_lex_state = 2}, - [1362] = {.lex_state = 148, .external_lex_state = 2}, - [1363] = {.lex_state = 622, .external_lex_state = 2}, - [1364] = {.lex_state = 622, .external_lex_state = 2}, - [1365] = {.lex_state = 148, .external_lex_state = 2}, - [1366] = {.lex_state = 29, .external_lex_state = 2}, - [1367] = {.lex_state = 622, .external_lex_state = 2}, - [1368] = {.lex_state = 622, .external_lex_state = 2}, - [1369] = {.lex_state = 622, .external_lex_state = 2}, - [1370] = {.lex_state = 622, .external_lex_state = 2}, - [1371] = {.lex_state = 622, .external_lex_state = 2}, - [1372] = {.lex_state = 46, .external_lex_state = 2}, - [1373] = {.lex_state = 148, .external_lex_state = 2}, - [1374] = {.lex_state = 148, .external_lex_state = 2}, - [1375] = {.lex_state = 148, .external_lex_state = 2}, - [1376] = {.lex_state = 622, .external_lex_state = 2}, - [1377] = {.lex_state = 622, .external_lex_state = 2}, - [1378] = {.lex_state = 622, .external_lex_state = 2}, - [1379] = {.lex_state = 582}, - [1380] = {.lex_state = 622, .external_lex_state = 2}, - [1381] = {.lex_state = 29, .external_lex_state = 2}, - [1382] = {.lex_state = 622, .external_lex_state = 2}, - [1383] = {.lex_state = 622, .external_lex_state = 2}, - [1384] = {.lex_state = 622, .external_lex_state = 2}, - [1385] = {.lex_state = 622, .external_lex_state = 2}, - [1386] = {.lex_state = 582}, - [1387] = {.lex_state = 584}, - [1388] = {.lex_state = 584}, - [1389] = {.lex_state = 622, .external_lex_state = 2}, - [1390] = {.lex_state = 34, .external_lex_state = 2}, - [1391] = {.lex_state = 622, .external_lex_state = 2}, - [1392] = {.lex_state = 34, .external_lex_state = 2}, - [1393] = {.lex_state = 622, .external_lex_state = 2}, - [1394] = {.lex_state = 47, .external_lex_state = 2}, - [1395] = {.lex_state = 33, .external_lex_state = 2}, - [1396] = {.lex_state = 584}, - [1397] = {.lex_state = 584}, - [1398] = {.lex_state = 33, .external_lex_state = 2}, - [1399] = {.lex_state = 622, .external_lex_state = 2}, - [1400] = {.lex_state = 586}, - [1401] = {.lex_state = 590}, - [1402] = {.lex_state = 590}, - [1403] = {.lex_state = 592}, - [1404] = {.lex_state = 33, .external_lex_state = 2}, - [1405] = {.lex_state = 34, .external_lex_state = 2}, - [1406] = {.lex_state = 594}, - [1407] = {.lex_state = 33, .external_lex_state = 2}, - [1408] = {.lex_state = 586}, - [1409] = {.lex_state = 33, .external_lex_state = 2}, - [1410] = {.lex_state = 592}, - [1411] = {.lex_state = 33, .external_lex_state = 2}, - [1412] = {.lex_state = 47, .external_lex_state = 2}, - [1413] = {.lex_state = 592}, - [1414] = {.lex_state = 588}, - [1415] = {.lex_state = 594}, - [1416] = {.lex_state = 34, .external_lex_state = 2}, - [1417] = {.lex_state = 158, .external_lex_state = 2}, - [1418] = {.lex_state = 47, .external_lex_state = 2}, - [1419] = {.lex_state = 596}, - [1420] = {.lex_state = 158, .external_lex_state = 2}, - [1421] = {.lex_state = 594}, - [1422] = {.lex_state = 592}, - [1423] = {.lex_state = 594}, - [1424] = {.lex_state = 47, .external_lex_state = 2}, - [1425] = {.lex_state = 594}, - [1426] = {.lex_state = 596}, - [1427] = {.lex_state = 588}, - [1428] = {.lex_state = 594}, - [1429] = {.lex_state = 598}, - [1430] = {.lex_state = 594}, - [1431] = {.lex_state = 598}, - [1432] = {.lex_state = 594}, - [1433] = {.lex_state = 600}, - [1434] = {.lex_state = 600}, - [1435] = {.lex_state = 600}, - [1436] = {.lex_state = 600}, - [1437] = {.lex_state = 600}, - [1438] = {.lex_state = 598}, - [1439] = {.lex_state = 598}, - [1440] = {.lex_state = 602}, - [1441] = {.lex_state = 600}, - [1442] = {.lex_state = 604}, - [1443] = {.lex_state = 600}, - [1444] = {.lex_state = 600}, - [1445] = {.lex_state = 625, .external_lex_state = 2}, - [1446] = {.lex_state = 578}, - [1447] = {.lex_state = 625, .external_lex_state = 2}, - [1448] = {.lex_state = 600}, - [1449] = {.lex_state = 600}, - [1450] = {.lex_state = 578}, - [1451] = {.lex_state = 606}, - [1452] = {.lex_state = 606}, - [1453] = {.lex_state = 37, .external_lex_state = 2}, - [1454] = {.lex_state = 37, .external_lex_state = 2}, - [1455] = {.lex_state = 625, .external_lex_state = 2}, - [1456] = {.lex_state = 604}, - [1457] = {.lex_state = 37, .external_lex_state = 2}, - [1458] = {.lex_state = 625, .external_lex_state = 2}, - [1459] = {.lex_state = 602}, - [1460] = {.lex_state = 608}, - [1461] = {.lex_state = 608}, - [1462] = {.lex_state = 608}, - [1463] = {.lex_state = 608}, - [1464] = {.lex_state = 149, .external_lex_state = 2}, - [1465] = {.lex_state = 608}, - [1466] = {.lex_state = 149, .external_lex_state = 2}, - [1467] = {.lex_state = 149, .external_lex_state = 2}, - [1468] = {.lex_state = 149, .external_lex_state = 2}, - [1469] = {.lex_state = 149, .external_lex_state = 2}, - [1470] = {.lex_state = 608}, - [1471] = {.lex_state = 608}, - [1472] = {.lex_state = 608}, - [1473] = {.lex_state = 149, .external_lex_state = 2}, - [1474] = {.lex_state = 149, .external_lex_state = 2}, - [1475] = {.lex_state = 149, .external_lex_state = 2}, - [1476] = {.lex_state = 606}, - [1477] = {.lex_state = 608}, - [1478] = {.lex_state = 149, .external_lex_state = 2}, - [1479] = {.lex_state = 608}, - [1480] = {.lex_state = 149, .external_lex_state = 2}, - [1481] = {.lex_state = 606}, - [1482] = {.lex_state = 608}, - [1483] = {.lex_state = 149, .external_lex_state = 2}, - [1484] = {.lex_state = 149, .external_lex_state = 2}, - [1485] = {.lex_state = 149, .external_lex_state = 2}, - [1486] = {.lex_state = 608}, - [1487] = {.lex_state = 608}, - [1488] = {.lex_state = 610}, - [1489] = {.lex_state = 149, .external_lex_state = 2}, - [1490] = {.lex_state = 608}, - [1491] = {.lex_state = 149, .external_lex_state = 2}, - [1492] = {.lex_state = 608}, - [1493] = {.lex_state = 610}, - [1494] = {.lex_state = 608}, - [1495] = {.lex_state = 608}, - [1496] = {.lex_state = 149, .external_lex_state = 2}, - [1497] = {.lex_state = 608}, - [1498] = {.lex_state = 40, .external_lex_state = 2}, - [1499] = {.lex_state = 608}, - [1500] = {.lex_state = 608}, - [1501] = {.lex_state = 608}, - [1502] = {.lex_state = 608}, - [1503] = {.lex_state = 608}, - [1504] = {.lex_state = 608}, - [1505] = {.lex_state = 608}, - [1506] = {.lex_state = 608}, - [1507] = {.lex_state = 608}, - [1508] = {.lex_state = 610}, - [1509] = {.lex_state = 89}, - [1510] = {.lex_state = 578}, - [1511] = {.lex_state = 610}, - [1512] = {.lex_state = 610}, - [1513] = {.lex_state = 89}, - [1514] = {.lex_state = 89}, - [1515] = {.lex_state = 40, .external_lex_state = 2}, - [1516] = {.lex_state = 89}, - [1517] = {.lex_state = 89}, - [1518] = {.lex_state = 610}, - [1519] = {.lex_state = 6}, - [1520] = {.lex_state = 608}, - [1521] = {.lex_state = 89}, - [1522] = {.lex_state = 89}, - [1523] = {.lex_state = 89}, - [1524] = {.lex_state = 89}, - [1525] = {.lex_state = 179, .external_lex_state = 2}, - [1526] = {.lex_state = 89}, - [1527] = {.lex_state = 89}, - [1528] = {.lex_state = 89}, - [1529] = {.lex_state = 89}, - [1530] = {.lex_state = 37, .external_lex_state = 2}, - [1531] = {.lex_state = 89}, - [1532] = {.lex_state = 89}, - [1533] = {.lex_state = 89}, - [1534] = {.lex_state = 89}, - [1535] = {.lex_state = 89}, - [1536] = {.lex_state = 89}, - [1537] = {.lex_state = 37, .external_lex_state = 2}, - [1538] = {.lex_state = 89}, - [1539] = {.lex_state = 89}, - [1540] = {.lex_state = 89}, - [1541] = {.lex_state = 89}, - [1542] = {.lex_state = 89}, - [1543] = {.lex_state = 89}, - [1544] = {.lex_state = 89}, - [1545] = {.lex_state = 89}, - [1546] = {.lex_state = 89}, - [1547] = {.lex_state = 89}, - [1548] = {.lex_state = 89}, - [1549] = {.lex_state = 89}, - [1550] = {.lex_state = 37, .external_lex_state = 2}, - [1551] = {.lex_state = 89}, - [1552] = {.lex_state = 89}, - [1553] = {.lex_state = 89}, - [1554] = {.lex_state = 89}, - [1555] = {.lex_state = 89}, - [1556] = {.lex_state = 89}, - [1557] = {.lex_state = 89}, - [1558] = {.lex_state = 89}, - [1559] = {.lex_state = 89}, - [1560] = {.lex_state = 89}, - [1561] = {.lex_state = 89}, - [1562] = {.lex_state = 89}, - [1563] = {.lex_state = 37, .external_lex_state = 2}, - [1564] = {.lex_state = 578}, - [1565] = {.lex_state = 578}, - [1566] = {.lex_state = 578}, - [1567] = {.lex_state = 578}, - [1568] = {.lex_state = 578}, - [1569] = {.lex_state = 578}, - [1570] = {.lex_state = 578}, - [1571] = {.lex_state = 578}, - [1572] = {.lex_state = 578}, - [1573] = {.lex_state = 578}, - [1574] = {.lex_state = 578}, - [1575] = {.lex_state = 578}, - [1576] = {.lex_state = 89}, - [1577] = {.lex_state = 37, .external_lex_state = 2}, - [1578] = {.lex_state = 578}, - [1579] = {.lex_state = 578}, - [1580] = {.lex_state = 578}, - [1581] = {.lex_state = 578}, - [1582] = {.lex_state = 578}, - [1583] = {.lex_state = 578}, - [1584] = {.lex_state = 578}, - [1585] = {.lex_state = 578}, - [1586] = {.lex_state = 578}, - [1587] = {.lex_state = 578}, - [1588] = {.lex_state = 578}, - [1589] = {.lex_state = 578}, - [1590] = {.lex_state = 578}, - [1591] = {.lex_state = 578}, - [1592] = {.lex_state = 578}, - [1593] = {.lex_state = 578}, - [1594] = {.lex_state = 578}, - [1595] = {.lex_state = 578}, - [1596] = {.lex_state = 578}, - [1597] = {.lex_state = 578}, - [1598] = {.lex_state = 578}, - [1599] = {.lex_state = 578}, - [1600] = {.lex_state = 578}, - [1601] = {.lex_state = 578}, - [1602] = {.lex_state = 578}, - [1603] = {.lex_state = 578}, - [1604] = {.lex_state = 89}, - [1605] = {.lex_state = 578}, - [1606] = {.lex_state = 578}, - [1607] = {.lex_state = 578}, - [1608] = {.lex_state = 578}, - [1609] = {.lex_state = 578}, - [1610] = {.lex_state = 578}, - [1611] = {.lex_state = 578}, - [1612] = {.lex_state = 578}, - [1613] = {.lex_state = 578}, - [1614] = {.lex_state = 578}, - [1615] = {.lex_state = 578}, - [1616] = {.lex_state = 578}, - [1617] = {.lex_state = 578}, - [1618] = {.lex_state = 578}, - [1619] = {.lex_state = 578}, - [1620] = {.lex_state = 578}, - [1621] = {.lex_state = 578}, - [1622] = {.lex_state = 578}, - [1623] = {.lex_state = 578}, - [1624] = {.lex_state = 578}, - [1625] = {.lex_state = 578}, - [1626] = {.lex_state = 578}, - [1627] = {.lex_state = 578}, - [1628] = {.lex_state = 578}, - [1629] = {.lex_state = 578}, - [1630] = {.lex_state = 578}, - [1631] = {.lex_state = 578}, - [1632] = {.lex_state = 578}, - [1633] = {.lex_state = 578}, - [1634] = {.lex_state = 578}, - [1635] = {.lex_state = 578}, - [1636] = {.lex_state = 578}, - [1637] = {.lex_state = 578}, - [1638] = {.lex_state = 578}, - [1639] = {.lex_state = 578}, - [1640] = {.lex_state = 578}, - [1641] = {.lex_state = 578}, - [1642] = {.lex_state = 578}, - [1643] = {.lex_state = 578}, - [1644] = {.lex_state = 578}, - [1645] = {.lex_state = 578}, - [1646] = {.lex_state = 578}, - [1647] = {.lex_state = 578}, - [1648] = {.lex_state = 578}, - [1649] = {.lex_state = 578}, - [1650] = {.lex_state = 578}, - [1651] = {.lex_state = 578}, - [1652] = {.lex_state = 578}, - [1653] = {.lex_state = 578}, - [1654] = {.lex_state = 578}, - [1655] = {.lex_state = 578}, - [1656] = {.lex_state = 578}, - [1657] = {.lex_state = 578}, - [1658] = {.lex_state = 578}, - [1659] = {.lex_state = 578}, - [1660] = {.lex_state = 578}, - [1661] = {.lex_state = 578}, - [1662] = {.lex_state = 89}, - [1663] = {.lex_state = 89}, - [1664] = {.lex_state = 89}, - [1665] = {.lex_state = 578}, - [1666] = {.lex_state = 578}, - [1667] = {.lex_state = 578}, - [1668] = {.lex_state = 578}, - [1669] = {.lex_state = 578}, - [1670] = {.lex_state = 578}, - [1671] = {.lex_state = 578}, - [1672] = {.lex_state = 578}, - [1673] = {.lex_state = 578}, - [1674] = {.lex_state = 578}, - [1675] = {.lex_state = 578}, - [1676] = {.lex_state = 578}, - [1677] = {.lex_state = 37, .external_lex_state = 2}, - [1678] = {.lex_state = 578}, - [1679] = {.lex_state = 7}, - [1680] = {.lex_state = 179, .external_lex_state = 2}, - [1681] = {.lex_state = 578}, - [1682] = {.lex_state = 578}, - [1683] = {.lex_state = 578}, - [1684] = {.lex_state = 578}, - [1685] = {.lex_state = 578}, - [1686] = {.lex_state = 578}, - [1687] = {.lex_state = 578}, - [1688] = {.lex_state = 89}, - [1689] = {.lex_state = 578}, - [1690] = {.lex_state = 578}, - [1691] = {.lex_state = 578}, - [1692] = {.lex_state = 578}, - [1693] = {.lex_state = 578}, - [1694] = {.lex_state = 179, .external_lex_state = 2}, - [1695] = {.lex_state = 132}, - [1696] = {.lex_state = 578}, - [1697] = {.lex_state = 7}, - [1698] = {.lex_state = 37, .external_lex_state = 2}, - [1699] = {.lex_state = 37, .external_lex_state = 2}, - [1700] = {.lex_state = 37, .external_lex_state = 2}, - [1701] = {.lex_state = 37, .external_lex_state = 2}, - [1702] = {.lex_state = 37, .external_lex_state = 2}, - [1703] = {.lex_state = 37, .external_lex_state = 2}, - [1704] = {.lex_state = 8}, - [1705] = {.lex_state = 132}, - [1706] = {.lex_state = 10}, - [1707] = {.lex_state = 133}, - [1708] = {.lex_state = 133}, - [1709] = {.lex_state = 37, .external_lex_state = 2}, - [1710] = {.lex_state = 37, .external_lex_state = 2}, - [1711] = {.lex_state = 132}, - [1712] = {.lex_state = 37, .external_lex_state = 2}, - [1713] = {.lex_state = 37, .external_lex_state = 2}, - [1714] = {.lex_state = 37, .external_lex_state = 2}, - [1715] = {.lex_state = 132}, - [1716] = {.lex_state = 178, .external_lex_state = 2}, - [1717] = {.lex_state = 132}, - [1718] = {.lex_state = 12}, - [1719] = {.lex_state = 89}, - [1720] = {.lex_state = 136}, - [1721] = {.lex_state = 178, .external_lex_state = 2}, - [1722] = {.lex_state = 11}, - [1723] = {.lex_state = 132}, - [1724] = {.lex_state = 178, .external_lex_state = 2}, - [1725] = {.lex_state = 11}, - [1726] = {.lex_state = 89}, - [1727] = {.lex_state = 628, .external_lex_state = 2}, - [1728] = {.lex_state = 132}, - [1729] = {.lex_state = 132}, - [1730] = {.lex_state = 132}, - [1731] = {.lex_state = 89}, - [1732] = {.lex_state = 89}, - [1733] = {.lex_state = 572, .external_lex_state = 2}, - [1734] = {.lex_state = 628, .external_lex_state = 2}, - [1735] = {.lex_state = 628, .external_lex_state = 2}, - [1736] = {.lex_state = 134}, - [1737] = {.lex_state = 89}, - [1738] = {.lex_state = 628, .external_lex_state = 2}, - [1739] = {.lex_state = 138}, - [1740] = {.lex_state = 178, .external_lex_state = 2}, - [1741] = {.lex_state = 628, .external_lex_state = 2}, - [1742] = {.lex_state = 628, .external_lex_state = 2}, - [1743] = {.lex_state = 628, .external_lex_state = 2}, - [1744] = {.lex_state = 167, .external_lex_state = 2}, - [1745] = {.lex_state = 89}, - [1746] = {.lex_state = 89}, - [1747] = {.lex_state = 9}, - [1748] = {.lex_state = 170, .external_lex_state = 2}, - [1749] = {.lex_state = 572, .external_lex_state = 2}, - [1750] = {.lex_state = 572, .external_lex_state = 2}, - [1751] = {.lex_state = 572, .external_lex_state = 2}, - [1752] = {.lex_state = 572, .external_lex_state = 2}, - [1753] = {.lex_state = 178, .external_lex_state = 2}, - [1754] = {.lex_state = 572, .external_lex_state = 2}, - [1755] = {.lex_state = 178, .external_lex_state = 2}, - [1756] = {.lex_state = 178, .external_lex_state = 2}, - [1757] = {.lex_state = 12}, - [1758] = {.lex_state = 89}, - [1759] = {.lex_state = 12}, - [1760] = {.lex_state = 12}, - [1761] = {.lex_state = 137}, - [1762] = {.lex_state = 137}, - [1763] = {.lex_state = 37, .external_lex_state = 2}, - [1764] = {.lex_state = 37, .external_lex_state = 2}, - [1765] = {.lex_state = 13}, - [1766] = {.lex_state = 178, .external_lex_state = 2}, - [1767] = {.lex_state = 178, .external_lex_state = 2}, - [1768] = {.lex_state = 178, .external_lex_state = 2}, - [1769] = {.lex_state = 89}, - [1770] = {.lex_state = 37, .external_lex_state = 2}, - [1771] = {.lex_state = 178, .external_lex_state = 2}, - [1772] = {.lex_state = 572, .external_lex_state = 2}, - [1773] = {.lex_state = 178, .external_lex_state = 2}, - [1774] = {.lex_state = 628, .external_lex_state = 2}, - [1775] = {.lex_state = 178, .external_lex_state = 2}, - [1776] = {.lex_state = 572, .external_lex_state = 2}, - [1777] = {.lex_state = 138}, - [1778] = {.lex_state = 37, .external_lex_state = 2}, - [1779] = {.lex_state = 37, .external_lex_state = 2}, - [1780] = {.lex_state = 572, .external_lex_state = 2}, - [1781] = {.lex_state = 89}, - [1782] = {.lex_state = 89}, - [1783] = {.lex_state = 89}, - [1784] = {.lex_state = 89}, - [1785] = {.lex_state = 37, .external_lex_state = 2}, - [1786] = {.lex_state = 572, .external_lex_state = 2}, - [1787] = {.lex_state = 572, .external_lex_state = 2}, - [1788] = {.lex_state = 89}, - [1789] = {.lex_state = 89}, - [1790] = {.lex_state = 37, .external_lex_state = 2}, - [1791] = {.lex_state = 89}, - [1792] = {.lex_state = 89}, - [1793] = {.lex_state = 89}, - [1794] = {.lex_state = 89}, - [1795] = {.lex_state = 627, .external_lex_state = 2}, - [1796] = {.lex_state = 138}, - [1797] = {.lex_state = 89}, - [1798] = {.lex_state = 138}, - [1799] = {.lex_state = 37, .external_lex_state = 2}, - [1800] = {.lex_state = 572, .external_lex_state = 2}, - [1801] = {.lex_state = 14}, - [1802] = {.lex_state = 572, .external_lex_state = 2}, - [1803] = {.lex_state = 14}, - [1804] = {.lex_state = 139}, - [1805] = {.lex_state = 135}, - [1806] = {.lex_state = 572, .external_lex_state = 2}, - [1807] = {.lex_state = 89}, - [1808] = {.lex_state = 89}, - [1809] = {.lex_state = 37, .external_lex_state = 2}, - [1810] = {.lex_state = 89}, - [1811] = {.lex_state = 89}, - [1812] = {.lex_state = 628, .external_lex_state = 2}, - [1813] = {.lex_state = 628, .external_lex_state = 2}, - [1814] = {.lex_state = 89}, - [1815] = {.lex_state = 89}, - [1816] = {.lex_state = 573, .external_lex_state = 2}, - [1817] = {.lex_state = 37, .external_lex_state = 2}, - [1818] = {.lex_state = 37, .external_lex_state = 2}, - [1819] = {.lex_state = 37, .external_lex_state = 2}, - [1820] = {.lex_state = 37, .external_lex_state = 2}, - [1821] = {.lex_state = 37, .external_lex_state = 2}, - [1822] = {.lex_state = 37, .external_lex_state = 2}, - [1823] = {.lex_state = 169, .external_lex_state = 2}, - [1824] = {.lex_state = 169, .external_lex_state = 2}, - [1825] = {.lex_state = 628, .external_lex_state = 2}, - [1826] = {.lex_state = 15}, - [1827] = {.lex_state = 15}, - [1828] = {.lex_state = 89}, - [1829] = {.lex_state = 15}, - [1830] = {.lex_state = 578}, - [1831] = {.lex_state = 89}, - [1832] = {.lex_state = 627, .external_lex_state = 2}, - [1833] = {.lex_state = 628, .external_lex_state = 2}, - [1834] = {.lex_state = 15}, - [1835] = {.lex_state = 15}, - [1836] = {.lex_state = 140}, - [1837] = {.lex_state = 573, .external_lex_state = 2}, - [1838] = {.lex_state = 89}, - [1839] = {.lex_state = 140}, - [1840] = {.lex_state = 171, .external_lex_state = 2}, - [1841] = {.lex_state = 171, .external_lex_state = 2}, - [1842] = {.lex_state = 171, .external_lex_state = 2}, - [1843] = {.lex_state = 171, .external_lex_state = 2}, - [1844] = {.lex_state = 628, .external_lex_state = 2}, - [1845] = {.lex_state = 625, .external_lex_state = 2}, - [1846] = {.lex_state = 89}, - [1847] = {.lex_state = 141}, - [1848] = {.lex_state = 141}, - [1849] = {.lex_state = 141}, - [1850] = {.lex_state = 141}, - [1851] = {.lex_state = 89}, - [1852] = {.lex_state = 625, .external_lex_state = 2}, - [1853] = {.lex_state = 176, .external_lex_state = 2}, - [1854] = {.lex_state = 625, .external_lex_state = 2}, - [1855] = {.lex_state = 141}, - [1856] = {.lex_state = 625, .external_lex_state = 2}, - [1857] = {.lex_state = 628, .external_lex_state = 2}, - [1858] = {.lex_state = 625, .external_lex_state = 2}, - [1859] = {.lex_state = 1182}, - [1860] = {.lex_state = 625, .external_lex_state = 2}, - [1861] = {.lex_state = 625, .external_lex_state = 2}, - [1862] = {.lex_state = 625, .external_lex_state = 2}, - [1863] = {.lex_state = 89}, - [1864] = {.lex_state = 17}, - [1865] = {.lex_state = 625, .external_lex_state = 2}, - [1866] = {.lex_state = 625, .external_lex_state = 2}, - [1867] = {.lex_state = 628, .external_lex_state = 2}, - [1868] = {.lex_state = 628, .external_lex_state = 2}, - [1869] = {.lex_state = 625, .external_lex_state = 2}, - [1870] = {.lex_state = 625, .external_lex_state = 2}, - [1871] = {.lex_state = 625, .external_lex_state = 2}, - [1872] = {.lex_state = 625, .external_lex_state = 2}, - [1873] = {.lex_state = 625, .external_lex_state = 2}, - [1874] = {.lex_state = 625, .external_lex_state = 2}, - [1875] = {.lex_state = 578}, - [1876] = {.lex_state = 267}, - [1877] = {.lex_state = 89}, - [1878] = {.lex_state = 1180}, - [1879] = {.lex_state = 16}, - [1880] = {.lex_state = 625, .external_lex_state = 2}, - [1881] = {.lex_state = 625, .external_lex_state = 2}, - [1882] = {.lex_state = 127, .external_lex_state = 2}, - [1883] = {.lex_state = 163, .external_lex_state = 2}, - [1884] = {.lex_state = 625, .external_lex_state = 2}, - [1885] = {.lex_state = 625, .external_lex_state = 2}, - [1886] = {.lex_state = 625, .external_lex_state = 2}, - [1887] = {.lex_state = 625, .external_lex_state = 2}, - [1888] = {.lex_state = 163, .external_lex_state = 2}, - [1889] = {.lex_state = 625, .external_lex_state = 2}, - [1890] = {.lex_state = 625, .external_lex_state = 2}, - [1891] = {.lex_state = 625, .external_lex_state = 2}, - [1892] = {.lex_state = 143}, - [1893] = {.lex_state = 1181}, - [1894] = {.lex_state = 163, .external_lex_state = 2}, - [1895] = {.lex_state = 142}, - [1896] = {.lex_state = 625, .external_lex_state = 2}, - [1897] = {.lex_state = 177, .external_lex_state = 2}, - [1898] = {.lex_state = 625, .external_lex_state = 2}, - [1899] = {.lex_state = 18}, - [1900] = {.lex_state = 177, .external_lex_state = 2}, - [1901] = {.lex_state = 163, .external_lex_state = 2}, - [1902] = {.lex_state = 1185}, - [1903] = {.lex_state = 267}, - [1904] = {.lex_state = 18}, - [1905] = {.lex_state = 1183}, - [1906] = {.lex_state = 625, .external_lex_state = 2}, - [1907] = {.lex_state = 625, .external_lex_state = 2}, - [1908] = {.lex_state = 625, .external_lex_state = 2}, - [1909] = {.lex_state = 163, .external_lex_state = 2}, - [1910] = {.lex_state = 625, .external_lex_state = 2}, - [1911] = {.lex_state = 163, .external_lex_state = 2}, - [1912] = {.lex_state = 1183}, - [1913] = {.lex_state = 625, .external_lex_state = 2}, - [1914] = {.lex_state = 625, .external_lex_state = 2}, - [1915] = {.lex_state = 625, .external_lex_state = 2}, - [1916] = {.lex_state = 163, .external_lex_state = 2}, - [1917] = {.lex_state = 144}, - [1918] = {.lex_state = 19}, - [1919] = {.lex_state = 19}, - [1920] = {.lex_state = 19}, - [1921] = {.lex_state = 267}, - [1922] = {.lex_state = 267}, - [1923] = {.lex_state = 267}, - [1924] = {.lex_state = 19}, - [1925] = {.lex_state = 19}, - [1926] = {.lex_state = 267}, - [1927] = {.lex_state = 19}, - [1928] = {.lex_state = 19}, - [1929] = {.lex_state = 144}, - [1930] = {.lex_state = 267}, - [1931] = {.lex_state = 267}, - [1932] = {.lex_state = 19}, - [1933] = {.lex_state = 19}, - [1934] = {.lex_state = 89}, - [1935] = {.lex_state = 267}, - [1936] = {.lex_state = 154, .external_lex_state = 2}, - [1937] = {.lex_state = 1184}, - [1938] = {.lex_state = 267}, - [1939] = {.lex_state = 1186}, - [1940] = {.lex_state = 165, .external_lex_state = 2}, - [1941] = {.lex_state = 127, .external_lex_state = 2}, - [1942] = {.lex_state = 1186}, - [1943] = {.lex_state = 154, .external_lex_state = 2}, - [1944] = {.lex_state = 1184}, - [1945] = {.lex_state = 1184}, - [1946] = {.lex_state = 1184}, - [1947] = {.lex_state = 163, .external_lex_state = 2}, - [1948] = {.lex_state = 163, .external_lex_state = 2}, - [1949] = {.lex_state = 19}, - [1950] = {.lex_state = 19}, - [1951] = {.lex_state = 19}, - [1952] = {.lex_state = 19}, - [1953] = {.lex_state = 127, .external_lex_state = 2}, - [1954] = {.lex_state = 127, .external_lex_state = 2}, - [1955] = {.lex_state = 578}, - [1956] = {.lex_state = 578}, - [1957] = {.lex_state = 578}, - [1958] = {.lex_state = 127, .external_lex_state = 2}, - [1959] = {.lex_state = 578}, - [1960] = {.lex_state = 578}, - [1961] = {.lex_state = 578}, - [1962] = {.lex_state = 578}, - [1963] = {.lex_state = 578}, - [1964] = {.lex_state = 127, .external_lex_state = 2}, - [1965] = {.lex_state = 127, .external_lex_state = 2}, - [1966] = {.lex_state = 578}, - [1967] = {.lex_state = 145}, - [1968] = {.lex_state = 160, .external_lex_state = 2}, - [1969] = {.lex_state = 145}, - [1970] = {.lex_state = 89}, - [1971] = {.lex_state = 145}, - [1972] = {.lex_state = 145}, - [1973] = {.lex_state = 145}, - [1974] = {.lex_state = 145}, - [1975] = {.lex_state = 267}, - [1976] = {.lex_state = 1187}, - [1977] = {.lex_state = 577}, - [1978] = {.lex_state = 145}, - [1979] = {.lex_state = 267}, - [1980] = {.lex_state = 37, .external_lex_state = 2}, - [1981] = {.lex_state = 44, .external_lex_state = 2}, - [1982] = {.lex_state = 578}, - [1983] = {.lex_state = 578}, - [1984] = {.lex_state = 578}, - [1985] = {.lex_state = 578}, - [1986] = {.lex_state = 578}, - [1987] = {.lex_state = 578}, - [1988] = {.lex_state = 578}, - [1989] = {.lex_state = 578}, - [1990] = {.lex_state = 160, .external_lex_state = 2}, - [1991] = {.lex_state = 578}, - [1992] = {.lex_state = 578}, - [1993] = {.lex_state = 578}, - [1994] = {.lex_state = 578}, - [1995] = {.lex_state = 155, .external_lex_state = 2}, - [1996] = {.lex_state = 578}, - [1997] = {.lex_state = 578}, - [1998] = {.lex_state = 578}, - [1999] = {.lex_state = 578}, - [2000] = {.lex_state = 578}, - [2001] = {.lex_state = 578}, - [2002] = {.lex_state = 578}, - [2003] = {.lex_state = 578}, - [2004] = {.lex_state = 578}, - [2005] = {.lex_state = 578}, - [2006] = {.lex_state = 578}, - [2007] = {.lex_state = 578}, - [2008] = {.lex_state = 578}, - [2009] = {.lex_state = 578}, - [2010] = {.lex_state = 578}, - [2011] = {.lex_state = 578}, - [2012] = {.lex_state = 578}, - [2013] = {.lex_state = 578}, - [2014] = {.lex_state = 578}, - [2015] = {.lex_state = 578}, - [2016] = {.lex_state = 578}, - [2017] = {.lex_state = 578}, - [2018] = {.lex_state = 578}, - [2019] = {.lex_state = 578}, - [2020] = {.lex_state = 578}, - [2021] = {.lex_state = 578}, - [2022] = {.lex_state = 578}, - [2023] = {.lex_state = 578}, - [2024] = {.lex_state = 578}, - [2025] = {.lex_state = 578}, - [2026] = {.lex_state = 578}, - [2027] = {.lex_state = 578}, - [2028] = {.lex_state = 578}, - [2029] = {.lex_state = 578}, - [2030] = {.lex_state = 578}, - [2031] = {.lex_state = 578}, - [2032] = {.lex_state = 578}, - [2033] = {.lex_state = 578}, - [2034] = {.lex_state = 578}, - [2035] = {.lex_state = 578}, - [2036] = {.lex_state = 578}, - [2037] = {.lex_state = 578}, - [2038] = {.lex_state = 578}, - [2039] = {.lex_state = 578}, - [2040] = {.lex_state = 578}, - [2041] = {.lex_state = 578}, - [2042] = {.lex_state = 578}, - [2043] = {.lex_state = 578}, - [2044] = {.lex_state = 578}, - [2045] = {.lex_state = 578}, - [2046] = {.lex_state = 578}, - [2047] = {.lex_state = 578}, - [2048] = {.lex_state = 578}, - [2049] = {.lex_state = 578}, - [2050] = {.lex_state = 578}, - [2051] = {.lex_state = 578}, - [2052] = {.lex_state = 578}, - [2053] = {.lex_state = 578}, - [2054] = {.lex_state = 578}, - [2055] = {.lex_state = 578}, - [2056] = {.lex_state = 578}, - [2057] = {.lex_state = 578}, - [2058] = {.lex_state = 578}, - [2059] = {.lex_state = 578}, - [2060] = {.lex_state = 578}, - [2061] = {.lex_state = 578}, - [2062] = {.lex_state = 578}, - [2063] = {.lex_state = 578}, - [2064] = {.lex_state = 578}, - [2065] = {.lex_state = 578}, - [2066] = {.lex_state = 578}, - [2067] = {.lex_state = 578}, - [2068] = {.lex_state = 578}, - [2069] = {.lex_state = 578}, - [2070] = {.lex_state = 578}, - [2071] = {.lex_state = 578}, - [2072] = {.lex_state = 578}, - [2073] = {.lex_state = 578}, - [2074] = {.lex_state = 578}, - [2075] = {.lex_state = 578}, - [2076] = {.lex_state = 578}, - [2077] = {.lex_state = 578}, - [2078] = {.lex_state = 578}, - [2079] = {.lex_state = 578}, - [2080] = {.lex_state = 1187}, - [2081] = {.lex_state = 37, .external_lex_state = 2}, - [2082] = {.lex_state = 578}, - [2083] = {.lex_state = 578}, - [2084] = {.lex_state = 145}, - [2085] = {.lex_state = 1187}, - [2086] = {.lex_state = 44, .external_lex_state = 2}, - [2087] = {.lex_state = 155, .external_lex_state = 2}, - [2088] = {.lex_state = 89}, - [2089] = {.lex_state = 578}, - [2090] = {.lex_state = 1187}, - [2091] = {.lex_state = 160, .external_lex_state = 2}, - [2092] = {.lex_state = 145}, - [2093] = {.lex_state = 145}, - [2094] = {.lex_state = 162, .external_lex_state = 2}, - [2095] = {.lex_state = 128, .external_lex_state = 2}, - [2096] = {.lex_state = 145}, - [2097] = {.lex_state = 145}, - [2098] = {.lex_state = 19}, - [2099] = {.lex_state = 1187}, - [2100] = {.lex_state = 145}, - [2101] = {.lex_state = 1187}, - [2102] = {.lex_state = 155, .external_lex_state = 2}, - [2103] = {.lex_state = 1187}, - [2104] = {.lex_state = 155, .external_lex_state = 2}, - [2105] = {.lex_state = 155, .external_lex_state = 2}, - [2106] = {.lex_state = 44, .external_lex_state = 2}, - [2107] = {.lex_state = 1187}, - [2108] = {.lex_state = 160, .external_lex_state = 2}, - [2109] = {.lex_state = 1187}, - [2110] = {.lex_state = 160, .external_lex_state = 2}, - [2111] = {.lex_state = 163, .external_lex_state = 2}, - [2112] = {.lex_state = 155, .external_lex_state = 2}, - [2113] = {.lex_state = 160, .external_lex_state = 2}, - [2114] = {.lex_state = 168, .external_lex_state = 2}, - [2115] = {.lex_state = 168, .external_lex_state = 2}, - [2116] = {.lex_state = 168, .external_lex_state = 2}, - [2117] = {.lex_state = 44, .external_lex_state = 2}, - [2118] = {.lex_state = 155, .external_lex_state = 2}, - [2119] = {.lex_state = 168, .external_lex_state = 2}, - [2120] = {.lex_state = 160, .external_lex_state = 2}, - [2121] = {.lex_state = 37, .external_lex_state = 2}, - [2122] = {.lex_state = 168, .external_lex_state = 2}, - [2123] = {.lex_state = 578}, - [2124] = {.lex_state = 578}, - [2125] = {.lex_state = 145}, - [2126] = {.lex_state = 168, .external_lex_state = 2}, - [2127] = {.lex_state = 163, .external_lex_state = 2}, - [2128] = {.lex_state = 578}, - [2129] = {.lex_state = 578}, - [2130] = {.lex_state = 578}, - [2131] = {.lex_state = 578}, - [2132] = {.lex_state = 168, .external_lex_state = 2}, - [2133] = {.lex_state = 163, .external_lex_state = 2}, - [2134] = {.lex_state = 89}, - [2135] = {.lex_state = 37, .external_lex_state = 2}, - [2136] = {.lex_state = 37, .external_lex_state = 2}, - [2137] = {.lex_state = 578}, - [2138] = {.lex_state = 578}, - [2139] = {.lex_state = 578}, - [2140] = {.lex_state = 578}, - [2141] = {.lex_state = 578}, - [2142] = {.lex_state = 578}, - [2143] = {.lex_state = 578}, - [2144] = {.lex_state = 578}, - [2145] = {.lex_state = 578}, - [2146] = {.lex_state = 578}, - [2147] = {.lex_state = 578}, - [2148] = {.lex_state = 37, .external_lex_state = 2}, - [2149] = {.lex_state = 1188}, - [2150] = {.lex_state = 37, .external_lex_state = 2}, - [2151] = {.lex_state = 1188}, - [2152] = {.lex_state = 37, .external_lex_state = 2}, - [2153] = {.lex_state = 44, .external_lex_state = 2}, - [2154] = {.lex_state = 37, .external_lex_state = 2}, - [2155] = {.lex_state = 37, .external_lex_state = 2}, - [2156] = {.lex_state = 37, .external_lex_state = 2}, - [2157] = {.lex_state = 49, .external_lex_state = 2}, - [2158] = {.lex_state = 37, .external_lex_state = 2}, - [2159] = {.lex_state = 49, .external_lex_state = 2}, - [2160] = {.lex_state = 37, .external_lex_state = 2}, - [2161] = {.lex_state = 1188}, - [2162] = {.lex_state = 37, .external_lex_state = 2}, - [2163] = {.lex_state = 37, .external_lex_state = 2}, - [2164] = {.lex_state = 37, .external_lex_state = 2}, - [2165] = {.lex_state = 37, .external_lex_state = 2}, - [2166] = {.lex_state = 37, .external_lex_state = 2}, - [2167] = {.lex_state = 37, .external_lex_state = 2}, - [2168] = {.lex_state = 37, .external_lex_state = 2}, - [2169] = {.lex_state = 578}, - [2170] = {.lex_state = 578}, - [2171] = {.lex_state = 37, .external_lex_state = 2}, - [2172] = {.lex_state = 578}, - [2173] = {.lex_state = 37, .external_lex_state = 2}, - [2174] = {.lex_state = 37, .external_lex_state = 2}, - [2175] = {.lex_state = 578}, - [2176] = {.lex_state = 37, .external_lex_state = 2}, - [2177] = {.lex_state = 578}, - [2178] = {.lex_state = 37, .external_lex_state = 2}, - [2179] = {.lex_state = 37, .external_lex_state = 2}, - [2180] = {.lex_state = 37, .external_lex_state = 2}, - [2181] = {.lex_state = 37, .external_lex_state = 2}, - [2182] = {.lex_state = 37, .external_lex_state = 2}, - [2183] = {.lex_state = 37, .external_lex_state = 2}, - [2184] = {.lex_state = 578}, - [2185] = {.lex_state = 578}, - [2186] = {.lex_state = 578}, - [2187] = {.lex_state = 578}, - [2188] = {.lex_state = 578}, - [2189] = {.lex_state = 578}, - [2190] = {.lex_state = 578}, - [2191] = {.lex_state = 37, .external_lex_state = 2}, - [2192] = {.lex_state = 1188}, - [2193] = {.lex_state = 37, .external_lex_state = 2}, - [2194] = {.lex_state = 37, .external_lex_state = 2}, - [2195] = {.lex_state = 1188}, - [2196] = {.lex_state = 37, .external_lex_state = 2}, - [2197] = {.lex_state = 37, .external_lex_state = 2}, - [2198] = {.lex_state = 37, .external_lex_state = 2}, - [2199] = {.lex_state = 1188}, - [2200] = {.lex_state = 1188}, - [2201] = {.lex_state = 41, .external_lex_state = 2}, - [2202] = {.lex_state = 49, .external_lex_state = 2}, - [2203] = {.lex_state = 37, .external_lex_state = 2}, - [2204] = {.lex_state = 37, .external_lex_state = 2}, - [2205] = {.lex_state = 37, .external_lex_state = 2}, - [2206] = {.lex_state = 37, .external_lex_state = 2}, - [2207] = {.lex_state = 37, .external_lex_state = 2}, - [2208] = {.lex_state = 37, .external_lex_state = 2}, - [2209] = {.lex_state = 37, .external_lex_state = 2}, - [2210] = {.lex_state = 37, .external_lex_state = 2}, - [2211] = {.lex_state = 37, .external_lex_state = 2}, - [2212] = {.lex_state = 578}, - [2213] = {.lex_state = 578}, - [2214] = {.lex_state = 578}, - [2215] = {.lex_state = 578}, - [2216] = {.lex_state = 578}, - [2217] = {.lex_state = 577}, - [2218] = {.lex_state = 578}, - [2219] = {.lex_state = 41, .external_lex_state = 2}, - [2220] = {.lex_state = 578}, - [2221] = {.lex_state = 577}, - [2222] = {.lex_state = 157, .external_lex_state = 2}, - [2223] = {.lex_state = 157, .external_lex_state = 2}, - [2224] = {.lex_state = 49, .external_lex_state = 2}, - [2225] = {.lex_state = 157, .external_lex_state = 2}, - [2226] = {.lex_state = 45, .external_lex_state = 2}, - [2227] = {.lex_state = 157, .external_lex_state = 2}, - [2228] = {.lex_state = 575}, - [2229] = {.lex_state = 575}, - [2230] = {.lex_state = 575}, - [2231] = {.lex_state = 159, .external_lex_state = 2}, - [2232] = {.lex_state = 159, .external_lex_state = 2}, - [2233] = {.lex_state = 575}, - [2234] = {.lex_state = 159, .external_lex_state = 2}, - [2235] = {.lex_state = 159, .external_lex_state = 2}, - [2236] = {.lex_state = 159, .external_lex_state = 2}, - [2237] = {.lex_state = 47, .external_lex_state = 2}, - [2238] = {.lex_state = 159, .external_lex_state = 2}, - [2239] = {.lex_state = 157, .external_lex_state = 2}, - [2240] = {.lex_state = 157, .external_lex_state = 2}, - [2241] = {.lex_state = 46, .external_lex_state = 2}, - [2242] = {.lex_state = 575}, - [2243] = {.lex_state = 575}, - [2244] = {.lex_state = 45, .external_lex_state = 2}, - [2245] = {.lex_state = 159, .external_lex_state = 2}, - [2246] = {.lex_state = 49, .external_lex_state = 2}, - [2247] = {.lex_state = 47, .external_lex_state = 2}, - [2248] = {.lex_state = 159, .external_lex_state = 2}, - [2249] = {.lex_state = 49, .external_lex_state = 2}, - [2250] = {.lex_state = 49, .external_lex_state = 2}, - [2251] = {.lex_state = 46, .external_lex_state = 2}, - [2252] = {.lex_state = 159, .external_lex_state = 2}, - [2253] = {.lex_state = 47, .external_lex_state = 2}, - [2254] = {.lex_state = 577}, - [2255] = {.lex_state = 577}, - [2256] = {.lex_state = 577}, - [2257] = {.lex_state = 48, .external_lex_state = 2}, - [2258] = {.lex_state = 91}, - [2259] = {.lex_state = 48, .external_lex_state = 2}, - [2260] = {.lex_state = 577}, - [2261] = {.lex_state = 577}, - [2262] = {.lex_state = 577}, - [2263] = {.lex_state = 5}, - [2264] = {.lex_state = 48, .external_lex_state = 2}, - [2265] = {.lex_state = 48, .external_lex_state = 2}, - [2266] = {.lex_state = 48, .external_lex_state = 2}, - [2267] = {.lex_state = 48, .external_lex_state = 2}, - [2268] = {.lex_state = 48, .external_lex_state = 2}, - [2269] = {.lex_state = 48, .external_lex_state = 2}, - [2270] = {.lex_state = 48, .external_lex_state = 2}, - [2271] = {.lex_state = 48, .external_lex_state = 2}, - [2272] = {.lex_state = 48, .external_lex_state = 2}, - [2273] = {.lex_state = 578}, - [2274] = {.lex_state = 48, .external_lex_state = 2}, - [2275] = {.lex_state = 48, .external_lex_state = 2}, - [2276] = {.lex_state = 48, .external_lex_state = 2}, - [2277] = {.lex_state = 48, .external_lex_state = 2}, - [2278] = {.lex_state = 48, .external_lex_state = 2}, - [2279] = {.lex_state = 48, .external_lex_state = 2}, - [2280] = {.lex_state = 48, .external_lex_state = 2}, - [2281] = {.lex_state = 48, .external_lex_state = 2}, - [2282] = {.lex_state = 48, .external_lex_state = 2}, - [2283] = {.lex_state = 631}, - [2284] = {.lex_state = 48, .external_lex_state = 2}, - [2285] = {.lex_state = 48, .external_lex_state = 2}, - [2286] = {.lex_state = 48, .external_lex_state = 2}, - [2287] = {.lex_state = 48, .external_lex_state = 2}, - [2288] = {.lex_state = 48, .external_lex_state = 2}, - [2289] = {.lex_state = 48, .external_lex_state = 2}, - [2290] = {.lex_state = 578}, - [2291] = {.lex_state = 578}, - [2292] = {.lex_state = 578}, - [2293] = {.lex_state = 578}, - [2294] = {.lex_state = 48, .external_lex_state = 2}, - [2295] = {.lex_state = 48, .external_lex_state = 2}, - [2296] = {.lex_state = 5}, - [2297] = {.lex_state = 581}, - [2298] = {.lex_state = 631}, - [2299] = {.lex_state = 632}, - [2300] = {.lex_state = 632}, - [2301] = {.lex_state = 632}, - [2302] = {.lex_state = 48, .external_lex_state = 2}, - [2303] = {.lex_state = 48, .external_lex_state = 2}, - [2304] = {.lex_state = 632}, - [2305] = {.lex_state = 48, .external_lex_state = 2}, - [2306] = {.lex_state = 581}, - [2307] = {.lex_state = 581}, - [2308] = {.lex_state = 581}, - [2309] = {.lex_state = 581}, - [2310] = {.lex_state = 48, .external_lex_state = 2}, - [2311] = {.lex_state = 48, .external_lex_state = 2}, - [2312] = {.lex_state = 48, .external_lex_state = 2}, - [2313] = {.lex_state = 630}, - [2314] = {.lex_state = 581}, - [2315] = {.lex_state = 48, .external_lex_state = 2}, - [2316] = {.lex_state = 48, .external_lex_state = 2}, - [2317] = {.lex_state = 48, .external_lex_state = 2}, - [2318] = {.lex_state = 48, .external_lex_state = 2}, - [2319] = {.lex_state = 48, .external_lex_state = 2}, - [2320] = {.lex_state = 48, .external_lex_state = 2}, - [2321] = {.lex_state = 635}, - [2322] = {.lex_state = 639}, - [2323] = {.lex_state = 581}, - [2324] = {.lex_state = 641}, - [2325] = {.lex_state = 630}, - [2326] = {.lex_state = 630}, - [2327] = {.lex_state = 639}, - [2328] = {.lex_state = 635}, - [2329] = {.lex_state = 633}, - [2330] = {.lex_state = 633}, - [2331] = {.lex_state = 643}, - [2332] = {.lex_state = 581}, - [2333] = {.lex_state = 581}, - [2334] = {.lex_state = 581}, - [2335] = {.lex_state = 641}, - [2336] = {.lex_state = 643}, - [2337] = {.lex_state = 645}, - [2338] = {.lex_state = 643}, - [2339] = {.lex_state = 643}, - [2340] = {.lex_state = 630}, - [2341] = {.lex_state = 630}, - [2342] = {.lex_state = 643}, - [2343] = {.lex_state = 630}, - [2344] = {.lex_state = 630}, - [2345] = {.lex_state = 630}, - [2346] = {.lex_state = 633}, - [2347] = {.lex_state = 641}, - [2348] = {.lex_state = 637}, - [2349] = {.lex_state = 578}, - [2350] = {.lex_state = 640}, - [2351] = {.lex_state = 578}, - [2352] = {.lex_state = 636}, - [2353] = {.lex_state = 633}, - [2354] = {.lex_state = 641}, - [2355] = {.lex_state = 643}, - [2356] = {.lex_state = 630}, - [2357] = {.lex_state = 636}, - [2358] = {.lex_state = 630}, - [2359] = {.lex_state = 575}, - [2360] = {.lex_state = 647}, - [2361] = {.lex_state = 172, .external_lex_state = 2}, - [2362] = {.lex_state = 172, .external_lex_state = 2}, - [2363] = {.lex_state = 644}, - [2364] = {.lex_state = 577}, - [2365] = {.lex_state = 645}, - [2366] = {.lex_state = 647}, - [2367] = {.lex_state = 577}, - [2368] = {.lex_state = 640}, - [2369] = {.lex_state = 637}, - [2370] = {.lex_state = 577}, - [2371] = {.lex_state = 642}, - [2372] = {.lex_state = 172, .external_lex_state = 2}, - [2373] = {.lex_state = 172, .external_lex_state = 2}, - [2374] = {.lex_state = 2}, - [2375] = {.lex_state = 643}, - [2376] = {.lex_state = 172, .external_lex_state = 2}, - [2377] = {.lex_state = 630}, - [2378] = {.lex_state = 51}, - [2379] = {.lex_state = 643}, - [2380] = {.lex_state = 642}, - [2381] = {.lex_state = 630}, - [2382] = {.lex_state = 577}, - [2383] = {.lex_state = 52}, - [2384] = {.lex_state = 646}, - [2385] = {.lex_state = 172, .external_lex_state = 2}, - [2386] = {.lex_state = 49, .external_lex_state = 2}, - [2387] = {.lex_state = 577}, - [2388] = {.lex_state = 576}, - [2389] = {.lex_state = 577}, - [2390] = {.lex_state = 575}, - [2391] = {.lex_state = 644}, - [2392] = {.lex_state = 51}, - [2393] = {.lex_state = 642}, - [2394] = {.lex_state = 576}, - [2395] = {.lex_state = 53}, - [2396] = {.lex_state = 55}, - [2397] = {.lex_state = 644}, - [2398] = {.lex_state = 649}, - [2399] = {.lex_state = 642}, - [2400] = {.lex_state = 649}, - [2401] = {.lex_state = 649}, - [2402] = {.lex_state = 172, .external_lex_state = 2}, - [2403] = {.lex_state = 575}, - [2404] = {.lex_state = 576}, - [2405] = {.lex_state = 647}, - [2406] = {.lex_state = 649}, - [2407] = {.lex_state = 577}, - [2408] = {.lex_state = 575}, - [2409] = {.lex_state = 649}, - [2410] = {.lex_state = 644}, - [2411] = {.lex_state = 575}, - [2412] = {.lex_state = 576}, - [2413] = {.lex_state = 577}, - [2414] = {.lex_state = 577}, - [2415] = {.lex_state = 577}, - [2416] = {.lex_state = 577}, - [2417] = {.lex_state = 577}, - [2418] = {.lex_state = 52}, - [2419] = {.lex_state = 647}, - [2420] = {.lex_state = 575}, - [2421] = {.lex_state = 644}, - [2422] = {.lex_state = 575}, - [2423] = {.lex_state = 638}, - [2424] = {.lex_state = 649}, - [2425] = {.lex_state = 576}, - [2426] = {.lex_state = 644}, - [2427] = {.lex_state = 51}, - [2428] = {.lex_state = 51}, - [2429] = {.lex_state = 51}, - [2430] = {.lex_state = 576}, - [2431] = {.lex_state = 638}, - [2432] = {.lex_state = 576}, - [2433] = {.lex_state = 649}, - [2434] = {.lex_state = 576}, - [2435] = {.lex_state = 653}, - [2436] = {.lex_state = 649}, - [2437] = {.lex_state = 51}, - [2438] = {.lex_state = 649}, - [2439] = {.lex_state = 49, .external_lex_state = 2}, - [2440] = {.lex_state = 644}, - [2441] = {.lex_state = 576}, - [2442] = {.lex_state = 56}, - [2443] = {.lex_state = 646}, - [2444] = {.lex_state = 57}, - [2445] = {.lex_state = 2}, - [2446] = {.lex_state = 576}, - [2447] = {.lex_state = 651}, - [2448] = {.lex_state = 644}, - [2449] = {.lex_state = 648}, - [2450] = {.lex_state = 644}, - [2451] = {.lex_state = 576}, - [2452] = {.lex_state = 56}, - [2453] = {.lex_state = 649}, - [2454] = {.lex_state = 576}, - [2455] = {.lex_state = 576}, - [2456] = {.lex_state = 576}, - [2457] = {.lex_state = 576}, - [2458] = {.lex_state = 576}, - [2459] = {.lex_state = 575}, - [2460] = {.lex_state = 648}, - [2461] = {.lex_state = 2}, - [2462] = {.lex_state = 576}, - [2463] = {.lex_state = 576}, - [2464] = {.lex_state = 156, .external_lex_state = 2}, - [2465] = {.lex_state = 576}, - [2466] = {.lex_state = 577}, - [2467] = {.lex_state = 2}, - [2468] = {.lex_state = 650}, - [2469] = {.lex_state = 644}, - [2470] = {.lex_state = 577}, - [2471] = {.lex_state = 655}, - [2472] = {.lex_state = 576}, - [2473] = {.lex_state = 57}, - [2474] = {.lex_state = 577}, - [2475] = {.lex_state = 577}, - [2476] = {.lex_state = 2}, - [2477] = {.lex_state = 577}, - [2478] = {.lex_state = 577}, - [2479] = {.lex_state = 577}, - [2480] = {.lex_state = 651}, - [2481] = {.lex_state = 577}, - [2482] = {.lex_state = 58}, - [2483] = {.lex_state = 57}, - [2484] = {.lex_state = 156, .external_lex_state = 2}, - [2485] = {.lex_state = 156, .external_lex_state = 2}, - [2486] = {.lex_state = 576}, - [2487] = {.lex_state = 650}, - [2488] = {.lex_state = 54}, - [2489] = {.lex_state = 576}, - [2490] = {.lex_state = 576}, - [2491] = {.lex_state = 2}, - [2492] = {.lex_state = 576}, - [2493] = {.lex_state = 648}, - [2494] = {.lex_state = 2}, - [2495] = {.lex_state = 156, .external_lex_state = 2}, - [2496] = {.lex_state = 577}, - [2497] = {.lex_state = 577}, - [2498] = {.lex_state = 2}, - [2499] = {.lex_state = 655}, - [2500] = {.lex_state = 577}, - [2501] = {.lex_state = 577}, - [2502] = {.lex_state = 577}, - [2503] = {.lex_state = 577}, - [2504] = {.lex_state = 653}, - [2505] = {.lex_state = 650}, - [2506] = {.lex_state = 576}, - [2507] = {.lex_state = 57}, - [2508] = {.lex_state = 2}, - [2509] = {.lex_state = 650}, - [2510] = {.lex_state = 648}, - [2511] = {.lex_state = 2}, - [2512] = {.lex_state = 576}, - [2513] = {.lex_state = 577}, - [2514] = {.lex_state = 650}, - [2515] = {.lex_state = 657}, - [2516] = {.lex_state = 576}, - [2517] = {.lex_state = 2}, - [2518] = {.lex_state = 576}, - [2519] = {.lex_state = 576}, - [2520] = {.lex_state = 577}, - [2521] = {.lex_state = 576}, - [2522] = {.lex_state = 657}, - [2523] = {.lex_state = 657}, - [2524] = {.lex_state = 657}, - [2525] = {.lex_state = 59}, - [2526] = {.lex_state = 2}, - [2527] = {.lex_state = 657}, - [2528] = {.lex_state = 657}, - [2529] = {.lex_state = 650}, - [2530] = {.lex_state = 2}, - [2531] = {.lex_state = 650}, - [2532] = {.lex_state = 576}, - [2533] = {.lex_state = 657}, - [2534] = {.lex_state = 657}, - [2535] = {.lex_state = 657}, - [2536] = {.lex_state = 2}, - [2537] = {.lex_state = 577}, - [2538] = {.lex_state = 576}, - [2539] = {.lex_state = 576}, - [2540] = {.lex_state = 2}, - [2541] = {.lex_state = 2}, - [2542] = {.lex_state = 576}, - [2543] = {.lex_state = 654}, - [2544] = {.lex_state = 2}, - [2545] = {.lex_state = 576}, - [2546] = {.lex_state = 657}, - [2547] = {.lex_state = 577}, - [2548] = {.lex_state = 2}, - [2549] = {.lex_state = 576}, - [2550] = {.lex_state = 652}, - [2551] = {.lex_state = 576}, - [2552] = {.lex_state = 2}, - [2553] = {.lex_state = 576}, - [2554] = {.lex_state = 576}, - [2555] = {.lex_state = 655}, - [2556] = {.lex_state = 2}, - [2557] = {.lex_state = 576}, - [2558] = {.lex_state = 657}, - [2559] = {.lex_state = 650}, - [2560] = {.lex_state = 650}, - [2561] = {.lex_state = 2}, - [2562] = {.lex_state = 577}, - [2563] = {.lex_state = 577}, - [2564] = {.lex_state = 577}, - [2565] = {.lex_state = 650}, - [2566] = {.lex_state = 576}, - [2567] = {.lex_state = 577}, - [2568] = {.lex_state = 2}, - [2569] = {.lex_state = 657}, - [2570] = {.lex_state = 2}, - [2571] = {.lex_state = 657}, - [2572] = {.lex_state = 655}, - [2573] = {.lex_state = 576}, - [2574] = {.lex_state = 577}, - [2575] = {.lex_state = 2}, - [2576] = {.lex_state = 577}, - [2577] = {.lex_state = 59}, - [2578] = {.lex_state = 577}, - [2579] = {.lex_state = 577}, - [2580] = {.lex_state = 577}, - [2581] = {.lex_state = 577}, - [2582] = {.lex_state = 652}, - [2583] = {.lex_state = 657}, - [2584] = {.lex_state = 2}, - [2585] = {.lex_state = 576}, - [2586] = {.lex_state = 656}, - [2587] = {.lex_state = 657}, - [2588] = {.lex_state = 60}, - [2589] = {.lex_state = 60}, - [2590] = {.lex_state = 112}, - [2591] = {.lex_state = 657}, - [2592] = {.lex_state = 2}, - [2593] = {.lex_state = 577}, - [2594] = {.lex_state = 576}, - [2595] = {.lex_state = 657}, - [2596] = {.lex_state = 640}, - [2597] = {.lex_state = 659}, - [2598] = {.lex_state = 640}, - [2599] = {.lex_state = 576}, - [2600] = {.lex_state = 657}, - [2601] = {.lex_state = 640}, - [2602] = {.lex_state = 576}, - [2603] = {.lex_state = 657}, - [2604] = {.lex_state = 640}, - [2605] = {.lex_state = 640}, - [2606] = {.lex_state = 640}, - [2607] = {.lex_state = 640}, - [2608] = {.lex_state = 640}, - [2609] = {.lex_state = 576}, - [2610] = {.lex_state = 60}, - [2611] = {.lex_state = 576}, - [2612] = {.lex_state = 60}, - [2613] = {.lex_state = 577}, - [2614] = {.lex_state = 657}, - [2615] = {.lex_state = 640}, - [2616] = {.lex_state = 2}, - [2617] = {.lex_state = 576}, - [2618] = {.lex_state = 657}, - [2619] = {.lex_state = 657}, - [2620] = {.lex_state = 657}, - [2621] = {.lex_state = 2}, - [2622] = {.lex_state = 640}, - [2623] = {.lex_state = 2}, - [2624] = {.lex_state = 2}, - [2625] = {.lex_state = 576}, - [2626] = {.lex_state = 657}, - [2627] = {.lex_state = 640}, - [2628] = {.lex_state = 576}, - [2629] = {.lex_state = 654}, - [2630] = {.lex_state = 576}, - [2631] = {.lex_state = 2}, - [2632] = {.lex_state = 577}, - [2633] = {.lex_state = 576}, - [2634] = {.lex_state = 576}, - [2635] = {.lex_state = 576}, - [2636] = {.lex_state = 576}, - [2637] = {.lex_state = 60}, - [2638] = {.lex_state = 656}, - [2639] = {.lex_state = 657}, - [2640] = {.lex_state = 576}, - [2641] = {.lex_state = 657}, - [2642] = {.lex_state = 657}, - [2643] = {.lex_state = 577}, - [2644] = {.lex_state = 640}, - [2645] = {.lex_state = 640}, - [2646] = {.lex_state = 577}, - [2647] = {.lex_state = 577}, - [2648] = {.lex_state = 577}, - [2649] = {.lex_state = 577}, - [2650] = {.lex_state = 577}, - [2651] = {.lex_state = 62}, - [2652] = {.lex_state = 577}, - [2653] = {.lex_state = 577}, - [2654] = {.lex_state = 577}, - [2655] = {.lex_state = 577}, - [2656] = {.lex_state = 577}, - [2657] = {.lex_state = 577}, - [2658] = {.lex_state = 577}, - [2659] = {.lex_state = 577}, - [2660] = {.lex_state = 577}, - [2661] = {.lex_state = 577}, - [2662] = {.lex_state = 577}, - [2663] = {.lex_state = 577}, - [2664] = {.lex_state = 577}, - [2665] = {.lex_state = 577}, - [2666] = {.lex_state = 577}, - [2667] = {.lex_state = 577}, - [2668] = {.lex_state = 577}, - [2669] = {.lex_state = 577}, - [2670] = {.lex_state = 577}, - [2671] = {.lex_state = 577}, - [2672] = {.lex_state = 577}, - [2673] = {.lex_state = 577}, - [2674] = {.lex_state = 577}, - [2675] = {.lex_state = 577}, - [2676] = {.lex_state = 577}, - [2677] = {.lex_state = 577}, - [2678] = {.lex_state = 577}, - [2679] = {.lex_state = 577}, - [2680] = {.lex_state = 577}, - [2681] = {.lex_state = 652}, - [2682] = {.lex_state = 640}, - [2683] = {.lex_state = 61}, - [2684] = {.lex_state = 577}, - [2685] = {.lex_state = 577}, - [2686] = {.lex_state = 577}, - [2687] = {.lex_state = 577}, - [2688] = {.lex_state = 577}, - [2689] = {.lex_state = 577}, - [2690] = {.lex_state = 577}, - [2691] = {.lex_state = 577}, - [2692] = {.lex_state = 577}, - [2693] = {.lex_state = 577}, - [2694] = {.lex_state = 577}, - [2695] = {.lex_state = 658}, - [2696] = {.lex_state = 656}, - [2697] = {.lex_state = 577}, - [2698] = {.lex_state = 577}, - [2699] = {.lex_state = 658}, - [2700] = {.lex_state = 577}, - [2701] = {.lex_state = 640}, - [2702] = {.lex_state = 577}, - [2703] = {.lex_state = 577}, - [2704] = {.lex_state = 640}, - [2705] = {.lex_state = 640}, - [2706] = {.lex_state = 640}, - [2707] = {.lex_state = 658}, - [2708] = {.lex_state = 658}, - [2709] = {.lex_state = 656}, - [2710] = {.lex_state = 658}, - [2711] = {.lex_state = 576}, - [2712] = {.lex_state = 577}, - [2713] = {.lex_state = 658}, - [2714] = {.lex_state = 577}, - [2715] = {.lex_state = 577}, - [2716] = {.lex_state = 658}, - [2717] = {.lex_state = 658}, - [2718] = {.lex_state = 577}, - [2719] = {.lex_state = 577}, - [2720] = {.lex_state = 577}, - [2721] = {.lex_state = 659}, - [2722] = {.lex_state = 658}, - [2723] = {.lex_state = 658}, - [2724] = {.lex_state = 577}, - [2725] = {.lex_state = 577}, - [2726] = {.lex_state = 577}, - [2727] = {.lex_state = 577}, - [2728] = {.lex_state = 640}, - [2729] = {.lex_state = 577}, - [2730] = {.lex_state = 577}, - [2731] = {.lex_state = 577}, - [2732] = {.lex_state = 577}, - [2733] = {.lex_state = 630}, - [2734] = {.lex_state = 630}, - [2735] = {.lex_state = 577}, - [2736] = {.lex_state = 630}, - [2737] = {.lex_state = 630}, - [2738] = {.lex_state = 577}, - [2739] = {.lex_state = 577}, - [2740] = {.lex_state = 577}, - [2741] = {.lex_state = 577}, - [2742] = {.lex_state = 577}, - [2743] = {.lex_state = 577}, - [2744] = {.lex_state = 577}, - [2745] = {.lex_state = 577}, - [2746] = {.lex_state = 577}, - [2747] = {.lex_state = 577}, - [2748] = {.lex_state = 577}, - [2749] = {.lex_state = 577}, - [2750] = {.lex_state = 577}, - [2751] = {.lex_state = 577}, - [2752] = {.lex_state = 577}, - [2753] = {.lex_state = 577}, - [2754] = {.lex_state = 577}, - [2755] = {.lex_state = 577}, - [2756] = {.lex_state = 640}, - [2757] = {.lex_state = 577}, - [2758] = {.lex_state = 577}, - [2759] = {.lex_state = 577}, - [2760] = {.lex_state = 576}, - [2761] = {.lex_state = 640}, - [2762] = {.lex_state = 630}, - [2763] = {.lex_state = 577}, - [2764] = {.lex_state = 658}, - [2765] = {.lex_state = 577}, - [2766] = {.lex_state = 577}, - [2767] = {.lex_state = 577}, - [2768] = {.lex_state = 658}, - [2769] = {.lex_state = 658}, - [2770] = {.lex_state = 577}, - [2771] = {.lex_state = 577}, - [2772] = {.lex_state = 577}, - [2773] = {.lex_state = 577}, - [2774] = {.lex_state = 577}, - [2775] = {.lex_state = 577}, - [2776] = {.lex_state = 577}, - [2777] = {.lex_state = 577}, - [2778] = {.lex_state = 577}, - [2779] = {.lex_state = 577}, - [2780] = {.lex_state = 577}, - [2781] = {.lex_state = 577}, - [2782] = {.lex_state = 577}, - [2783] = {.lex_state = 577}, - [2784] = {.lex_state = 640}, - [2785] = {.lex_state = 2}, - [2786] = {.lex_state = 577}, - [2787] = {.lex_state = 2}, - [2788] = {.lex_state = 577}, - [2789] = {.lex_state = 576}, - [2790] = {.lex_state = 576}, - [2791] = {.lex_state = 2}, - [2792] = {.lex_state = 2}, - [2793] = {.lex_state = 2}, - [2794] = {.lex_state = 2}, - [2795] = {.lex_state = 2}, - [2796] = {.lex_state = 2}, - [2797] = {.lex_state = 577}, - [2798] = {.lex_state = 577}, - [2799] = {.lex_state = 577}, - [2800] = {.lex_state = 577}, - [2801] = {.lex_state = 577}, - [2802] = {.lex_state = 577}, - [2803] = {.lex_state = 577}, - [2804] = {.lex_state = 577}, - [2805] = {.lex_state = 577}, - [2806] = {.lex_state = 577}, - [2807] = {.lex_state = 577}, - [2808] = {.lex_state = 577}, - [2809] = {.lex_state = 577}, - [2810] = {.lex_state = 577}, - [2811] = {.lex_state = 577}, - [2812] = {.lex_state = 577}, - [2813] = {.lex_state = 577}, - [2814] = {.lex_state = 577}, - [2815] = {.lex_state = 657}, - [2816] = {.lex_state = 658}, - [2817] = {.lex_state = 658}, - [2818] = {.lex_state = 577}, - [2819] = {.lex_state = 658}, - [2820] = {.lex_state = 630}, - [2821] = {.lex_state = 2}, - [2822] = {.lex_state = 576}, - [2823] = {.lex_state = 577}, - [2824] = {.lex_state = 630}, - [2825] = {.lex_state = 63}, - [2826] = {.lex_state = 2}, - [2827] = {.lex_state = 577}, - [2828] = {.lex_state = 2}, - [2829] = {.lex_state = 112}, - [2830] = {.lex_state = 576}, - [2831] = {.lex_state = 577}, - [2832] = {.lex_state = 630}, - [2833] = {.lex_state = 576}, - [2834] = {.lex_state = 630}, - [2835] = {.lex_state = 112}, - [2836] = {.lex_state = 658}, - [2837] = {.lex_state = 658}, - [2838] = {.lex_state = 658}, - [2839] = {.lex_state = 624}, - [2840] = {.lex_state = 624}, - [2841] = {.lex_state = 577}, - [2842] = {.lex_state = 112}, - [2843] = {.lex_state = 2}, - [2844] = {.lex_state = 577}, - [2845] = {.lex_state = 577}, - [2846] = {.lex_state = 577}, - [2847] = {.lex_state = 2}, - [2848] = {.lex_state = 126, .external_lex_state = 2}, - [2849] = {.lex_state = 577}, - [2850] = {.lex_state = 577}, - [2851] = {.lex_state = 577}, - [2852] = {.lex_state = 2}, - [2853] = {.lex_state = 577}, - [2854] = {.lex_state = 577}, - [2855] = {.lex_state = 577}, - [2856] = {.lex_state = 577}, - [2857] = {.lex_state = 624}, - [2858] = {.lex_state = 577}, - [2859] = {.lex_state = 577}, - [2860] = {.lex_state = 577}, - [2861] = {.lex_state = 577}, - [2862] = {.lex_state = 577}, - [2863] = {.lex_state = 2}, - [2864] = {.lex_state = 577}, - [2865] = {.lex_state = 577}, - [2866] = {.lex_state = 2}, - [2867] = {.lex_state = 624}, - [2868] = {.lex_state = 2}, - [2869] = {.lex_state = 112}, - [2870] = {.lex_state = 112}, - [2871] = {.lex_state = 2}, - [2872] = {.lex_state = 658}, - [2873] = {.lex_state = 658}, - [2874] = {.lex_state = 112}, - [2875] = {.lex_state = 658}, - [2876] = {.lex_state = 658}, - [2877] = {.lex_state = 630}, - [2878] = {.lex_state = 630}, - [2879] = {.lex_state = 2}, - [2880] = {.lex_state = 2}, - [2881] = {.lex_state = 630}, - [2882] = {.lex_state = 652}, - [2883] = {.lex_state = 63}, - [2884] = {.lex_state = 2}, - [2885] = {.lex_state = 576}, - [2886] = {.lex_state = 2}, - [2887] = {.lex_state = 2}, - [2888] = {.lex_state = 658}, - [2889] = {.lex_state = 2}, - [2890] = {.lex_state = 577}, - [2891] = {.lex_state = 577}, - [2892] = {.lex_state = 66}, - [2893] = {.lex_state = 576}, - [2894] = {.lex_state = 658}, - [2895] = {.lex_state = 576}, - [2896] = {.lex_state = 658}, - [2897] = {.lex_state = 576}, - [2898] = {.lex_state = 71}, - [2899] = {.lex_state = 2}, - [2900] = {.lex_state = 2}, - [2901] = {.lex_state = 2}, - [2902] = {.lex_state = 2}, - [2903] = {.lex_state = 658}, - [2904] = {.lex_state = 630}, - [2905] = {.lex_state = 624}, - [2906] = {.lex_state = 2}, - [2907] = {.lex_state = 576}, - [2908] = {.lex_state = 576}, - [2909] = {.lex_state = 2}, - [2910] = {.lex_state = 2}, - [2911] = {.lex_state = 576}, - [2912] = {.lex_state = 2}, - [2913] = {.lex_state = 2}, - [2914] = {.lex_state = 2}, - [2915] = {.lex_state = 577}, - [2916] = {.lex_state = 2}, - [2917] = {.lex_state = 624}, - [2918] = {.lex_state = 577}, - [2919] = {.lex_state = 577}, - [2920] = {.lex_state = 624}, - [2921] = {.lex_state = 624}, - [2922] = {.lex_state = 576}, - [2923] = {.lex_state = 61}, - [2924] = {.lex_state = 2}, - [2925] = {.lex_state = 2}, - [2926] = {.lex_state = 624}, - [2927] = {.lex_state = 60}, - [2928] = {.lex_state = 60}, - [2929] = {.lex_state = 624}, - [2930] = {.lex_state = 624}, - [2931] = {.lex_state = 624}, - [2932] = {.lex_state = 624}, - [2933] = {.lex_state = 624}, - [2934] = {.lex_state = 2}, - [2935] = {.lex_state = 630}, - [2936] = {.lex_state = 2}, - [2937] = {.lex_state = 577}, - [2938] = {.lex_state = 577}, - [2939] = {.lex_state = 577}, - [2940] = {.lex_state = 576}, - [2941] = {.lex_state = 66}, - [2942] = {.lex_state = 2}, - [2943] = {.lex_state = 2}, - [2944] = {.lex_state = 577}, - [2945] = {.lex_state = 60}, - [2946] = {.lex_state = 577}, - [2947] = {.lex_state = 624}, - [2948] = {.lex_state = 60}, - [2949] = {.lex_state = 190}, - [2950] = {.lex_state = 577}, - [2951] = {.lex_state = 2}, - [2952] = {.lex_state = 2}, - [2953] = {.lex_state = 577}, - [2954] = {.lex_state = 2}, - [2955] = {.lex_state = 624}, - [2956] = {.lex_state = 624}, - [2957] = {.lex_state = 624}, - [2958] = {.lex_state = 576}, - [2959] = {.lex_state = 576}, - [2960] = {.lex_state = 65}, - [2961] = {.lex_state = 60}, - [2962] = {.lex_state = 624}, - [2963] = {.lex_state = 577}, - [2964] = {.lex_state = 577}, - [2965] = {.lex_state = 576}, - [2966] = {.lex_state = 577}, - [2967] = {.lex_state = 624}, - [2968] = {.lex_state = 624}, - [2969] = {.lex_state = 60}, - [2970] = {.lex_state = 624}, - [2971] = {.lex_state = 624}, - [2972] = {.lex_state = 624}, - [2973] = {.lex_state = 624}, - [2974] = {.lex_state = 624}, - [2975] = {.lex_state = 624}, - [2976] = {.lex_state = 577}, - [2977] = {.lex_state = 624}, - [2978] = {.lex_state = 64}, - [2979] = {.lex_state = 624}, - [2980] = {.lex_state = 64}, - [2981] = {.lex_state = 624}, - [2982] = {.lex_state = 624}, - [2983] = {.lex_state = 64}, - [2984] = {.lex_state = 64}, - [2985] = {.lex_state = 624}, - [2986] = {.lex_state = 577}, - [2987] = {.lex_state = 624}, - [2988] = {.lex_state = 624}, - [2989] = {.lex_state = 64}, - [2990] = {.lex_state = 2}, - [2991] = {.lex_state = 64}, - [2992] = {.lex_state = 2}, - [2993] = {.lex_state = 64}, - [2994] = {.lex_state = 64}, - [2995] = {.lex_state = 64}, - [2996] = {.lex_state = 624}, - [2997] = {.lex_state = 624}, - [2998] = {.lex_state = 624}, - [2999] = {.lex_state = 67}, - [3000] = {.lex_state = 2}, - [3001] = {.lex_state = 658}, - [3002] = {.lex_state = 2}, - [3003] = {.lex_state = 624}, - [3004] = {.lex_state = 69}, - [3005] = {.lex_state = 624}, - [3006] = {.lex_state = 624}, - [3007] = {.lex_state = 64}, - [3008] = {.lex_state = 624}, - [3009] = {.lex_state = 624}, - [3010] = {.lex_state = 624}, - [3011] = {.lex_state = 624}, - [3012] = {.lex_state = 624}, - [3013] = {.lex_state = 624}, - [3014] = {.lex_state = 64}, - [3015] = {.lex_state = 64}, - [3016] = {.lex_state = 624}, - [3017] = {.lex_state = 624}, - [3018] = {.lex_state = 624}, - [3019] = {.lex_state = 624}, - [3020] = {.lex_state = 624}, - [3021] = {.lex_state = 624}, - [3022] = {.lex_state = 624}, - [3023] = {.lex_state = 624}, - [3024] = {.lex_state = 60}, - [3025] = {.lex_state = 624}, - [3026] = {.lex_state = 2}, - [3027] = {.lex_state = 624}, - [3028] = {.lex_state = 577}, - [3029] = {.lex_state = 577}, - [3030] = {.lex_state = 624}, - [3031] = {.lex_state = 624}, - [3032] = {.lex_state = 2}, - [3033] = {.lex_state = 624}, - [3034] = {.lex_state = 2}, - [3035] = {.lex_state = 2}, - [3036] = {.lex_state = 624}, - [3037] = {.lex_state = 624}, - [3038] = {.lex_state = 2}, - [3039] = {.lex_state = 69}, - [3040] = {.lex_state = 577}, - [3041] = {.lex_state = 577}, - [3042] = {.lex_state = 577}, - [3043] = {.lex_state = 624}, - [3044] = {.lex_state = 577}, - [3045] = {.lex_state = 630}, - [3046] = {.lex_state = 576}, - [3047] = {.lex_state = 577}, - [3048] = {.lex_state = 577}, - [3049] = {.lex_state = 624}, - [3050] = {.lex_state = 624}, - [3051] = {.lex_state = 624}, - [3052] = {.lex_state = 624}, - [3053] = {.lex_state = 2}, - [3054] = {.lex_state = 2}, - [3055] = {.lex_state = 64}, - [3056] = {.lex_state = 2}, - [3057] = {.lex_state = 577}, - [3058] = {.lex_state = 2}, - [3059] = {.lex_state = 624}, - [3060] = {.lex_state = 624}, - [3061] = {.lex_state = 2}, - [3062] = {.lex_state = 2}, - [3063] = {.lex_state = 624}, - [3064] = {.lex_state = 630}, - [3065] = {.lex_state = 48, .external_lex_state = 2}, - [3066] = {.lex_state = 624}, - [3067] = {.lex_state = 624}, - [3068] = {.lex_state = 2}, - [3069] = {.lex_state = 577}, - [3070] = {.lex_state = 624}, - [3071] = {.lex_state = 577}, - [3072] = {.lex_state = 2}, - [3073] = {.lex_state = 624}, - [3074] = {.lex_state = 624}, - [3075] = {.lex_state = 66}, - [3076] = {.lex_state = 577}, - [3077] = {.lex_state = 2}, - [3078] = {.lex_state = 624}, - [3079] = {.lex_state = 577}, - [3080] = {.lex_state = 184}, - [3081] = {.lex_state = 624}, - [3082] = {.lex_state = 66}, - [3083] = {.lex_state = 2}, - [3084] = {.lex_state = 624}, - [3085] = {.lex_state = 624}, - [3086] = {.lex_state = 624}, - [3087] = {.lex_state = 577}, - [3088] = {.lex_state = 2}, - [3089] = {.lex_state = 624}, - [3090] = {.lex_state = 68}, - [3091] = {.lex_state = 624}, - [3092] = {.lex_state = 624}, - [3093] = {.lex_state = 2}, - [3094] = {.lex_state = 624}, - [3095] = {.lex_state = 2}, - [3096] = {.lex_state = 577}, - [3097] = {.lex_state = 624}, - [3098] = {.lex_state = 624}, - [3099] = {.lex_state = 187}, - [3100] = {.lex_state = 577}, - [3101] = {.lex_state = 624}, - [3102] = {.lex_state = 577}, - [3103] = {.lex_state = 624}, - [3104] = {.lex_state = 48, .external_lex_state = 2}, - [3105] = {.lex_state = 2}, - [3106] = {.lex_state = 577}, - [3107] = {.lex_state = 624}, - [3108] = {.lex_state = 630}, - [3109] = {.lex_state = 577}, - [3110] = {.lex_state = 624}, - [3111] = {.lex_state = 624}, - [3112] = {.lex_state = 624}, - [3113] = {.lex_state = 577}, - [3114] = {.lex_state = 577}, - [3115] = {.lex_state = 577}, - [3116] = {.lex_state = 2}, - [3117] = {.lex_state = 71}, - [3118] = {.lex_state = 577}, - [3119] = {.lex_state = 190}, - [3120] = {.lex_state = 2}, - [3121] = {.lex_state = 624}, - [3122] = {.lex_state = 624}, - [3123] = {.lex_state = 624}, - [3124] = {.lex_state = 624}, - [3125] = {.lex_state = 624}, - [3126] = {.lex_state = 624}, - [3127] = {.lex_state = 68}, - [3128] = {.lex_state = 64}, - [3129] = {.lex_state = 60}, - [3130] = {.lex_state = 624}, - [3131] = {.lex_state = 2}, - [3132] = {.lex_state = 624}, - [3133] = {.lex_state = 624}, - [3134] = {.lex_state = 577}, - [3135] = {.lex_state = 624}, - [3136] = {.lex_state = 577}, - [3137] = {.lex_state = 2}, - [3138] = {.lex_state = 624}, - [3139] = {.lex_state = 2}, - [3140] = {.lex_state = 2}, - [3141] = {.lex_state = 624}, - [3142] = {.lex_state = 2}, - [3143] = {.lex_state = 624}, - [3144] = {.lex_state = 2}, - [3145] = {.lex_state = 577}, - [3146] = {.lex_state = 577}, - [3147] = {.lex_state = 624}, - [3148] = {.lex_state = 624}, - [3149] = {.lex_state = 70}, - [3150] = {.lex_state = 624}, - [3151] = {.lex_state = 2}, - [3152] = {.lex_state = 624}, - [3153] = {.lex_state = 624}, - [3154] = {.lex_state = 66}, - [3155] = {.lex_state = 624}, - [3156] = {.lex_state = 624}, - [3157] = {.lex_state = 60}, - [3158] = {.lex_state = 2}, - [3159] = {.lex_state = 577}, - [3160] = {.lex_state = 66}, - [3161] = {.lex_state = 577}, - [3162] = {.lex_state = 624}, - [3163] = {.lex_state = 624}, - [3164] = {.lex_state = 70}, - [3165] = {.lex_state = 624}, - [3166] = {.lex_state = 624}, - [3167] = {.lex_state = 577}, - [3168] = {.lex_state = 624}, - [3169] = {.lex_state = 577}, - [3170] = {.lex_state = 624}, - [3171] = {.lex_state = 2}, - [3172] = {.lex_state = 2}, - [3173] = {.lex_state = 577}, - [3174] = {.lex_state = 2}, - [3175] = {.lex_state = 187}, - [3176] = {.lex_state = 624}, - [3177] = {.lex_state = 624}, - [3178] = {.lex_state = 188}, - [3179] = {.lex_state = 2}, - [3180] = {.lex_state = 624}, - [3181] = {.lex_state = 624}, - [3182] = {.lex_state = 624}, - [3183] = {.lex_state = 577}, - [3184] = {.lex_state = 577}, - [3185] = {.lex_state = 577}, - [3186] = {.lex_state = 577}, - [3187] = {.lex_state = 577}, - [3188] = {.lex_state = 577}, - [3189] = {.lex_state = 577}, - [3190] = {.lex_state = 577}, - [3191] = {.lex_state = 577}, - [3192] = {.lex_state = 577}, - [3193] = {.lex_state = 577}, - [3194] = {.lex_state = 577}, - [3195] = {.lex_state = 624}, - [3196] = {.lex_state = 624}, - [3197] = {.lex_state = 624}, - [3198] = {.lex_state = 2}, - [3199] = {.lex_state = 624}, - [3200] = {.lex_state = 184}, - [3201] = {.lex_state = 624}, - [3202] = {.lex_state = 2}, - [3203] = {.lex_state = 624}, - [3204] = {.lex_state = 624}, - [3205] = {.lex_state = 624}, - [3206] = {.lex_state = 624}, - [3207] = {.lex_state = 577}, - [3208] = {.lex_state = 624}, - [3209] = {.lex_state = 577}, - [3210] = {.lex_state = 624}, - [3211] = {.lex_state = 577}, - [3212] = {.lex_state = 624}, - [3213] = {.lex_state = 624}, - [3214] = {.lex_state = 577}, - [3215] = {.lex_state = 577}, - [3216] = {.lex_state = 2129}, - [3217] = {.lex_state = 577}, - [3218] = {.lex_state = 577}, - [3219] = {.lex_state = 2}, - [3220] = {.lex_state = 2}, - [3221] = {.lex_state = 2}, - [3222] = {.lex_state = 577}, - [3223] = {.lex_state = 577}, - [3224] = {.lex_state = 577}, - [3225] = {.lex_state = 577}, - [3226] = {.lex_state = 2}, - [3227] = {.lex_state = 577}, - [3228] = {.lex_state = 577}, - [3229] = {.lex_state = 577}, - [3230] = {.lex_state = 577}, - [3231] = {.lex_state = 2}, - [3232] = {.lex_state = 577}, - [3233] = {.lex_state = 2}, - [3234] = {.lex_state = 2}, - [3235] = {.lex_state = 190}, - [3236] = {.lex_state = 190}, - [3237] = {.lex_state = 190}, - [3238] = {.lex_state = 630}, - [3239] = {.lex_state = 2}, - [3240] = {.lex_state = 630}, - [3241] = {.lex_state = 2}, - [3242] = {.lex_state = 2}, - [3243] = {.lex_state = 2}, - [3244] = {.lex_state = 2}, - [3245] = {.lex_state = 577}, - [3246] = {.lex_state = 577}, - [3247] = {.lex_state = 577}, - [3248] = {.lex_state = 94}, - [3249] = {.lex_state = 577}, - [3250] = {.lex_state = 577}, - [3251] = {.lex_state = 2}, - [3252] = {.lex_state = 577}, - [3253] = {.lex_state = 98}, - [3254] = {.lex_state = 2}, - [3255] = {.lex_state = 577}, - [3256] = {.lex_state = 2}, - [3257] = {.lex_state = 577}, - [3258] = {.lex_state = 577}, - [3259] = {.lex_state = 577}, - [3260] = {.lex_state = 2}, - [3261] = {.lex_state = 577}, - [3262] = {.lex_state = 577}, - [3263] = {.lex_state = 577}, - [3264] = {.lex_state = 630}, - [3265] = {.lex_state = 577}, - [3266] = {.lex_state = 577}, - [3267] = {.lex_state = 77}, - [3268] = {.lex_state = 130}, - [3269] = {.lex_state = 2}, - [3270] = {.lex_state = 79}, - [3271] = {.lex_state = 2}, - [3272] = {.lex_state = 577}, - [3273] = {.lex_state = 185}, - [3274] = {.lex_state = 2}, - [3275] = {.lex_state = 2}, - [3276] = {.lex_state = 195}, - [3277] = {.lex_state = 190}, - [3278] = {.lex_state = 577}, - [3279] = {.lex_state = 2}, - [3280] = {.lex_state = 577}, - [3281] = {.lex_state = 577}, - [3282] = {.lex_state = 577}, - [3283] = {.lex_state = 577}, - [3284] = {.lex_state = 2}, - [3285] = {.lex_state = 2}, - [3286] = {.lex_state = 185}, - [3287] = {.lex_state = 577}, - [3288] = {.lex_state = 577}, - [3289] = {.lex_state = 577}, - [3290] = {.lex_state = 2}, - [3291] = {.lex_state = 577}, - [3292] = {.lex_state = 630}, - [3293] = {.lex_state = 124}, - [3294] = {.lex_state = 577}, - [3295] = {.lex_state = 577}, - [3296] = {.lex_state = 577}, - [3297] = {.lex_state = 577}, - [3298] = {.lex_state = 203}, - [3299] = {.lex_state = 577}, - [3300] = {.lex_state = 2}, - [3301] = {.lex_state = 577}, - [3302] = {.lex_state = 577}, - [3303] = {.lex_state = 577}, - [3304] = {.lex_state = 2}, - [3305] = {.lex_state = 2}, - [3306] = {.lex_state = 2}, - [3307] = {.lex_state = 577}, - [3308] = {.lex_state = 577}, - [3309] = {.lex_state = 577}, - [3310] = {.lex_state = 577}, - [3311] = {.lex_state = 577}, - [3312] = {.lex_state = 577}, - [3313] = {.lex_state = 577}, - [3314] = {.lex_state = 2}, - [3315] = {.lex_state = 577}, - [3316] = {.lex_state = 577}, - [3317] = {.lex_state = 577}, - [3318] = {.lex_state = 577}, - [3319] = {.lex_state = 577}, - [3320] = {.lex_state = 577}, - [3321] = {.lex_state = 577}, - [3322] = {.lex_state = 577}, - [3323] = {.lex_state = 577}, - [3324] = {.lex_state = 577}, - [3325] = {.lex_state = 577}, - [3326] = {.lex_state = 577}, - [3327] = {.lex_state = 577}, - [3328] = {.lex_state = 2}, - [3329] = {.lex_state = 577}, - [3330] = {.lex_state = 577}, - [3331] = {.lex_state = 183}, - [3332] = {.lex_state = 577}, - [3333] = {.lex_state = 577}, - [3334] = {.lex_state = 577}, - [3335] = {.lex_state = 190}, - [3336] = {.lex_state = 190}, - [3337] = {.lex_state = 190}, - [3338] = {.lex_state = 190}, - [3339] = {.lex_state = 2129}, - [3340] = {.lex_state = 577}, - [3341] = {.lex_state = 577}, - [3342] = {.lex_state = 186}, - [3343] = {.lex_state = 2}, - [3344] = {.lex_state = 184}, - [3345] = {.lex_state = 2}, - [3346] = {.lex_state = 577}, - [3347] = {.lex_state = 2}, - [3348] = {.lex_state = 196}, - [3349] = {.lex_state = 577}, - [3350] = {.lex_state = 204}, - [3351] = {.lex_state = 2}, - [3352] = {.lex_state = 577}, - [3353] = {.lex_state = 186}, - [3354] = {.lex_state = 577}, - [3355] = {.lex_state = 611}, - [3356] = {.lex_state = 2}, - [3357] = {.lex_state = 208}, - [3358] = {.lex_state = 80}, - [3359] = {.lex_state = 611}, - [3360] = {.lex_state = 205}, - [3361] = {.lex_state = 189}, - [3362] = {.lex_state = 95}, - [3363] = {.lex_state = 2}, - [3364] = {.lex_state = 234}, - [3365] = {.lex_state = 577}, - [3366] = {.lex_state = 81}, - [3367] = {.lex_state = 2}, - [3368] = {.lex_state = 100}, - [3369] = {.lex_state = 124}, - [3370] = {.lex_state = 205}, - [3371] = {.lex_state = 2}, - [3372] = {.lex_state = 130}, - [3373] = {.lex_state = 100}, - [3374] = {.lex_state = 2}, - [3375] = {.lex_state = 581}, - [3376] = {.lex_state = 130}, - [3377] = {.lex_state = 130}, - [3378] = {.lex_state = 124}, - [3379] = {.lex_state = 130}, - [3380] = {.lex_state = 124}, - [3381] = {.lex_state = 611}, - [3382] = {.lex_state = 130}, - [3383] = {.lex_state = 130}, - [3384] = {.lex_state = 2}, - [3385] = {.lex_state = 189}, - [3386] = {.lex_state = 124}, - [3387] = {.lex_state = 190}, - [3388] = {.lex_state = 80}, - [3389] = {.lex_state = 190}, - [3390] = {.lex_state = 99}, - [3391] = {.lex_state = 2}, - [3392] = {.lex_state = 197}, - [3393] = {.lex_state = 611}, - [3394] = {.lex_state = 2}, - [3395] = {.lex_state = 577}, - [3396] = {.lex_state = 611}, - [3397] = {.lex_state = 219}, - [3398] = {.lex_state = 206}, - [3399] = {.lex_state = 206}, - [3400] = {.lex_state = 235}, - [3401] = {.lex_state = 2130}, - [3402] = {.lex_state = 1727, .external_lex_state = 2}, - [3403] = {.lex_state = 1727, .external_lex_state = 2}, - [3404] = {.lex_state = 1727, .external_lex_state = 2}, - [3405] = {.lex_state = 2071}, - [3406] = {.lex_state = 2071}, - [3407] = {.lex_state = 81}, - [3408] = {.lex_state = 1727, .external_lex_state = 2}, - [3409] = {.lex_state = 2130}, - [3410] = {.lex_state = 2130}, - [3411] = {.lex_state = 2071}, - [3412] = {.lex_state = 101}, - [3413] = {.lex_state = 82}, - [3414] = {.lex_state = 81}, - [3415] = {.lex_state = 1727, .external_lex_state = 2}, - [3416] = {.lex_state = 199}, - [3417] = {.lex_state = 2}, - [3418] = {.lex_state = 221}, - [3419] = {.lex_state = 236}, - [3420] = {.lex_state = 2071}, - [3421] = {.lex_state = 2071}, - [3422] = {.lex_state = 1727, .external_lex_state = 2}, - [3423] = {.lex_state = 209}, - [3424] = {.lex_state = 207}, - [3425] = {.lex_state = 102}, - [3426] = {.lex_state = 104}, - [3427] = {.lex_state = 581}, - [3428] = {.lex_state = 581}, - [3429] = {.lex_state = 207}, - [3430] = {.lex_state = 2071}, - [3431] = {.lex_state = 2071}, - [3432] = {.lex_state = 581}, - [3433] = {.lex_state = 1727, .external_lex_state = 2}, - [3434] = {.lex_state = 581}, - [3435] = {.lex_state = 130}, - [3436] = {.lex_state = 2071}, - [3437] = {.lex_state = 2071}, - [3438] = {.lex_state = 1727, .external_lex_state = 2}, - [3439] = {.lex_state = 198}, - [3440] = {.lex_state = 236}, - [3441] = {.lex_state = 1727, .external_lex_state = 2}, - [3442] = {.lex_state = 2071}, - [3443] = {.lex_state = 2071}, - [3444] = {.lex_state = 1727, .external_lex_state = 2}, - [3445] = {.lex_state = 101}, - [3446] = {.lex_state = 2071}, - [3447] = {.lex_state = 2071}, - [3448] = {.lex_state = 102}, - [3449] = {.lex_state = 2175}, - [3450] = {.lex_state = 220}, - [3451] = {.lex_state = 2071}, - [3452] = {.lex_state = 207}, - [3453] = {.lex_state = 2071}, - [3454] = {.lex_state = 1727, .external_lex_state = 2}, - [3455] = {.lex_state = 2071}, - [3456] = {.lex_state = 207}, - [3457] = {.lex_state = 2175}, - [3458] = {.lex_state = 2071}, - [3459] = {.lex_state = 1727, .external_lex_state = 2}, - [3460] = {.lex_state = 220}, - [3461] = {.lex_state = 2175}, - [3462] = {.lex_state = 2175}, - [3463] = {.lex_state = 2071}, - [3464] = {.lex_state = 2071}, - [3465] = {.lex_state = 2071}, - [3466] = {.lex_state = 2071}, - [3467] = {.lex_state = 1727, .external_lex_state = 2}, - [3468] = {.lex_state = 2071}, - [3469] = {.lex_state = 2071}, - [3470] = {.lex_state = 78}, - [3471] = {.lex_state = 2071}, - [3472] = {.lex_state = 2071}, - [3473] = {.lex_state = 2071}, - [3474] = {.lex_state = 2071}, - [3475] = {.lex_state = 2071}, - [3476] = {.lex_state = 1727, .external_lex_state = 2}, - [3477] = {.lex_state = 1727, .external_lex_state = 2}, - [3478] = {.lex_state = 2130}, - [3479] = {.lex_state = 1727, .external_lex_state = 2}, - [3480] = {.lex_state = 96}, - [3481] = {.lex_state = 208}, - [3482] = {.lex_state = 210}, - [3483] = {.lex_state = 1727, .external_lex_state = 2}, - [3484] = {.lex_state = 208}, - [3485] = {.lex_state = 208}, - [3486] = {.lex_state = 1727, .external_lex_state = 2}, - [3487] = {.lex_state = 102}, - [3488] = {.lex_state = 102}, - [3489] = {.lex_state = 81}, - [3490] = {.lex_state = 1727, .external_lex_state = 2}, - [3491] = {.lex_state = 221}, - [3492] = {.lex_state = 103}, - [3493] = {.lex_state = 89}, - [3494] = {.lex_state = 581}, - [3495] = {.lex_state = 581}, - [3496] = {.lex_state = 89}, - [3497] = {.lex_state = 221}, - [3498] = {.lex_state = 581}, - [3499] = {.lex_state = 581}, - [3500] = {.lex_state = 211}, - [3501] = {.lex_state = 103}, - [3502] = {.lex_state = 581}, - [3503] = {.lex_state = 581}, - [3504] = {.lex_state = 581}, - [3505] = {.lex_state = 131}, - [3506] = {.lex_state = 581}, - [3507] = {.lex_state = 581}, - [3508] = {.lex_state = 131}, - [3509] = {.lex_state = 581}, - [3510] = {.lex_state = 581}, - [3511] = {.lex_state = 131}, - [3512] = {.lex_state = 581}, - [3513] = {.lex_state = 581}, - [3514] = {.lex_state = 105}, - [3515] = {.lex_state = 581}, - [3516] = {.lex_state = 581}, - [3517] = {.lex_state = 581}, - [3518] = {.lex_state = 241}, - [3519] = {.lex_state = 581}, - [3520] = {.lex_state = 581}, - [3521] = {.lex_state = 581}, - [3522] = {.lex_state = 581}, - [3523] = {.lex_state = 581}, - [3524] = {.lex_state = 581}, - [3525] = {.lex_state = 581}, - [3526] = {.lex_state = 81}, - [3527] = {.lex_state = 581}, - [3528] = {.lex_state = 131}, - [3529] = {.lex_state = 581}, - [3530] = {.lex_state = 581}, - [3531] = {.lex_state = 581}, - [3532] = {.lex_state = 625}, - [3533] = {.lex_state = 581}, - [3534] = {.lex_state = 106}, - [3535] = {.lex_state = 581}, - [3536] = {.lex_state = 106}, - [3537] = {.lex_state = 581}, - [3538] = {.lex_state = 237}, - [3539] = {.lex_state = 581}, - [3540] = {.lex_state = 581}, - [3541] = {.lex_state = 237}, - [3542] = {.lex_state = 221}, - [3543] = {.lex_state = 581}, - [3544] = {.lex_state = 237}, - [3545] = {.lex_state = 581}, - [3546] = {.lex_state = 237}, - [3547] = {.lex_state = 581}, - [3548] = {.lex_state = 83}, - [3549] = {.lex_state = 103}, - [3550] = {.lex_state = 581}, - [3551] = {.lex_state = 581}, - [3552] = {.lex_state = 581}, - [3553] = {.lex_state = 211}, - [3554] = {.lex_state = 97}, - [3555] = {.lex_state = 208}, - [3556] = {.lex_state = 581}, - [3557] = {.lex_state = 581}, - [3558] = {.lex_state = 581}, - [3559] = {.lex_state = 222}, - [3560] = {.lex_state = 131}, - [3561] = {.lex_state = 103}, - [3562] = {.lex_state = 89}, - [3563] = {.lex_state = 83}, - [3564] = {.lex_state = 247}, - [3565] = {.lex_state = 213}, - [3566] = {.lex_state = 581}, - [3567] = {.lex_state = 581}, - [3568] = {.lex_state = 131}, - [3569] = {.lex_state = 213}, - [3570] = {.lex_state = 625}, - [3571] = {.lex_state = 200}, - [3572] = {.lex_state = 89}, - [3573] = {.lex_state = 245}, - [3574] = {.lex_state = 245}, - [3575] = {.lex_state = 108}, - [3576] = {.lex_state = 245}, - [3577] = {.lex_state = 107}, - [3578] = {.lex_state = 212}, - [3579] = {.lex_state = 107}, - [3580] = {.lex_state = 245}, - [3581] = {.lex_state = 129}, - [3582] = {.lex_state = 2}, - [3583] = {.lex_state = 212}, - [3584] = {.lex_state = 212}, - [3585] = {.lex_state = 107}, - [3586] = {.lex_state = 245}, - [3587] = {.lex_state = 245}, - [3588] = {.lex_state = 107}, - [3589] = {.lex_state = 248}, - [3590] = {.lex_state = 223}, - [3591] = {.lex_state = 578}, - [3592] = {.lex_state = 89}, - [3593] = {.lex_state = 89}, - [3594] = {.lex_state = 245}, - [3595] = {.lex_state = 108}, - [3596] = {.lex_state = 84}, - [3597] = {.lex_state = 84}, - [3598] = {.lex_state = 84}, - [3599] = {.lex_state = 277}, - [3600] = {.lex_state = 107}, - [3601] = {.lex_state = 248}, - [3602] = {.lex_state = 245}, - [3603] = {.lex_state = 214}, - [3604] = {.lex_state = 223}, - [3605] = {.lex_state = 245}, - [3606] = {.lex_state = 214}, - [3607] = {.lex_state = 245}, - [3608] = {.lex_state = 84}, - [3609] = {.lex_state = 259}, - [3610] = {.lex_state = 131}, - [3611] = {.lex_state = 242}, - [3612] = {.lex_state = 245}, - [3613] = {.lex_state = 578}, - [3614] = {.lex_state = 84}, - [3615] = {.lex_state = 245}, - [3616] = {.lex_state = 214}, - [3617] = {.lex_state = 214}, - [3618] = {.lex_state = 214}, - [3619] = {.lex_state = 245}, - [3620] = {.lex_state = 129}, - [3621] = {.lex_state = 131}, - [3622] = {.lex_state = 243}, - [3623] = {.lex_state = 276}, - [3624] = {.lex_state = 131}, - [3625] = {.lex_state = 578}, - [3626] = {.lex_state = 224}, - [3627] = {.lex_state = 46}, - [3628] = {.lex_state = 46}, - [3629] = {.lex_state = 46}, - [3630] = {.lex_state = 86}, - [3631] = {.lex_state = 110}, - [3632] = {.lex_state = 124}, - [3633] = {.lex_state = 46}, - [3634] = {.lex_state = 578}, - [3635] = {.lex_state = 578}, - [3636] = {.lex_state = 578}, - [3637] = {.lex_state = 215}, - [3638] = {.lex_state = 124}, - [3639] = {.lex_state = 224}, - [3640] = {.lex_state = 131}, - [3641] = {.lex_state = 46}, - [3642] = {.lex_state = 46}, - [3643] = {.lex_state = 246}, - [3644] = {.lex_state = 260}, - [3645] = {.lex_state = 109}, - [3646] = {.lex_state = 31}, - [3647] = {.lex_state = 124}, - [3648] = {.lex_state = 46}, - [3649] = {.lex_state = 224}, - [3650] = {.lex_state = 31}, - [3651] = {.lex_state = 46}, - [3652] = {.lex_state = 249}, - [3653] = {.lex_state = 89}, - [3654] = {.lex_state = 46}, - [3655] = {.lex_state = 124}, - [3656] = {.lex_state = 31}, - [3657] = {.lex_state = 46}, - [3658] = {.lex_state = 46}, - [3659] = {.lex_state = 46}, - [3660] = {.lex_state = 129}, - [3661] = {.lex_state = 124}, - [3662] = {.lex_state = 276}, - [3663] = {.lex_state = 124}, - [3664] = {.lex_state = 124}, - [3665] = {.lex_state = 31}, - [3666] = {.lex_state = 46}, - [3667] = {.lex_state = 131}, - [3668] = {.lex_state = 131}, - [3669] = {.lex_state = 124}, - [3670] = {.lex_state = 31}, - [3671] = {.lex_state = 277}, - [3672] = {.lex_state = 207}, - [3673] = {.lex_state = 212}, - [3674] = {.lex_state = 46}, - [3675] = {.lex_state = 31}, - [3676] = {.lex_state = 130}, - [3677] = {.lex_state = 129}, - [3678] = {.lex_state = 85}, - [3679] = {.lex_state = 218}, - [3680] = {.lex_state = 109}, - [3681] = {.lex_state = 250}, - [3682] = {.lex_state = 124}, - [3683] = {.lex_state = 109}, - [3684] = {.lex_state = 124}, - [3685] = {.lex_state = 31}, - [3686] = {.lex_state = 277}, - [3687] = {.lex_state = 109}, - [3688] = {.lex_state = 46}, - [3689] = {.lex_state = 276}, - [3690] = {.lex_state = 89}, - [3691] = {.lex_state = 46}, - [3692] = {.lex_state = 124}, - [3693] = {.lex_state = 224}, - [3694] = {.lex_state = 224}, - [3695] = {.lex_state = 277}, - [3696] = {.lex_state = 131}, - [3697] = {.lex_state = 31}, - [3698] = {.lex_state = 257}, - [3699] = {.lex_state = 89}, - [3700] = {.lex_state = 117}, - [3701] = {.lex_state = 131}, - [3702] = {.lex_state = 31}, - [3703] = {.lex_state = 89}, - [3704] = {.lex_state = 129}, - [3705] = {.lex_state = 109}, - [3706] = {.lex_state = 46}, - [3707] = {.lex_state = 131}, - [3708] = {.lex_state = 46}, - [3709] = {.lex_state = 31}, - [3710] = {.lex_state = 249}, - [3711] = {.lex_state = 124}, - [3712] = {.lex_state = 131}, - [3713] = {.lex_state = 46}, - [3714] = {.lex_state = 578}, - [3715] = {.lex_state = 578}, - [3716] = {.lex_state = 46}, - [3717] = {.lex_state = 249}, - [3718] = {.lex_state = 124}, - [3719] = {.lex_state = 212}, - [3720] = {.lex_state = 277}, - [3721] = {.lex_state = 46}, - [3722] = {.lex_state = 277}, - [3723] = {.lex_state = 260}, - [3724] = {.lex_state = 46}, - [3725] = {.lex_state = 277}, - [3726] = {.lex_state = 124}, - [3727] = {.lex_state = 46}, - [3728] = {.lex_state = 31}, - [3729] = {.lex_state = 46}, - [3730] = {.lex_state = 249}, - [3731] = {.lex_state = 276}, - [3732] = {.lex_state = 0}, - [3733] = {.lex_state = 577}, - [3734] = {.lex_state = 0}, - [3735] = {.lex_state = 0}, - [3736] = {.lex_state = 0}, - [3737] = {.lex_state = 659}, - [3738] = {.lex_state = 640}, - [3739] = {.lex_state = 625}, + [1] = {.lex_state = 672, .external_lex_state = 2}, + [2] = {.lex_state = 55, .external_lex_state = 2}, + [3] = {.lex_state = 55, .external_lex_state = 2}, + [4] = {.lex_state = 55, .external_lex_state = 2}, + [5] = {.lex_state = 55, .external_lex_state = 2}, + [6] = {.lex_state = 55, .external_lex_state = 2}, + [7] = {.lex_state = 55, .external_lex_state = 2}, + [8] = {.lex_state = 55, .external_lex_state = 2}, + [9] = {.lex_state = 55, .external_lex_state = 2}, + [10] = {.lex_state = 55, .external_lex_state = 2}, + [11] = {.lex_state = 55, .external_lex_state = 2}, + [12] = {.lex_state = 55, .external_lex_state = 2}, + [13] = {.lex_state = 55, .external_lex_state = 2}, + [14] = {.lex_state = 55, .external_lex_state = 2}, + [15] = {.lex_state = 55, .external_lex_state = 2}, + [16] = {.lex_state = 55, .external_lex_state = 2}, + [17] = {.lex_state = 666, .external_lex_state = 2}, + [18] = {.lex_state = 666, .external_lex_state = 2}, + [19] = {.lex_state = 666, .external_lex_state = 2}, + [20] = {.lex_state = 666, .external_lex_state = 2}, + [21] = {.lex_state = 666, .external_lex_state = 2}, + [22] = {.lex_state = 666, .external_lex_state = 2}, + [23] = {.lex_state = 666, .external_lex_state = 2}, + [24] = {.lex_state = 666, .external_lex_state = 2}, + [25] = {.lex_state = 666, .external_lex_state = 2}, + [26] = {.lex_state = 666, .external_lex_state = 2}, + [27] = {.lex_state = 666, .external_lex_state = 2}, + [28] = {.lex_state = 666, .external_lex_state = 2}, + [29] = {.lex_state = 666, .external_lex_state = 2}, + [30] = {.lex_state = 666, .external_lex_state = 2}, + [31] = {.lex_state = 666, .external_lex_state = 2}, + [32] = {.lex_state = 666, .external_lex_state = 2}, + [33] = {.lex_state = 666, .external_lex_state = 2}, + [34] = {.lex_state = 666, .external_lex_state = 2}, + [35] = {.lex_state = 666, .external_lex_state = 2}, + [36] = {.lex_state = 666, .external_lex_state = 2}, + [37] = {.lex_state = 666, .external_lex_state = 2}, + [38] = {.lex_state = 53, .external_lex_state = 2}, + [39] = {.lex_state = 666, .external_lex_state = 2}, + [40] = {.lex_state = 666, .external_lex_state = 2}, + [41] = {.lex_state = 53, .external_lex_state = 2}, + [42] = {.lex_state = 53, .external_lex_state = 2}, + [43] = {.lex_state = 666, .external_lex_state = 2}, + [44] = {.lex_state = 53, .external_lex_state = 2}, + [45] = {.lex_state = 666, .external_lex_state = 2}, + [46] = {.lex_state = 666, .external_lex_state = 2}, + [47] = {.lex_state = 53, .external_lex_state = 2}, + [48] = {.lex_state = 666, .external_lex_state = 2}, + [49] = {.lex_state = 53, .external_lex_state = 2}, + [50] = {.lex_state = 53, .external_lex_state = 2}, + [51] = {.lex_state = 666, .external_lex_state = 2}, + [52] = {.lex_state = 53, .external_lex_state = 2}, + [53] = {.lex_state = 666, .external_lex_state = 2}, + [54] = {.lex_state = 666, .external_lex_state = 2}, + [55] = {.lex_state = 53, .external_lex_state = 2}, + [56] = {.lex_state = 53, .external_lex_state = 2}, + [57] = {.lex_state = 53, .external_lex_state = 2}, + [58] = {.lex_state = 666, .external_lex_state = 2}, + [59] = {.lex_state = 53, .external_lex_state = 2}, + [60] = {.lex_state = 666, .external_lex_state = 2}, + [61] = {.lex_state = 53, .external_lex_state = 2}, + [62] = {.lex_state = 666, .external_lex_state = 2}, + [63] = {.lex_state = 53, .external_lex_state = 2}, + [64] = {.lex_state = 666, .external_lex_state = 2}, + [65] = {.lex_state = 53, .external_lex_state = 2}, + [66] = {.lex_state = 666, .external_lex_state = 2}, + [67] = {.lex_state = 53, .external_lex_state = 2}, + [68] = {.lex_state = 666, .external_lex_state = 2}, + [69] = {.lex_state = 53, .external_lex_state = 2}, + [70] = {.lex_state = 666, .external_lex_state = 2}, + [71] = {.lex_state = 53, .external_lex_state = 2}, + [72] = {.lex_state = 666, .external_lex_state = 2}, + [73] = {.lex_state = 666, .external_lex_state = 2}, + [74] = {.lex_state = 53, .external_lex_state = 2}, + [75] = {.lex_state = 666, .external_lex_state = 2}, + [76] = {.lex_state = 53, .external_lex_state = 2}, + [77] = {.lex_state = 53, .external_lex_state = 2}, + [78] = {.lex_state = 53, .external_lex_state = 2}, + [79] = {.lex_state = 53, .external_lex_state = 2}, + [80] = {.lex_state = 53, .external_lex_state = 2}, + [81] = {.lex_state = 53, .external_lex_state = 2}, + [82] = {.lex_state = 53, .external_lex_state = 2}, + [83] = {.lex_state = 666, .external_lex_state = 2}, + [84] = {.lex_state = 666, .external_lex_state = 2}, + [85] = {.lex_state = 666, .external_lex_state = 2}, + [86] = {.lex_state = 666, .external_lex_state = 2}, + [87] = {.lex_state = 666, .external_lex_state = 2}, + [88] = {.lex_state = 53, .external_lex_state = 2}, + [89] = {.lex_state = 53, .external_lex_state = 2}, + [90] = {.lex_state = 666, .external_lex_state = 2}, + [91] = {.lex_state = 666, .external_lex_state = 2}, + [92] = {.lex_state = 666, .external_lex_state = 2}, + [93] = {.lex_state = 666, .external_lex_state = 2}, + [94] = {.lex_state = 666, .external_lex_state = 2}, + [95] = {.lex_state = 666, .external_lex_state = 2}, + [96] = {.lex_state = 666, .external_lex_state = 2}, + [97] = {.lex_state = 666, .external_lex_state = 2}, + [98] = {.lex_state = 666, .external_lex_state = 2}, + [99] = {.lex_state = 666, .external_lex_state = 2}, + [100] = {.lex_state = 666, .external_lex_state = 2}, + [101] = {.lex_state = 1188}, + [102] = {.lex_state = 1203}, + [103] = {.lex_state = 1189}, + [104] = {.lex_state = 1178}, + [105] = {.lex_state = 1362}, + [106] = {.lex_state = 1204}, + [107] = {.lex_state = 1191}, + [108] = {.lex_state = 1356}, + [109] = {.lex_state = 1189}, + [110] = {.lex_state = 1184}, + [111] = {.lex_state = 1356}, + [112] = {.lex_state = 1193}, + [113] = {.lex_state = 1362}, + [114] = {.lex_state = 1190}, + [115] = {.lex_state = 1, .external_lex_state = 2}, + [116] = {.lex_state = 1190}, + [117] = {.lex_state = 1358}, + [118] = {.lex_state = 1190}, + [119] = {.lex_state = 1180}, + [120] = {.lex_state = 1193}, + [121] = {.lex_state = 1358}, + [122] = {.lex_state = 1190}, + [123] = {.lex_state = 1180}, + [124] = {.lex_state = 596, .external_lex_state = 2}, + [125] = {.lex_state = 1360}, + [126] = {.lex_state = 1360}, + [127] = {.lex_state = 1182}, + [128] = {.lex_state = 1182}, + [129] = {.lex_state = 1182}, + [130] = {.lex_state = 1182}, + [131] = {.lex_state = 1360}, + [132] = {.lex_state = 1195}, + [133] = {.lex_state = 1195}, + [134] = {.lex_state = 1360}, + [135] = {.lex_state = 1195}, + [136] = {.lex_state = 596, .external_lex_state = 2}, + [137] = {.lex_state = 1197}, + [138] = {.lex_state = 596, .external_lex_state = 2}, + [139] = {.lex_state = 1358}, + [140] = {.lex_state = 1358}, + [141] = {.lex_state = 1195}, + [142] = {.lex_state = 1206}, + [143] = {.lex_state = 1199}, + [144] = {.lex_state = 1360}, + [145] = {.lex_state = 1199}, + [146] = {.lex_state = 1360}, + [147] = {.lex_state = 1360}, + [148] = {.lex_state = 1360}, + [149] = {.lex_state = 1201}, + [150] = {.lex_state = 1201}, + [151] = {.lex_state = 1201}, + [152] = {.lex_state = 1201}, + [153] = {.lex_state = 1364}, + [154] = {.lex_state = 1208}, + [155] = {.lex_state = 1364}, + [156] = {.lex_state = 1186}, + [157] = {.lex_state = 1208}, + [158] = {.lex_state = 1208}, + [159] = {.lex_state = 1186}, + [160] = {.lex_state = 1208}, + [161] = {.lex_state = 666, .external_lex_state = 2}, + [162] = {.lex_state = 666, .external_lex_state = 2}, + [163] = {.lex_state = 666, .external_lex_state = 2}, + [164] = {.lex_state = 666, .external_lex_state = 2}, + [165] = {.lex_state = 666, .external_lex_state = 2}, + [166] = {.lex_state = 666, .external_lex_state = 2}, + [167] = {.lex_state = 666, .external_lex_state = 2}, + [168] = {.lex_state = 666, .external_lex_state = 2}, + [169] = {.lex_state = 666, .external_lex_state = 2}, + [170] = {.lex_state = 666, .external_lex_state = 2}, + [171] = {.lex_state = 666, .external_lex_state = 2}, + [172] = {.lex_state = 666, .external_lex_state = 2}, + [173] = {.lex_state = 666, .external_lex_state = 2}, + [174] = {.lex_state = 666, .external_lex_state = 2}, + [175] = {.lex_state = 666, .external_lex_state = 2}, + [176] = {.lex_state = 666, .external_lex_state = 2}, + [177] = {.lex_state = 666, .external_lex_state = 2}, + [178] = {.lex_state = 666, .external_lex_state = 2}, + [179] = {.lex_state = 666, .external_lex_state = 2}, + [180] = {.lex_state = 666, .external_lex_state = 2}, + [181] = {.lex_state = 666, .external_lex_state = 2}, + [182] = {.lex_state = 666, .external_lex_state = 2}, + [183] = {.lex_state = 666, .external_lex_state = 2}, + [184] = {.lex_state = 666, .external_lex_state = 2}, + [185] = {.lex_state = 666, .external_lex_state = 2}, + [186] = {.lex_state = 666, .external_lex_state = 2}, + [187] = {.lex_state = 666, .external_lex_state = 2}, + [188] = {.lex_state = 666, .external_lex_state = 2}, + [189] = {.lex_state = 666, .external_lex_state = 2}, + [190] = {.lex_state = 1364}, + [191] = {.lex_state = 1364}, + [192] = {.lex_state = 666, .external_lex_state = 2}, + [193] = {.lex_state = 666, .external_lex_state = 2}, + [194] = {.lex_state = 666, .external_lex_state = 2}, + [195] = {.lex_state = 1210}, + [196] = {.lex_state = 666, .external_lex_state = 2}, + [197] = {.lex_state = 666, .external_lex_state = 2}, + [198] = {.lex_state = 1210}, + [199] = {.lex_state = 666, .external_lex_state = 2}, + [200] = {.lex_state = 666, .external_lex_state = 2}, + [201] = {.lex_state = 666, .external_lex_state = 2}, + [202] = {.lex_state = 666, .external_lex_state = 2}, + [203] = {.lex_state = 71, .external_lex_state = 2}, + [204] = {.lex_state = 71, .external_lex_state = 2}, + [205] = {.lex_state = 71, .external_lex_state = 2}, + [206] = {.lex_state = 57, .external_lex_state = 2}, + [207] = {.lex_state = 57, .external_lex_state = 2}, + [208] = {.lex_state = 57, .external_lex_state = 2}, + [209] = {.lex_state = 57, .external_lex_state = 2}, + [210] = {.lex_state = 57, .external_lex_state = 2}, + [211] = {.lex_state = 57, .external_lex_state = 2}, + [212] = {.lex_state = 57, .external_lex_state = 2}, + [213] = {.lex_state = 57, .external_lex_state = 2}, + [214] = {.lex_state = 57, .external_lex_state = 2}, + [215] = {.lex_state = 57, .external_lex_state = 2}, + [216] = {.lex_state = 57, .external_lex_state = 2}, + [217] = {.lex_state = 57, .external_lex_state = 2}, + [218] = {.lex_state = 57, .external_lex_state = 2}, + [219] = {.lex_state = 57, .external_lex_state = 2}, + [220] = {.lex_state = 57, .external_lex_state = 2}, + [221] = {.lex_state = 57, .external_lex_state = 2}, + [222] = {.lex_state = 57, .external_lex_state = 2}, + [223] = {.lex_state = 57, .external_lex_state = 2}, + [224] = {.lex_state = 57, .external_lex_state = 2}, + [225] = {.lex_state = 57, .external_lex_state = 2}, + [226] = {.lex_state = 57, .external_lex_state = 2}, + [227] = {.lex_state = 57, .external_lex_state = 2}, + [228] = {.lex_state = 57, .external_lex_state = 2}, + [229] = {.lex_state = 57, .external_lex_state = 2}, + [230] = {.lex_state = 57, .external_lex_state = 2}, + [231] = {.lex_state = 57, .external_lex_state = 2}, + [232] = {.lex_state = 57, .external_lex_state = 2}, + [233] = {.lex_state = 57, .external_lex_state = 2}, + [234] = {.lex_state = 57, .external_lex_state = 2}, + [235] = {.lex_state = 57, .external_lex_state = 2}, + [236] = {.lex_state = 57, .external_lex_state = 2}, + [237] = {.lex_state = 57, .external_lex_state = 2}, + [238] = {.lex_state = 57, .external_lex_state = 2}, + [239] = {.lex_state = 57, .external_lex_state = 2}, + [240] = {.lex_state = 57, .external_lex_state = 2}, + [241] = {.lex_state = 57, .external_lex_state = 2}, + [242] = {.lex_state = 57, .external_lex_state = 2}, + [243] = {.lex_state = 57, .external_lex_state = 2}, + [244] = {.lex_state = 57, .external_lex_state = 2}, + [245] = {.lex_state = 57, .external_lex_state = 2}, + [246] = {.lex_state = 57, .external_lex_state = 2}, + [247] = {.lex_state = 57, .external_lex_state = 2}, + [248] = {.lex_state = 57, .external_lex_state = 2}, + [249] = {.lex_state = 57, .external_lex_state = 2}, + [250] = {.lex_state = 57, .external_lex_state = 2}, + [251] = {.lex_state = 57, .external_lex_state = 2}, + [252] = {.lex_state = 57, .external_lex_state = 2}, + [253] = {.lex_state = 57, .external_lex_state = 2}, + [254] = {.lex_state = 57, .external_lex_state = 2}, + [255] = {.lex_state = 57, .external_lex_state = 2}, + [256] = {.lex_state = 57, .external_lex_state = 2}, + [257] = {.lex_state = 57, .external_lex_state = 2}, + [258] = {.lex_state = 57, .external_lex_state = 2}, + [259] = {.lex_state = 57, .external_lex_state = 2}, + [260] = {.lex_state = 57, .external_lex_state = 2}, + [261] = {.lex_state = 57, .external_lex_state = 2}, + [262] = {.lex_state = 57, .external_lex_state = 2}, + [263] = {.lex_state = 57, .external_lex_state = 2}, + [264] = {.lex_state = 57, .external_lex_state = 2}, + [265] = {.lex_state = 57, .external_lex_state = 2}, + [266] = {.lex_state = 57, .external_lex_state = 2}, + [267] = {.lex_state = 57, .external_lex_state = 2}, + [268] = {.lex_state = 57, .external_lex_state = 2}, + [269] = {.lex_state = 57, .external_lex_state = 2}, + [270] = {.lex_state = 57, .external_lex_state = 2}, + [271] = {.lex_state = 57, .external_lex_state = 2}, + [272] = {.lex_state = 57, .external_lex_state = 2}, + [273] = {.lex_state = 57, .external_lex_state = 2}, + [274] = {.lex_state = 57, .external_lex_state = 2}, + [275] = {.lex_state = 57, .external_lex_state = 2}, + [276] = {.lex_state = 57, .external_lex_state = 2}, + [277] = {.lex_state = 57, .external_lex_state = 2}, + [278] = {.lex_state = 1192}, + [279] = {.lex_state = 1363}, + [280] = {.lex_state = 1357}, + [281] = {.lex_state = 1185}, + [282] = {.lex_state = 1179}, + [283] = {.lex_state = 1205}, + [284] = {.lex_state = 1357}, + [285] = {.lex_state = 57, .external_lex_state = 2}, + [286] = {.lex_state = 1359}, + [287] = {.lex_state = 57, .external_lex_state = 2}, + [288] = {.lex_state = 1181}, + [289] = {.lex_state = 57, .external_lex_state = 2}, + [290] = {.lex_state = 1181}, + [291] = {.lex_state = 1359}, + [292] = {.lex_state = 1194}, + [293] = {.lex_state = 57, .external_lex_state = 2}, + [294] = {.lex_state = 1194}, + [295] = {.lex_state = 57, .external_lex_state = 2}, + [296] = {.lex_state = 57, .external_lex_state = 2}, + [297] = {.lex_state = 1363}, + [298] = {.lex_state = 57, .external_lex_state = 2}, + [299] = {.lex_state = 57, .external_lex_state = 2}, + [300] = {.lex_state = 57, .external_lex_state = 2}, + [301] = {.lex_state = 57, .external_lex_state = 2}, + [302] = {.lex_state = 57, .external_lex_state = 2}, + [303] = {.lex_state = 57, .external_lex_state = 2}, + [304] = {.lex_state = 57, .external_lex_state = 2}, + [305] = {.lex_state = 1196}, + [306] = {.lex_state = 1198}, + [307] = {.lex_state = 1183}, + [308] = {.lex_state = 1183}, + [309] = {.lex_state = 1361}, + [310] = {.lex_state = 1361}, + [311] = {.lex_state = 1183}, + [312] = {.lex_state = 1359}, + [313] = {.lex_state = 1196}, + [314] = {.lex_state = 1359}, + [315] = {.lex_state = 1361}, + [316] = {.lex_state = 1196}, + [317] = {.lex_state = 1361}, + [318] = {.lex_state = 1196}, + [319] = {.lex_state = 1183}, + [320] = {.lex_state = 1207}, + [321] = {.lex_state = 1361}, + [322] = {.lex_state = 1361}, + [323] = {.lex_state = 1200}, + [324] = {.lex_state = 1361}, + [325] = {.lex_state = 1361}, + [326] = {.lex_state = 1200}, + [327] = {.lex_state = 1202}, + [328] = {.lex_state = 1202}, + [329] = {.lex_state = 1202}, + [330] = {.lex_state = 1202}, + [331] = {.lex_state = 81, .external_lex_state = 2}, + [332] = {.lex_state = 81, .external_lex_state = 2}, + [333] = {.lex_state = 81, .external_lex_state = 2}, + [334] = {.lex_state = 1209}, + [335] = {.lex_state = 1187}, + [336] = {.lex_state = 1187}, + [337] = {.lex_state = 1365}, + [338] = {.lex_state = 1365}, + [339] = {.lex_state = 1209}, + [340] = {.lex_state = 1365}, + [341] = {.lex_state = 1365}, + [342] = {.lex_state = 1211}, + [343] = {.lex_state = 1211}, + [344] = {.lex_state = 152}, + [345] = {.lex_state = 152}, + [346] = {.lex_state = 621}, + [347] = {.lex_state = 621}, + [348] = {.lex_state = 152}, + [349] = {.lex_state = 81, .external_lex_state = 2}, + [350] = {.lex_state = 152}, + [351] = {.lex_state = 81, .external_lex_state = 2}, + [352] = {.lex_state = 621}, + [353] = {.lex_state = 81, .external_lex_state = 2}, + [354] = {.lex_state = 152}, + [355] = {.lex_state = 621}, + [356] = {.lex_state = 81, .external_lex_state = 2}, + [357] = {.lex_state = 81, .external_lex_state = 2}, + [358] = {.lex_state = 621}, + [359] = {.lex_state = 621}, + [360] = {.lex_state = 621}, + [361] = {.lex_state = 621}, + [362] = {.lex_state = 81, .external_lex_state = 2}, + [363] = {.lex_state = 621}, + [364] = {.lex_state = 152}, + [365] = {.lex_state = 152}, + [366] = {.lex_state = 81, .external_lex_state = 2}, + [367] = {.lex_state = 152}, + [368] = {.lex_state = 152}, + [369] = {.lex_state = 152}, + [370] = {.lex_state = 81, .external_lex_state = 2}, + [371] = {.lex_state = 152}, + [372] = {.lex_state = 152}, + [373] = {.lex_state = 152}, + [374] = {.lex_state = 81, .external_lex_state = 2}, + [375] = {.lex_state = 81, .external_lex_state = 2}, + [376] = {.lex_state = 81, .external_lex_state = 2}, + [377] = {.lex_state = 81, .external_lex_state = 2}, + [378] = {.lex_state = 152}, + [379] = {.lex_state = 621}, + [380] = {.lex_state = 152}, + [381] = {.lex_state = 152}, + [382] = {.lex_state = 621}, + [383] = {.lex_state = 621}, + [384] = {.lex_state = 81, .external_lex_state = 2}, + [385] = {.lex_state = 621}, + [386] = {.lex_state = 621}, + [387] = {.lex_state = 625}, + [388] = {.lex_state = 152}, + [389] = {.lex_state = 81, .external_lex_state = 2}, + [390] = {.lex_state = 81, .external_lex_state = 2}, + [391] = {.lex_state = 81, .external_lex_state = 2}, + [392] = {.lex_state = 625}, + [393] = {.lex_state = 81, .external_lex_state = 2}, + [394] = {.lex_state = 81, .external_lex_state = 2}, + [395] = {.lex_state = 621}, + [396] = {.lex_state = 621}, + [397] = {.lex_state = 621}, + [398] = {.lex_state = 621}, + [399] = {.lex_state = 621}, + [400] = {.lex_state = 621}, + [401] = {.lex_state = 621}, + [402] = {.lex_state = 621}, + [403] = {.lex_state = 621}, + [404] = {.lex_state = 81, .external_lex_state = 2}, + [405] = {.lex_state = 621}, + [406] = {.lex_state = 621}, + [407] = {.lex_state = 81, .external_lex_state = 2}, + [408] = {.lex_state = 81, .external_lex_state = 2}, + [409] = {.lex_state = 625}, + [410] = {.lex_state = 81, .external_lex_state = 2}, + [411] = {.lex_state = 625}, + [412] = {.lex_state = 625}, + [413] = {.lex_state = 622}, + [414] = {.lex_state = 621}, + [415] = {.lex_state = 627}, + [416] = {.lex_state = 627}, + [417] = {.lex_state = 622}, + [418] = {.lex_state = 621}, + [419] = {.lex_state = 622}, + [420] = {.lex_state = 625}, + [421] = {.lex_state = 621}, + [422] = {.lex_state = 625}, + [423] = {.lex_state = 625}, + [424] = {.lex_state = 625}, + [425] = {.lex_state = 625}, + [426] = {.lex_state = 621}, + [427] = {.lex_state = 622}, + [428] = {.lex_state = 625}, + [429] = {.lex_state = 622}, + [430] = {.lex_state = 627}, + [431] = {.lex_state = 622}, + [432] = {.lex_state = 621}, + [433] = {.lex_state = 622}, + [434] = {.lex_state = 622}, + [435] = {.lex_state = 621}, + [436] = {.lex_state = 622}, + [437] = {.lex_state = 622}, + [438] = {.lex_state = 622}, + [439] = {.lex_state = 622}, + [440] = {.lex_state = 621}, + [441] = {.lex_state = 622}, + [442] = {.lex_state = 625}, + [443] = {.lex_state = 627}, + [444] = {.lex_state = 629}, + [445] = {.lex_state = 633}, + [446] = {.lex_state = 625}, + [447] = {.lex_state = 621}, + [448] = {.lex_state = 629}, + [449] = {.lex_state = 633}, + [450] = {.lex_state = 625}, + [451] = {.lex_state = 635}, + [452] = {.lex_state = 635}, + [453] = {.lex_state = 631}, + [454] = {.lex_state = 625}, + [455] = {.lex_state = 622}, + [456] = {.lex_state = 637}, + [457] = {.lex_state = 625}, + [458] = {.lex_state = 625}, + [459] = {.lex_state = 621}, + [460] = {.lex_state = 621}, + [461] = {.lex_state = 622}, + [462] = {.lex_state = 621}, + [463] = {.lex_state = 622}, + [464] = {.lex_state = 621}, + [465] = {.lex_state = 622}, + [466] = {.lex_state = 625}, + [467] = {.lex_state = 639}, + [468] = {.lex_state = 63, .external_lex_state = 2}, + [469] = {.lex_state = 635}, + [470] = {.lex_state = 641}, + [471] = {.lex_state = 63, .external_lex_state = 2}, + [472] = {.lex_state = 63, .external_lex_state = 2}, + [473] = {.lex_state = 63, .external_lex_state = 2}, + [474] = {.lex_state = 635}, + [475] = {.lex_state = 63, .external_lex_state = 2}, + [476] = {.lex_state = 63, .external_lex_state = 2}, + [477] = {.lex_state = 63, .external_lex_state = 2}, + [478] = {.lex_state = 641}, + [479] = {.lex_state = 81, .external_lex_state = 2}, + [480] = {.lex_state = 637}, + [481] = {.lex_state = 622}, + [482] = {.lex_state = 637}, + [483] = {.lex_state = 621}, + [484] = {.lex_state = 622}, + [485] = {.lex_state = 63, .external_lex_state = 2}, + [486] = {.lex_state = 637}, + [487] = {.lex_state = 637}, + [488] = {.lex_state = 621}, + [489] = {.lex_state = 622}, + [490] = {.lex_state = 637}, + [491] = {.lex_state = 637}, + [492] = {.lex_state = 622}, + [493] = {.lex_state = 643}, + [494] = {.lex_state = 622}, + [495] = {.lex_state = 622}, + [496] = {.lex_state = 622}, + [497] = {.lex_state = 622}, + [498] = {.lex_state = 622}, + [499] = {.lex_state = 622}, + [500] = {.lex_state = 622}, + [501] = {.lex_state = 622}, + [502] = {.lex_state = 622}, + [503] = {.lex_state = 622}, + [504] = {.lex_state = 622}, + [505] = {.lex_state = 622}, + [506] = {.lex_state = 622}, + [507] = {.lex_state = 637}, + [508] = {.lex_state = 643}, + [509] = {.lex_state = 639}, + [510] = {.lex_state = 63, .external_lex_state = 2}, + [511] = {.lex_state = 631}, + [512] = {.lex_state = 622}, + [513] = {.lex_state = 643}, + [514] = {.lex_state = 622}, + [515] = {.lex_state = 622}, + [516] = {.lex_state = 622}, + [517] = {.lex_state = 64, .external_lex_state = 2}, + [518] = {.lex_state = 64, .external_lex_state = 2}, + [519] = {.lex_state = 64, .external_lex_state = 2}, + [520] = {.lex_state = 641}, + [521] = {.lex_state = 64, .external_lex_state = 2}, + [522] = {.lex_state = 643}, + [523] = {.lex_state = 643}, + [524] = {.lex_state = 64, .external_lex_state = 2}, + [525] = {.lex_state = 622}, + [526] = {.lex_state = 64, .external_lex_state = 2}, + [527] = {.lex_state = 64, .external_lex_state = 2}, + [528] = {.lex_state = 63, .external_lex_state = 2}, + [529] = {.lex_state = 64, .external_lex_state = 2}, + [530] = {.lex_state = 64, .external_lex_state = 2}, + [531] = {.lex_state = 64, .external_lex_state = 2}, + [532] = {.lex_state = 64, .external_lex_state = 2}, + [533] = {.lex_state = 64, .external_lex_state = 2}, + [534] = {.lex_state = 64, .external_lex_state = 2}, + [535] = {.lex_state = 64, .external_lex_state = 2}, + [536] = {.lex_state = 622}, + [537] = {.lex_state = 64, .external_lex_state = 2}, + [538] = {.lex_state = 64, .external_lex_state = 2}, + [539] = {.lex_state = 64, .external_lex_state = 2}, + [540] = {.lex_state = 64, .external_lex_state = 2}, + [541] = {.lex_state = 64, .external_lex_state = 2}, + [542] = {.lex_state = 64, .external_lex_state = 2}, + [543] = {.lex_state = 64, .external_lex_state = 2}, + [544] = {.lex_state = 64, .external_lex_state = 2}, + [545] = {.lex_state = 64, .external_lex_state = 2}, + [546] = {.lex_state = 64, .external_lex_state = 2}, + [547] = {.lex_state = 64, .external_lex_state = 2}, + [548] = {.lex_state = 64, .external_lex_state = 2}, + [549] = {.lex_state = 64, .external_lex_state = 2}, + [550] = {.lex_state = 64, .external_lex_state = 2}, + [551] = {.lex_state = 64, .external_lex_state = 2}, + [552] = {.lex_state = 64, .external_lex_state = 2}, + [553] = {.lex_state = 64, .external_lex_state = 2}, + [554] = {.lex_state = 64, .external_lex_state = 2}, + [555] = {.lex_state = 64, .external_lex_state = 2}, + [556] = {.lex_state = 64, .external_lex_state = 2}, + [557] = {.lex_state = 64, .external_lex_state = 2}, + [558] = {.lex_state = 64, .external_lex_state = 2}, + [559] = {.lex_state = 64, .external_lex_state = 2}, + [560] = {.lex_state = 64, .external_lex_state = 2}, + [561] = {.lex_state = 64, .external_lex_state = 2}, + [562] = {.lex_state = 64, .external_lex_state = 2}, + [563] = {.lex_state = 64, .external_lex_state = 2}, + [564] = {.lex_state = 64, .external_lex_state = 2}, + [565] = {.lex_state = 64, .external_lex_state = 2}, + [566] = {.lex_state = 64, .external_lex_state = 2}, + [567] = {.lex_state = 64, .external_lex_state = 2}, + [568] = {.lex_state = 64, .external_lex_state = 2}, + [569] = {.lex_state = 64, .external_lex_state = 2}, + [570] = {.lex_state = 64, .external_lex_state = 2}, + [571] = {.lex_state = 64, .external_lex_state = 2}, + [572] = {.lex_state = 64, .external_lex_state = 2}, + [573] = {.lex_state = 64, .external_lex_state = 2}, + [574] = {.lex_state = 64, .external_lex_state = 2}, + [575] = {.lex_state = 64, .external_lex_state = 2}, + [576] = {.lex_state = 64, .external_lex_state = 2}, + [577] = {.lex_state = 64, .external_lex_state = 2}, + [578] = {.lex_state = 64, .external_lex_state = 2}, + [579] = {.lex_state = 64, .external_lex_state = 2}, + [580] = {.lex_state = 64, .external_lex_state = 2}, + [581] = {.lex_state = 64, .external_lex_state = 2}, + [582] = {.lex_state = 64, .external_lex_state = 2}, + [583] = {.lex_state = 64, .external_lex_state = 2}, + [584] = {.lex_state = 64, .external_lex_state = 2}, + [585] = {.lex_state = 64, .external_lex_state = 2}, + [586] = {.lex_state = 64, .external_lex_state = 2}, + [587] = {.lex_state = 64, .external_lex_state = 2}, + [588] = {.lex_state = 64, .external_lex_state = 2}, + [589] = {.lex_state = 64, .external_lex_state = 2}, + [590] = {.lex_state = 64, .external_lex_state = 2}, + [591] = {.lex_state = 64, .external_lex_state = 2}, + [592] = {.lex_state = 64, .external_lex_state = 2}, + [593] = {.lex_state = 64, .external_lex_state = 2}, + [594] = {.lex_state = 64, .external_lex_state = 2}, + [595] = {.lex_state = 64, .external_lex_state = 2}, + [596] = {.lex_state = 64, .external_lex_state = 2}, + [597] = {.lex_state = 64, .external_lex_state = 2}, + [598] = {.lex_state = 64, .external_lex_state = 2}, + [599] = {.lex_state = 64, .external_lex_state = 2}, + [600] = {.lex_state = 64, .external_lex_state = 2}, + [601] = {.lex_state = 64, .external_lex_state = 2}, + [602] = {.lex_state = 64, .external_lex_state = 2}, + [603] = {.lex_state = 64, .external_lex_state = 2}, + [604] = {.lex_state = 64, .external_lex_state = 2}, + [605] = {.lex_state = 64, .external_lex_state = 2}, + [606] = {.lex_state = 64, .external_lex_state = 2}, + [607] = {.lex_state = 81, .external_lex_state = 2}, + [608] = {.lex_state = 64, .external_lex_state = 2}, + [609] = {.lex_state = 64, .external_lex_state = 2}, + [610] = {.lex_state = 64, .external_lex_state = 2}, + [611] = {.lex_state = 64, .external_lex_state = 2}, + [612] = {.lex_state = 64, .external_lex_state = 2}, + [613] = {.lex_state = 64, .external_lex_state = 2}, + [614] = {.lex_state = 64, .external_lex_state = 2}, + [615] = {.lex_state = 64, .external_lex_state = 2}, + [616] = {.lex_state = 64, .external_lex_state = 2}, + [617] = {.lex_state = 64, .external_lex_state = 2}, + [618] = {.lex_state = 64, .external_lex_state = 2}, + [619] = {.lex_state = 64, .external_lex_state = 2}, + [620] = {.lex_state = 64, .external_lex_state = 2}, + [621] = {.lex_state = 64, .external_lex_state = 2}, + [622] = {.lex_state = 64, .external_lex_state = 2}, + [623] = {.lex_state = 64, .external_lex_state = 2}, + [624] = {.lex_state = 64, .external_lex_state = 2}, + [625] = {.lex_state = 64, .external_lex_state = 2}, + [626] = {.lex_state = 64, .external_lex_state = 2}, + [627] = {.lex_state = 64, .external_lex_state = 2}, + [628] = {.lex_state = 64, .external_lex_state = 2}, + [629] = {.lex_state = 64, .external_lex_state = 2}, + [630] = {.lex_state = 64, .external_lex_state = 2}, + [631] = {.lex_state = 64, .external_lex_state = 2}, + [632] = {.lex_state = 64, .external_lex_state = 2}, + [633] = {.lex_state = 64, .external_lex_state = 2}, + [634] = {.lex_state = 64, .external_lex_state = 2}, + [635] = {.lex_state = 64, .external_lex_state = 2}, + [636] = {.lex_state = 64, .external_lex_state = 2}, + [637] = {.lex_state = 64, .external_lex_state = 2}, + [638] = {.lex_state = 64, .external_lex_state = 2}, + [639] = {.lex_state = 64, .external_lex_state = 2}, + [640] = {.lex_state = 64, .external_lex_state = 2}, + [641] = {.lex_state = 64, .external_lex_state = 2}, + [642] = {.lex_state = 64, .external_lex_state = 2}, + [643] = {.lex_state = 64, .external_lex_state = 2}, + [644] = {.lex_state = 64, .external_lex_state = 2}, + [645] = {.lex_state = 64, .external_lex_state = 2}, + [646] = {.lex_state = 64, .external_lex_state = 2}, + [647] = {.lex_state = 64, .external_lex_state = 2}, + [648] = {.lex_state = 64, .external_lex_state = 2}, + [649] = {.lex_state = 64, .external_lex_state = 2}, + [650] = {.lex_state = 64, .external_lex_state = 2}, + [651] = {.lex_state = 64, .external_lex_state = 2}, + [652] = {.lex_state = 64, .external_lex_state = 2}, + [653] = {.lex_state = 64, .external_lex_state = 2}, + [654] = {.lex_state = 64, .external_lex_state = 2}, + [655] = {.lex_state = 64, .external_lex_state = 2}, + [656] = {.lex_state = 64, .external_lex_state = 2}, + [657] = {.lex_state = 64, .external_lex_state = 2}, + [658] = {.lex_state = 64, .external_lex_state = 2}, + [659] = {.lex_state = 64, .external_lex_state = 2}, + [660] = {.lex_state = 64, .external_lex_state = 2}, + [661] = {.lex_state = 64, .external_lex_state = 2}, + [662] = {.lex_state = 64, .external_lex_state = 2}, + [663] = {.lex_state = 64, .external_lex_state = 2}, + [664] = {.lex_state = 63, .external_lex_state = 2}, + [665] = {.lex_state = 64, .external_lex_state = 2}, + [666] = {.lex_state = 64, .external_lex_state = 2}, + [667] = {.lex_state = 81, .external_lex_state = 2}, + [668] = {.lex_state = 641}, + [669] = {.lex_state = 64, .external_lex_state = 2}, + [670] = {.lex_state = 64, .external_lex_state = 2}, + [671] = {.lex_state = 64, .external_lex_state = 2}, + [672] = {.lex_state = 64, .external_lex_state = 2}, + [673] = {.lex_state = 81, .external_lex_state = 2}, + [674] = {.lex_state = 64, .external_lex_state = 2}, + [675] = {.lex_state = 655}, + [676] = {.lex_state = 64, .external_lex_state = 2}, + [677] = {.lex_state = 64, .external_lex_state = 2}, + [678] = {.lex_state = 64, .external_lex_state = 2}, + [679] = {.lex_state = 64, .external_lex_state = 2}, + [680] = {.lex_state = 64, .external_lex_state = 2}, + [681] = {.lex_state = 64, .external_lex_state = 2}, + [682] = {.lex_state = 64, .external_lex_state = 2}, + [683] = {.lex_state = 64, .external_lex_state = 2}, + [684] = {.lex_state = 64, .external_lex_state = 2}, + [685] = {.lex_state = 622}, + [686] = {.lex_state = 622}, + [687] = {.lex_state = 622}, + [688] = {.lex_state = 622}, + [689] = {.lex_state = 622}, + [690] = {.lex_state = 622}, + [691] = {.lex_state = 622}, + [692] = {.lex_state = 622}, + [693] = {.lex_state = 622}, + [694] = {.lex_state = 622}, + [695] = {.lex_state = 622}, + [696] = {.lex_state = 622}, + [697] = {.lex_state = 622}, + [698] = {.lex_state = 622}, + [699] = {.lex_state = 622}, + [700] = {.lex_state = 645}, + [701] = {.lex_state = 622}, + [702] = {.lex_state = 643}, + [703] = {.lex_state = 622}, + [704] = {.lex_state = 622}, + [705] = {.lex_state = 643}, + [706] = {.lex_state = 622}, + [707] = {.lex_state = 622}, + [708] = {.lex_state = 622}, + [709] = {.lex_state = 622}, + [710] = {.lex_state = 647}, + [711] = {.lex_state = 622}, + [712] = {.lex_state = 622}, + [713] = {.lex_state = 622}, + [714] = {.lex_state = 622}, + [715] = {.lex_state = 655}, + [716] = {.lex_state = 622}, + [717] = {.lex_state = 622}, + [718] = {.lex_state = 622}, + [719] = {.lex_state = 622}, + [720] = {.lex_state = 622}, + [721] = {.lex_state = 622}, + [722] = {.lex_state = 643}, + [723] = {.lex_state = 643}, + [724] = {.lex_state = 622}, + [725] = {.lex_state = 643}, + [726] = {.lex_state = 622}, + [727] = {.lex_state = 622}, + [728] = {.lex_state = 622}, + [729] = {.lex_state = 622}, + [730] = {.lex_state = 622}, + [731] = {.lex_state = 622}, + [732] = {.lex_state = 64, .external_lex_state = 2}, + [733] = {.lex_state = 622}, + [734] = {.lex_state = 64, .external_lex_state = 2}, + [735] = {.lex_state = 64, .external_lex_state = 2}, + [736] = {.lex_state = 64, .external_lex_state = 2}, + [737] = {.lex_state = 622}, + [738] = {.lex_state = 622}, + [739] = {.lex_state = 622}, + [740] = {.lex_state = 622}, + [741] = {.lex_state = 64, .external_lex_state = 2}, + [742] = {.lex_state = 622}, + [743] = {.lex_state = 622}, + [744] = {.lex_state = 622}, + [745] = {.lex_state = 622}, + [746] = {.lex_state = 622}, + [747] = {.lex_state = 622}, + [748] = {.lex_state = 622}, + [749] = {.lex_state = 622}, + [750] = {.lex_state = 622}, + [751] = {.lex_state = 622}, + [752] = {.lex_state = 622}, + [753] = {.lex_state = 622}, + [754] = {.lex_state = 64, .external_lex_state = 2}, + [755] = {.lex_state = 64, .external_lex_state = 2}, + [756] = {.lex_state = 64, .external_lex_state = 2}, + [757] = {.lex_state = 64, .external_lex_state = 2}, + [758] = {.lex_state = 64, .external_lex_state = 2}, + [759] = {.lex_state = 64, .external_lex_state = 2}, + [760] = {.lex_state = 64, .external_lex_state = 2}, + [761] = {.lex_state = 64, .external_lex_state = 2}, + [762] = {.lex_state = 64, .external_lex_state = 2}, + [763] = {.lex_state = 64, .external_lex_state = 2}, + [764] = {.lex_state = 64, .external_lex_state = 2}, + [765] = {.lex_state = 64, .external_lex_state = 2}, + [766] = {.lex_state = 64, .external_lex_state = 2}, + [767] = {.lex_state = 622}, + [768] = {.lex_state = 622}, + [769] = {.lex_state = 622}, + [770] = {.lex_state = 622}, + [771] = {.lex_state = 622}, + [772] = {.lex_state = 622}, + [773] = {.lex_state = 622}, + [774] = {.lex_state = 622}, + [775] = {.lex_state = 622}, + [776] = {.lex_state = 622}, + [777] = {.lex_state = 622}, + [778] = {.lex_state = 622}, + [779] = {.lex_state = 622}, + [780] = {.lex_state = 622}, + [781] = {.lex_state = 622}, + [782] = {.lex_state = 655}, + [783] = {.lex_state = 622}, + [784] = {.lex_state = 622}, + [785] = {.lex_state = 622}, + [786] = {.lex_state = 622}, + [787] = {.lex_state = 622}, + [788] = {.lex_state = 622}, + [789] = {.lex_state = 622}, + [790] = {.lex_state = 59, .external_lex_state = 2}, + [791] = {.lex_state = 622}, + [792] = {.lex_state = 647}, + [793] = {.lex_state = 622}, + [794] = {.lex_state = 63, .external_lex_state = 2}, + [795] = {.lex_state = 63, .external_lex_state = 2}, + [796] = {.lex_state = 622}, + [797] = {.lex_state = 622}, + [798] = {.lex_state = 645}, + [799] = {.lex_state = 622}, + [800] = {.lex_state = 649}, + [801] = {.lex_state = 622}, + [802] = {.lex_state = 649}, + [803] = {.lex_state = 622}, + [804] = {.lex_state = 622}, + [805] = {.lex_state = 622}, + [806] = {.lex_state = 622}, + [807] = {.lex_state = 622}, + [808] = {.lex_state = 622}, + [809] = {.lex_state = 622}, + [810] = {.lex_state = 622}, + [811] = {.lex_state = 622}, + [812] = {.lex_state = 622}, + [813] = {.lex_state = 622}, + [814] = {.lex_state = 622}, + [815] = {.lex_state = 622}, + [816] = {.lex_state = 64, .external_lex_state = 2}, + [817] = {.lex_state = 64, .external_lex_state = 2}, + [818] = {.lex_state = 64, .external_lex_state = 2}, + [819] = {.lex_state = 64, .external_lex_state = 2}, + [820] = {.lex_state = 64, .external_lex_state = 2}, + [821] = {.lex_state = 64, .external_lex_state = 2}, + [822] = {.lex_state = 64, .external_lex_state = 2}, + [823] = {.lex_state = 64, .external_lex_state = 2}, + [824] = {.lex_state = 64, .external_lex_state = 2}, + [825] = {.lex_state = 64, .external_lex_state = 2}, + [826] = {.lex_state = 64, .external_lex_state = 2}, + [827] = {.lex_state = 64, .external_lex_state = 2}, + [828] = {.lex_state = 64, .external_lex_state = 2}, + [829] = {.lex_state = 622}, + [830] = {.lex_state = 622}, + [831] = {.lex_state = 622}, + [832] = {.lex_state = 622}, + [833] = {.lex_state = 622}, + [834] = {.lex_state = 622}, + [835] = {.lex_state = 622}, + [836] = {.lex_state = 622}, + [837] = {.lex_state = 622}, + [838] = {.lex_state = 63, .external_lex_state = 2}, + [839] = {.lex_state = 63, .external_lex_state = 2}, + [840] = {.lex_state = 622}, + [841] = {.lex_state = 64, .external_lex_state = 2}, + [842] = {.lex_state = 64, .external_lex_state = 2}, + [843] = {.lex_state = 64, .external_lex_state = 2}, + [844] = {.lex_state = 64, .external_lex_state = 2}, + [845] = {.lex_state = 64, .external_lex_state = 2}, + [846] = {.lex_state = 64, .external_lex_state = 2}, + [847] = {.lex_state = 64, .external_lex_state = 2}, + [848] = {.lex_state = 64, .external_lex_state = 2}, + [849] = {.lex_state = 64, .external_lex_state = 2}, + [850] = {.lex_state = 64, .external_lex_state = 2}, + [851] = {.lex_state = 64, .external_lex_state = 2}, + [852] = {.lex_state = 64, .external_lex_state = 2}, + [853] = {.lex_state = 64, .external_lex_state = 2}, + [854] = {.lex_state = 622}, + [855] = {.lex_state = 622}, + [856] = {.lex_state = 622}, + [857] = {.lex_state = 622}, + [858] = {.lex_state = 622}, + [859] = {.lex_state = 622}, + [860] = {.lex_state = 622}, + [861] = {.lex_state = 622}, + [862] = {.lex_state = 622}, + [863] = {.lex_state = 622}, + [864] = {.lex_state = 622}, + [865] = {.lex_state = 622}, + [866] = {.lex_state = 622}, + [867] = {.lex_state = 622}, + [868] = {.lex_state = 63, .external_lex_state = 2}, + [869] = {.lex_state = 63, .external_lex_state = 2}, + [870] = {.lex_state = 59, .external_lex_state = 2}, + [871] = {.lex_state = 64, .external_lex_state = 2}, + [872] = {.lex_state = 64, .external_lex_state = 2}, + [873] = {.lex_state = 64, .external_lex_state = 2}, + [874] = {.lex_state = 64, .external_lex_state = 2}, + [875] = {.lex_state = 64, .external_lex_state = 2}, + [876] = {.lex_state = 64, .external_lex_state = 2}, + [877] = {.lex_state = 64, .external_lex_state = 2}, + [878] = {.lex_state = 64, .external_lex_state = 2}, + [879] = {.lex_state = 64, .external_lex_state = 2}, + [880] = {.lex_state = 64, .external_lex_state = 2}, + [881] = {.lex_state = 64, .external_lex_state = 2}, + [882] = {.lex_state = 64, .external_lex_state = 2}, + [883] = {.lex_state = 64, .external_lex_state = 2}, + [884] = {.lex_state = 64, .external_lex_state = 2}, + [885] = {.lex_state = 64, .external_lex_state = 2}, + [886] = {.lex_state = 64, .external_lex_state = 2}, + [887] = {.lex_state = 64, .external_lex_state = 2}, + [888] = {.lex_state = 64, .external_lex_state = 2}, + [889] = {.lex_state = 64, .external_lex_state = 2}, + [890] = {.lex_state = 64, .external_lex_state = 2}, + [891] = {.lex_state = 64, .external_lex_state = 2}, + [892] = {.lex_state = 59, .external_lex_state = 2}, + [893] = {.lex_state = 651}, + [894] = {.lex_state = 622}, + [895] = {.lex_state = 622}, + [896] = {.lex_state = 64, .external_lex_state = 2}, + [897] = {.lex_state = 64, .external_lex_state = 2}, + [898] = {.lex_state = 64, .external_lex_state = 2}, + [899] = {.lex_state = 64, .external_lex_state = 2}, + [900] = {.lex_state = 64, .external_lex_state = 2}, + [901] = {.lex_state = 64, .external_lex_state = 2}, + [902] = {.lex_state = 64, .external_lex_state = 2}, + [903] = {.lex_state = 64, .external_lex_state = 2}, + [904] = {.lex_state = 64, .external_lex_state = 2}, + [905] = {.lex_state = 64, .external_lex_state = 2}, + [906] = {.lex_state = 64, .external_lex_state = 2}, + [907] = {.lex_state = 64, .external_lex_state = 2}, + [908] = {.lex_state = 64, .external_lex_state = 2}, + [909] = {.lex_state = 622}, + [910] = {.lex_state = 622}, + [911] = {.lex_state = 622}, + [912] = {.lex_state = 622}, + [913] = {.lex_state = 622}, + [914] = {.lex_state = 622}, + [915] = {.lex_state = 622}, + [916] = {.lex_state = 622}, + [917] = {.lex_state = 59, .external_lex_state = 2}, + [918] = {.lex_state = 93, .external_lex_state = 2}, + [919] = {.lex_state = 622}, + [920] = {.lex_state = 622}, + [921] = {.lex_state = 622}, + [922] = {.lex_state = 622}, + [923] = {.lex_state = 622}, + [924] = {.lex_state = 93, .external_lex_state = 2}, + [925] = {.lex_state = 622}, + [926] = {.lex_state = 622}, + [927] = {.lex_state = 622}, + [928] = {.lex_state = 622}, + [929] = {.lex_state = 622}, + [930] = {.lex_state = 622}, + [931] = {.lex_state = 622}, + [932] = {.lex_state = 622}, + [933] = {.lex_state = 59, .external_lex_state = 2}, + [934] = {.lex_state = 622}, + [935] = {.lex_state = 622}, + [936] = {.lex_state = 622}, + [937] = {.lex_state = 622}, + [938] = {.lex_state = 622}, + [939] = {.lex_state = 651}, + [940] = {.lex_state = 651}, + [941] = {.lex_state = 622}, + [942] = {.lex_state = 622}, + [943] = {.lex_state = 651}, + [944] = {.lex_state = 651}, + [945] = {.lex_state = 622}, + [946] = {.lex_state = 651}, + [947] = {.lex_state = 651}, + [948] = {.lex_state = 622}, + [949] = {.lex_state = 651}, + [950] = {.lex_state = 651}, + [951] = {.lex_state = 649}, + [952] = {.lex_state = 622}, + [953] = {.lex_state = 622}, + [954] = {.lex_state = 622}, + [955] = {.lex_state = 649}, + [956] = {.lex_state = 622}, + [957] = {.lex_state = 622}, + [958] = {.lex_state = 622}, + [959] = {.lex_state = 622}, + [960] = {.lex_state = 622}, + [961] = {.lex_state = 622}, + [962] = {.lex_state = 622}, + [963] = {.lex_state = 622}, + [964] = {.lex_state = 622}, + [965] = {.lex_state = 622}, + [966] = {.lex_state = 622}, + [967] = {.lex_state = 622}, + [968] = {.lex_state = 622}, + [969] = {.lex_state = 622}, + [970] = {.lex_state = 651}, + [971] = {.lex_state = 651}, + [972] = {.lex_state = 651}, + [973] = {.lex_state = 622}, + [974] = {.lex_state = 622}, + [975] = {.lex_state = 622}, + [976] = {.lex_state = 93, .external_lex_state = 2}, + [977] = {.lex_state = 651}, + [978] = {.lex_state = 622}, + [979] = {.lex_state = 622}, + [980] = {.lex_state = 622}, + [981] = {.lex_state = 651}, + [982] = {.lex_state = 622}, + [983] = {.lex_state = 651}, + [984] = {.lex_state = 622}, + [985] = {.lex_state = 622}, + [986] = {.lex_state = 622}, + [987] = {.lex_state = 622}, + [988] = {.lex_state = 622}, + [989] = {.lex_state = 622}, + [990] = {.lex_state = 622}, + [991] = {.lex_state = 622}, + [992] = {.lex_state = 622}, + [993] = {.lex_state = 622}, + [994] = {.lex_state = 622}, + [995] = {.lex_state = 622}, + [996] = {.lex_state = 622}, + [997] = {.lex_state = 622}, + [998] = {.lex_state = 622}, + [999] = {.lex_state = 653}, + [1000] = {.lex_state = 622}, + [1001] = {.lex_state = 622}, + [1002] = {.lex_state = 622}, + [1003] = {.lex_state = 651}, + [1004] = {.lex_state = 622}, + [1005] = {.lex_state = 651}, + [1006] = {.lex_state = 651}, + [1007] = {.lex_state = 622}, + [1008] = {.lex_state = 651}, + [1009] = {.lex_state = 93, .external_lex_state = 2}, + [1010] = {.lex_state = 622}, + [1011] = {.lex_state = 622}, + [1012] = {.lex_state = 622}, + [1013] = {.lex_state = 93, .external_lex_state = 2}, + [1014] = {.lex_state = 622}, + [1015] = {.lex_state = 622}, + [1016] = {.lex_state = 622}, + [1017] = {.lex_state = 622}, + [1018] = {.lex_state = 622}, + [1019] = {.lex_state = 622}, + [1020] = {.lex_state = 622}, + [1021] = {.lex_state = 622}, + [1022] = {.lex_state = 622}, + [1023] = {.lex_state = 622}, + [1024] = {.lex_state = 622}, + [1025] = {.lex_state = 622}, + [1026] = {.lex_state = 622}, + [1027] = {.lex_state = 622}, + [1028] = {.lex_state = 622}, + [1029] = {.lex_state = 622}, + [1030] = {.lex_state = 622}, + [1031] = {.lex_state = 622}, + [1032] = {.lex_state = 622}, + [1033] = {.lex_state = 622}, + [1034] = {.lex_state = 622}, + [1035] = {.lex_state = 622}, + [1036] = {.lex_state = 622}, + [1037] = {.lex_state = 622}, + [1038] = {.lex_state = 622}, + [1039] = {.lex_state = 622}, + [1040] = {.lex_state = 622}, + [1041] = {.lex_state = 622}, + [1042] = {.lex_state = 622}, + [1043] = {.lex_state = 622}, + [1044] = {.lex_state = 622}, + [1045] = {.lex_state = 59, .external_lex_state = 2}, + [1046] = {.lex_state = 622}, + [1047] = {.lex_state = 622}, + [1048] = {.lex_state = 622}, + [1049] = {.lex_state = 622}, + [1050] = {.lex_state = 622}, + [1051] = {.lex_state = 64, .external_lex_state = 2}, + [1052] = {.lex_state = 622}, + [1053] = {.lex_state = 622}, + [1054] = {.lex_state = 651}, + [1055] = {.lex_state = 59, .external_lex_state = 2}, + [1056] = {.lex_state = 622}, + [1057] = {.lex_state = 622}, + [1058] = {.lex_state = 622}, + [1059] = {.lex_state = 622}, + [1060] = {.lex_state = 666, .external_lex_state = 2}, + [1061] = {.lex_state = 622}, + [1062] = {.lex_state = 622}, + [1063] = {.lex_state = 622}, + [1064] = {.lex_state = 622}, + [1065] = {.lex_state = 622}, + [1066] = {.lex_state = 622}, + [1067] = {.lex_state = 622}, + [1068] = {.lex_state = 622}, + [1069] = {.lex_state = 622}, + [1070] = {.lex_state = 622}, + [1071] = {.lex_state = 622}, + [1072] = {.lex_state = 622}, + [1073] = {.lex_state = 622}, + [1074] = {.lex_state = 622}, + [1075] = {.lex_state = 622}, + [1076] = {.lex_state = 622}, + [1077] = {.lex_state = 622}, + [1078] = {.lex_state = 64, .external_lex_state = 2}, + [1079] = {.lex_state = 64, .external_lex_state = 2}, + [1080] = {.lex_state = 64, .external_lex_state = 2}, + [1081] = {.lex_state = 651}, + [1082] = {.lex_state = 37, .external_lex_state = 2}, + [1083] = {.lex_state = 622}, + [1084] = {.lex_state = 622}, + [1085] = {.lex_state = 622}, + [1086] = {.lex_state = 622}, + [1087] = {.lex_state = 622}, + [1088] = {.lex_state = 622}, + [1089] = {.lex_state = 622}, + [1090] = {.lex_state = 651}, + [1091] = {.lex_state = 666, .external_lex_state = 2}, + [1092] = {.lex_state = 651}, + [1093] = {.lex_state = 651}, + [1094] = {.lex_state = 64, .external_lex_state = 2}, + [1095] = {.lex_state = 64, .external_lex_state = 2}, + [1096] = {.lex_state = 622}, + [1097] = {.lex_state = 622}, + [1098] = {.lex_state = 622}, + [1099] = {.lex_state = 653}, + [1100] = {.lex_state = 653}, + [1101] = {.lex_state = 653}, + [1102] = {.lex_state = 622}, + [1103] = {.lex_state = 622}, + [1104] = {.lex_state = 90, .external_lex_state = 2}, + [1105] = {.lex_state = 59, .external_lex_state = 2}, + [1106] = {.lex_state = 59, .external_lex_state = 2}, + [1107] = {.lex_state = 622}, + [1108] = {.lex_state = 622}, + [1109] = {.lex_state = 622}, + [1110] = {.lex_state = 622}, + [1111] = {.lex_state = 622}, + [1112] = {.lex_state = 622}, + [1113] = {.lex_state = 622}, + [1114] = {.lex_state = 655}, + [1115] = {.lex_state = 622}, + [1116] = {.lex_state = 651}, + [1117] = {.lex_state = 622}, + [1118] = {.lex_state = 622}, + [1119] = {.lex_state = 622}, + [1120] = {.lex_state = 622}, + [1121] = {.lex_state = 622}, + [1122] = {.lex_state = 622}, + [1123] = {.lex_state = 622}, + [1124] = {.lex_state = 622}, + [1125] = {.lex_state = 651}, + [1126] = {.lex_state = 622}, + [1127] = {.lex_state = 90, .external_lex_state = 2}, + [1128] = {.lex_state = 622}, + [1129] = {.lex_state = 622}, + [1130] = {.lex_state = 622}, + [1131] = {.lex_state = 622}, + [1132] = {.lex_state = 622}, + [1133] = {.lex_state = 622}, + [1134] = {.lex_state = 622}, + [1135] = {.lex_state = 622}, + [1136] = {.lex_state = 90, .external_lex_state = 2}, + [1137] = {.lex_state = 622}, + [1138] = {.lex_state = 622}, + [1139] = {.lex_state = 622}, + [1140] = {.lex_state = 622}, + [1141] = {.lex_state = 622}, + [1142] = {.lex_state = 651}, + [1143] = {.lex_state = 666, .external_lex_state = 2}, + [1144] = {.lex_state = 622}, + [1145] = {.lex_state = 93, .external_lex_state = 2}, + [1146] = {.lex_state = 622}, + [1147] = {.lex_state = 622}, + [1148] = {.lex_state = 622}, + [1149] = {.lex_state = 622}, + [1150] = {.lex_state = 622}, + [1151] = {.lex_state = 622}, + [1152] = {.lex_state = 622}, + [1153] = {.lex_state = 622}, + [1154] = {.lex_state = 622}, + [1155] = {.lex_state = 622}, + [1156] = {.lex_state = 622}, + [1157] = {.lex_state = 622}, + [1158] = {.lex_state = 622}, + [1159] = {.lex_state = 622}, + [1160] = {.lex_state = 622}, + [1161] = {.lex_state = 51, .external_lex_state = 2}, + [1162] = {.lex_state = 622}, + [1163] = {.lex_state = 622}, + [1164] = {.lex_state = 622}, + [1165] = {.lex_state = 622}, + [1166] = {.lex_state = 622}, + [1167] = {.lex_state = 622}, + [1168] = {.lex_state = 622}, + [1169] = {.lex_state = 622}, + [1170] = {.lex_state = 622}, + [1171] = {.lex_state = 93, .external_lex_state = 2}, + [1172] = {.lex_state = 93, .external_lex_state = 2}, + [1173] = {.lex_state = 622}, + [1174] = {.lex_state = 622}, + [1175] = {.lex_state = 93, .external_lex_state = 2}, + [1176] = {.lex_state = 622}, + [1177] = {.lex_state = 38, .external_lex_state = 2}, + [1178] = {.lex_state = 622}, + [1179] = {.lex_state = 622}, + [1180] = {.lex_state = 653}, + [1181] = {.lex_state = 622}, + [1182] = {.lex_state = 89, .external_lex_state = 2}, + [1183] = {.lex_state = 89, .external_lex_state = 2}, + [1184] = {.lex_state = 622}, + [1185] = {.lex_state = 622}, + [1186] = {.lex_state = 622}, + [1187] = {.lex_state = 622}, + [1188] = {.lex_state = 622}, + [1189] = {.lex_state = 622}, + [1190] = {.lex_state = 622}, + [1191] = {.lex_state = 622}, + [1192] = {.lex_state = 622}, + [1193] = {.lex_state = 622}, + [1194] = {.lex_state = 622}, + [1195] = {.lex_state = 622}, + [1196] = {.lex_state = 622}, + [1197] = {.lex_state = 622}, + [1198] = {.lex_state = 89, .external_lex_state = 2}, + [1199] = {.lex_state = 89, .external_lex_state = 2}, + [1200] = {.lex_state = 622}, + [1201] = {.lex_state = 622}, + [1202] = {.lex_state = 622}, + [1203] = {.lex_state = 622}, + [1204] = {.lex_state = 622}, + [1205] = {.lex_state = 622}, + [1206] = {.lex_state = 622}, + [1207] = {.lex_state = 622}, + [1208] = {.lex_state = 622}, + [1209] = {.lex_state = 622}, + [1210] = {.lex_state = 622}, + [1211] = {.lex_state = 622}, + [1212] = {.lex_state = 622}, + [1213] = {.lex_state = 55, .external_lex_state = 2}, + [1214] = {.lex_state = 622}, + [1215] = {.lex_state = 622}, + [1216] = {.lex_state = 622}, + [1217] = {.lex_state = 622}, + [1218] = {.lex_state = 622}, + [1219] = {.lex_state = 653}, + [1220] = {.lex_state = 653}, + [1221] = {.lex_state = 622}, + [1222] = {.lex_state = 622}, + [1223] = {.lex_state = 622}, + [1224] = {.lex_state = 622}, + [1225] = {.lex_state = 622}, + [1226] = {.lex_state = 622}, + [1227] = {.lex_state = 622}, + [1228] = {.lex_state = 622}, + [1229] = {.lex_state = 39, .external_lex_state = 2}, + [1230] = {.lex_state = 622}, + [1231] = {.lex_state = 622}, + [1232] = {.lex_state = 622}, + [1233] = {.lex_state = 622}, + [1234] = {.lex_state = 622}, + [1235] = {.lex_state = 622}, + [1236] = {.lex_state = 41, .external_lex_state = 2}, + [1237] = {.lex_state = 622}, + [1238] = {.lex_state = 622}, + [1239] = {.lex_state = 622}, + [1240] = {.lex_state = 622}, + [1241] = {.lex_state = 622}, + [1242] = {.lex_state = 622}, + [1243] = {.lex_state = 622}, + [1244] = {.lex_state = 622}, + [1245] = {.lex_state = 622}, + [1246] = {.lex_state = 622}, + [1247] = {.lex_state = 38, .external_lex_state = 2}, + [1248] = {.lex_state = 622}, + [1249] = {.lex_state = 622}, + [1250] = {.lex_state = 622}, + [1251] = {.lex_state = 622}, + [1252] = {.lex_state = 622}, + [1253] = {.lex_state = 622}, + [1254] = {.lex_state = 622}, + [1255] = {.lex_state = 653}, + [1256] = {.lex_state = 622}, + [1257] = {.lex_state = 622}, + [1258] = {.lex_state = 622}, + [1259] = {.lex_state = 622}, + [1260] = {.lex_state = 622}, + [1261] = {.lex_state = 622}, + [1262] = {.lex_state = 651}, + [1263] = {.lex_state = 622}, + [1264] = {.lex_state = 622}, + [1265] = {.lex_state = 622}, + [1266] = {.lex_state = 622}, + [1267] = {.lex_state = 622}, + [1268] = {.lex_state = 622}, + [1269] = {.lex_state = 622}, + [1270] = {.lex_state = 622}, + [1271] = {.lex_state = 622}, + [1272] = {.lex_state = 622}, + [1273] = {.lex_state = 653}, + [1274] = {.lex_state = 622}, + [1275] = {.lex_state = 622}, + [1276] = {.lex_state = 622}, + [1277] = {.lex_state = 622}, + [1278] = {.lex_state = 93, .external_lex_state = 2}, + [1279] = {.lex_state = 93, .external_lex_state = 2}, + [1280] = {.lex_state = 93, .external_lex_state = 2}, + [1281] = {.lex_state = 622}, + [1282] = {.lex_state = 622}, + [1283] = {.lex_state = 83, .external_lex_state = 2}, + [1284] = {.lex_state = 82, .external_lex_state = 2}, + [1285] = {.lex_state = 82, .external_lex_state = 2}, + [1286] = {.lex_state = 622}, + [1287] = {.lex_state = 622}, + [1288] = {.lex_state = 622}, + [1289] = {.lex_state = 622}, + [1290] = {.lex_state = 622}, + [1291] = {.lex_state = 622}, + [1292] = {.lex_state = 622}, + [1293] = {.lex_state = 622}, + [1294] = {.lex_state = 622}, + [1295] = {.lex_state = 622}, + [1296] = {.lex_state = 622}, + [1297] = {.lex_state = 622}, + [1298] = {.lex_state = 622}, + [1299] = {.lex_state = 622}, + [1300] = {.lex_state = 84, .external_lex_state = 2}, + [1301] = {.lex_state = 622}, + [1302] = {.lex_state = 622}, + [1303] = {.lex_state = 622}, + [1304] = {.lex_state = 44, .external_lex_state = 2}, + [1305] = {.lex_state = 622}, + [1306] = {.lex_state = 52, .external_lex_state = 2}, + [1307] = {.lex_state = 622}, + [1308] = {.lex_state = 52, .external_lex_state = 2}, + [1309] = {.lex_state = 52, .external_lex_state = 2}, + [1310] = {.lex_state = 622}, + [1311] = {.lex_state = 43, .external_lex_state = 2}, + [1312] = {.lex_state = 622}, + [1313] = {.lex_state = 82, .external_lex_state = 2}, + [1314] = {.lex_state = 622}, + [1315] = {.lex_state = 622}, + [1316] = {.lex_state = 622}, + [1317] = {.lex_state = 622}, + [1318] = {.lex_state = 622}, + [1319] = {.lex_state = 622}, + [1320] = {.lex_state = 622}, + [1321] = {.lex_state = 622}, + [1322] = {.lex_state = 622}, + [1323] = {.lex_state = 43, .external_lex_state = 2}, + [1324] = {.lex_state = 622}, + [1325] = {.lex_state = 622}, + [1326] = {.lex_state = 622}, + [1327] = {.lex_state = 622}, + [1328] = {.lex_state = 622}, + [1329] = {.lex_state = 622}, + [1330] = {.lex_state = 622}, + [1331] = {.lex_state = 622}, + [1332] = {.lex_state = 82, .external_lex_state = 2}, + [1333] = {.lex_state = 622}, + [1334] = {.lex_state = 622}, + [1335] = {.lex_state = 622}, + [1336] = {.lex_state = 622}, + [1337] = {.lex_state = 622}, + [1338] = {.lex_state = 52, .external_lex_state = 2}, + [1339] = {.lex_state = 666, .external_lex_state = 2}, + [1340] = {.lex_state = 622}, + [1341] = {.lex_state = 622}, + [1342] = {.lex_state = 622}, + [1343] = {.lex_state = 622}, + [1344] = {.lex_state = 622}, + [1345] = {.lex_state = 622}, + [1346] = {.lex_state = 622}, + [1347] = {.lex_state = 666, .external_lex_state = 2}, + [1348] = {.lex_state = 622}, + [1349] = {.lex_state = 622}, + [1350] = {.lex_state = 622}, + [1351] = {.lex_state = 622}, + [1352] = {.lex_state = 622}, + [1353] = {.lex_state = 622}, + [1354] = {.lex_state = 622}, + [1355] = {.lex_state = 622}, + [1356] = {.lex_state = 622}, + [1357] = {.lex_state = 622}, + [1358] = {.lex_state = 622}, + [1359] = {.lex_state = 622}, + [1360] = {.lex_state = 622}, + [1361] = {.lex_state = 622}, + [1362] = {.lex_state = 622}, + [1363] = {.lex_state = 622}, + [1364] = {.lex_state = 666, .external_lex_state = 2}, + [1365] = {.lex_state = 622}, + [1366] = {.lex_state = 622}, + [1367] = {.lex_state = 622}, + [1368] = {.lex_state = 622}, + [1369] = {.lex_state = 622}, + [1370] = {.lex_state = 622}, + [1371] = {.lex_state = 622}, + [1372] = {.lex_state = 622}, + [1373] = {.lex_state = 622}, + [1374] = {.lex_state = 66, .external_lex_state = 2}, + [1375] = {.lex_state = 85, .external_lex_state = 2}, + [1376] = {.lex_state = 44, .external_lex_state = 2}, + [1377] = {.lex_state = 44, .external_lex_state = 2}, + [1378] = {.lex_state = 89, .external_lex_state = 2}, + [1379] = {.lex_state = 40, .external_lex_state = 2}, + [1380] = {.lex_state = 202, .external_lex_state = 2}, + [1381] = {.lex_state = 66, .external_lex_state = 2}, + [1382] = {.lex_state = 5, .external_lex_state = 2}, + [1383] = {.lex_state = 85, .external_lex_state = 2}, + [1384] = {.lex_state = 42, .external_lex_state = 2}, + [1385] = {.lex_state = 66, .external_lex_state = 2}, + [1386] = {.lex_state = 44, .external_lex_state = 2}, + [1387] = {.lex_state = 666, .external_lex_state = 2}, + [1388] = {.lex_state = 53, .external_lex_state = 2}, + [1389] = {.lex_state = 86, .external_lex_state = 2}, + [1390] = {.lex_state = 82, .external_lex_state = 2}, + [1391] = {.lex_state = 86, .external_lex_state = 2}, + [1392] = {.lex_state = 203, .external_lex_state = 2}, + [1393] = {.lex_state = 82, .external_lex_state = 2}, + [1394] = {.lex_state = 45, .external_lex_state = 2}, + [1395] = {.lex_state = 66, .external_lex_state = 2}, + [1396] = {.lex_state = 66, .external_lex_state = 2}, + [1397] = {.lex_state = 45, .external_lex_state = 2}, + [1398] = {.lex_state = 53, .external_lex_state = 2}, + [1399] = {.lex_state = 53, .external_lex_state = 2}, + [1400] = {.lex_state = 5, .external_lex_state = 2}, + [1401] = {.lex_state = 5, .external_lex_state = 2}, + [1402] = {.lex_state = 86, .external_lex_state = 2}, + [1403] = {.lex_state = 5, .external_lex_state = 2}, + [1404] = {.lex_state = 53, .external_lex_state = 2}, + [1405] = {.lex_state = 5, .external_lex_state = 2}, + [1406] = {.lex_state = 5, .external_lex_state = 2}, + [1407] = {.lex_state = 5, .external_lex_state = 2}, + [1408] = {.lex_state = 82, .external_lex_state = 2}, + [1409] = {.lex_state = 86, .external_lex_state = 2}, + [1410] = {.lex_state = 203, .external_lex_state = 2}, + [1411] = {.lex_state = 46, .external_lex_state = 2}, + [1412] = {.lex_state = 666, .external_lex_state = 2}, + [1413] = {.lex_state = 53, .external_lex_state = 2}, + [1414] = {.lex_state = 46, .external_lex_state = 2}, + [1415] = {.lex_state = 176, .external_lex_state = 2}, + [1416] = {.lex_state = 666, .external_lex_state = 2}, + [1417] = {.lex_state = 176, .external_lex_state = 2}, + [1418] = {.lex_state = 46, .external_lex_state = 2}, + [1419] = {.lex_state = 78, .external_lex_state = 2}, + [1420] = {.lex_state = 176, .external_lex_state = 2}, + [1421] = {.lex_state = 672, .external_lex_state = 2}, + [1422] = {.lex_state = 176, .external_lex_state = 2}, + [1423] = {.lex_state = 666, .external_lex_state = 2}, + [1424] = {.lex_state = 65, .external_lex_state = 2}, + [1425] = {.lex_state = 666, .external_lex_state = 2}, + [1426] = {.lex_state = 75, .external_lex_state = 2}, + [1427] = {.lex_state = 176, .external_lex_state = 2}, + [1428] = {.lex_state = 89, .external_lex_state = 2}, + [1429] = {.lex_state = 666, .external_lex_state = 2}, + [1430] = {.lex_state = 46, .external_lex_state = 2}, + [1431] = {.lex_state = 6, .external_lex_state = 2}, + [1432] = {.lex_state = 89, .external_lex_state = 2}, + [1433] = {.lex_state = 666, .external_lex_state = 2}, + [1434] = {.lex_state = 46, .external_lex_state = 2}, + [1435] = {.lex_state = 89, .external_lex_state = 2}, + [1436] = {.lex_state = 666, .external_lex_state = 2}, + [1437] = {.lex_state = 666, .external_lex_state = 2}, + [1438] = {.lex_state = 74, .external_lex_state = 2}, + [1439] = {.lex_state = 666, .external_lex_state = 2}, + [1440] = {.lex_state = 74, .external_lex_state = 2}, + [1441] = {.lex_state = 66, .external_lex_state = 2}, + [1442] = {.lex_state = 74, .external_lex_state = 2}, + [1443] = {.lex_state = 66, .external_lex_state = 2}, + [1444] = {.lex_state = 666, .external_lex_state = 2}, + [1445] = {.lex_state = 66, .external_lex_state = 2}, + [1446] = {.lex_state = 74, .external_lex_state = 2}, + [1447] = {.lex_state = 666, .external_lex_state = 2}, + [1448] = {.lex_state = 74, .external_lex_state = 2}, + [1449] = {.lex_state = 53, .external_lex_state = 2}, + [1450] = {.lex_state = 666, .external_lex_state = 2}, + [1451] = {.lex_state = 666, .external_lex_state = 2}, + [1452] = {.lex_state = 7, .external_lex_state = 2}, + [1453] = {.lex_state = 47, .external_lex_state = 2}, + [1454] = {.lex_state = 666, .external_lex_state = 2}, + [1455] = {.lex_state = 76, .external_lex_state = 2}, + [1456] = {.lex_state = 666, .external_lex_state = 2}, + [1457] = {.lex_state = 74, .external_lex_state = 2}, + [1458] = {.lex_state = 74, .external_lex_state = 2}, + [1459] = {.lex_state = 74, .external_lex_state = 2}, + [1460] = {.lex_state = 76, .external_lex_state = 2}, + [1461] = {.lex_state = 50, .external_lex_state = 2}, + [1462] = {.lex_state = 74, .external_lex_state = 2}, + [1463] = {.lex_state = 74, .external_lex_state = 2}, + [1464] = {.lex_state = 626}, + [1465] = {.lex_state = 74, .external_lex_state = 2}, + [1466] = {.lex_state = 74, .external_lex_state = 2}, + [1467] = {.lex_state = 74, .external_lex_state = 2}, + [1468] = {.lex_state = 666, .external_lex_state = 2}, + [1469] = {.lex_state = 74, .external_lex_state = 2}, + [1470] = {.lex_state = 628}, + [1471] = {.lex_state = 7, .external_lex_state = 2}, + [1472] = {.lex_state = 7, .external_lex_state = 2}, + [1473] = {.lex_state = 7, .external_lex_state = 2}, + [1474] = {.lex_state = 7, .external_lex_state = 2}, + [1475] = {.lex_state = 7, .external_lex_state = 2}, + [1476] = {.lex_state = 77, .external_lex_state = 2}, + [1477] = {.lex_state = 77, .external_lex_state = 2}, + [1478] = {.lex_state = 77, .external_lex_state = 2}, + [1479] = {.lex_state = 74, .external_lex_state = 2}, + [1480] = {.lex_state = 74, .external_lex_state = 2}, + [1481] = {.lex_state = 48, .external_lex_state = 2}, + [1482] = {.lex_state = 77, .external_lex_state = 2}, + [1483] = {.lex_state = 666, .external_lex_state = 2}, + [1484] = {.lex_state = 77, .external_lex_state = 2}, + [1485] = {.lex_state = 77, .external_lex_state = 2}, + [1486] = {.lex_state = 48, .external_lex_state = 2}, + [1487] = {.lex_state = 77, .external_lex_state = 2}, + [1488] = {.lex_state = 77, .external_lex_state = 2}, + [1489] = {.lex_state = 77, .external_lex_state = 2}, + [1490] = {.lex_state = 626}, + [1491] = {.lex_state = 80, .external_lex_state = 2}, + [1492] = {.lex_state = 77, .external_lex_state = 2}, + [1493] = {.lex_state = 57, .external_lex_state = 2}, + [1494] = {.lex_state = 67, .external_lex_state = 2}, + [1495] = {.lex_state = 666, .external_lex_state = 2}, + [1496] = {.lex_state = 77, .external_lex_state = 2}, + [1497] = {.lex_state = 77, .external_lex_state = 2}, + [1498] = {.lex_state = 7, .external_lex_state = 2}, + [1499] = {.lex_state = 628}, + [1500] = {.lex_state = 77, .external_lex_state = 2}, + [1501] = {.lex_state = 77, .external_lex_state = 2}, + [1502] = {.lex_state = 57, .external_lex_state = 2}, + [1503] = {.lex_state = 630}, + [1504] = {.lex_state = 36, .external_lex_state = 2}, + [1505] = {.lex_state = 49, .external_lex_state = 2}, + [1506] = {.lex_state = 2, .external_lex_state = 2}, + [1507] = {.lex_state = 49, .external_lex_state = 2}, + [1508] = {.lex_state = 36, .external_lex_state = 2}, + [1509] = {.lex_state = 49, .external_lex_state = 2}, + [1510] = {.lex_state = 49, .external_lex_state = 2}, + [1511] = {.lex_state = 36, .external_lex_state = 2}, + [1512] = {.lex_state = 2, .external_lex_state = 2}, + [1513] = {.lex_state = 49, .external_lex_state = 2}, + [1514] = {.lex_state = 36, .external_lex_state = 2}, + [1515] = {.lex_state = 666, .external_lex_state = 2}, + [1516] = {.lex_state = 90, .external_lex_state = 2}, + [1517] = {.lex_state = 49, .external_lex_state = 2}, + [1518] = {.lex_state = 79, .external_lex_state = 2}, + [1519] = {.lex_state = 628}, + [1520] = {.lex_state = 72, .external_lex_state = 2}, + [1521] = {.lex_state = 628}, + [1522] = {.lex_state = 49, .external_lex_state = 2}, + [1523] = {.lex_state = 49, .external_lex_state = 2}, + [1524] = {.lex_state = 36, .external_lex_state = 2}, + [1525] = {.lex_state = 49, .external_lex_state = 2}, + [1526] = {.lex_state = 49, .external_lex_state = 2}, + [1527] = {.lex_state = 666, .external_lex_state = 2}, + [1528] = {.lex_state = 49, .external_lex_state = 2}, + [1529] = {.lex_state = 8, .external_lex_state = 2}, + [1530] = {.lex_state = 49, .external_lex_state = 2}, + [1531] = {.lex_state = 73, .external_lex_state = 2}, + [1532] = {.lex_state = 49, .external_lex_state = 2}, + [1533] = {.lex_state = 68, .external_lex_state = 2}, + [1534] = {.lex_state = 68, .external_lex_state = 2}, + [1535] = {.lex_state = 634}, + [1536] = {.lex_state = 74, .external_lex_state = 2}, + [1537] = {.lex_state = 2, .external_lex_state = 2}, + [1538] = {.lex_state = 69, .external_lex_state = 2}, + [1539] = {.lex_state = 2, .external_lex_state = 2}, + [1540] = {.lex_state = 87, .external_lex_state = 2}, + [1541] = {.lex_state = 69, .external_lex_state = 2}, + [1542] = {.lex_state = 638}, + [1543] = {.lex_state = 36, .external_lex_state = 2}, + [1544] = {.lex_state = 74, .external_lex_state = 2}, + [1545] = {.lex_state = 57, .external_lex_state = 2}, + [1546] = {.lex_state = 87, .external_lex_state = 2}, + [1547] = {.lex_state = 87, .external_lex_state = 2}, + [1548] = {.lex_state = 87, .external_lex_state = 2}, + [1549] = {.lex_state = 74, .external_lex_state = 2}, + [1550] = {.lex_state = 36, .external_lex_state = 2}, + [1551] = {.lex_state = 634}, + [1552] = {.lex_state = 630}, + [1553] = {.lex_state = 70, .external_lex_state = 2}, + [1554] = {.lex_state = 87, .external_lex_state = 2}, + [1555] = {.lex_state = 87, .external_lex_state = 2}, + [1556] = {.lex_state = 636}, + [1557] = {.lex_state = 636}, + [1558] = {.lex_state = 2, .external_lex_state = 2}, + [1559] = {.lex_state = 87, .external_lex_state = 2}, + [1560] = {.lex_state = 71, .external_lex_state = 2}, + [1561] = {.lex_state = 638}, + [1562] = {.lex_state = 638}, + [1563] = {.lex_state = 638}, + [1564] = {.lex_state = 640}, + [1565] = {.lex_state = 632}, + [1566] = {.lex_state = 71, .external_lex_state = 2}, + [1567] = {.lex_state = 71, .external_lex_state = 2}, + [1568] = {.lex_state = 71, .external_lex_state = 2}, + [1569] = {.lex_state = 71, .external_lex_state = 2}, + [1570] = {.lex_state = 71, .external_lex_state = 2}, + [1571] = {.lex_state = 71, .external_lex_state = 2}, + [1572] = {.lex_state = 71, .external_lex_state = 2}, + [1573] = {.lex_state = 71, .external_lex_state = 2}, + [1574] = {.lex_state = 90, .external_lex_state = 2}, + [1575] = {.lex_state = 71, .external_lex_state = 2}, + [1576] = {.lex_state = 186, .external_lex_state = 2}, + [1577] = {.lex_state = 71, .external_lex_state = 2}, + [1578] = {.lex_state = 71, .external_lex_state = 2}, + [1579] = {.lex_state = 71, .external_lex_state = 2}, + [1580] = {.lex_state = 71, .external_lex_state = 2}, + [1581] = {.lex_state = 71, .external_lex_state = 2}, + [1582] = {.lex_state = 71, .external_lex_state = 2}, + [1583] = {.lex_state = 71, .external_lex_state = 2}, + [1584] = {.lex_state = 71, .external_lex_state = 2}, + [1585] = {.lex_state = 71, .external_lex_state = 2}, + [1586] = {.lex_state = 638}, + [1587] = {.lex_state = 71, .external_lex_state = 2}, + [1588] = {.lex_state = 71, .external_lex_state = 2}, + [1589] = {.lex_state = 71, .external_lex_state = 2}, + [1590] = {.lex_state = 71, .external_lex_state = 2}, + [1591] = {.lex_state = 71, .external_lex_state = 2}, + [1592] = {.lex_state = 71, .external_lex_state = 2}, + [1593] = {.lex_state = 71, .external_lex_state = 2}, + [1594] = {.lex_state = 71, .external_lex_state = 2}, + [1595] = {.lex_state = 71, .external_lex_state = 2}, + [1596] = {.lex_state = 57, .external_lex_state = 2}, + [1597] = {.lex_state = 71, .external_lex_state = 2}, + [1598] = {.lex_state = 71, .external_lex_state = 2}, + [1599] = {.lex_state = 71, .external_lex_state = 2}, + [1600] = {.lex_state = 71, .external_lex_state = 2}, + [1601] = {.lex_state = 2, .external_lex_state = 2}, + [1602] = {.lex_state = 71, .external_lex_state = 2}, + [1603] = {.lex_state = 71, .external_lex_state = 2}, + [1604] = {.lex_state = 71, .external_lex_state = 2}, + [1605] = {.lex_state = 71, .external_lex_state = 2}, + [1606] = {.lex_state = 71, .external_lex_state = 2}, + [1607] = {.lex_state = 71, .external_lex_state = 2}, + [1608] = {.lex_state = 71, .external_lex_state = 2}, + [1609] = {.lex_state = 71, .external_lex_state = 2}, + [1610] = {.lex_state = 71, .external_lex_state = 2}, + [1611] = {.lex_state = 71, .external_lex_state = 2}, + [1612] = {.lex_state = 71, .external_lex_state = 2}, + [1613] = {.lex_state = 71, .external_lex_state = 2}, + [1614] = {.lex_state = 71, .external_lex_state = 2}, + [1615] = {.lex_state = 71, .external_lex_state = 2}, + [1616] = {.lex_state = 71, .external_lex_state = 2}, + [1617] = {.lex_state = 71, .external_lex_state = 2}, + [1618] = {.lex_state = 71, .external_lex_state = 2}, + [1619] = {.lex_state = 71, .external_lex_state = 2}, + [1620] = {.lex_state = 71, .external_lex_state = 2}, + [1621] = {.lex_state = 71, .external_lex_state = 2}, + [1622] = {.lex_state = 71, .external_lex_state = 2}, + [1623] = {.lex_state = 71, .external_lex_state = 2}, + [1624] = {.lex_state = 71, .external_lex_state = 2}, + [1625] = {.lex_state = 71, .external_lex_state = 2}, + [1626] = {.lex_state = 71, .external_lex_state = 2}, + [1627] = {.lex_state = 71, .external_lex_state = 2}, + [1628] = {.lex_state = 71, .external_lex_state = 2}, + [1629] = {.lex_state = 71, .external_lex_state = 2}, + [1630] = {.lex_state = 71, .external_lex_state = 2}, + [1631] = {.lex_state = 71, .external_lex_state = 2}, + [1632] = {.lex_state = 71, .external_lex_state = 2}, + [1633] = {.lex_state = 71, .external_lex_state = 2}, + [1634] = {.lex_state = 71, .external_lex_state = 2}, + [1635] = {.lex_state = 71, .external_lex_state = 2}, + [1636] = {.lex_state = 71, .external_lex_state = 2}, + [1637] = {.lex_state = 71, .external_lex_state = 2}, + [1638] = {.lex_state = 71, .external_lex_state = 2}, + [1639] = {.lex_state = 71, .external_lex_state = 2}, + [1640] = {.lex_state = 71, .external_lex_state = 2}, + [1641] = {.lex_state = 71, .external_lex_state = 2}, + [1642] = {.lex_state = 71, .external_lex_state = 2}, + [1643] = {.lex_state = 636}, + [1644] = {.lex_state = 636}, + [1645] = {.lex_state = 90, .external_lex_state = 2}, + [1646] = {.lex_state = 71, .external_lex_state = 2}, + [1647] = {.lex_state = 71, .external_lex_state = 2}, + [1648] = {.lex_state = 90, .external_lex_state = 2}, + [1649] = {.lex_state = 186, .external_lex_state = 2}, + [1650] = {.lex_state = 71, .external_lex_state = 2}, + [1651] = {.lex_state = 640}, + [1652] = {.lex_state = 632}, + [1653] = {.lex_state = 638}, + [1654] = {.lex_state = 638}, + [1655] = {.lex_state = 638}, + [1656] = {.lex_state = 642}, + [1657] = {.lex_state = 642}, + [1658] = {.lex_state = 644}, + [1659] = {.lex_state = 644}, + [1660] = {.lex_state = 642}, + [1661] = {.lex_state = 642}, + [1662] = {.lex_state = 644}, + [1663] = {.lex_state = 644}, + [1664] = {.lex_state = 644}, + [1665] = {.lex_state = 622}, + [1666] = {.lex_state = 668, .external_lex_state = 2}, + [1667] = {.lex_state = 646}, + [1668] = {.lex_state = 644}, + [1669] = {.lex_state = 644}, + [1670] = {.lex_state = 644}, + [1671] = {.lex_state = 644}, + [1672] = {.lex_state = 648}, + [1673] = {.lex_state = 644}, + [1674] = {.lex_state = 668, .external_lex_state = 2}, + [1675] = {.lex_state = 60, .external_lex_state = 2}, + [1676] = {.lex_state = 648}, + [1677] = {.lex_state = 60, .external_lex_state = 2}, + [1678] = {.lex_state = 668, .external_lex_state = 2}, + [1679] = {.lex_state = 646}, + [1680] = {.lex_state = 650}, + [1681] = {.lex_state = 60, .external_lex_state = 2}, + [1682] = {.lex_state = 668, .external_lex_state = 2}, + [1683] = {.lex_state = 622}, + [1684] = {.lex_state = 650}, + [1685] = {.lex_state = 177, .external_lex_state = 2}, + [1686] = {.lex_state = 177, .external_lex_state = 2}, + [1687] = {.lex_state = 650}, + [1688] = {.lex_state = 650}, + [1689] = {.lex_state = 177, .external_lex_state = 2}, + [1690] = {.lex_state = 177, .external_lex_state = 2}, + [1691] = {.lex_state = 177, .external_lex_state = 2}, + [1692] = {.lex_state = 652}, + [1693] = {.lex_state = 177, .external_lex_state = 2}, + [1694] = {.lex_state = 652}, + [1695] = {.lex_state = 177, .external_lex_state = 2}, + [1696] = {.lex_state = 652}, + [1697] = {.lex_state = 652}, + [1698] = {.lex_state = 652}, + [1699] = {.lex_state = 652}, + [1700] = {.lex_state = 652}, + [1701] = {.lex_state = 652}, + [1702] = {.lex_state = 652}, + [1703] = {.lex_state = 652}, + [1704] = {.lex_state = 177, .external_lex_state = 2}, + [1705] = {.lex_state = 177, .external_lex_state = 2}, + [1706] = {.lex_state = 652}, + [1707] = {.lex_state = 177, .external_lex_state = 2}, + [1708] = {.lex_state = 177, .external_lex_state = 2}, + [1709] = {.lex_state = 652}, + [1710] = {.lex_state = 652}, + [1711] = {.lex_state = 177, .external_lex_state = 2}, + [1712] = {.lex_state = 177, .external_lex_state = 2}, + [1713] = {.lex_state = 652}, + [1714] = {.lex_state = 654}, + [1715] = {.lex_state = 652}, + [1716] = {.lex_state = 652}, + [1717] = {.lex_state = 652}, + [1718] = {.lex_state = 652}, + [1719] = {.lex_state = 652}, + [1720] = {.lex_state = 63, .external_lex_state = 2}, + [1721] = {.lex_state = 652}, + [1722] = {.lex_state = 177, .external_lex_state = 2}, + [1723] = {.lex_state = 652}, + [1724] = {.lex_state = 652}, + [1725] = {.lex_state = 652}, + [1726] = {.lex_state = 177, .external_lex_state = 2}, + [1727] = {.lex_state = 652}, + [1728] = {.lex_state = 654}, + [1729] = {.lex_state = 652}, + [1730] = {.lex_state = 652}, + [1731] = {.lex_state = 654}, + [1732] = {.lex_state = 652}, + [1733] = {.lex_state = 177, .external_lex_state = 2}, + [1734] = {.lex_state = 622}, + [1735] = {.lex_state = 622}, + [1736] = {.lex_state = 622}, + [1737] = {.lex_state = 622}, + [1738] = {.lex_state = 119}, + [1739] = {.lex_state = 119}, + [1740] = {.lex_state = 60, .external_lex_state = 2}, + [1741] = {.lex_state = 119}, + [1742] = {.lex_state = 119}, + [1743] = {.lex_state = 622}, + [1744] = {.lex_state = 622}, + [1745] = {.lex_state = 622}, + [1746] = {.lex_state = 622}, + [1747] = {.lex_state = 622}, + [1748] = {.lex_state = 622}, + [1749] = {.lex_state = 622}, + [1750] = {.lex_state = 622}, + [1751] = {.lex_state = 622}, + [1752] = {.lex_state = 622}, + [1753] = {.lex_state = 622}, + [1754] = {.lex_state = 622}, + [1755] = {.lex_state = 622}, + [1756] = {.lex_state = 622}, + [1757] = {.lex_state = 622}, + [1758] = {.lex_state = 622}, + [1759] = {.lex_state = 622}, + [1760] = {.lex_state = 622}, + [1761] = {.lex_state = 622}, + [1762] = {.lex_state = 622}, + [1763] = {.lex_state = 622}, + [1764] = {.lex_state = 622}, + [1765] = {.lex_state = 622}, + [1766] = {.lex_state = 622}, + [1767] = {.lex_state = 119}, + [1768] = {.lex_state = 622}, + [1769] = {.lex_state = 622}, + [1770] = {.lex_state = 119}, + [1771] = {.lex_state = 622}, + [1772] = {.lex_state = 119}, + [1773] = {.lex_state = 622}, + [1774] = {.lex_state = 119}, + [1775] = {.lex_state = 622}, + [1776] = {.lex_state = 622}, + [1777] = {.lex_state = 119}, + [1778] = {.lex_state = 622}, + [1779] = {.lex_state = 119}, + [1780] = {.lex_state = 622}, + [1781] = {.lex_state = 119}, + [1782] = {.lex_state = 119}, + [1783] = {.lex_state = 622}, + [1784] = {.lex_state = 119}, + [1785] = {.lex_state = 622}, + [1786] = {.lex_state = 622}, + [1787] = {.lex_state = 119}, + [1788] = {.lex_state = 622}, + [1789] = {.lex_state = 119}, + [1790] = {.lex_state = 119}, + [1791] = {.lex_state = 60, .external_lex_state = 2}, + [1792] = {.lex_state = 654}, + [1793] = {.lex_state = 119}, + [1794] = {.lex_state = 622}, + [1795] = {.lex_state = 622}, + [1796] = {.lex_state = 622}, + [1797] = {.lex_state = 622}, + [1798] = {.lex_state = 622}, + [1799] = {.lex_state = 622}, + [1800] = {.lex_state = 622}, + [1801] = {.lex_state = 622}, + [1802] = {.lex_state = 622}, + [1803] = {.lex_state = 622}, + [1804] = {.lex_state = 622}, + [1805] = {.lex_state = 622}, + [1806] = {.lex_state = 622}, + [1807] = {.lex_state = 622}, + [1808] = {.lex_state = 622}, + [1809] = {.lex_state = 622}, + [1810] = {.lex_state = 622}, + [1811] = {.lex_state = 622}, + [1812] = {.lex_state = 622}, + [1813] = {.lex_state = 622}, + [1814] = {.lex_state = 622}, + [1815] = {.lex_state = 622}, + [1816] = {.lex_state = 622}, + [1817] = {.lex_state = 622}, + [1818] = {.lex_state = 622}, + [1819] = {.lex_state = 622}, + [1820] = {.lex_state = 622}, + [1821] = {.lex_state = 622}, + [1822] = {.lex_state = 622}, + [1823] = {.lex_state = 622}, + [1824] = {.lex_state = 622}, + [1825] = {.lex_state = 622}, + [1826] = {.lex_state = 622}, + [1827] = {.lex_state = 622}, + [1828] = {.lex_state = 119}, + [1829] = {.lex_state = 119}, + [1830] = {.lex_state = 119}, + [1831] = {.lex_state = 119}, + [1832] = {.lex_state = 119}, + [1833] = {.lex_state = 119}, + [1834] = {.lex_state = 622}, + [1835] = {.lex_state = 622}, + [1836] = {.lex_state = 622}, + [1837] = {.lex_state = 622}, + [1838] = {.lex_state = 622}, + [1839] = {.lex_state = 622}, + [1840] = {.lex_state = 622}, + [1841] = {.lex_state = 622}, + [1842] = {.lex_state = 622}, + [1843] = {.lex_state = 622}, + [1844] = {.lex_state = 622}, + [1845] = {.lex_state = 622}, + [1846] = {.lex_state = 119}, + [1847] = {.lex_state = 119}, + [1848] = {.lex_state = 119}, + [1849] = {.lex_state = 119}, + [1850] = {.lex_state = 119}, + [1851] = {.lex_state = 119}, + [1852] = {.lex_state = 119}, + [1853] = {.lex_state = 207, .external_lex_state = 2}, + [1854] = {.lex_state = 119}, + [1855] = {.lex_state = 119}, + [1856] = {.lex_state = 119}, + [1857] = {.lex_state = 60, .external_lex_state = 2}, + [1858] = {.lex_state = 119}, + [1859] = {.lex_state = 119}, + [1860] = {.lex_state = 119}, + [1861] = {.lex_state = 622}, + [1862] = {.lex_state = 622}, + [1863] = {.lex_state = 622}, + [1864] = {.lex_state = 622}, + [1865] = {.lex_state = 622}, + [1866] = {.lex_state = 622}, + [1867] = {.lex_state = 622}, + [1868] = {.lex_state = 622}, + [1869] = {.lex_state = 622}, + [1870] = {.lex_state = 622}, + [1871] = {.lex_state = 622}, + [1872] = {.lex_state = 622}, + [1873] = {.lex_state = 119}, + [1874] = {.lex_state = 119}, + [1875] = {.lex_state = 119}, + [1876] = {.lex_state = 119}, + [1877] = {.lex_state = 119}, + [1878] = {.lex_state = 119}, + [1879] = {.lex_state = 119}, + [1880] = {.lex_state = 63, .external_lex_state = 2}, + [1881] = {.lex_state = 60, .external_lex_state = 2}, + [1882] = {.lex_state = 60, .external_lex_state = 2}, + [1883] = {.lex_state = 119}, + [1884] = {.lex_state = 652}, + [1885] = {.lex_state = 119}, + [1886] = {.lex_state = 622}, + [1887] = {.lex_state = 60, .external_lex_state = 2}, + [1888] = {.lex_state = 622}, + [1889] = {.lex_state = 654}, + [1890] = {.lex_state = 654}, + [1891] = {.lex_state = 622}, + [1892] = {.lex_state = 622}, + [1893] = {.lex_state = 13}, + [1894] = {.lex_state = 622}, + [1895] = {.lex_state = 622}, + [1896] = {.lex_state = 622}, + [1897] = {.lex_state = 622}, + [1898] = {.lex_state = 119}, + [1899] = {.lex_state = 119}, + [1900] = {.lex_state = 622}, + [1901] = {.lex_state = 622}, + [1902] = {.lex_state = 119}, + [1903] = {.lex_state = 622}, + [1904] = {.lex_state = 622}, + [1905] = {.lex_state = 14}, + [1906] = {.lex_state = 622}, + [1907] = {.lex_state = 622}, + [1908] = {.lex_state = 622}, + [1909] = {.lex_state = 622}, + [1910] = {.lex_state = 622}, + [1911] = {.lex_state = 622}, + [1912] = {.lex_state = 160}, + [1913] = {.lex_state = 119}, + [1914] = {.lex_state = 622}, + [1915] = {.lex_state = 207, .external_lex_state = 2}, + [1916] = {.lex_state = 622}, + [1917] = {.lex_state = 622}, + [1918] = {.lex_state = 14}, + [1919] = {.lex_state = 207, .external_lex_state = 2}, + [1920] = {.lex_state = 622}, + [1921] = {.lex_state = 622}, + [1922] = {.lex_state = 622}, + [1923] = {.lex_state = 60, .external_lex_state = 2}, + [1924] = {.lex_state = 160}, + [1925] = {.lex_state = 60, .external_lex_state = 2}, + [1926] = {.lex_state = 60, .external_lex_state = 2}, + [1927] = {.lex_state = 60, .external_lex_state = 2}, + [1928] = {.lex_state = 161}, + [1929] = {.lex_state = 161}, + [1930] = {.lex_state = 15}, + [1931] = {.lex_state = 60, .external_lex_state = 2}, + [1932] = {.lex_state = 160}, + [1933] = {.lex_state = 60, .external_lex_state = 2}, + [1934] = {.lex_state = 60, .external_lex_state = 2}, + [1935] = {.lex_state = 17}, + [1936] = {.lex_state = 60, .external_lex_state = 2}, + [1937] = {.lex_state = 60, .external_lex_state = 2}, + [1938] = {.lex_state = 60, .external_lex_state = 2}, + [1939] = {.lex_state = 60, .external_lex_state = 2}, + [1940] = {.lex_state = 671, .external_lex_state = 2}, + [1941] = {.lex_state = 119}, + [1942] = {.lex_state = 671, .external_lex_state = 2}, + [1943] = {.lex_state = 206, .external_lex_state = 2}, + [1944] = {.lex_state = 160}, + [1945] = {.lex_state = 160}, + [1946] = {.lex_state = 160}, + [1947] = {.lex_state = 160}, + [1948] = {.lex_state = 119}, + [1949] = {.lex_state = 206, .external_lex_state = 2}, + [1950] = {.lex_state = 119}, + [1951] = {.lex_state = 160}, + [1952] = {.lex_state = 160}, + [1953] = {.lex_state = 119}, + [1954] = {.lex_state = 18}, + [1955] = {.lex_state = 164}, + [1956] = {.lex_state = 617, .external_lex_state = 2}, + [1957] = {.lex_state = 18}, + [1958] = {.lex_state = 19}, + [1959] = {.lex_state = 671, .external_lex_state = 2}, + [1960] = {.lex_state = 162}, + [1961] = {.lex_state = 206, .external_lex_state = 2}, + [1962] = {.lex_state = 206, .external_lex_state = 2}, + [1963] = {.lex_state = 119}, + [1964] = {.lex_state = 206, .external_lex_state = 2}, + [1965] = {.lex_state = 119}, + [1966] = {.lex_state = 119}, + [1967] = {.lex_state = 671, .external_lex_state = 2}, + [1968] = {.lex_state = 20}, + [1969] = {.lex_state = 206, .external_lex_state = 2}, + [1970] = {.lex_state = 671, .external_lex_state = 2}, + [1971] = {.lex_state = 617, .external_lex_state = 2}, + [1972] = {.lex_state = 60, .external_lex_state = 2}, + [1973] = {.lex_state = 206, .external_lex_state = 2}, + [1974] = {.lex_state = 206, .external_lex_state = 2}, + [1975] = {.lex_state = 60, .external_lex_state = 2}, + [1976] = {.lex_state = 119}, + [1977] = {.lex_state = 166}, + [1978] = {.lex_state = 671, .external_lex_state = 2}, + [1979] = {.lex_state = 617, .external_lex_state = 2}, + [1980] = {.lex_state = 671, .external_lex_state = 2}, + [1981] = {.lex_state = 199, .external_lex_state = 2}, + [1982] = {.lex_state = 206, .external_lex_state = 2}, + [1983] = {.lex_state = 206, .external_lex_state = 2}, + [1984] = {.lex_state = 617, .external_lex_state = 2}, + [1985] = {.lex_state = 16}, + [1986] = {.lex_state = 617, .external_lex_state = 2}, + [1987] = {.lex_state = 206, .external_lex_state = 2}, + [1988] = {.lex_state = 19}, + [1989] = {.lex_state = 60, .external_lex_state = 2}, + [1990] = {.lex_state = 206, .external_lex_state = 2}, + [1991] = {.lex_state = 617, .external_lex_state = 2}, + [1992] = {.lex_state = 206, .external_lex_state = 2}, + [1993] = {.lex_state = 617, .external_lex_state = 2}, + [1994] = {.lex_state = 617, .external_lex_state = 2}, + [1995] = {.lex_state = 671, .external_lex_state = 2}, + [1996] = {.lex_state = 197, .external_lex_state = 2}, + [1997] = {.lex_state = 19}, + [1998] = {.lex_state = 165}, + [1999] = {.lex_state = 165}, + [2000] = {.lex_state = 19}, + [2001] = {.lex_state = 119}, + [2002] = {.lex_state = 166}, + [2003] = {.lex_state = 166}, + [2004] = {.lex_state = 196, .external_lex_state = 2}, + [2005] = {.lex_state = 119}, + [2006] = {.lex_state = 21}, + [2007] = {.lex_state = 119}, + [2008] = {.lex_state = 167}, + [2009] = {.lex_state = 119}, + [2010] = {.lex_state = 119}, + [2011] = {.lex_state = 119}, + [2012] = {.lex_state = 196, .external_lex_state = 2}, + [2013] = {.lex_state = 617, .external_lex_state = 2}, + [2014] = {.lex_state = 60, .external_lex_state = 2}, + [2015] = {.lex_state = 617, .external_lex_state = 2}, + [2016] = {.lex_state = 119}, + [2017] = {.lex_state = 119}, + [2018] = {.lex_state = 119}, + [2019] = {.lex_state = 21}, + [2020] = {.lex_state = 163}, + [2021] = {.lex_state = 119}, + [2022] = {.lex_state = 166}, + [2023] = {.lex_state = 119}, + [2024] = {.lex_state = 119}, + [2025] = {.lex_state = 119}, + [2026] = {.lex_state = 119}, + [2027] = {.lex_state = 119}, + [2028] = {.lex_state = 60, .external_lex_state = 2}, + [2029] = {.lex_state = 119}, + [2030] = {.lex_state = 671, .external_lex_state = 2}, + [2031] = {.lex_state = 60, .external_lex_state = 2}, + [2032] = {.lex_state = 60, .external_lex_state = 2}, + [2033] = {.lex_state = 60, .external_lex_state = 2}, + [2034] = {.lex_state = 60, .external_lex_state = 2}, + [2035] = {.lex_state = 617, .external_lex_state = 2}, + [2036] = {.lex_state = 60, .external_lex_state = 2}, + [2037] = {.lex_state = 60, .external_lex_state = 2}, + [2038] = {.lex_state = 618, .external_lex_state = 2}, + [2039] = {.lex_state = 670, .external_lex_state = 2}, + [2040] = {.lex_state = 60, .external_lex_state = 2}, + [2041] = {.lex_state = 119}, + [2042] = {.lex_state = 60, .external_lex_state = 2}, + [2043] = {.lex_state = 617, .external_lex_state = 2}, + [2044] = {.lex_state = 617, .external_lex_state = 2}, + [2045] = {.lex_state = 60, .external_lex_state = 2}, + [2046] = {.lex_state = 617, .external_lex_state = 2}, + [2047] = {.lex_state = 60, .external_lex_state = 2}, + [2048] = {.lex_state = 119}, + [2049] = {.lex_state = 671, .external_lex_state = 2}, + [2050] = {.lex_state = 622}, + [2051] = {.lex_state = 671, .external_lex_state = 2}, + [2052] = {.lex_state = 22}, + [2053] = {.lex_state = 198, .external_lex_state = 2}, + [2054] = {.lex_state = 198, .external_lex_state = 2}, + [2055] = {.lex_state = 618, .external_lex_state = 2}, + [2056] = {.lex_state = 119}, + [2057] = {.lex_state = 22}, + [2058] = {.lex_state = 198, .external_lex_state = 2}, + [2059] = {.lex_state = 22}, + [2060] = {.lex_state = 670, .external_lex_state = 2}, + [2061] = {.lex_state = 198, .external_lex_state = 2}, + [2062] = {.lex_state = 119}, + [2063] = {.lex_state = 119}, + [2064] = {.lex_state = 22}, + [2065] = {.lex_state = 168}, + [2066] = {.lex_state = 22}, + [2067] = {.lex_state = 168}, + [2068] = {.lex_state = 671, .external_lex_state = 2}, + [2069] = {.lex_state = 671, .external_lex_state = 2}, + [2070] = {.lex_state = 668, .external_lex_state = 2}, + [2071] = {.lex_state = 668, .external_lex_state = 2}, + [2072] = {.lex_state = 668, .external_lex_state = 2}, + [2073] = {.lex_state = 1212}, + [2074] = {.lex_state = 294}, + [2075] = {.lex_state = 668, .external_lex_state = 2}, + [2076] = {.lex_state = 169}, + [2077] = {.lex_state = 668, .external_lex_state = 2}, + [2078] = {.lex_state = 668, .external_lex_state = 2}, + [2079] = {.lex_state = 622}, + [2080] = {.lex_state = 668, .external_lex_state = 2}, + [2081] = {.lex_state = 668, .external_lex_state = 2}, + [2082] = {.lex_state = 668, .external_lex_state = 2}, + [2083] = {.lex_state = 24}, + [2084] = {.lex_state = 668, .external_lex_state = 2}, + [2085] = {.lex_state = 204, .external_lex_state = 2}, + [2086] = {.lex_state = 668, .external_lex_state = 2}, + [2087] = {.lex_state = 668, .external_lex_state = 2}, + [2088] = {.lex_state = 671, .external_lex_state = 2}, + [2089] = {.lex_state = 671, .external_lex_state = 2}, + [2090] = {.lex_state = 119}, + [2091] = {.lex_state = 169}, + [2092] = {.lex_state = 119}, + [2093] = {.lex_state = 668, .external_lex_state = 2}, + [2094] = {.lex_state = 668, .external_lex_state = 2}, + [2095] = {.lex_state = 668, .external_lex_state = 2}, + [2096] = {.lex_state = 1214}, + [2097] = {.lex_state = 668, .external_lex_state = 2}, + [2098] = {.lex_state = 169}, + [2099] = {.lex_state = 169}, + [2100] = {.lex_state = 119}, + [2101] = {.lex_state = 668, .external_lex_state = 2}, + [2102] = {.lex_state = 169}, + [2103] = {.lex_state = 671, .external_lex_state = 2}, + [2104] = {.lex_state = 119}, + [2105] = {.lex_state = 23}, + [2106] = {.lex_state = 668, .external_lex_state = 2}, + [2107] = {.lex_state = 668, .external_lex_state = 2}, + [2108] = {.lex_state = 191, .external_lex_state = 2}, + [2109] = {.lex_state = 668, .external_lex_state = 2}, + [2110] = {.lex_state = 191, .external_lex_state = 2}, + [2111] = {.lex_state = 668, .external_lex_state = 2}, + [2112] = {.lex_state = 1213}, + [2113] = {.lex_state = 668, .external_lex_state = 2}, + [2114] = {.lex_state = 205, .external_lex_state = 2}, + [2115] = {.lex_state = 1217}, + [2116] = {.lex_state = 668, .external_lex_state = 2}, + [2117] = {.lex_state = 668, .external_lex_state = 2}, + [2118] = {.lex_state = 668, .external_lex_state = 2}, + [2119] = {.lex_state = 191, .external_lex_state = 2}, + [2120] = {.lex_state = 170}, + [2121] = {.lex_state = 668, .external_lex_state = 2}, + [2122] = {.lex_state = 191, .external_lex_state = 2}, + [2123] = {.lex_state = 668, .external_lex_state = 2}, + [2124] = {.lex_state = 668, .external_lex_state = 2}, + [2125] = {.lex_state = 191, .external_lex_state = 2}, + [2126] = {.lex_state = 668, .external_lex_state = 2}, + [2127] = {.lex_state = 171}, + [2128] = {.lex_state = 668, .external_lex_state = 2}, + [2129] = {.lex_state = 155, .external_lex_state = 2}, + [2130] = {.lex_state = 1215}, + [2131] = {.lex_state = 191, .external_lex_state = 2}, + [2132] = {.lex_state = 668, .external_lex_state = 2}, + [2133] = {.lex_state = 668, .external_lex_state = 2}, + [2134] = {.lex_state = 191, .external_lex_state = 2}, + [2135] = {.lex_state = 205, .external_lex_state = 2}, + [2136] = {.lex_state = 1215}, + [2137] = {.lex_state = 25}, + [2138] = {.lex_state = 668, .external_lex_state = 2}, + [2139] = {.lex_state = 668, .external_lex_state = 2}, + [2140] = {.lex_state = 25}, + [2141] = {.lex_state = 294}, + [2142] = {.lex_state = 622}, + [2143] = {.lex_state = 1216}, + [2144] = {.lex_state = 26}, + [2145] = {.lex_state = 26}, + [2146] = {.lex_state = 26}, + [2147] = {.lex_state = 26}, + [2148] = {.lex_state = 26}, + [2149] = {.lex_state = 26}, + [2150] = {.lex_state = 26}, + [2151] = {.lex_state = 294}, + [2152] = {.lex_state = 294}, + [2153] = {.lex_state = 294}, + [2154] = {.lex_state = 26}, + [2155] = {.lex_state = 26}, + [2156] = {.lex_state = 182, .external_lex_state = 2}, + [2157] = {.lex_state = 1216}, + [2158] = {.lex_state = 1216}, + [2159] = {.lex_state = 1216}, + [2160] = {.lex_state = 191, .external_lex_state = 2}, + [2161] = {.lex_state = 191, .external_lex_state = 2}, + [2162] = {.lex_state = 294}, + [2163] = {.lex_state = 294}, + [2164] = {.lex_state = 294}, + [2165] = {.lex_state = 26}, + [2166] = {.lex_state = 622}, + [2167] = {.lex_state = 26}, + [2168] = {.lex_state = 294}, + [2169] = {.lex_state = 1218}, + [2170] = {.lex_state = 155, .external_lex_state = 2}, + [2171] = {.lex_state = 155, .external_lex_state = 2}, + [2172] = {.lex_state = 155, .external_lex_state = 2}, + [2173] = {.lex_state = 155, .external_lex_state = 2}, + [2174] = {.lex_state = 155, .external_lex_state = 2}, + [2175] = {.lex_state = 155, .external_lex_state = 2}, + [2176] = {.lex_state = 26}, + [2177] = {.lex_state = 193, .external_lex_state = 2}, + [2178] = {.lex_state = 172}, + [2179] = {.lex_state = 172}, + [2180] = {.lex_state = 1218}, + [2181] = {.lex_state = 182, .external_lex_state = 2}, + [2182] = {.lex_state = 622}, + [2183] = {.lex_state = 119}, + [2184] = {.lex_state = 294}, + [2185] = {.lex_state = 622}, + [2186] = {.lex_state = 622}, + [2187] = {.lex_state = 622}, + [2188] = {.lex_state = 622}, + [2189] = {.lex_state = 622}, + [2190] = {.lex_state = 622}, + [2191] = {.lex_state = 26}, + [2192] = {.lex_state = 188, .external_lex_state = 2}, + [2193] = {.lex_state = 294}, + [2194] = {.lex_state = 60, .external_lex_state = 2}, + [2195] = {.lex_state = 26}, + [2196] = {.lex_state = 190, .external_lex_state = 2}, + [2197] = {.lex_state = 60, .external_lex_state = 2}, + [2198] = {.lex_state = 119}, + [2199] = {.lex_state = 173}, + [2200] = {.lex_state = 183, .external_lex_state = 2}, + [2201] = {.lex_state = 173}, + [2202] = {.lex_state = 173}, + [2203] = {.lex_state = 173}, + [2204] = {.lex_state = 173}, + [2205] = {.lex_state = 173}, + [2206] = {.lex_state = 173}, + [2207] = {.lex_state = 1219}, + [2208] = {.lex_state = 173}, + [2209] = {.lex_state = 173}, + [2210] = {.lex_state = 173}, + [2211] = {.lex_state = 622}, + [2212] = {.lex_state = 622}, + [2213] = {.lex_state = 1219}, + [2214] = {.lex_state = 173}, + [2215] = {.lex_state = 173}, + [2216] = {.lex_state = 173}, + [2217] = {.lex_state = 156, .external_lex_state = 2}, + [2218] = {.lex_state = 1219}, + [2219] = {.lex_state = 1219}, + [2220] = {.lex_state = 81, .external_lex_state = 2}, + [2221] = {.lex_state = 621}, + [2222] = {.lex_state = 183, .external_lex_state = 2}, + [2223] = {.lex_state = 119}, + [2224] = {.lex_state = 622}, + [2225] = {.lex_state = 622}, + [2226] = {.lex_state = 622}, + [2227] = {.lex_state = 622}, + [2228] = {.lex_state = 622}, + [2229] = {.lex_state = 622}, + [2230] = {.lex_state = 622}, + [2231] = {.lex_state = 622}, + [2232] = {.lex_state = 622}, + [2233] = {.lex_state = 622}, + [2234] = {.lex_state = 622}, + [2235] = {.lex_state = 622}, + [2236] = {.lex_state = 622}, + [2237] = {.lex_state = 183, .external_lex_state = 2}, + [2238] = {.lex_state = 183, .external_lex_state = 2}, + [2239] = {.lex_state = 183, .external_lex_state = 2}, + [2240] = {.lex_state = 622}, + [2241] = {.lex_state = 622}, + [2242] = {.lex_state = 622}, + [2243] = {.lex_state = 622}, + [2244] = {.lex_state = 622}, + [2245] = {.lex_state = 622}, + [2246] = {.lex_state = 622}, + [2247] = {.lex_state = 622}, + [2248] = {.lex_state = 622}, + [2249] = {.lex_state = 622}, + [2250] = {.lex_state = 622}, + [2251] = {.lex_state = 622}, + [2252] = {.lex_state = 622}, + [2253] = {.lex_state = 622}, + [2254] = {.lex_state = 622}, + [2255] = {.lex_state = 622}, + [2256] = {.lex_state = 622}, + [2257] = {.lex_state = 622}, + [2258] = {.lex_state = 622}, + [2259] = {.lex_state = 622}, + [2260] = {.lex_state = 622}, + [2261] = {.lex_state = 622}, + [2262] = {.lex_state = 622}, + [2263] = {.lex_state = 622}, + [2264] = {.lex_state = 622}, + [2265] = {.lex_state = 622}, + [2266] = {.lex_state = 622}, + [2267] = {.lex_state = 622}, + [2268] = {.lex_state = 622}, + [2269] = {.lex_state = 188, .external_lex_state = 2}, + [2270] = {.lex_state = 622}, + [2271] = {.lex_state = 622}, + [2272] = {.lex_state = 622}, + [2273] = {.lex_state = 622}, + [2274] = {.lex_state = 622}, + [2275] = {.lex_state = 622}, + [2276] = {.lex_state = 1219}, + [2277] = {.lex_state = 622}, + [2278] = {.lex_state = 622}, + [2279] = {.lex_state = 622}, + [2280] = {.lex_state = 622}, + [2281] = {.lex_state = 622}, + [2282] = {.lex_state = 622}, + [2283] = {.lex_state = 622}, + [2284] = {.lex_state = 622}, + [2285] = {.lex_state = 622}, + [2286] = {.lex_state = 622}, + [2287] = {.lex_state = 622}, + [2288] = {.lex_state = 622}, + [2289] = {.lex_state = 622}, + [2290] = {.lex_state = 622}, + [2291] = {.lex_state = 622}, + [2292] = {.lex_state = 622}, + [2293] = {.lex_state = 622}, + [2294] = {.lex_state = 622}, + [2295] = {.lex_state = 622}, + [2296] = {.lex_state = 622}, + [2297] = {.lex_state = 622}, + [2298] = {.lex_state = 622}, + [2299] = {.lex_state = 622}, + [2300] = {.lex_state = 622}, + [2301] = {.lex_state = 622}, + [2302] = {.lex_state = 622}, + [2303] = {.lex_state = 622}, + [2304] = {.lex_state = 622}, + [2305] = {.lex_state = 622}, + [2306] = {.lex_state = 622}, + [2307] = {.lex_state = 622}, + [2308] = {.lex_state = 622}, + [2309] = {.lex_state = 622}, + [2310] = {.lex_state = 622}, + [2311] = {.lex_state = 622}, + [2312] = {.lex_state = 622}, + [2313] = {.lex_state = 622}, + [2314] = {.lex_state = 622}, + [2315] = {.lex_state = 622}, + [2316] = {.lex_state = 622}, + [2317] = {.lex_state = 622}, + [2318] = {.lex_state = 622}, + [2319] = {.lex_state = 622}, + [2320] = {.lex_state = 622}, + [2321] = {.lex_state = 622}, + [2322] = {.lex_state = 622}, + [2323] = {.lex_state = 622}, + [2324] = {.lex_state = 622}, + [2325] = {.lex_state = 1219}, + [2326] = {.lex_state = 81, .external_lex_state = 2}, + [2327] = {.lex_state = 81, .external_lex_state = 2}, + [2328] = {.lex_state = 294}, + [2329] = {.lex_state = 188, .external_lex_state = 2}, + [2330] = {.lex_state = 1219}, + [2331] = {.lex_state = 1219}, + [2332] = {.lex_state = 1219}, + [2333] = {.lex_state = 188, .external_lex_state = 2}, + [2334] = {.lex_state = 188, .external_lex_state = 2}, + [2335] = {.lex_state = 622}, + [2336] = {.lex_state = 173}, + [2337] = {.lex_state = 195, .external_lex_state = 2}, + [2338] = {.lex_state = 622}, + [2339] = {.lex_state = 119}, + [2340] = {.lex_state = 195, .external_lex_state = 2}, + [2341] = {.lex_state = 195, .external_lex_state = 2}, + [2342] = {.lex_state = 195, .external_lex_state = 2}, + [2343] = {.lex_state = 195, .external_lex_state = 2}, + [2344] = {.lex_state = 191, .external_lex_state = 2}, + [2345] = {.lex_state = 622}, + [2346] = {.lex_state = 183, .external_lex_state = 2}, + [2347] = {.lex_state = 195, .external_lex_state = 2}, + [2348] = {.lex_state = 191, .external_lex_state = 2}, + [2349] = {.lex_state = 622}, + [2350] = {.lex_state = 622}, + [2351] = {.lex_state = 81, .external_lex_state = 2}, + [2352] = {.lex_state = 183, .external_lex_state = 2}, + [2353] = {.lex_state = 188, .external_lex_state = 2}, + [2354] = {.lex_state = 622}, + [2355] = {.lex_state = 622}, + [2356] = {.lex_state = 188, .external_lex_state = 2}, + [2357] = {.lex_state = 195, .external_lex_state = 2}, + [2358] = {.lex_state = 60, .external_lex_state = 2}, + [2359] = {.lex_state = 191, .external_lex_state = 2}, + [2360] = {.lex_state = 60, .external_lex_state = 2}, + [2361] = {.lex_state = 1220}, + [2362] = {.lex_state = 60, .external_lex_state = 2}, + [2363] = {.lex_state = 81, .external_lex_state = 2}, + [2364] = {.lex_state = 60, .external_lex_state = 2}, + [2365] = {.lex_state = 60, .external_lex_state = 2}, + [2366] = {.lex_state = 622}, + [2367] = {.lex_state = 622}, + [2368] = {.lex_state = 622}, + [2369] = {.lex_state = 60, .external_lex_state = 2}, + [2370] = {.lex_state = 622}, + [2371] = {.lex_state = 60, .external_lex_state = 2}, + [2372] = {.lex_state = 622}, + [2373] = {.lex_state = 60, .external_lex_state = 2}, + [2374] = {.lex_state = 622}, + [2375] = {.lex_state = 622}, + [2376] = {.lex_state = 60, .external_lex_state = 2}, + [2377] = {.lex_state = 622}, + [2378] = {.lex_state = 622}, + [2379] = {.lex_state = 622}, + [2380] = {.lex_state = 622}, + [2381] = {.lex_state = 64, .external_lex_state = 2}, + [2382] = {.lex_state = 622}, + [2383] = {.lex_state = 1220}, + [2384] = {.lex_state = 60, .external_lex_state = 2}, + [2385] = {.lex_state = 60, .external_lex_state = 2}, + [2386] = {.lex_state = 60, .external_lex_state = 2}, + [2387] = {.lex_state = 60, .external_lex_state = 2}, + [2388] = {.lex_state = 60, .external_lex_state = 2}, + [2389] = {.lex_state = 60, .external_lex_state = 2}, + [2390] = {.lex_state = 92, .external_lex_state = 2}, + [2391] = {.lex_state = 60, .external_lex_state = 2}, + [2392] = {.lex_state = 92, .external_lex_state = 2}, + [2393] = {.lex_state = 60, .external_lex_state = 2}, + [2394] = {.lex_state = 60, .external_lex_state = 2}, + [2395] = {.lex_state = 60, .external_lex_state = 2}, + [2396] = {.lex_state = 60, .external_lex_state = 2}, + [2397] = {.lex_state = 60, .external_lex_state = 2}, + [2398] = {.lex_state = 60, .external_lex_state = 2}, + [2399] = {.lex_state = 60, .external_lex_state = 2}, + [2400] = {.lex_state = 60, .external_lex_state = 2}, + [2401] = {.lex_state = 60, .external_lex_state = 2}, + [2402] = {.lex_state = 60, .external_lex_state = 2}, + [2403] = {.lex_state = 60, .external_lex_state = 2}, + [2404] = {.lex_state = 60, .external_lex_state = 2}, + [2405] = {.lex_state = 1220}, + [2406] = {.lex_state = 60, .external_lex_state = 2}, + [2407] = {.lex_state = 60, .external_lex_state = 2}, + [2408] = {.lex_state = 60, .external_lex_state = 2}, + [2409] = {.lex_state = 60, .external_lex_state = 2}, + [2410] = {.lex_state = 60, .external_lex_state = 2}, + [2411] = {.lex_state = 60, .external_lex_state = 2}, + [2412] = {.lex_state = 60, .external_lex_state = 2}, + [2413] = {.lex_state = 60, .external_lex_state = 2}, + [2414] = {.lex_state = 60, .external_lex_state = 2}, + [2415] = {.lex_state = 60, .external_lex_state = 2}, + [2416] = {.lex_state = 60, .external_lex_state = 2}, + [2417] = {.lex_state = 60, .external_lex_state = 2}, + [2418] = {.lex_state = 60, .external_lex_state = 2}, + [2419] = {.lex_state = 60, .external_lex_state = 2}, + [2420] = {.lex_state = 622}, + [2421] = {.lex_state = 622}, + [2422] = {.lex_state = 622}, + [2423] = {.lex_state = 622}, + [2424] = {.lex_state = 622}, + [2425] = {.lex_state = 622}, + [2426] = {.lex_state = 622}, + [2427] = {.lex_state = 622}, + [2428] = {.lex_state = 622}, + [2429] = {.lex_state = 622}, + [2430] = {.lex_state = 622}, + [2431] = {.lex_state = 622}, + [2432] = {.lex_state = 1220}, + [2433] = {.lex_state = 92, .external_lex_state = 2}, + [2434] = {.lex_state = 1220}, + [2435] = {.lex_state = 1220}, + [2436] = {.lex_state = 1220}, + [2437] = {.lex_state = 60, .external_lex_state = 2}, + [2438] = {.lex_state = 622}, + [2439] = {.lex_state = 622}, + [2440] = {.lex_state = 622}, + [2441] = {.lex_state = 621}, + [2442] = {.lex_state = 64, .external_lex_state = 2}, + [2443] = {.lex_state = 622}, + [2444] = {.lex_state = 622}, + [2445] = {.lex_state = 622}, + [2446] = {.lex_state = 185, .external_lex_state = 2}, + [2447] = {.lex_state = 185, .external_lex_state = 2}, + [2448] = {.lex_state = 82, .external_lex_state = 2}, + [2449] = {.lex_state = 185, .external_lex_state = 2}, + [2450] = {.lex_state = 92, .external_lex_state = 2}, + [2451] = {.lex_state = 621}, + [2452] = {.lex_state = 185, .external_lex_state = 2}, + [2453] = {.lex_state = 187, .external_lex_state = 2}, + [2454] = {.lex_state = 89, .external_lex_state = 2}, + [2455] = {.lex_state = 187, .external_lex_state = 2}, + [2456] = {.lex_state = 620}, + [2457] = {.lex_state = 187, .external_lex_state = 2}, + [2458] = {.lex_state = 187, .external_lex_state = 2}, + [2459] = {.lex_state = 187, .external_lex_state = 2}, + [2460] = {.lex_state = 82, .external_lex_state = 2}, + [2461] = {.lex_state = 185, .external_lex_state = 2}, + [2462] = {.lex_state = 187, .external_lex_state = 2}, + [2463] = {.lex_state = 90, .external_lex_state = 2}, + [2464] = {.lex_state = 620}, + [2465] = {.lex_state = 620}, + [2466] = {.lex_state = 187, .external_lex_state = 2}, + [2467] = {.lex_state = 185, .external_lex_state = 2}, + [2468] = {.lex_state = 620}, + [2469] = {.lex_state = 620}, + [2470] = {.lex_state = 620}, + [2471] = {.lex_state = 92, .external_lex_state = 2}, + [2472] = {.lex_state = 187, .external_lex_state = 2}, + [2473] = {.lex_state = 90, .external_lex_state = 2}, + [2474] = {.lex_state = 187, .external_lex_state = 2}, + [2475] = {.lex_state = 92, .external_lex_state = 2}, + [2476] = {.lex_state = 89, .external_lex_state = 2}, + [2477] = {.lex_state = 92, .external_lex_state = 2}, + [2478] = {.lex_state = 621}, + [2479] = {.lex_state = 90, .external_lex_state = 2}, + [2480] = {.lex_state = 621}, + [2481] = {.lex_state = 621}, + [2482] = {.lex_state = 91, .external_lex_state = 2}, + [2483] = {.lex_state = 621}, + [2484] = {.lex_state = 621}, + [2485] = {.lex_state = 91, .external_lex_state = 2}, + [2486] = {.lex_state = 621}, + [2487] = {.lex_state = 121}, + [2488] = {.lex_state = 12}, + [2489] = {.lex_state = 622}, + [2490] = {.lex_state = 91, .external_lex_state = 2}, + [2491] = {.lex_state = 91, .external_lex_state = 2}, + [2492] = {.lex_state = 91, .external_lex_state = 2}, + [2493] = {.lex_state = 91, .external_lex_state = 2}, + [2494] = {.lex_state = 91, .external_lex_state = 2}, + [2495] = {.lex_state = 91, .external_lex_state = 2}, + [2496] = {.lex_state = 91, .external_lex_state = 2}, + [2497] = {.lex_state = 91, .external_lex_state = 2}, + [2498] = {.lex_state = 91, .external_lex_state = 2}, + [2499] = {.lex_state = 91, .external_lex_state = 2}, + [2500] = {.lex_state = 91, .external_lex_state = 2}, + [2501] = {.lex_state = 91, .external_lex_state = 2}, + [2502] = {.lex_state = 91, .external_lex_state = 2}, + [2503] = {.lex_state = 91, .external_lex_state = 2}, + [2504] = {.lex_state = 91, .external_lex_state = 2}, + [2505] = {.lex_state = 91, .external_lex_state = 2}, + [2506] = {.lex_state = 91, .external_lex_state = 2}, + [2507] = {.lex_state = 673}, + [2508] = {.lex_state = 91, .external_lex_state = 2}, + [2509] = {.lex_state = 622}, + [2510] = {.lex_state = 91, .external_lex_state = 2}, + [2511] = {.lex_state = 91, .external_lex_state = 2}, + [2512] = {.lex_state = 622}, + [2513] = {.lex_state = 622}, + [2514] = {.lex_state = 622}, + [2515] = {.lex_state = 91, .external_lex_state = 2}, + [2516] = {.lex_state = 91, .external_lex_state = 2}, + [2517] = {.lex_state = 91, .external_lex_state = 2}, + [2518] = {.lex_state = 91, .external_lex_state = 2}, + [2519] = {.lex_state = 91, .external_lex_state = 2}, + [2520] = {.lex_state = 91, .external_lex_state = 2}, + [2521] = {.lex_state = 674}, + [2522] = {.lex_state = 674}, + [2523] = {.lex_state = 12}, + [2524] = {.lex_state = 625}, + [2525] = {.lex_state = 673}, + [2526] = {.lex_state = 674}, + [2527] = {.lex_state = 91, .external_lex_state = 2}, + [2528] = {.lex_state = 91, .external_lex_state = 2}, + [2529] = {.lex_state = 91, .external_lex_state = 2}, + [2530] = {.lex_state = 91, .external_lex_state = 2}, + [2531] = {.lex_state = 91, .external_lex_state = 2}, + [2532] = {.lex_state = 91, .external_lex_state = 2}, + [2533] = {.lex_state = 91, .external_lex_state = 2}, + [2534] = {.lex_state = 91, .external_lex_state = 2}, + [2535] = {.lex_state = 91, .external_lex_state = 2}, + [2536] = {.lex_state = 91, .external_lex_state = 2}, + [2537] = {.lex_state = 625}, + [2538] = {.lex_state = 625}, + [2539] = {.lex_state = 625}, + [2540] = {.lex_state = 625}, + [2541] = {.lex_state = 597}, + [2542] = {.lex_state = 676}, + [2543] = {.lex_state = 625}, + [2544] = {.lex_state = 678}, + [2545] = {.lex_state = 674}, + [2546] = {.lex_state = 91, .external_lex_state = 2}, + [2547] = {.lex_state = 91, .external_lex_state = 2}, + [2548] = {.lex_state = 598}, + [2549] = {.lex_state = 598}, + [2550] = {.lex_state = 676}, + [2551] = {.lex_state = 597}, + [2552] = {.lex_state = 678}, + [2553] = {.lex_state = 680}, + [2554] = {.lex_state = 625}, + [2555] = {.lex_state = 679}, + [2556] = {.lex_state = 625}, + [2557] = {.lex_state = 625}, + [2558] = {.lex_state = 625}, + [2559] = {.lex_state = 679}, + [2560] = {.lex_state = 597}, + [2561] = {.lex_state = 597}, + [2562] = {.lex_state = 597}, + [2563] = {.lex_state = 677}, + [2564] = {.lex_state = 597}, + [2565] = {.lex_state = 597}, + [2566] = {.lex_state = 679}, + [2567] = {.lex_state = 679}, + [2568] = {.lex_state = 600}, + [2569] = {.lex_state = 680}, + [2570] = {.lex_state = 622}, + [2571] = {.lex_state = 597}, + [2572] = {.lex_state = 680}, + [2573] = {.lex_state = 622}, + [2574] = {.lex_state = 602}, + [2575] = {.lex_state = 598}, + [2576] = {.lex_state = 680}, + [2577] = {.lex_state = 680}, + [2578] = {.lex_state = 598}, + [2579] = {.lex_state = 681}, + [2580] = {.lex_state = 604}, + [2581] = {.lex_state = 200, .external_lex_state = 2}, + [2582] = {.lex_state = 620}, + [2583] = {.lex_state = 200, .external_lex_state = 2}, + [2584] = {.lex_state = 681}, + [2585] = {.lex_state = 603}, + [2586] = {.lex_state = 200, .external_lex_state = 2}, + [2587] = {.lex_state = 680}, + [2588] = {.lex_state = 603}, + [2589] = {.lex_state = 597}, + [2590] = {.lex_state = 680}, + [2591] = {.lex_state = 597}, + [2592] = {.lex_state = 597}, + [2593] = {.lex_state = 680}, + [2594] = {.lex_state = 9}, + [2595] = {.lex_state = 597}, + [2596] = {.lex_state = 602}, + [2597] = {.lex_state = 95}, + [2598] = {.lex_state = 200, .external_lex_state = 2}, + [2599] = {.lex_state = 621}, + [2600] = {.lex_state = 600}, + [2601] = {.lex_state = 682}, + [2602] = {.lex_state = 621}, + [2603] = {.lex_state = 682}, + [2604] = {.lex_state = 677}, + [2605] = {.lex_state = 200, .external_lex_state = 2}, + [2606] = {.lex_state = 621}, + [2607] = {.lex_state = 621}, + [2608] = {.lex_state = 620}, + [2609] = {.lex_state = 603}, + [2610] = {.lex_state = 615}, + [2611] = {.lex_state = 603}, + [2612] = {.lex_state = 200, .external_lex_state = 2}, + [2613] = {.lex_state = 683}, + [2614] = {.lex_state = 683}, + [2615] = {.lex_state = 94}, + [2616] = {.lex_state = 94}, + [2617] = {.lex_state = 615}, + [2618] = {.lex_state = 604}, + [2619] = {.lex_state = 605}, + [2620] = {.lex_state = 604}, + [2621] = {.lex_state = 604}, + [2622] = {.lex_state = 620}, + [2623] = {.lex_state = 620}, + [2624] = {.lex_state = 620}, + [2625] = {.lex_state = 620}, + [2626] = {.lex_state = 620}, + [2627] = {.lex_state = 601}, + [2628] = {.lex_state = 95}, + [2629] = {.lex_state = 682}, + [2630] = {.lex_state = 96}, + [2631] = {.lex_state = 98}, + [2632] = {.lex_state = 683}, + [2633] = {.lex_state = 683}, + [2634] = {.lex_state = 683}, + [2635] = {.lex_state = 604}, + [2636] = {.lex_state = 621}, + [2637] = {.lex_state = 621}, + [2638] = {.lex_state = 200, .external_lex_state = 2}, + [2639] = {.lex_state = 92, .external_lex_state = 2}, + [2640] = {.lex_state = 621}, + [2641] = {.lex_state = 615}, + [2642] = {.lex_state = 615}, + [2643] = {.lex_state = 621}, + [2644] = {.lex_state = 621}, + [2645] = {.lex_state = 621}, + [2646] = {.lex_state = 621}, + [2647] = {.lex_state = 621}, + [2648] = {.lex_state = 682}, + [2649] = {.lex_state = 615}, + [2650] = {.lex_state = 604}, + [2651] = {.lex_state = 606}, + [2652] = {.lex_state = 605}, + [2653] = {.lex_state = 683}, + [2654] = {.lex_state = 615}, + [2655] = {.lex_state = 615}, + [2656] = {.lex_state = 604}, + [2657] = {.lex_state = 683}, + [2658] = {.lex_state = 604}, + [2659] = {.lex_state = 683}, + [2660] = {.lex_state = 683}, + [2661] = {.lex_state = 683}, + [2662] = {.lex_state = 92, .external_lex_state = 2}, + [2663] = {.lex_state = 601}, + [2664] = {.lex_state = 99}, + [2665] = {.lex_state = 99}, + [2666] = {.lex_state = 9}, + [2667] = {.lex_state = 685}, + [2668] = {.lex_state = 9}, + [2669] = {.lex_state = 615}, + [2670] = {.lex_state = 684}, + [2671] = {.lex_state = 615}, + [2672] = {.lex_state = 615}, + [2673] = {.lex_state = 100}, + [2674] = {.lex_state = 615}, + [2675] = {.lex_state = 95}, + [2676] = {.lex_state = 620}, + [2677] = {.lex_state = 95}, + [2678] = {.lex_state = 95}, + [2679] = {.lex_state = 95}, + [2680] = {.lex_state = 606}, + [2681] = {.lex_state = 615}, + [2682] = {.lex_state = 615}, + [2683] = {.lex_state = 615}, + [2684] = {.lex_state = 615}, + [2685] = {.lex_state = 615}, + [2686] = {.lex_state = 604}, + [2687] = {.lex_state = 621}, + [2688] = {.lex_state = 615}, + [2689] = {.lex_state = 685}, + [2690] = {.lex_state = 615}, + [2691] = {.lex_state = 615}, + [2692] = {.lex_state = 97}, + [2693] = {.lex_state = 184, .external_lex_state = 2}, + [2694] = {.lex_state = 615}, + [2695] = {.lex_state = 621}, + [2696] = {.lex_state = 184, .external_lex_state = 2}, + [2697] = {.lex_state = 621}, + [2698] = {.lex_state = 621}, + [2699] = {.lex_state = 615}, + [2700] = {.lex_state = 621}, + [2701] = {.lex_state = 621}, + [2702] = {.lex_state = 607}, + [2703] = {.lex_state = 606}, + [2704] = {.lex_state = 621}, + [2705] = {.lex_state = 621}, + [2706] = {.lex_state = 9}, + [2707] = {.lex_state = 621}, + [2708] = {.lex_state = 9}, + [2709] = {.lex_state = 9}, + [2710] = {.lex_state = 101}, + [2711] = {.lex_state = 615}, + [2712] = {.lex_state = 615}, + [2713] = {.lex_state = 100}, + [2714] = {.lex_state = 607}, + [2715] = {.lex_state = 607}, + [2716] = {.lex_state = 184, .external_lex_state = 2}, + [2717] = {.lex_state = 100}, + [2718] = {.lex_state = 604}, + [2719] = {.lex_state = 607}, + [2720] = {.lex_state = 184, .external_lex_state = 2}, + [2721] = {.lex_state = 184, .external_lex_state = 2}, + [2722] = {.lex_state = 100}, + [2723] = {.lex_state = 621}, + [2724] = {.lex_state = 621}, + [2725] = {.lex_state = 9}, + [2726] = {.lex_state = 615}, + [2727] = {.lex_state = 615}, + [2728] = {.lex_state = 9}, + [2729] = {.lex_state = 686}, + [2730] = {.lex_state = 9}, + [2731] = {.lex_state = 686}, + [2732] = {.lex_state = 9}, + [2733] = {.lex_state = 621}, + [2734] = {.lex_state = 621}, + [2735] = {.lex_state = 621}, + [2736] = {.lex_state = 621}, + [2737] = {.lex_state = 607}, + [2738] = {.lex_state = 606}, + [2739] = {.lex_state = 684}, + [2740] = {.lex_state = 615}, + [2741] = {.lex_state = 615}, + [2742] = {.lex_state = 621}, + [2743] = {.lex_state = 615}, + [2744] = {.lex_state = 621}, + [2745] = {.lex_state = 615}, + [2746] = {.lex_state = 615}, + [2747] = {.lex_state = 607}, + [2748] = {.lex_state = 9}, + [2749] = {.lex_state = 687}, + [2750] = {.lex_state = 687}, + [2751] = {.lex_state = 687}, + [2752] = {.lex_state = 687}, + [2753] = {.lex_state = 687}, + [2754] = {.lex_state = 687}, + [2755] = {.lex_state = 102}, + [2756] = {.lex_state = 102}, + [2757] = {.lex_state = 621}, + [2758] = {.lex_state = 9}, + [2759] = {.lex_state = 607}, + [2760] = {.lex_state = 615}, + [2761] = {.lex_state = 621}, + [2762] = {.lex_state = 621}, + [2763] = {.lex_state = 9}, + [2764] = {.lex_state = 9}, + [2765] = {.lex_state = 615}, + [2766] = {.lex_state = 615}, + [2767] = {.lex_state = 9}, + [2768] = {.lex_state = 621}, + [2769] = {.lex_state = 9}, + [2770] = {.lex_state = 609}, + [2771] = {.lex_state = 615}, + [2772] = {.lex_state = 615}, + [2773] = {.lex_state = 615}, + [2774] = {.lex_state = 621}, + [2775] = {.lex_state = 615}, + [2776] = {.lex_state = 9}, + [2777] = {.lex_state = 615}, + [2778] = {.lex_state = 607}, + [2779] = {.lex_state = 607}, + [2780] = {.lex_state = 687}, + [2781] = {.lex_state = 615}, + [2782] = {.lex_state = 9}, + [2783] = {.lex_state = 621}, + [2784] = {.lex_state = 9}, + [2785] = {.lex_state = 9}, + [2786] = {.lex_state = 687}, + [2787] = {.lex_state = 9}, + [2788] = {.lex_state = 9}, + [2789] = {.lex_state = 9}, + [2790] = {.lex_state = 687}, + [2791] = {.lex_state = 615}, + [2792] = {.lex_state = 687}, + [2793] = {.lex_state = 687}, + [2794] = {.lex_state = 687}, + [2795] = {.lex_state = 621}, + [2796] = {.lex_state = 607}, + [2797] = {.lex_state = 608}, + [2798] = {.lex_state = 686}, + [2799] = {.lex_state = 687}, + [2800] = {.lex_state = 615}, + [2801] = {.lex_state = 615}, + [2802] = {.lex_state = 686}, + [2803] = {.lex_state = 9}, + [2804] = {.lex_state = 621}, + [2805] = {.lex_state = 621}, + [2806] = {.lex_state = 621}, + [2807] = {.lex_state = 621}, + [2808] = {.lex_state = 615}, + [2809] = {.lex_state = 621}, + [2810] = {.lex_state = 609}, + [2811] = {.lex_state = 103}, + [2812] = {.lex_state = 687}, + [2813] = {.lex_state = 9}, + [2814] = {.lex_state = 608}, + [2815] = {.lex_state = 600}, + [2816] = {.lex_state = 687}, + [2817] = {.lex_state = 600}, + [2818] = {.lex_state = 9}, + [2819] = {.lex_state = 600}, + [2820] = {.lex_state = 687}, + [2821] = {.lex_state = 103}, + [2822] = {.lex_state = 615}, + [2823] = {.lex_state = 600}, + [2824] = {.lex_state = 687}, + [2825] = {.lex_state = 600}, + [2826] = {.lex_state = 9}, + [2827] = {.lex_state = 9}, + [2828] = {.lex_state = 3}, + [2829] = {.lex_state = 687}, + [2830] = {.lex_state = 612}, + [2831] = {.lex_state = 600}, + [2832] = {.lex_state = 615}, + [2833] = {.lex_state = 615}, + [2834] = {.lex_state = 615}, + [2835] = {.lex_state = 687}, + [2836] = {.lex_state = 610}, + [2837] = {.lex_state = 687}, + [2838] = {.lex_state = 615}, + [2839] = {.lex_state = 600}, + [2840] = {.lex_state = 9}, + [2841] = {.lex_state = 9}, + [2842] = {.lex_state = 600}, + [2843] = {.lex_state = 600}, + [2844] = {.lex_state = 615}, + [2845] = {.lex_state = 621}, + [2846] = {.lex_state = 615}, + [2847] = {.lex_state = 615}, + [2848] = {.lex_state = 600}, + [2849] = {.lex_state = 621}, + [2850] = {.lex_state = 687}, + [2851] = {.lex_state = 687}, + [2852] = {.lex_state = 687}, + [2853] = {.lex_state = 615}, + [2854] = {.lex_state = 615}, + [2855] = {.lex_state = 687}, + [2856] = {.lex_state = 9}, + [2857] = {.lex_state = 103}, + [2858] = {.lex_state = 687}, + [2859] = {.lex_state = 615}, + [2860] = {.lex_state = 687}, + [2861] = {.lex_state = 615}, + [2862] = {.lex_state = 687}, + [2863] = {.lex_state = 103}, + [2864] = {.lex_state = 610}, + [2865] = {.lex_state = 103}, + [2866] = {.lex_state = 615}, + [2867] = {.lex_state = 600}, + [2868] = {.lex_state = 615}, + [2869] = {.lex_state = 621}, + [2870] = {.lex_state = 621}, + [2871] = {.lex_state = 621}, + [2872] = {.lex_state = 621}, + [2873] = {.lex_state = 610}, + [2874] = {.lex_state = 600}, + [2875] = {.lex_state = 621}, + [2876] = {.lex_state = 621}, + [2877] = {.lex_state = 611}, + [2878] = {.lex_state = 611}, + [2879] = {.lex_state = 611}, + [2880] = {.lex_state = 621}, + [2881] = {.lex_state = 621}, + [2882] = {.lex_state = 621}, + [2883] = {.lex_state = 621}, + [2884] = {.lex_state = 621}, + [2885] = {.lex_state = 621}, + [2886] = {.lex_state = 600}, + [2887] = {.lex_state = 621}, + [2888] = {.lex_state = 611}, + [2889] = {.lex_state = 621}, + [2890] = {.lex_state = 611}, + [2891] = {.lex_state = 621}, + [2892] = {.lex_state = 621}, + [2893] = {.lex_state = 621}, + [2894] = {.lex_state = 600}, + [2895] = {.lex_state = 621}, + [2896] = {.lex_state = 621}, + [2897] = {.lex_state = 621}, + [2898] = {.lex_state = 621}, + [2899] = {.lex_state = 621}, + [2900] = {.lex_state = 621}, + [2901] = {.lex_state = 621}, + [2902] = {.lex_state = 621}, + [2903] = {.lex_state = 621}, + [2904] = {.lex_state = 621}, + [2905] = {.lex_state = 687}, + [2906] = {.lex_state = 621}, + [2907] = {.lex_state = 621}, + [2908] = {.lex_state = 621}, + [2909] = {.lex_state = 621}, + [2910] = {.lex_state = 621}, + [2911] = {.lex_state = 621}, + [2912] = {.lex_state = 621}, + [2913] = {.lex_state = 621}, + [2914] = {.lex_state = 621}, + [2915] = {.lex_state = 105}, + [2916] = {.lex_state = 621}, + [2917] = {.lex_state = 621}, + [2918] = {.lex_state = 621}, + [2919] = {.lex_state = 612}, + [2920] = {.lex_state = 600}, + [2921] = {.lex_state = 621}, + [2922] = {.lex_state = 621}, + [2923] = {.lex_state = 621}, + [2924] = {.lex_state = 608}, + [2925] = {.lex_state = 621}, + [2926] = {.lex_state = 621}, + [2927] = {.lex_state = 621}, + [2928] = {.lex_state = 104}, + [2929] = {.lex_state = 610}, + [2930] = {.lex_state = 597}, + [2931] = {.lex_state = 597}, + [2932] = {.lex_state = 600}, + [2933] = {.lex_state = 621}, + [2934] = {.lex_state = 621}, + [2935] = {.lex_state = 621}, + [2936] = {.lex_state = 621}, + [2937] = {.lex_state = 621}, + [2938] = {.lex_state = 600}, + [2939] = {.lex_state = 621}, + [2940] = {.lex_state = 621}, + [2941] = {.lex_state = 621}, + [2942] = {.lex_state = 621}, + [2943] = {.lex_state = 621}, + [2944] = {.lex_state = 621}, + [2945] = {.lex_state = 621}, + [2946] = {.lex_state = 621}, + [2947] = {.lex_state = 621}, + [2948] = {.lex_state = 615}, + [2949] = {.lex_state = 621}, + [2950] = {.lex_state = 621}, + [2951] = {.lex_state = 621}, + [2952] = {.lex_state = 621}, + [2953] = {.lex_state = 621}, + [2954] = {.lex_state = 600}, + [2955] = {.lex_state = 621}, + [2956] = {.lex_state = 621}, + [2957] = {.lex_state = 621}, + [2958] = {.lex_state = 611}, + [2959] = {.lex_state = 621}, + [2960] = {.lex_state = 621}, + [2961] = {.lex_state = 621}, + [2962] = {.lex_state = 621}, + [2963] = {.lex_state = 611}, + [2964] = {.lex_state = 621}, + [2965] = {.lex_state = 621}, + [2966] = {.lex_state = 621}, + [2967] = {.lex_state = 9}, + [2968] = {.lex_state = 600}, + [2969] = {.lex_state = 621}, + [2970] = {.lex_state = 597}, + [2971] = {.lex_state = 621}, + [2972] = {.lex_state = 621}, + [2973] = {.lex_state = 621}, + [2974] = {.lex_state = 621}, + [2975] = {.lex_state = 621}, + [2976] = {.lex_state = 621}, + [2977] = {.lex_state = 621}, + [2978] = {.lex_state = 615}, + [2979] = {.lex_state = 611}, + [2980] = {.lex_state = 611}, + [2981] = {.lex_state = 621}, + [2982] = {.lex_state = 621}, + [2983] = {.lex_state = 621}, + [2984] = {.lex_state = 615}, + [2985] = {.lex_state = 621}, + [2986] = {.lex_state = 621}, + [2987] = {.lex_state = 621}, + [2988] = {.lex_state = 621}, + [2989] = {.lex_state = 621}, + [2990] = {.lex_state = 621}, + [2991] = {.lex_state = 621}, + [2992] = {.lex_state = 621}, + [2993] = {.lex_state = 621}, + [2994] = {.lex_state = 621}, + [2995] = {.lex_state = 621}, + [2996] = {.lex_state = 611}, + [2997] = {.lex_state = 621}, + [2998] = {.lex_state = 621}, + [2999] = {.lex_state = 611}, + [3000] = {.lex_state = 9}, + [3001] = {.lex_state = 621}, + [3002] = {.lex_state = 621}, + [3003] = {.lex_state = 600}, + [3004] = {.lex_state = 621}, + [3005] = {.lex_state = 615}, + [3006] = {.lex_state = 600}, + [3007] = {.lex_state = 611}, + [3008] = {.lex_state = 621}, + [3009] = {.lex_state = 611}, + [3010] = {.lex_state = 9}, + [3011] = {.lex_state = 9}, + [3012] = {.lex_state = 9}, + [3013] = {.lex_state = 9}, + [3014] = {.lex_state = 9}, + [3015] = {.lex_state = 9}, + [3016] = {.lex_state = 621}, + [3017] = {.lex_state = 621}, + [3018] = {.lex_state = 621}, + [3019] = {.lex_state = 621}, + [3020] = {.lex_state = 621}, + [3021] = {.lex_state = 621}, + [3022] = {.lex_state = 621}, + [3023] = {.lex_state = 621}, + [3024] = {.lex_state = 621}, + [3025] = {.lex_state = 621}, + [3026] = {.lex_state = 600}, + [3027] = {.lex_state = 621}, + [3028] = {.lex_state = 597}, + [3029] = {.lex_state = 621}, + [3030] = {.lex_state = 621}, + [3031] = {.lex_state = 597}, + [3032] = {.lex_state = 621}, + [3033] = {.lex_state = 621}, + [3034] = {.lex_state = 621}, + [3035] = {.lex_state = 621}, + [3036] = {.lex_state = 621}, + [3037] = {.lex_state = 621}, + [3038] = {.lex_state = 621}, + [3039] = {.lex_state = 621}, + [3040] = {.lex_state = 621}, + [3041] = {.lex_state = 621}, + [3042] = {.lex_state = 154, .external_lex_state = 2}, + [3043] = {.lex_state = 597}, + [3044] = {.lex_state = 621}, + [3045] = {.lex_state = 9}, + [3046] = {.lex_state = 3}, + [3047] = {.lex_state = 9}, + [3048] = {.lex_state = 611}, + [3049] = {.lex_state = 9}, + [3050] = {.lex_state = 9}, + [3051] = {.lex_state = 621}, + [3052] = {.lex_state = 621}, + [3053] = {.lex_state = 621}, + [3054] = {.lex_state = 3}, + [3055] = {.lex_state = 3}, + [3056] = {.lex_state = 621}, + [3057] = {.lex_state = 9}, + [3058] = {.lex_state = 9}, + [3059] = {.lex_state = 621}, + [3060] = {.lex_state = 597}, + [3061] = {.lex_state = 621}, + [3062] = {.lex_state = 3}, + [3063] = {.lex_state = 621}, + [3064] = {.lex_state = 9}, + [3065] = {.lex_state = 9}, + [3066] = {.lex_state = 9}, + [3067] = {.lex_state = 615}, + [3068] = {.lex_state = 615}, + [3069] = {.lex_state = 9}, + [3070] = {.lex_state = 9}, + [3071] = {.lex_state = 615}, + [3072] = {.lex_state = 621}, + [3073] = {.lex_state = 611}, + [3074] = {.lex_state = 611}, + [3075] = {.lex_state = 621}, + [3076] = {.lex_state = 9}, + [3077] = {.lex_state = 621}, + [3078] = {.lex_state = 621}, + [3079] = {.lex_state = 621}, + [3080] = {.lex_state = 615}, + [3081] = {.lex_state = 611}, + [3082] = {.lex_state = 611}, + [3083] = {.lex_state = 9}, + [3084] = {.lex_state = 9}, + [3085] = {.lex_state = 9}, + [3086] = {.lex_state = 108}, + [3087] = {.lex_state = 621}, + [3088] = {.lex_state = 621}, + [3089] = {.lex_state = 608}, + [3090] = {.lex_state = 9}, + [3091] = {.lex_state = 106}, + [3092] = {.lex_state = 3}, + [3093] = {.lex_state = 9}, + [3094] = {.lex_state = 597}, + [3095] = {.lex_state = 9}, + [3096] = {.lex_state = 621}, + [3097] = {.lex_state = 106}, + [3098] = {.lex_state = 615}, + [3099] = {.lex_state = 621}, + [3100] = {.lex_state = 9}, + [3101] = {.lex_state = 621}, + [3102] = {.lex_state = 621}, + [3103] = {.lex_state = 621}, + [3104] = {.lex_state = 611}, + [3105] = {.lex_state = 615}, + [3106] = {.lex_state = 596}, + [3107] = {.lex_state = 9}, + [3108] = {.lex_state = 611}, + [3109] = {.lex_state = 9}, + [3110] = {.lex_state = 597}, + [3111] = {.lex_state = 596}, + [3112] = {.lex_state = 621}, + [3113] = {.lex_state = 9}, + [3114] = {.lex_state = 615}, + [3115] = {.lex_state = 9}, + [3116] = {.lex_state = 611}, + [3117] = {.lex_state = 621}, + [3118] = {.lex_state = 621}, + [3119] = {.lex_state = 611}, + [3120] = {.lex_state = 611}, + [3121] = {.lex_state = 621}, + [3122] = {.lex_state = 9}, + [3123] = {.lex_state = 621}, + [3124] = {.lex_state = 611}, + [3125] = {.lex_state = 113}, + [3126] = {.lex_state = 597}, + [3127] = {.lex_state = 611}, + [3128] = {.lex_state = 615}, + [3129] = {.lex_state = 596}, + [3130] = {.lex_state = 611}, + [3131] = {.lex_state = 597}, + [3132] = {.lex_state = 597}, + [3133] = {.lex_state = 9}, + [3134] = {.lex_state = 596}, + [3135] = {.lex_state = 596}, + [3136] = {.lex_state = 597}, + [3137] = {.lex_state = 9}, + [3138] = {.lex_state = 611}, + [3139] = {.lex_state = 615}, + [3140] = {.lex_state = 3}, + [3141] = {.lex_state = 615}, + [3142] = {.lex_state = 91, .external_lex_state = 2}, + [3143] = {.lex_state = 621}, + [3144] = {.lex_state = 596}, + [3145] = {.lex_state = 596}, + [3146] = {.lex_state = 596}, + [3147] = {.lex_state = 596}, + [3148] = {.lex_state = 596}, + [3149] = {.lex_state = 596}, + [3150] = {.lex_state = 621}, + [3151] = {.lex_state = 596}, + [3152] = {.lex_state = 621}, + [3153] = {.lex_state = 596}, + [3154] = {.lex_state = 107}, + [3155] = {.lex_state = 596}, + [3156] = {.lex_state = 596}, + [3157] = {.lex_state = 9}, + [3158] = {.lex_state = 621}, + [3159] = {.lex_state = 597}, + [3160] = {.lex_state = 596}, + [3161] = {.lex_state = 9}, + [3162] = {.lex_state = 596}, + [3163] = {.lex_state = 621}, + [3164] = {.lex_state = 621}, + [3165] = {.lex_state = 621}, + [3166] = {.lex_state = 615}, + [3167] = {.lex_state = 9}, + [3168] = {.lex_state = 596}, + [3169] = {.lex_state = 110}, + [3170] = {.lex_state = 621}, + [3171] = {.lex_state = 107}, + [3172] = {.lex_state = 596}, + [3173] = {.lex_state = 596}, + [3174] = {.lex_state = 596}, + [3175] = {.lex_state = 107}, + [3176] = {.lex_state = 107}, + [3177] = {.lex_state = 621}, + [3178] = {.lex_state = 596}, + [3179] = {.lex_state = 596}, + [3180] = {.lex_state = 9}, + [3181] = {.lex_state = 9}, + [3182] = {.lex_state = 615}, + [3183] = {.lex_state = 9}, + [3184] = {.lex_state = 621}, + [3185] = {.lex_state = 621}, + [3186] = {.lex_state = 596}, + [3187] = {.lex_state = 597}, + [3188] = {.lex_state = 596}, + [3189] = {.lex_state = 621}, + [3190] = {.lex_state = 596}, + [3191] = {.lex_state = 596}, + [3192] = {.lex_state = 596}, + [3193] = {.lex_state = 596}, + [3194] = {.lex_state = 596}, + [3195] = {.lex_state = 621}, + [3196] = {.lex_state = 621}, + [3197] = {.lex_state = 596}, + [3198] = {.lex_state = 110}, + [3199] = {.lex_state = 596}, + [3200] = {.lex_state = 596}, + [3201] = {.lex_state = 621}, + [3202] = {.lex_state = 9}, + [3203] = {.lex_state = 218}, + [3204] = {.lex_state = 9}, + [3205] = {.lex_state = 9}, + [3206] = {.lex_state = 621}, + [3207] = {.lex_state = 596}, + [3208] = {.lex_state = 596}, + [3209] = {.lex_state = 596}, + [3210] = {.lex_state = 621}, + [3211] = {.lex_state = 9}, + [3212] = {.lex_state = 9}, + [3213] = {.lex_state = 108}, + [3214] = {.lex_state = 596}, + [3215] = {.lex_state = 596}, + [3216] = {.lex_state = 596}, + [3217] = {.lex_state = 107}, + [3218] = {.lex_state = 107}, + [3219] = {.lex_state = 596}, + [3220] = {.lex_state = 103}, + [3221] = {.lex_state = 103}, + [3222] = {.lex_state = 103}, + [3223] = {.lex_state = 103}, + [3224] = {.lex_state = 596}, + [3225] = {.lex_state = 103}, + [3226] = {.lex_state = 597}, + [3227] = {.lex_state = 107}, + [3228] = {.lex_state = 611}, + [3229] = {.lex_state = 596}, + [3230] = {.lex_state = 596}, + [3231] = {.lex_state = 596}, + [3232] = {.lex_state = 615}, + [3233] = {.lex_state = 596}, + [3234] = {.lex_state = 107}, + [3235] = {.lex_state = 9}, + [3236] = {.lex_state = 9}, + [3237] = {.lex_state = 621}, + [3238] = {.lex_state = 596}, + [3239] = {.lex_state = 596}, + [3240] = {.lex_state = 596}, + [3241] = {.lex_state = 596}, + [3242] = {.lex_state = 596}, + [3243] = {.lex_state = 596}, + [3244] = {.lex_state = 596}, + [3245] = {.lex_state = 596}, + [3246] = {.lex_state = 107}, + [3247] = {.lex_state = 615}, + [3248] = {.lex_state = 9}, + [3249] = {.lex_state = 621}, + [3250] = {.lex_state = 9}, + [3251] = {.lex_state = 9}, + [3252] = {.lex_state = 621}, + [3253] = {.lex_state = 107}, + [3254] = {.lex_state = 596}, + [3255] = {.lex_state = 107}, + [3256] = {.lex_state = 596}, + [3257] = {.lex_state = 596}, + [3258] = {.lex_state = 107}, + [3259] = {.lex_state = 596}, + [3260] = {.lex_state = 9}, + [3261] = {.lex_state = 596}, + [3262] = {.lex_state = 9}, + [3263] = {.lex_state = 9}, + [3264] = {.lex_state = 9}, + [3265] = {.lex_state = 109}, + [3266] = {.lex_state = 107}, + [3267] = {.lex_state = 621}, + [3268] = {.lex_state = 621}, + [3269] = {.lex_state = 621}, + [3270] = {.lex_state = 621}, + [3271] = {.lex_state = 9}, + [3272] = {.lex_state = 621}, + [3273] = {.lex_state = 596}, + [3274] = {.lex_state = 103}, + [3275] = {.lex_state = 596}, + [3276] = {.lex_state = 9}, + [3277] = {.lex_state = 9}, + [3278] = {.lex_state = 9}, + [3279] = {.lex_state = 9}, + [3280] = {.lex_state = 615}, + [3281] = {.lex_state = 596}, + [3282] = {.lex_state = 615}, + [3283] = {.lex_state = 596}, + [3284] = {.lex_state = 596}, + [3285] = {.lex_state = 596}, + [3286] = {.lex_state = 596}, + [3287] = {.lex_state = 596}, + [3288] = {.lex_state = 596}, + [3289] = {.lex_state = 596}, + [3290] = {.lex_state = 596}, + [3291] = {.lex_state = 103}, + [3292] = {.lex_state = 596}, + [3293] = {.lex_state = 104}, + [3294] = {.lex_state = 9}, + [3295] = {.lex_state = 596}, + [3296] = {.lex_state = 596}, + [3297] = {.lex_state = 596}, + [3298] = {.lex_state = 9}, + [3299] = {.lex_state = 596}, + [3300] = {.lex_state = 621}, + [3301] = {.lex_state = 621}, + [3302] = {.lex_state = 596}, + [3303] = {.lex_state = 621}, + [3304] = {.lex_state = 596}, + [3305] = {.lex_state = 9}, + [3306] = {.lex_state = 596}, + [3307] = {.lex_state = 596}, + [3308] = {.lex_state = 9}, + [3309] = {.lex_state = 596}, + [3310] = {.lex_state = 596}, + [3311] = {.lex_state = 621}, + [3312] = {.lex_state = 215}, + [3313] = {.lex_state = 621}, + [3314] = {.lex_state = 621}, + [3315] = {.lex_state = 621}, + [3316] = {.lex_state = 621}, + [3317] = {.lex_state = 621}, + [3318] = {.lex_state = 596}, + [3319] = {.lex_state = 113}, + [3320] = {.lex_state = 596}, + [3321] = {.lex_state = 621}, + [3322] = {.lex_state = 103}, + [3323] = {.lex_state = 103}, + [3324] = {.lex_state = 596}, + [3325] = {.lex_state = 108}, + [3326] = {.lex_state = 621}, + [3327] = {.lex_state = 218}, + [3328] = {.lex_state = 108}, + [3329] = {.lex_state = 108}, + [3330] = {.lex_state = 108}, + [3331] = {.lex_state = 596}, + [3332] = {.lex_state = 596}, + [3333] = {.lex_state = 9}, + [3334] = {.lex_state = 9}, + [3335] = {.lex_state = 9}, + [3336] = {.lex_state = 596}, + [3337] = {.lex_state = 596}, + [3338] = {.lex_state = 621}, + [3339] = {.lex_state = 596}, + [3340] = {.lex_state = 596}, + [3341] = {.lex_state = 596}, + [3342] = {.lex_state = 596}, + [3343] = {.lex_state = 621}, + [3344] = {.lex_state = 596}, + [3345] = {.lex_state = 596}, + [3346] = {.lex_state = 212}, + [3347] = {.lex_state = 9}, + [3348] = {.lex_state = 596}, + [3349] = {.lex_state = 596}, + [3350] = {.lex_state = 596}, + [3351] = {.lex_state = 596}, + [3352] = {.lex_state = 9}, + [3353] = {.lex_state = 215}, + [3354] = {.lex_state = 9}, + [3355] = {.lex_state = 596}, + [3356] = {.lex_state = 596}, + [3357] = {.lex_state = 596}, + [3358] = {.lex_state = 621}, + [3359] = {.lex_state = 9}, + [3360] = {.lex_state = 9}, + [3361] = {.lex_state = 9}, + [3362] = {.lex_state = 596}, + [3363] = {.lex_state = 596}, + [3364] = {.lex_state = 596}, + [3365] = {.lex_state = 596}, + [3366] = {.lex_state = 621}, + [3367] = {.lex_state = 596}, + [3368] = {.lex_state = 596}, + [3369] = {.lex_state = 621}, + [3370] = {.lex_state = 596}, + [3371] = {.lex_state = 596}, + [3372] = {.lex_state = 596}, + [3373] = {.lex_state = 596}, + [3374] = {.lex_state = 9}, + [3375] = {.lex_state = 9}, + [3376] = {.lex_state = 9}, + [3377] = {.lex_state = 9}, + [3378] = {.lex_state = 9}, + [3379] = {.lex_state = 9}, + [3380] = {.lex_state = 9}, + [3381] = {.lex_state = 596}, + [3382] = {.lex_state = 596}, + [3383] = {.lex_state = 115}, + [3384] = {.lex_state = 621}, + [3385] = {.lex_state = 216}, + [3386] = {.lex_state = 596}, + [3387] = {.lex_state = 596}, + [3388] = {.lex_state = 596}, + [3389] = {.lex_state = 9}, + [3390] = {.lex_state = 111}, + [3391] = {.lex_state = 596}, + [3392] = {.lex_state = 596}, + [3393] = {.lex_state = 596}, + [3394] = {.lex_state = 596}, + [3395] = {.lex_state = 596}, + [3396] = {.lex_state = 621}, + [3397] = {.lex_state = 91, .external_lex_state = 2}, + [3398] = {.lex_state = 212}, + [3399] = {.lex_state = 596}, + [3400] = {.lex_state = 621}, + [3401] = {.lex_state = 596}, + [3402] = {.lex_state = 621}, + [3403] = {.lex_state = 621}, + [3404] = {.lex_state = 596}, + [3405] = {.lex_state = 621}, + [3406] = {.lex_state = 111}, + [3407] = {.lex_state = 596}, + [3408] = {.lex_state = 621}, + [3409] = {.lex_state = 596}, + [3410] = {.lex_state = 596}, + [3411] = {.lex_state = 621}, + [3412] = {.lex_state = 621}, + [3413] = {.lex_state = 621}, + [3414] = {.lex_state = 621}, + [3415] = {.lex_state = 621}, + [3416] = {.lex_state = 621}, + [3417] = {.lex_state = 9}, + [3418] = {.lex_state = 621}, + [3419] = {.lex_state = 621}, + [3420] = {.lex_state = 621}, + [3421] = {.lex_state = 621}, + [3422] = {.lex_state = 621}, + [3423] = {.lex_state = 596}, + [3424] = {.lex_state = 621}, + [3425] = {.lex_state = 596}, + [3426] = {.lex_state = 9}, + [3427] = {.lex_state = 596}, + [3428] = {.lex_state = 596}, + [3429] = {.lex_state = 596}, + [3430] = {.lex_state = 9}, + [3431] = {.lex_state = 596}, + [3432] = {.lex_state = 596}, + [3433] = {.lex_state = 596}, + [3434] = {.lex_state = 621}, + [3435] = {.lex_state = 596}, + [3436] = {.lex_state = 621}, + [3437] = {.lex_state = 621}, + [3438] = {.lex_state = 621}, + [3439] = {.lex_state = 621}, + [3440] = {.lex_state = 621}, + [3441] = {.lex_state = 621}, + [3442] = {.lex_state = 621}, + [3443] = {.lex_state = 9}, + [3444] = {.lex_state = 9}, + [3445] = {.lex_state = 213}, + [3446] = {.lex_state = 621}, + [3447] = {.lex_state = 621}, + [3448] = {.lex_state = 9}, + [3449] = {.lex_state = 9}, + [3450] = {.lex_state = 218}, + [3451] = {.lex_state = 218}, + [3452] = {.lex_state = 218}, + [3453] = {.lex_state = 218}, + [3454] = {.lex_state = 621}, + [3455] = {.lex_state = 9}, + [3456] = {.lex_state = 621}, + [3457] = {.lex_state = 621}, + [3458] = {.lex_state = 621}, + [3459] = {.lex_state = 621}, + [3460] = {.lex_state = 621}, + [3461] = {.lex_state = 621}, + [3462] = {.lex_state = 9}, + [3463] = {.lex_state = 621}, + [3464] = {.lex_state = 223}, + [3465] = {.lex_state = 2361}, + [3466] = {.lex_state = 621}, + [3467] = {.lex_state = 621}, + [3468] = {.lex_state = 621}, + [3469] = {.lex_state = 621}, + [3470] = {.lex_state = 218}, + [3471] = {.lex_state = 621}, + [3472] = {.lex_state = 9}, + [3473] = {.lex_state = 621}, + [3474] = {.lex_state = 214}, + [3475] = {.lex_state = 621}, + [3476] = {.lex_state = 621}, + [3477] = {.lex_state = 621}, + [3478] = {.lex_state = 9}, + [3479] = {.lex_state = 621}, + [3480] = {.lex_state = 621}, + [3481] = {.lex_state = 9}, + [3482] = {.lex_state = 621}, + [3483] = {.lex_state = 9}, + [3484] = {.lex_state = 621}, + [3485] = {.lex_state = 9}, + [3486] = {.lex_state = 621}, + [3487] = {.lex_state = 2361}, + [3488] = {.lex_state = 214}, + [3489] = {.lex_state = 621}, + [3490] = {.lex_state = 9}, + [3491] = {.lex_state = 211}, + [3492] = {.lex_state = 9}, + [3493] = {.lex_state = 621}, + [3494] = {.lex_state = 621}, + [3495] = {.lex_state = 621}, + [3496] = {.lex_state = 9}, + [3497] = {.lex_state = 218}, + [3498] = {.lex_state = 621}, + [3499] = {.lex_state = 621}, + [3500] = {.lex_state = 621}, + [3501] = {.lex_state = 621}, + [3502] = {.lex_state = 621}, + [3503] = {.lex_state = 621}, + [3504] = {.lex_state = 621}, + [3505] = {.lex_state = 621}, + [3506] = {.lex_state = 9}, + [3507] = {.lex_state = 621}, + [3508] = {.lex_state = 621}, + [3509] = {.lex_state = 621}, + [3510] = {.lex_state = 621}, + [3511] = {.lex_state = 9}, + [3512] = {.lex_state = 621}, + [3513] = {.lex_state = 9}, + [3514] = {.lex_state = 621}, + [3515] = {.lex_state = 621}, + [3516] = {.lex_state = 621}, + [3517] = {.lex_state = 621}, + [3518] = {.lex_state = 212}, + [3519] = {.lex_state = 152}, + [3520] = {.lex_state = 9}, + [3521] = {.lex_state = 218}, + [3522] = {.lex_state = 9}, + [3523] = {.lex_state = 9}, + [3524] = {.lex_state = 621}, + [3525] = {.lex_state = 621}, + [3526] = {.lex_state = 621}, + [3527] = {.lex_state = 9}, + [3528] = {.lex_state = 231}, + [3529] = {.lex_state = 9}, + [3530] = {.lex_state = 621}, + [3531] = {.lex_state = 124}, + [3532] = {.lex_state = 9}, + [3533] = {.lex_state = 9}, + [3534] = {.lex_state = 9}, + [3535] = {.lex_state = 621}, + [3536] = {.lex_state = 621}, + [3537] = {.lex_state = 621}, + [3538] = {.lex_state = 621}, + [3539] = {.lex_state = 9}, + [3540] = {.lex_state = 213}, + [3541] = {.lex_state = 621}, + [3542] = {.lex_state = 621}, + [3543] = {.lex_state = 9}, + [3544] = {.lex_state = 230}, + [3545] = {.lex_state = 621}, + [3546] = {.lex_state = 621}, + [3547] = {.lex_state = 621}, + [3548] = {.lex_state = 9}, + [3549] = {.lex_state = 621}, + [3550] = {.lex_state = 621}, + [3551] = {.lex_state = 128}, + [3552] = {.lex_state = 9}, + [3553] = {.lex_state = 9}, + [3554] = {.lex_state = 621}, + [3555] = {.lex_state = 9}, + [3556] = {.lex_state = 621}, + [3557] = {.lex_state = 621}, + [3558] = {.lex_state = 9}, + [3559] = {.lex_state = 621}, + [3560] = {.lex_state = 9}, + [3561] = {.lex_state = 158}, + [3562] = {.lex_state = 621}, + [3563] = {.lex_state = 9}, + [3564] = {.lex_state = 621}, + [3565] = {.lex_state = 218}, + [3566] = {.lex_state = 223}, + [3567] = {.lex_state = 621}, + [3568] = {.lex_state = 621}, + [3569] = {.lex_state = 621}, + [3570] = {.lex_state = 621}, + [3571] = {.lex_state = 9}, + [3572] = {.lex_state = 655}, + [3573] = {.lex_state = 233}, + [3574] = {.lex_state = 264}, + [3575] = {.lex_state = 218}, + [3576] = {.lex_state = 232}, + [3577] = {.lex_state = 655}, + [3578] = {.lex_state = 129}, + [3579] = {.lex_state = 9}, + [3580] = {.lex_state = 217}, + [3581] = {.lex_state = 233}, + [3582] = {.lex_state = 625}, + [3583] = {.lex_state = 224}, + [3584] = {.lex_state = 158}, + [3585] = {.lex_state = 130}, + [3586] = {.lex_state = 158}, + [3587] = {.lex_state = 218}, + [3588] = {.lex_state = 152}, + [3589] = {.lex_state = 152}, + [3590] = {.lex_state = 235}, + [3591] = {.lex_state = 232}, + [3592] = {.lex_state = 263}, + [3593] = {.lex_state = 655}, + [3594] = {.lex_state = 9}, + [3595] = {.lex_state = 621}, + [3596] = {.lex_state = 9}, + [3597] = {.lex_state = 125}, + [3598] = {.lex_state = 158}, + [3599] = {.lex_state = 158}, + [3600] = {.lex_state = 9}, + [3601] = {.lex_state = 152}, + [3602] = {.lex_state = 158}, + [3603] = {.lex_state = 246}, + [3604] = {.lex_state = 130}, + [3605] = {.lex_state = 621}, + [3606] = {.lex_state = 158}, + [3607] = {.lex_state = 9}, + [3608] = {.lex_state = 217}, + [3609] = {.lex_state = 152}, + [3610] = {.lex_state = 9}, + [3611] = {.lex_state = 9}, + [3612] = {.lex_state = 655}, + [3613] = {.lex_state = 655}, + [3614] = {.lex_state = 2362}, + [3615] = {.lex_state = 625}, + [3616] = {.lex_state = 235}, + [3617] = {.lex_state = 1827, .external_lex_state = 2}, + [3618] = {.lex_state = 1827, .external_lex_state = 2}, + [3619] = {.lex_state = 2407}, + [3620] = {.lex_state = 226}, + [3621] = {.lex_state = 2303}, + [3622] = {.lex_state = 2362}, + [3623] = {.lex_state = 2362}, + [3624] = {.lex_state = 2303}, + [3625] = {.lex_state = 2303}, + [3626] = {.lex_state = 1827, .external_lex_state = 2}, + [3627] = {.lex_state = 625}, + [3628] = {.lex_state = 237}, + [3629] = {.lex_state = 235}, + [3630] = {.lex_state = 2303}, + [3631] = {.lex_state = 247}, + [3632] = {.lex_state = 2303}, + [3633] = {.lex_state = 247}, + [3634] = {.lex_state = 1827, .external_lex_state = 2}, + [3635] = {.lex_state = 234}, + [3636] = {.lex_state = 225}, + [3637] = {.lex_state = 625}, + [3638] = {.lex_state = 265}, + [3639] = {.lex_state = 2303}, + [3640] = {.lex_state = 2303}, + [3641] = {.lex_state = 235}, + [3642] = {.lex_state = 2303}, + [3643] = {.lex_state = 1827, .external_lex_state = 2}, + [3644] = {.lex_state = 126}, + [3645] = {.lex_state = 2303}, + [3646] = {.lex_state = 132}, + [3647] = {.lex_state = 131}, + [3648] = {.lex_state = 234}, + [3649] = {.lex_state = 1827, .external_lex_state = 2}, + [3650] = {.lex_state = 234}, + [3651] = {.lex_state = 236}, + [3652] = {.lex_state = 134}, + [3653] = {.lex_state = 2407}, + [3654] = {.lex_state = 2303}, + [3655] = {.lex_state = 2303}, + [3656] = {.lex_state = 1827, .external_lex_state = 2}, + [3657] = {.lex_state = 265}, + [3658] = {.lex_state = 1827, .external_lex_state = 2}, + [3659] = {.lex_state = 625}, + [3660] = {.lex_state = 2303}, + [3661] = {.lex_state = 2303}, + [3662] = {.lex_state = 1827, .external_lex_state = 2}, + [3663] = {.lex_state = 2407}, + [3664] = {.lex_state = 1827, .external_lex_state = 2}, + [3665] = {.lex_state = 131}, + [3666] = {.lex_state = 234}, + [3667] = {.lex_state = 2303}, + [3668] = {.lex_state = 2303}, + [3669] = {.lex_state = 1827, .external_lex_state = 2}, + [3670] = {.lex_state = 132}, + [3671] = {.lex_state = 2303}, + [3672] = {.lex_state = 2303}, + [3673] = {.lex_state = 2303}, + [3674] = {.lex_state = 1827, .external_lex_state = 2}, + [3675] = {.lex_state = 9}, + [3676] = {.lex_state = 132}, + [3677] = {.lex_state = 2303}, + [3678] = {.lex_state = 248}, + [3679] = {.lex_state = 2303}, + [3680] = {.lex_state = 2303}, + [3681] = {.lex_state = 1827, .external_lex_state = 2}, + [3682] = {.lex_state = 2303}, + [3683] = {.lex_state = 1827, .external_lex_state = 2}, + [3684] = {.lex_state = 132}, + [3685] = {.lex_state = 2303}, + [3686] = {.lex_state = 2303}, + [3687] = {.lex_state = 1827, .external_lex_state = 2}, + [3688] = {.lex_state = 2303}, + [3689] = {.lex_state = 2303}, + [3690] = {.lex_state = 2362}, + [3691] = {.lex_state = 1827, .external_lex_state = 2}, + [3692] = {.lex_state = 1827, .external_lex_state = 2}, + [3693] = {.lex_state = 1827, .external_lex_state = 2}, + [3694] = {.lex_state = 1827, .external_lex_state = 2}, + [3695] = {.lex_state = 1827, .external_lex_state = 2}, + [3696] = {.lex_state = 158}, + [3697] = {.lex_state = 1827, .external_lex_state = 2}, + [3698] = {.lex_state = 2303}, + [3699] = {.lex_state = 2303}, + [3700] = {.lex_state = 2407}, + [3701] = {.lex_state = 625}, + [3702] = {.lex_state = 119}, + [3703] = {.lex_state = 625}, + [3704] = {.lex_state = 238}, + [3705] = {.lex_state = 159}, + [3706] = {.lex_state = 240}, + [3707] = {.lex_state = 240}, + [3708] = {.lex_state = 227}, + [3709] = {.lex_state = 133}, + [3710] = {.lex_state = 133}, + [3711] = {.lex_state = 133}, + [3712] = {.lex_state = 119}, + [3713] = {.lex_state = 159}, + [3714] = {.lex_state = 625}, + [3715] = {.lex_state = 625}, + [3716] = {.lex_state = 625}, + [3717] = {.lex_state = 625}, + [3718] = {.lex_state = 135}, + [3719] = {.lex_state = 625}, + [3720] = {.lex_state = 268}, + [3721] = {.lex_state = 133}, + [3722] = {.lex_state = 274}, + [3723] = {.lex_state = 668}, + [3724] = {.lex_state = 625}, + [3725] = {.lex_state = 625}, + [3726] = {.lex_state = 625}, + [3727] = {.lex_state = 238}, + [3728] = {.lex_state = 119}, + [3729] = {.lex_state = 127}, + [3730] = {.lex_state = 625}, + [3731] = {.lex_state = 625}, + [3732] = {.lex_state = 625}, + [3733] = {.lex_state = 625}, + [3734] = {.lex_state = 625}, + [3735] = {.lex_state = 625}, + [3736] = {.lex_state = 625}, + [3737] = {.lex_state = 625}, + [3738] = {.lex_state = 625}, + [3739] = {.lex_state = 248}, [3740] = {.lex_state = 625}, - [3741] = {.lex_state = 244}, - [3742] = {.lex_state = 111}, - [3743] = {.lex_state = 276}, - [3744] = {.lex_state = 276}, - [3745] = {.lex_state = 276}, - [3746] = {.lex_state = 225}, - [3747] = {.lex_state = 182}, - [3748] = {.lex_state = 2072}, - [3749] = {.lex_state = 2072}, - [3750] = {.lex_state = 249}, - [3751] = {.lex_state = 258}, - [3752] = {.lex_state = 182}, - [3753] = {.lex_state = 31}, - [3754] = {.lex_state = 31}, - [3755] = {.lex_state = 129}, - [3756] = {.lex_state = 124}, - [3757] = {.lex_state = 124}, - [3758] = {.lex_state = 129}, - [3759] = {.lex_state = 251}, - [3760] = {.lex_state = 182}, - [3761] = {.lex_state = 0}, - [3762] = {.lex_state = 31}, - [3763] = {.lex_state = 0}, - [3764] = {.lex_state = 0}, - [3765] = {.lex_state = 201}, - [3766] = {.lex_state = 256}, - [3767] = {.lex_state = 31}, - [3768] = {.lex_state = 31}, - [3769] = {.lex_state = 31}, - [3770] = {.lex_state = 124}, - [3771] = {.lex_state = 89}, - [3772] = {.lex_state = 130}, - [3773] = {.lex_state = 124}, - [3774] = {.lex_state = 190}, - [3775] = {.lex_state = 276}, - [3776] = {.lex_state = 130}, - [3777] = {.lex_state = 130}, - [3778] = {.lex_state = 124}, - [3779] = {.lex_state = 130}, - [3780] = {.lex_state = 124}, - [3781] = {.lex_state = 182}, - [3782] = {.lex_state = 2072}, - [3783] = {.lex_state = 2072}, - [3784] = {.lex_state = 276}, - [3785] = {.lex_state = 182}, - [3786] = {.lex_state = 276}, - [3787] = {.lex_state = 0}, - [3788] = {.lex_state = 0}, - [3789] = {.lex_state = 0}, - [3790] = {.lex_state = 0}, - [3791] = {.lex_state = 129}, - [3792] = {.lex_state = 31}, - [3793] = {.lex_state = 119}, - [3794] = {.lex_state = 124}, - [3795] = {.lex_state = 129}, - [3796] = {.lex_state = 129}, - [3797] = {.lex_state = 124}, - [3798] = {.lex_state = 129}, - [3799] = {.lex_state = 129}, - [3800] = {.lex_state = 129}, - [3801] = {.lex_state = 119}, - [3802] = {.lex_state = 276}, - [3803] = {.lex_state = 577}, - [3804] = {.lex_state = 276}, - [3805] = {.lex_state = 2072}, - [3806] = {.lex_state = 2072}, - [3807] = {.lex_state = 124}, - [3808] = {.lex_state = 124}, - [3809] = {.lex_state = 124}, - [3810] = {.lex_state = 87}, - [3811] = {.lex_state = 249}, - [3812] = {.lex_state = 131}, - [3813] = {.lex_state = 87}, - [3814] = {.lex_state = 182}, - [3815] = {.lex_state = 276}, - [3816] = {.lex_state = 276}, - [3817] = {.lex_state = 114}, - [3818] = {.lex_state = 258}, - [3819] = {.lex_state = 182}, - [3820] = {.lex_state = 31}, - [3821] = {.lex_state = 2072}, - [3822] = {.lex_state = 2072}, - [3823] = {.lex_state = 182}, - [3824] = {.lex_state = 0}, - [3825] = {.lex_state = 182}, - [3826] = {.lex_state = 2072}, - [3827] = {.lex_state = 2072}, - [3828] = {.lex_state = 182}, - [3829] = {.lex_state = 182}, - [3830] = {.lex_state = 2072}, - [3831] = {.lex_state = 2072}, - [3832] = {.lex_state = 182}, - [3833] = {.lex_state = 182}, - [3834] = {.lex_state = 182}, - [3835] = {.lex_state = 182}, - [3836] = {.lex_state = 124}, - [3837] = {.lex_state = 182}, - [3838] = {.lex_state = 228}, - [3839] = {.lex_state = 182}, - [3840] = {.lex_state = 182}, - [3841] = {.lex_state = 2176}, - [3842] = {.lex_state = 2176}, - [3843] = {.lex_state = 261}, - [3844] = {.lex_state = 239}, - [3845] = {.lex_state = 31}, - [3846] = {.lex_state = 124}, - [3847] = {.lex_state = 124}, - [3848] = {.lex_state = 640}, - [3849] = {.lex_state = 216}, - [3850] = {.lex_state = 216}, - [3851] = {.lex_state = 202}, - [3852] = {.lex_state = 251}, - [3853] = {.lex_state = 640}, - [3854] = {.lex_state = 261}, - [3855] = {.lex_state = 261}, - [3856] = {.lex_state = 261}, - [3857] = {.lex_state = 124}, - [3858] = {.lex_state = 124}, - [3859] = {.lex_state = 190}, - [3860] = {.lex_state = 124}, - [3861] = {.lex_state = 124}, - [3862] = {.lex_state = 124}, - [3863] = {.lex_state = 124}, - [3864] = {.lex_state = 182}, - [3865] = {.lex_state = 276}, - [3866] = {.lex_state = 276}, - [3867] = {.lex_state = 276}, - [3868] = {.lex_state = 262}, - [3869] = {.lex_state = 640}, - [3870] = {.lex_state = 640}, - [3871] = {.lex_state = 31}, - [3872] = {.lex_state = 640}, - [3873] = {.lex_state = 611}, - [3874] = {.lex_state = 256}, - [3875] = {.lex_state = 31}, - [3876] = {.lex_state = 276}, - [3877] = {.lex_state = 276}, - [3878] = {.lex_state = 276}, - [3879] = {.lex_state = 31}, - [3880] = {.lex_state = 118}, - [3881] = {.lex_state = 276}, - [3882] = {.lex_state = 276}, - [3883] = {.lex_state = 131}, - [3884] = {.lex_state = 131}, - [3885] = {.lex_state = 88}, - [3886] = {.lex_state = 88}, - [3887] = {.lex_state = 278}, - [3888] = {.lex_state = 625}, - [3889] = {.lex_state = 129}, - [3890] = {.lex_state = 252}, - [3891] = {.lex_state = 625}, - [3892] = {.lex_state = 252}, - [3893] = {.lex_state = 2}, - [3894] = {.lex_state = 625}, - [3895] = {.lex_state = 625}, - [3896] = {.lex_state = 126}, - [3897] = {.lex_state = 622}, - [3898] = {.lex_state = 625}, - [3899] = {.lex_state = 126}, - [3900] = {.lex_state = 120}, - [3901] = {.lex_state = 201}, - [3902] = {.lex_state = 0}, - [3903] = {.lex_state = 190}, - [3904] = {.lex_state = 226}, - [3905] = {.lex_state = 124}, - [3906] = {.lex_state = 124}, - [3907] = {.lex_state = 124}, - [3908] = {.lex_state = 120}, - [3909] = {.lex_state = 120}, - [3910] = {.lex_state = 278}, - [3911] = {.lex_state = 124}, - [3912] = {.lex_state = 180}, - [3913] = {.lex_state = 278}, - [3914] = {.lex_state = 120}, - [3915] = {.lex_state = 622}, - [3916] = {.lex_state = 227}, - [3917] = {.lex_state = 278}, - [3918] = {.lex_state = 31}, - [3919] = {.lex_state = 120}, - [3920] = {.lex_state = 123}, - [3921] = {.lex_state = 217}, - [3922] = {.lex_state = 217}, - [3923] = {.lex_state = 120}, - [3924] = {.lex_state = 149}, - [3925] = {.lex_state = 149}, - [3926] = {.lex_state = 120}, - [3927] = {.lex_state = 217}, - [3928] = {.lex_state = 217}, - [3929] = {.lex_state = 120}, - [3930] = {.lex_state = 217}, - [3931] = {.lex_state = 120}, - [3932] = {.lex_state = 217}, - [3933] = {.lex_state = 622}, - [3934] = {.lex_state = 126}, - [3935] = {.lex_state = 120}, - [3936] = {.lex_state = 120}, - [3937] = {.lex_state = 124}, - [3938] = {.lex_state = 217}, - [3939] = {.lex_state = 276}, - [3940] = {.lex_state = 622}, - [3941] = {.lex_state = 88}, - [3942] = {.lex_state = 0}, - [3943] = {.lex_state = 217}, - [3944] = {.lex_state = 217}, - [3945] = {.lex_state = 278}, - [3946] = {.lex_state = 88}, - [3947] = {.lex_state = 131}, - [3948] = {.lex_state = 88}, - [3949] = {.lex_state = 131}, - [3950] = {.lex_state = 88}, + [3741] = {.lex_state = 625}, + [3742] = {.lex_state = 159}, + [3743] = {.lex_state = 159}, + [3744] = {.lex_state = 625}, + [3745] = {.lex_state = 625}, + [3746] = {.lex_state = 625}, + [3747] = {.lex_state = 625}, + [3748] = {.lex_state = 248}, + [3749] = {.lex_state = 625}, + [3750] = {.lex_state = 625}, + [3751] = {.lex_state = 625}, + [3752] = {.lex_state = 625}, + [3753] = {.lex_state = 159}, + [3754] = {.lex_state = 625}, + [3755] = {.lex_state = 159}, + [3756] = {.lex_state = 248}, + [3757] = {.lex_state = 625}, + [3758] = {.lex_state = 625}, + [3759] = {.lex_state = 625}, + [3760] = {.lex_state = 625}, + [3761] = {.lex_state = 625}, + [3762] = {.lex_state = 625}, + [3763] = {.lex_state = 625}, + [3764] = {.lex_state = 625}, + [3765] = {.lex_state = 136}, + [3766] = {.lex_state = 625}, + [3767] = {.lex_state = 625}, + [3768] = {.lex_state = 266}, + [3769] = {.lex_state = 119}, + [3770] = {.lex_state = 668}, + [3771] = {.lex_state = 625}, + [3772] = {.lex_state = 625}, + [3773] = {.lex_state = 235}, + [3774] = {.lex_state = 266}, + [3775] = {.lex_state = 249}, + [3776] = {.lex_state = 266}, + [3777] = {.lex_state = 266}, + [3778] = {.lex_state = 136}, + [3779] = {.lex_state = 625}, + [3780] = {.lex_state = 286}, + [3781] = {.lex_state = 138}, + [3782] = {.lex_state = 272}, + [3783] = {.lex_state = 241}, + [3784] = {.lex_state = 137}, + [3785] = {.lex_state = 272}, + [3786] = {.lex_state = 272}, + [3787] = {.lex_state = 622}, + [3788] = {.lex_state = 272}, + [3789] = {.lex_state = 275}, + [3790] = {.lex_state = 304}, + [3791] = {.lex_state = 269}, + [3792] = {.lex_state = 272}, + [3793] = {.lex_state = 272}, + [3794] = {.lex_state = 272}, + [3795] = {.lex_state = 239}, + [3796] = {.lex_state = 272}, + [3797] = {.lex_state = 137}, + [3798] = {.lex_state = 241}, + [3799] = {.lex_state = 272}, + [3800] = {.lex_state = 157}, + [3801] = {.lex_state = 272}, + [3802] = {.lex_state = 272}, + [3803] = {.lex_state = 241}, + [3804] = {.lex_state = 9}, + [3805] = {.lex_state = 275}, + [3806] = {.lex_state = 272}, + [3807] = {.lex_state = 241}, + [3808] = {.lex_state = 159}, + [3809] = {.lex_state = 137}, + [3810] = {.lex_state = 272}, + [3811] = {.lex_state = 119}, + [3812] = {.lex_state = 119}, + [3813] = {.lex_state = 138}, + [3814] = {.lex_state = 250}, + [3815] = {.lex_state = 272}, + [3816] = {.lex_state = 157}, + [3817] = {.lex_state = 239}, + [3818] = {.lex_state = 250}, + [3819] = {.lex_state = 241}, + [3820] = {.lex_state = 622}, + [3821] = {.lex_state = 137}, + [3822] = {.lex_state = 137}, + [3823] = {.lex_state = 239}, + [3824] = {.lex_state = 159}, + [3825] = {.lex_state = 272}, + [3826] = {.lex_state = 152}, + [3827] = {.lex_state = 119}, + [3828] = {.lex_state = 277}, + [3829] = {.lex_state = 157}, + [3830] = {.lex_state = 152}, + [3831] = {.lex_state = 152}, + [3832] = {.lex_state = 152}, + [3833] = {.lex_state = 71}, + [3834] = {.lex_state = 276}, + [3835] = {.lex_state = 55}, + [3836] = {.lex_state = 139}, + [3837] = {.lex_state = 71}, + [3838] = {.lex_state = 71}, + [3839] = {.lex_state = 223}, + [3840] = {.lex_state = 71}, + [3841] = {.lex_state = 234}, + [3842] = {.lex_state = 159}, + [3843] = {.lex_state = 152}, + [3844] = {.lex_state = 152}, + [3845] = {.lex_state = 276}, + [3846] = {.lex_state = 157}, + [3847] = {.lex_state = 71}, + [3848] = {.lex_state = 304}, + [3849] = {.lex_state = 145}, + [3850] = {.lex_state = 159}, + [3851] = {.lex_state = 55}, + [3852] = {.lex_state = 159}, + [3853] = {.lex_state = 304}, + [3854] = {.lex_state = 303}, + [3855] = {.lex_state = 55}, + [3856] = {.lex_state = 71}, + [3857] = {.lex_state = 152}, + [3858] = {.lex_state = 159}, + [3859] = {.lex_state = 55}, + [3860] = {.lex_state = 303}, + [3861] = {.lex_state = 159}, + [3862] = {.lex_state = 159}, + [3863] = {.lex_state = 55}, + [3864] = {.lex_state = 152}, + [3865] = {.lex_state = 55}, + [3866] = {.lex_state = 245}, + [3867] = {.lex_state = 283}, + [3868] = {.lex_state = 304}, + [3869] = {.lex_state = 273}, + [3870] = {.lex_state = 55}, + [3871] = {.lex_state = 139}, + [3872] = {.lex_state = 119}, + [3873] = {.lex_state = 55}, + [3874] = {.lex_state = 71}, + [3875] = {.lex_state = 287}, + [3876] = {.lex_state = 55}, + [3877] = {.lex_state = 159}, + [3878] = {.lex_state = 239}, + [3879] = {.lex_state = 242}, + [3880] = {.lex_state = 152}, + [3881] = {.lex_state = 139}, + [3882] = {.lex_state = 304}, + [3883] = {.lex_state = 159}, + [3884] = {.lex_state = 71}, + [3885] = {.lex_state = 139}, + [3886] = {.lex_state = 119}, + [3887] = {.lex_state = 152}, + [3888] = {.lex_state = 140}, + [3889] = {.lex_state = 139}, + [3890] = {.lex_state = 71}, + [3891] = {.lex_state = 55}, + [3892] = {.lex_state = 287}, + [3893] = {.lex_state = 71}, + [3894] = {.lex_state = 71}, + [3895] = {.lex_state = 71}, + [3896] = {.lex_state = 71}, + [3897] = {.lex_state = 71}, + [3898] = {.lex_state = 251}, + [3899] = {.lex_state = 71}, + [3900] = {.lex_state = 71}, + [3901] = {.lex_state = 71}, + [3902] = {.lex_state = 71}, + [3903] = {.lex_state = 71}, + [3904] = {.lex_state = 71}, + [3905] = {.lex_state = 622}, + [3906] = {.lex_state = 622}, + [3907] = {.lex_state = 157}, + [3908] = {.lex_state = 303}, + [3909] = {.lex_state = 622}, + [3910] = {.lex_state = 622}, + [3911] = {.lex_state = 622}, + [3912] = {.lex_state = 239}, + [3913] = {.lex_state = 71}, + [3914] = {.lex_state = 152}, + [3915] = {.lex_state = 152}, + [3916] = {.lex_state = 270}, + [3917] = {.lex_state = 622}, + [3918] = {.lex_state = 55}, + [3919] = {.lex_state = 55}, + [3920] = {.lex_state = 276}, + [3921] = {.lex_state = 251}, + [3922] = {.lex_state = 71}, + [3923] = {.lex_state = 71}, + [3924] = {.lex_state = 251}, + [3925] = {.lex_state = 276}, + [3926] = {.lex_state = 251}, + [3927] = {.lex_state = 71}, + [3928] = {.lex_state = 152}, + [3929] = {.lex_state = 152}, + [3930] = {.lex_state = 251}, + [3931] = {.lex_state = 304}, + [3932] = {.lex_state = 304}, + [3933] = {.lex_state = 119}, + [3934] = {.lex_state = 210}, + [3935] = {.lex_state = 152}, + [3936] = {.lex_state = 0}, + [3937] = {.lex_state = 210}, + [3938] = {.lex_state = 55}, + [3939] = {.lex_state = 141}, + [3940] = {.lex_state = 284}, + [3941] = {.lex_state = 152}, + [3942] = {.lex_state = 303}, + [3943] = {.lex_state = 158}, + [3944] = {.lex_state = 210}, + [3945] = {.lex_state = 252}, + [3946] = {.lex_state = 0}, + [3947] = {.lex_state = 152}, + [3948] = {.lex_state = 0}, + [3949] = {.lex_state = 210}, + [3950] = {.lex_state = 210}, [3951] = {.lex_state = 0}, - [3952] = {.lex_state = 625}, - [3953] = {.lex_state = 581}, - [3954] = {.lex_state = 124}, - [3955] = {.lex_state = 180}, - [3956] = {.lex_state = 278}, - [3957] = {.lex_state = 622}, - [3958] = {.lex_state = 89}, - [3959] = {.lex_state = 0}, - [3960] = {.lex_state = 278}, - [3961] = {.lex_state = 88}, - [3962] = {.lex_state = 160}, - [3963] = {.lex_state = 0}, - [3964] = {.lex_state = 160}, - [3965] = {.lex_state = 124}, - [3966] = {.lex_state = 180}, - [3967] = {.lex_state = 278}, - [3968] = {.lex_state = 33}, - [3969] = {.lex_state = 180}, - [3970] = {.lex_state = 581}, - [3971] = {.lex_state = 120}, - [3972] = {.lex_state = 89}, - [3973] = {.lex_state = 120}, - [3974] = {.lex_state = 180}, - [3975] = {.lex_state = 278}, - [3976] = {.lex_state = 124}, - [3977] = {.lex_state = 252}, + [3952] = {.lex_state = 158}, + [3953] = {.lex_state = 261}, + [3954] = {.lex_state = 210}, + [3955] = {.lex_state = 55}, + [3956] = {.lex_state = 210}, + [3957] = {.lex_state = 2304}, + [3958] = {.lex_state = 0}, + [3959] = {.lex_state = 55}, + [3960] = {.lex_state = 210}, + [3961] = {.lex_state = 243}, + [3962] = {.lex_state = 288}, + [3963] = {.lex_state = 55}, + [3964] = {.lex_state = 210}, + [3965] = {.lex_state = 285}, + [3966] = {.lex_state = 210}, + [3967] = {.lex_state = 2304}, + [3968] = {.lex_state = 2304}, + [3969] = {.lex_state = 655}, + [3970] = {.lex_state = 157}, + [3971] = {.lex_state = 157}, + [3972] = {.lex_state = 288}, + [3973] = {.lex_state = 152}, + [3974] = {.lex_state = 210}, + [3975] = {.lex_state = 0}, + [3976] = {.lex_state = 2304}, + [3977] = {.lex_state = 276}, [3978] = {.lex_state = 278}, - [3979] = {.lex_state = 180}, - [3980] = {.lex_state = 278}, - [3981] = {.lex_state = 278}, - [3982] = {.lex_state = 278}, + [3979] = {.lex_state = 303}, + [3980] = {.lex_state = 55}, + [3981] = {.lex_state = 218}, + [3982] = {.lex_state = 303}, [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 0}, - [3985] = {.lex_state = 230}, - [3986] = {.lex_state = 180}, - [3987] = {.lex_state = 278}, - [3988] = {.lex_state = 278}, + [3984] = {.lex_state = 243}, + [3985] = {.lex_state = 210}, + [3986] = {.lex_state = 303}, + [3987] = {.lex_state = 2304}, + [3988] = {.lex_state = 158}, [3989] = {.lex_state = 0}, - [3990] = {.lex_state = 252}, - [3991] = {.lex_state = 180}, - [3992] = {.lex_state = 278}, - [3993] = {.lex_state = 129}, - [3994] = {.lex_state = 278}, - [3995] = {.lex_state = 230}, - [3996] = {.lex_state = 180}, - [3997] = {.lex_state = 31}, - [3998] = {.lex_state = 180}, - [3999] = {.lex_state = 180}, - [4000] = {.lex_state = 180}, - [4001] = {.lex_state = 625}, - [4002] = {.lex_state = 227}, - [4003] = {.lex_state = 180}, - [4004] = {.lex_state = 180}, - [4005] = {.lex_state = 124}, - [4006] = {.lex_state = 180}, - [4007] = {.lex_state = 625}, - [4008] = {.lex_state = 180}, - [4009] = {.lex_state = 180}, - [4010] = {.lex_state = 180}, - [4011] = {.lex_state = 180}, - [4012] = {.lex_state = 88}, - [4013] = {.lex_state = 88}, - [4014] = {.lex_state = 622}, - [4015] = {.lex_state = 217}, - [4016] = {.lex_state = 120}, - [4017] = {.lex_state = 217}, - [4018] = {.lex_state = 217}, - [4019] = {.lex_state = 278}, - [4020] = {.lex_state = 88}, - [4021] = {.lex_state = 31}, - [4022] = {.lex_state = 217}, - [4023] = {.lex_state = 276}, - [4024] = {.lex_state = 252}, - [4025] = {.lex_state = 89}, - [4026] = {.lex_state = 88}, - [4027] = {.lex_state = 33}, - [4028] = {.lex_state = 577}, - [4029] = {.lex_state = 31}, - [4030] = {.lex_state = 88}, - [4031] = {.lex_state = 88}, - [4032] = {.lex_state = 263}, - [4033] = {.lex_state = 124}, - [4034] = {.lex_state = 2}, - [4035] = {.lex_state = 263}, - [4036] = {.lex_state = 180}, - [4037] = {.lex_state = 124}, - [4038] = {.lex_state = 37}, - [4039] = {.lex_state = 46}, - [4040] = {.lex_state = 2}, - [4041] = {.lex_state = 2}, - [4042] = {.lex_state = 652}, - [4043] = {.lex_state = 121}, - [4044] = {.lex_state = 121}, - [4045] = {.lex_state = 2}, - [4046] = {.lex_state = 2}, - [4047] = {.lex_state = 278}, - [4048] = {.lex_state = 124}, - [4049] = {.lex_state = 31}, - [4050] = {.lex_state = 245}, - [4051] = {.lex_state = 268}, - [4052] = {.lex_state = 31}, - [4053] = {.lex_state = 31}, - [4054] = {.lex_state = 31}, - [4055] = {.lex_state = 149}, - [4056] = {.lex_state = 238}, - [4057] = {.lex_state = 122}, - [4058] = {.lex_state = 190}, - [4059] = {.lex_state = 126}, - [4060] = {.lex_state = 93}, - [4061] = {.lex_state = 238}, - [4062] = {.lex_state = 238}, - [4063] = {.lex_state = 0}, - [4064] = {.lex_state = 149}, - [4065] = {.lex_state = 126}, - [4066] = {.lex_state = 0}, - [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 31}, - [4069] = {.lex_state = 31}, - [4070] = {.lex_state = 31}, - [4071] = {.lex_state = 190}, - [4072] = {.lex_state = 149}, - [4073] = {.lex_state = 149}, - [4074] = {.lex_state = 190}, - [4075] = {.lex_state = 190}, - [4076] = {.lex_state = 0}, - [4077] = {.lex_state = 88}, - [4078] = {.lex_state = 31}, - [4079] = {.lex_state = 190}, - [4080] = {.lex_state = 0}, - [4081] = {.lex_state = 31}, - [4082] = {.lex_state = 31}, - [4083] = {.lex_state = 31}, - [4084] = {.lex_state = 31}, - [4085] = {.lex_state = 31}, - [4086] = {.lex_state = 31}, - [4087] = {.lex_state = 122}, - [4088] = {.lex_state = 264}, - [4089] = {.lex_state = 180}, - [4090] = {.lex_state = 31}, - [4091] = {.lex_state = 31}, - [4092] = {.lex_state = 31}, - [4093] = {.lex_state = 31}, - [4094] = {.lex_state = 31}, - [4095] = {.lex_state = 31}, - [4096] = {.lex_state = 190}, - [4097] = {.lex_state = 124}, - [4098] = {.lex_state = 31}, - [4099] = {.lex_state = 31}, - [4100] = {.lex_state = 149}, - [4101] = {.lex_state = 31}, - [4102] = {.lex_state = 149}, - [4103] = {.lex_state = 124}, - [4104] = {.lex_state = 231}, - [4105] = {.lex_state = 190}, - [4106] = {.lex_state = 190}, - [4107] = {.lex_state = 190}, - [4108] = {.lex_state = 129}, - [4109] = {.lex_state = 190}, - [4110] = {.lex_state = 31}, - [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 122}, - [4113] = {.lex_state = 190}, - [4114] = {.lex_state = 31}, - [4115] = {.lex_state = 190}, - [4116] = {.lex_state = 190}, - [4117] = {.lex_state = 190}, - [4118] = {.lex_state = 122}, - [4119] = {.lex_state = 190}, - [4120] = {.lex_state = 122}, - [4121] = {.lex_state = 190}, - [4122] = {.lex_state = 190}, - [4123] = {.lex_state = 190}, - [4124] = {.lex_state = 122}, - [4125] = {.lex_state = 122}, - [4126] = {.lex_state = 123}, - [4127] = {.lex_state = 122}, - [4128] = {.lex_state = 149}, - [4129] = {.lex_state = 31}, - [4130] = {.lex_state = 231}, - [4131] = {.lex_state = 123}, - [4132] = {.lex_state = 123}, - [4133] = {.lex_state = 252}, - [4134] = {.lex_state = 217}, - [4135] = {.lex_state = 577}, - [4136] = {.lex_state = 31}, - [4137] = {.lex_state = 31}, - [4138] = {.lex_state = 31}, - [4139] = {.lex_state = 31}, - [4140] = {.lex_state = 126}, - [4141] = {.lex_state = 245}, - [4142] = {.lex_state = 31}, - [4143] = {.lex_state = 226}, - [4144] = {.lex_state = 31}, - [4145] = {.lex_state = 226}, - [4146] = {.lex_state = 122}, - [4147] = {.lex_state = 0}, - [4148] = {.lex_state = 253}, - [4149] = {.lex_state = 31}, - [4150] = {.lex_state = 126}, - [4151] = {.lex_state = 31}, - [4152] = {.lex_state = 0}, - [4153] = {.lex_state = 126}, - [4154] = {.lex_state = 31}, - [4155] = {.lex_state = 0}, - [4156] = {.lex_state = 31}, - [4157] = {.lex_state = 122}, - [4158] = {.lex_state = 122}, - [4159] = {.lex_state = 231}, - [4160] = {.lex_state = 126}, - [4161] = {.lex_state = 126}, - [4162] = {.lex_state = 126}, - [4163] = {.lex_state = 190}, - [4164] = {.lex_state = 31}, - [4165] = {.lex_state = 190}, - [4166] = {.lex_state = 124}, - [4167] = {.lex_state = 0}, - [4168] = {.lex_state = 0}, - [4169] = {.lex_state = 245}, - [4170] = {.lex_state = 31}, - [4171] = {.lex_state = 31}, - [4172] = {.lex_state = 31}, - [4173] = {.lex_state = 124}, - [4174] = {.lex_state = 231}, - [4175] = {.lex_state = 31}, - [4176] = {.lex_state = 149}, - [4177] = {.lex_state = 231}, - [4178] = {.lex_state = 577}, - [4179] = {.lex_state = 252}, - [4180] = {.lex_state = 245}, - [4181] = {.lex_state = 42}, - [4182] = {.lex_state = 31}, - [4183] = {.lex_state = 577}, - [4184] = {.lex_state = 124}, - [4185] = {.lex_state = 0}, - [4186] = {.lex_state = 577}, - [4187] = {.lex_state = 577}, - [4188] = {.lex_state = 31}, - [4189] = {.lex_state = 622}, - [4190] = {.lex_state = 190}, - [4191] = {.lex_state = 124}, - [4192] = {.lex_state = 124}, - [4193] = {.lex_state = 245}, - [4194] = {.lex_state = 190}, - [4195] = {.lex_state = 182}, - [4196] = {.lex_state = 124}, - [4197] = {.lex_state = 190}, - [4198] = {.lex_state = 624}, - [4199] = {.lex_state = 190}, - [4200] = {.lex_state = 231}, - [4201] = {.lex_state = 31}, - [4202] = {.lex_state = 31}, - [4203] = {.lex_state = 124}, - [4204] = {.lex_state = 245}, - [4205] = {.lex_state = 182}, - [4206] = {.lex_state = 149}, - [4207] = {.lex_state = 577}, - [4208] = {.lex_state = 231}, - [4209] = {.lex_state = 231}, - [4210] = {.lex_state = 149}, - [4211] = {.lex_state = 0}, - [4212] = {.lex_state = 31}, - [4213] = {.lex_state = 245}, - [4214] = {.lex_state = 149}, - [4215] = {.lex_state = 624}, - [4216] = {.lex_state = 124}, - [4217] = {.lex_state = 31}, - [4218] = {.lex_state = 231}, - [4219] = {.lex_state = 238}, - [4220] = {.lex_state = 31}, - [4221] = {.lex_state = 231}, - [4222] = {.lex_state = 231}, - [4223] = {.lex_state = 238}, - [4224] = {.lex_state = 245}, - [4225] = {.lex_state = 31}, - [4226] = {.lex_state = 31}, - [4227] = {.lex_state = 31}, - [4228] = {.lex_state = 31}, - [4229] = {.lex_state = 226}, - [4230] = {.lex_state = 245}, - [4231] = {.lex_state = 31}, - [4232] = {.lex_state = 577}, - [4233] = {.lex_state = 0}, - [4234] = {.lex_state = 190}, - [4235] = {.lex_state = 124}, - [4236] = {.lex_state = 124}, - [4237] = {.lex_state = 31}, - [4238] = {.lex_state = 124}, - [4239] = {.lex_state = 149}, - [4240] = {.lex_state = 31}, - [4241] = {.lex_state = 31}, - [4242] = {.lex_state = 245}, - [4243] = {.lex_state = 31}, - [4244] = {.lex_state = 31}, - [4245] = {.lex_state = 226}, - [4246] = {.lex_state = 0}, - [4247] = {.lex_state = 124}, - [4248] = {.lex_state = 0}, - [4249] = {.lex_state = 231}, - [4250] = {.lex_state = 31}, - [4251] = {.lex_state = 31}, - [4252] = {.lex_state = 31}, - [4253] = {.lex_state = 231}, - [4254] = {.lex_state = 245}, - [4255] = {.lex_state = 577}, - [4256] = {.lex_state = 124}, - [4257] = {.lex_state = 31}, - [4258] = {.lex_state = 180}, - [4259] = {.lex_state = 31}, - [4260] = {.lex_state = 124}, - [4261] = {.lex_state = 0}, - [4262] = {.lex_state = 226}, - [4263] = {.lex_state = 226}, - [4264] = {.lex_state = 217}, - [4265] = {.lex_state = 31}, - [4266] = {.lex_state = 129}, - [4267] = {.lex_state = 0}, - [4268] = {.lex_state = 89}, - [4269] = {.lex_state = 31}, - [4270] = {.lex_state = 31}, - [4271] = {.lex_state = 0}, - [4272] = {.lex_state = 0}, - [4273] = {.lex_state = 31}, - [4274] = {.lex_state = 129}, - [4275] = {.lex_state = 124}, - [4276] = {.lex_state = 0}, - [4277] = {.lex_state = 124}, - [4278] = {.lex_state = 624}, - [4279] = {.lex_state = 31}, - [4280] = {.lex_state = 0}, - [4281] = {.lex_state = 625}, - [4282] = {.lex_state = 31}, - [4283] = {.lex_state = 245}, - [4284] = {.lex_state = 190}, - [4285] = {.lex_state = 31}, - [4286] = {.lex_state = 226}, - [4287] = {.lex_state = 31}, - [4288] = {.lex_state = 31}, - [4289] = {.lex_state = 31}, - [4290] = {.lex_state = 190}, - [4291] = {.lex_state = 226}, - [4292] = {.lex_state = 182}, - [4293] = {.lex_state = 31}, - [4294] = {.lex_state = 31}, - [4295] = {.lex_state = 190}, - [4296] = {.lex_state = 190}, - [4297] = {.lex_state = 31}, - [4298] = {.lex_state = 124}, - [4299] = {.lex_state = 31}, - [4300] = {.lex_state = 124}, - [4301] = {.lex_state = 238}, - [4302] = {.lex_state = 31}, - [4303] = {.lex_state = 226}, - [4304] = {.lex_state = 31}, - [4305] = {.lex_state = 0}, - [4306] = {.lex_state = 149}, - [4307] = {.lex_state = 31}, - [4308] = {.lex_state = 42}, - [4309] = {.lex_state = 31}, - [4310] = {.lex_state = 264}, - [4311] = {.lex_state = 31}, - [4312] = {.lex_state = 0}, - [4313] = {.lex_state = 245}, - [4314] = {.lex_state = 264}, - [4315] = {.lex_state = 245}, - [4316] = {.lex_state = 31}, - [4317] = {.lex_state = 264}, - [4318] = {.lex_state = 131}, - [4319] = {.lex_state = 42}, - [4320] = {.lex_state = 31}, - [4321] = {.lex_state = 31}, - [4322] = {.lex_state = 31}, - [4323] = {.lex_state = 264}, - [4324] = {.lex_state = 31}, - [4325] = {.lex_state = 31}, - [4326] = {.lex_state = 31}, - [4327] = {.lex_state = 31}, - [4328] = {.lex_state = 31}, - [4329] = {.lex_state = 31}, - [4330] = {.lex_state = 31}, - [4331] = {.lex_state = 31}, - [4332] = {.lex_state = 0}, + [3990] = {.lex_state = 2304}, + [3991] = {.lex_state = 55}, + [3992] = {.lex_state = 55}, + [3993] = {.lex_state = 621}, + [3994] = {.lex_state = 210}, + [3995] = {.lex_state = 55}, + [3996] = {.lex_state = 55}, + [3997] = {.lex_state = 210}, + [3998] = {.lex_state = 0}, + [3999] = {.lex_state = 55}, + [4000] = {.lex_state = 55}, + [4001] = {.lex_state = 0}, + [4002] = {.lex_state = 228}, + [4003] = {.lex_state = 159}, + [4004] = {.lex_state = 157}, + [4005] = {.lex_state = 152}, + [4006] = {.lex_state = 55}, + [4007] = {.lex_state = 210}, + [4008] = {.lex_state = 152}, + [4009] = {.lex_state = 0}, + [4010] = {.lex_state = 2304}, + [4011] = {.lex_state = 303}, + [4012] = {.lex_state = 2304}, + [4013] = {.lex_state = 210}, + [4014] = {.lex_state = 303}, + [4015] = {.lex_state = 159}, + [4016] = {.lex_state = 146}, + [4017] = {.lex_state = 285}, + [4018] = {.lex_state = 210}, + [4019] = {.lex_state = 229}, + [4020] = {.lex_state = 303}, + [4021] = {.lex_state = 152}, + [4022] = {.lex_state = 152}, + [4023] = {.lex_state = 152}, + [4024] = {.lex_state = 147}, + [4025] = {.lex_state = 2304}, + [4026] = {.lex_state = 152}, + [4027] = {.lex_state = 152}, + [4028] = {.lex_state = 152}, + [4029] = {.lex_state = 2304}, + [4030] = {.lex_state = 152}, + [4031] = {.lex_state = 152}, + [4032] = {.lex_state = 152}, + [4033] = {.lex_state = 210}, + [4034] = {.lex_state = 152}, + [4035] = {.lex_state = 276}, + [4036] = {.lex_state = 2304}, + [4037] = {.lex_state = 2304}, + [4038] = {.lex_state = 152}, + [4039] = {.lex_state = 303}, + [4040] = {.lex_state = 303}, + [4041] = {.lex_state = 303}, + [4042] = {.lex_state = 303}, + [4043] = {.lex_state = 157}, + [4044] = {.lex_state = 303}, + [4045] = {.lex_state = 303}, + [4046] = {.lex_state = 152}, + [4047] = {.lex_state = 119}, + [4048] = {.lex_state = 210}, + [4049] = {.lex_state = 271}, + [4050] = {.lex_state = 157}, + [4051] = {.lex_state = 289}, + [4052] = {.lex_state = 152}, + [4053] = {.lex_state = 284}, + [4054] = {.lex_state = 210}, + [4055] = {.lex_state = 278}, + [4056] = {.lex_state = 158}, + [4057] = {.lex_state = 0}, + [4058] = {.lex_state = 288}, + [4059] = {.lex_state = 210}, + [4060] = {.lex_state = 303}, + [4061] = {.lex_state = 303}, + [4062] = {.lex_state = 303}, + [4063] = {.lex_state = 621}, + [4064] = {.lex_state = 2408}, + [4065] = {.lex_state = 2408}, + [4066] = {.lex_state = 157}, + [4067] = {.lex_state = 157}, + [4068] = {.lex_state = 2304}, + [4069] = {.lex_state = 303}, + [4070] = {.lex_state = 303}, + [4071] = {.lex_state = 303}, + [4072] = {.lex_state = 255}, + [4073] = {.lex_state = 288}, + [4074] = {.lex_state = 2304}, + [4075] = {.lex_state = 152}, + [4076] = {.lex_state = 668}, + [4077] = {.lex_state = 147}, + [4078] = {.lex_state = 668}, + [4079] = {.lex_state = 157}, + [4080] = {.lex_state = 218}, + [4081] = {.lex_state = 154}, + [4082] = {.lex_state = 71}, + [4083] = {.lex_state = 244}, + [4084] = {.lex_state = 290}, + [4085] = {.lex_state = 208}, + [4086] = {.lex_state = 119}, + [4087] = {.lex_state = 244}, + [4088] = {.lex_state = 152}, + [4089] = {.lex_state = 0}, + [4090] = {.lex_state = 290}, + [4091] = {.lex_state = 0}, + [4092] = {.lex_state = 668}, + [4093] = {.lex_state = 148}, + [4094] = {.lex_state = 152}, + [4095] = {.lex_state = 152}, + [4096] = {.lex_state = 152}, + [4097] = {.lex_state = 152}, + [4098] = {.lex_state = 152}, + [4099] = {.lex_state = 208}, + [4100] = {.lex_state = 305}, + [4101] = {.lex_state = 148}, + [4102] = {.lex_state = 157}, + [4103] = {.lex_state = 666}, + [4104] = {.lex_state = 148}, + [4105] = {.lex_state = 152}, + [4106] = {.lex_state = 55}, + [4107] = {.lex_state = 305}, + [4108] = {.lex_state = 303}, + [4109] = {.lex_state = 668}, + [4110] = {.lex_state = 305}, + [4111] = {.lex_state = 208}, + [4112] = {.lex_state = 244}, + [4113] = {.lex_state = 305}, + [4114] = {.lex_state = 208}, + [4115] = {.lex_state = 305}, + [4116] = {.lex_state = 208}, + [4117] = {.lex_state = 305}, + [4118] = {.lex_state = 666}, + [4119] = {.lex_state = 9}, + [4120] = {.lex_state = 244}, + [4121] = {.lex_state = 305}, + [4122] = {.lex_state = 666}, + [4123] = {.lex_state = 208}, + [4124] = {.lex_state = 305}, + [4125] = {.lex_state = 152}, + [4126] = {.lex_state = 305}, + [4127] = {.lex_state = 305}, + [4128] = {.lex_state = 154}, + [4129] = {.lex_state = 208}, + [4130] = {.lex_state = 305}, + [4131] = {.lex_state = 305}, + [4132] = {.lex_state = 244}, + [4133] = {.lex_state = 666}, + [4134] = {.lex_state = 208}, + [4135] = {.lex_state = 305}, + [4136] = {.lex_state = 668}, + [4137] = {.lex_state = 305}, + [4138] = {.lex_state = 148}, + [4139] = {.lex_state = 305}, + [4140] = {.lex_state = 208}, + [4141] = {.lex_state = 305}, + [4142] = {.lex_state = 625}, + [4143] = {.lex_state = 305}, + [4144] = {.lex_state = 208}, + [4145] = {.lex_state = 305}, + [4146] = {.lex_state = 148}, + [4147] = {.lex_state = 244}, + [4148] = {.lex_state = 305}, + [4149] = {.lex_state = 208}, + [4150] = {.lex_state = 0}, + [4151] = {.lex_state = 55}, + [4152] = {.lex_state = 148}, + [4153] = {.lex_state = 208}, + [4154] = {.lex_state = 305}, + [4155] = {.lex_state = 218}, + [4156] = {.lex_state = 149}, + [4157] = {.lex_state = 208}, + [4158] = {.lex_state = 208}, + [4159] = {.lex_state = 148}, + [4160] = {.lex_state = 208}, + [4161] = {.lex_state = 253}, + [4162] = {.lex_state = 208}, + [4163] = {.lex_state = 254}, + [4164] = {.lex_state = 0}, + [4165] = {.lex_state = 67}, + [4166] = {.lex_state = 149}, + [4167] = {.lex_state = 208}, + [4168] = {.lex_state = 151}, + [4169] = {.lex_state = 208}, + [4170] = {.lex_state = 152}, + [4171] = {.lex_state = 208}, + [4172] = {.lex_state = 208}, + [4173] = {.lex_state = 148}, + [4174] = {.lex_state = 208}, + [4175] = {.lex_state = 208}, + [4176] = {.lex_state = 55}, + [4177] = {.lex_state = 244}, + [4178] = {.lex_state = 177}, + [4179] = {.lex_state = 668}, + [4180] = {.lex_state = 244}, + [4181] = {.lex_state = 152}, + [4182] = {.lex_state = 177}, + [4183] = {.lex_state = 666}, + [4184] = {.lex_state = 668}, + [4185] = {.lex_state = 148}, + [4186] = {.lex_state = 159}, + [4187] = {.lex_state = 152}, + [4188] = {.lex_state = 0}, + [4189] = {.lex_state = 0}, + [4190] = {.lex_state = 159}, + [4191] = {.lex_state = 154}, + [4192] = {.lex_state = 279}, + [4193] = {.lex_state = 625}, + [4194] = {.lex_state = 668}, + [4195] = {.lex_state = 668}, + [4196] = {.lex_state = 55}, + [4197] = {.lex_state = 621}, + [4198] = {.lex_state = 119}, + [4199] = {.lex_state = 668}, + [4200] = {.lex_state = 159}, + [4201] = {.lex_state = 0}, + [4202] = {.lex_state = 148}, + [4203] = {.lex_state = 9}, + [4204] = {.lex_state = 279}, + [4205] = {.lex_state = 228}, + [4206] = {.lex_state = 9}, + [4207] = {.lex_state = 666}, + [4208] = {.lex_state = 9}, + [4209] = {.lex_state = 148}, + [4210] = {.lex_state = 279}, + [4211] = {.lex_state = 279}, + [4212] = {.lex_state = 0}, + [4213] = {.lex_state = 279}, + [4214] = {.lex_state = 148}, + [4215] = {.lex_state = 303}, + [4216] = {.lex_state = 244}, + [4217] = {.lex_state = 9}, + [4218] = {.lex_state = 257}, + [4219] = {.lex_state = 119}, + [4220] = {.lex_state = 148}, + [4221] = {.lex_state = 188}, + [4222] = {.lex_state = 244}, + [4223] = {.lex_state = 157}, + [4224] = {.lex_state = 244}, + [4225] = {.lex_state = 9}, + [4226] = {.lex_state = 305}, + [4227] = {.lex_state = 257}, + [4228] = {.lex_state = 188}, + [4229] = {.lex_state = 244}, + [4230] = {.lex_state = 148}, + [4231] = {.lex_state = 244}, + [4232] = {.lex_state = 254}, + [4233] = {.lex_state = 208}, + [4234] = {.lex_state = 55}, + [4235] = {.lex_state = 210}, + [4236] = {.lex_state = 244}, + [4237] = {.lex_state = 152}, + [4238] = {.lex_state = 0}, + [4239] = {.lex_state = 291}, + [4240] = {.lex_state = 0}, + [4241] = {.lex_state = 150}, + [4242] = {.lex_state = 152}, + [4243] = {.lex_state = 150}, + [4244] = {.lex_state = 119}, + [4245] = {.lex_state = 253}, + [4246] = {.lex_state = 253}, + [4247] = {.lex_state = 55}, + [4248] = {.lex_state = 152}, + [4249] = {.lex_state = 258}, + [4250] = {.lex_state = 272}, + [4251] = {.lex_state = 177}, + [4252] = {.lex_state = 55}, + [4253] = {.lex_state = 55}, + [4254] = {.lex_state = 55}, + [4255] = {.lex_state = 55}, + [4256] = {.lex_state = 55}, + [4257] = {.lex_state = 150}, + [4258] = {.lex_state = 150}, + [4259] = {.lex_state = 55}, + [4260] = {.lex_state = 55}, + [4261] = {.lex_state = 177}, + [4262] = {.lex_state = 55}, + [4263] = {.lex_state = 55}, + [4264] = {.lex_state = 55}, + [4265] = {.lex_state = 218}, + [4266] = {.lex_state = 55}, + [4267] = {.lex_state = 55}, + [4268] = {.lex_state = 177}, + [4269] = {.lex_state = 177}, + [4270] = {.lex_state = 218}, + [4271] = {.lex_state = 218}, + [4272] = {.lex_state = 177}, + [4273] = {.lex_state = 272}, + [4274] = {.lex_state = 177}, + [4275] = {.lex_state = 55}, + [4276] = {.lex_state = 55}, + [4277] = {.lex_state = 55}, + [4278] = {.lex_state = 55}, + [4279] = {.lex_state = 55}, + [4280] = {.lex_state = 218}, + [4281] = {.lex_state = 218}, + [4282] = {.lex_state = 150}, + [4283] = {.lex_state = 55}, + [4284] = {.lex_state = 55}, + [4285] = {.lex_state = 55}, + [4286] = {.lex_state = 55}, + [4287] = {.lex_state = 55}, + [4288] = {.lex_state = 668}, + [4289] = {.lex_state = 253}, + [4290] = {.lex_state = 55}, + [4291] = {.lex_state = 272}, + [4292] = {.lex_state = 0}, + [4293] = {.lex_state = 55}, + [4294] = {.lex_state = 55}, + [4295] = {.lex_state = 177}, + [4296] = {.lex_state = 291}, + [4297] = {.lex_state = 218}, + [4298] = {.lex_state = 55}, + [4299] = {.lex_state = 55}, + [4300] = {.lex_state = 55}, + [4301] = {.lex_state = 55}, + [4302] = {.lex_state = 55}, + [4303] = {.lex_state = 177}, + [4304] = {.lex_state = 55}, + [4305] = {.lex_state = 272}, + [4306] = {.lex_state = 0}, + [4307] = {.lex_state = 218}, + [4308] = {.lex_state = 55}, + [4309] = {.lex_state = 152}, + [4310] = {.lex_state = 666}, + [4311] = {.lex_state = 55}, + [4312] = {.lex_state = 55}, + [4313] = {.lex_state = 0}, + [4314] = {.lex_state = 253}, + [4315] = {.lex_state = 0}, + [4316] = {.lex_state = 272}, + [4317] = {.lex_state = 0}, + [4318] = {.lex_state = 279}, + [4319] = {.lex_state = 253}, + [4320] = {.lex_state = 258}, + [4321] = {.lex_state = 55}, + [4322] = {.lex_state = 253}, + [4323] = {.lex_state = 55}, + [4324] = {.lex_state = 272}, + [4325] = {.lex_state = 152}, + [4326] = {.lex_state = 55}, + [4327] = {.lex_state = 218}, + [4328] = {.lex_state = 154}, + [4329] = {.lex_state = 218}, + [4330] = {.lex_state = 218}, + [4331] = {.lex_state = 0}, + [4332] = {.lex_state = 272}, [4333] = {.lex_state = 0}, - [4334] = {.lex_state = 31}, - [4335] = {.lex_state = 149}, - [4336] = {.lex_state = 31}, - [4337] = {.lex_state = 31}, - [4338] = {.lex_state = 31}, - [4339] = {.lex_state = 31}, - [4340] = {.lex_state = 31}, - [4341] = {.lex_state = 31}, - [4342] = {.lex_state = 122}, - [4343] = {.lex_state = 245}, - [4344] = {.lex_state = 31}, - [4345] = {.lex_state = 31}, - [4346] = {.lex_state = 31}, - [4347] = {.lex_state = 31}, - [4348] = {.lex_state = 31}, - [4349] = {.lex_state = 122}, - [4350] = {.lex_state = 226}, - [4351] = {.lex_state = 31}, - [4352] = {.lex_state = 0}, - [4353] = {.lex_state = 122}, - [4354] = {.lex_state = 226}, - [4355] = {.lex_state = 0}, - [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 226}, - [4358] = {.lex_state = 0}, - [4359] = {.lex_state = 124}, - [4360] = {.lex_state = 0}, - [4361] = {.lex_state = 0}, + [4334] = {.lex_state = 55}, + [4335] = {.lex_state = 267}, + [4336] = {.lex_state = 280}, + [4337] = {.lex_state = 150}, + [4338] = {.lex_state = 150}, + [4339] = {.lex_state = 272}, + [4340] = {.lex_state = 272}, + [4341] = {.lex_state = 55}, + [4342] = {.lex_state = 150}, + [4343] = {.lex_state = 0}, + [4344] = {.lex_state = 55}, + [4345] = {.lex_state = 55}, + [4346] = {.lex_state = 0}, + [4347] = {.lex_state = 154}, + [4348] = {.lex_state = 1}, + [4349] = {.lex_state = 291}, + [4350] = {.lex_state = 218}, + [4351] = {.lex_state = 208}, + [4352] = {.lex_state = 55}, + [4353] = {.lex_state = 150}, + [4354] = {.lex_state = 177}, + [4355] = {.lex_state = 218}, + [4356] = {.lex_state = 55}, + [4357] = {.lex_state = 253}, + [4358] = {.lex_state = 218}, + [4359] = {.lex_state = 218}, + [4360] = {.lex_state = 55}, + [4361] = {.lex_state = 218}, [4362] = {.lex_state = 0}, - [4363] = {.lex_state = 0}, - [4364] = {.lex_state = 93}, - [4365] = {.lex_state = 190}, - [4366] = {.lex_state = 245}, - [4367] = {.lex_state = 124}, - [4368] = {.lex_state = 129}, - [4369] = {.lex_state = 31}, - [4370] = {.lex_state = 31}, - [4371] = {.lex_state = 31}, - [4372] = {.lex_state = 31}, - [4373] = {.lex_state = 577}, - [4374] = {.lex_state = 124}, - [4375] = {.lex_state = 126}, - [4376] = {.lex_state = 0}, - [4377] = {.lex_state = 124}, - [4378] = {.lex_state = 89}, - [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 124}, - [4381] = {.lex_state = 93}, - [4382] = {.lex_state = 46}, - [4383] = {.lex_state = 0}, + [4363] = {.lex_state = 258}, + [4364] = {.lex_state = 55}, + [4365] = {.lex_state = 150}, + [4366] = {.lex_state = 157}, + [4367] = {.lex_state = 55}, + [4368] = {.lex_state = 218}, + [4369] = {.lex_state = 152}, + [4370] = {.lex_state = 55}, + [4371] = {.lex_state = 272}, + [4372] = {.lex_state = 218}, + [4373] = {.lex_state = 55}, + [4374] = {.lex_state = 218}, + [4375] = {.lex_state = 621}, + [4376] = {.lex_state = 55}, + [4377] = {.lex_state = 55}, + [4378] = {.lex_state = 55}, + [4379] = {.lex_state = 55}, + [4380] = {.lex_state = 55}, + [4381] = {.lex_state = 177}, + [4382] = {.lex_state = 55}, + [4383] = {.lex_state = 218}, [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 0}, - [4386] = {.lex_state = 124}, - [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 124}, - [4389] = {.lex_state = 0}, + [4385] = {.lex_state = 218}, + [4386] = {.lex_state = 55}, + [4387] = {.lex_state = 218}, + [4388] = {.lex_state = 218}, + [4389] = {.lex_state = 218}, [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 624}, + [4391] = {.lex_state = 218}, [4392] = {.lex_state = 0}, - [4393] = {.lex_state = 123}, - [4394] = {.lex_state = 0}, - [4395] = {.lex_state = 0}, - [4396] = {.lex_state = 0}, - [4397] = {.lex_state = 0}, - [4398] = {.lex_state = 126}, - [4399] = {.lex_state = 0}, - [4400] = {.lex_state = 46}, - [4401] = {.lex_state = 34}, - [4402] = {.lex_state = 34}, - [4403] = {.lex_state = 0}, - [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 31}, - [4406] = {.lex_state = 0}, - [4407] = {.lex_state = 123}, - [4408] = {.lex_state = 34}, - [4409] = {.lex_state = 0}, + [4393] = {.lex_state = 218}, + [4394] = {.lex_state = 152}, + [4395] = {.lex_state = 279}, + [4396] = {.lex_state = 208}, + [4397] = {.lex_state = 258}, + [4398] = {.lex_state = 55}, + [4399] = {.lex_state = 621}, + [4400] = {.lex_state = 55}, + [4401] = {.lex_state = 218}, + [4402] = {.lex_state = 55}, + [4403] = {.lex_state = 55}, + [4404] = {.lex_state = 55}, + [4405] = {.lex_state = 55}, + [4406] = {.lex_state = 258}, + [4407] = {.lex_state = 0}, + [4408] = {.lex_state = 150}, + [4409] = {.lex_state = 621}, [4410] = {.lex_state = 0}, - [4411] = {.lex_state = 93}, - [4412] = {.lex_state = 0}, - [4413] = {.lex_state = 93}, - [4414] = {.lex_state = 190}, - [4415] = {.lex_state = 0}, - [4416] = {.lex_state = 0}, - [4417] = {.lex_state = 0}, - [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 0}, - [4420] = {.lex_state = 0}, - [4421] = {.lex_state = 129}, - [4422] = {.lex_state = 0}, - [4423] = {.lex_state = 31}, - [4424] = {.lex_state = 124}, - [4425] = {.lex_state = 124}, - [4426] = {.lex_state = 124}, - [4427] = {.lex_state = 0}, - [4428] = {.lex_state = 271}, - [4429] = {.lex_state = 0}, - [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 34}, + [4411] = {.lex_state = 55}, + [4412] = {.lex_state = 55}, + [4413] = {.lex_state = 55}, + [4414] = {.lex_state = 253}, + [4415] = {.lex_state = 291}, + [4416] = {.lex_state = 152}, + [4417] = {.lex_state = 55}, + [4418] = {.lex_state = 55}, + [4419] = {.lex_state = 152}, + [4420] = {.lex_state = 267}, + [4421] = {.lex_state = 267}, + [4422] = {.lex_state = 157}, + [4423] = {.lex_state = 55}, + [4424] = {.lex_state = 55}, + [4425] = {.lex_state = 291}, + [4426] = {.lex_state = 0}, + [4427] = {.lex_state = 152}, + [4428] = {.lex_state = 272}, + [4429] = {.lex_state = 244}, + [4430] = {.lex_state = 55}, + [4431] = {.lex_state = 0}, [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 0}, - [4434] = {.lex_state = 0}, + [4433] = {.lex_state = 55}, + [4434] = {.lex_state = 157}, [4435] = {.lex_state = 0}, - [4436] = {.lex_state = 124}, - [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 233}, - [4439] = {.lex_state = 149}, - [4440] = {.lex_state = 0}, - [4441] = {.lex_state = 149}, - [4442] = {.lex_state = 0}, - [4443] = {.lex_state = 0}, - [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 149}, - [4446] = {.lex_state = 229}, - [4447] = {.lex_state = 123}, - [4448] = {.lex_state = 149}, - [4449] = {.lex_state = 190}, - [4450] = {.lex_state = 124}, - [4451] = {.lex_state = 124}, - [4452] = {.lex_state = 124}, - [4453] = {.lex_state = 124}, - [4454] = {.lex_state = 149}, - [4455] = {.lex_state = 0}, - [4456] = {.lex_state = 0}, - [4457] = {.lex_state = 0}, - [4458] = {.lex_state = 0}, - [4459] = {.lex_state = 0}, - [4460] = {.lex_state = 31}, - [4461] = {.lex_state = 129}, - [4462] = {.lex_state = 46}, - [4463] = {.lex_state = 46}, - [4464] = {.lex_state = 149}, - [4465] = {.lex_state = 89}, - [4466] = {.lex_state = 46}, - [4467] = {.lex_state = 93}, - [4468] = {.lex_state = 123}, - [4469] = {.lex_state = 611}, - [4470] = {.lex_state = 149}, - [4471] = {.lex_state = 93}, - [4472] = {.lex_state = 123}, - [4473] = {.lex_state = 231}, - [4474] = {.lex_state = 93}, - [4475] = {.lex_state = 229}, - [4476] = {.lex_state = 190}, - [4477] = {.lex_state = 190}, - [4478] = {.lex_state = 190}, - [4479] = {.lex_state = 124}, - [4480] = {.lex_state = 124}, - [4481] = {.lex_state = 0}, - [4482] = {.lex_state = 149}, - [4483] = {.lex_state = 124}, - [4484] = {.lex_state = 149}, - [4485] = {.lex_state = 232}, - [4486] = {.lex_state = 0}, - [4487] = {.lex_state = 0}, + [4436] = {.lex_state = 55}, + [4437] = {.lex_state = 253}, + [4438] = {.lex_state = 55}, + [4439] = {.lex_state = 267}, + [4440] = {.lex_state = 253}, + [4441] = {.lex_state = 210}, + [4442] = {.lex_state = 150}, + [4443] = {.lex_state = 218}, + [4444] = {.lex_state = 55}, + [4445] = {.lex_state = 267}, + [4446] = {.lex_state = 258}, + [4447] = {.lex_state = 55}, + [4448] = {.lex_state = 177}, + [4449] = {.lex_state = 272}, + [4450] = {.lex_state = 151}, + [4451] = {.lex_state = 154}, + [4452] = {.lex_state = 218}, + [4453] = {.lex_state = 152}, + [4454] = {.lex_state = 152}, + [4455] = {.lex_state = 55}, + [4456] = {.lex_state = 55}, + [4457] = {.lex_state = 55}, + [4458] = {.lex_state = 150}, + [4459] = {.lex_state = 272}, + [4460] = {.lex_state = 151}, + [4461] = {.lex_state = 55}, + [4462] = {.lex_state = 621}, + [4463] = {.lex_state = 267}, + [4464] = {.lex_state = 621}, + [4465] = {.lex_state = 55}, + [4466] = {.lex_state = 123}, + [4467] = {.lex_state = 154}, + [4468] = {.lex_state = 55}, + [4469] = {.lex_state = 154}, + [4470] = {.lex_state = 272}, + [4471] = {.lex_state = 272}, + [4472] = {.lex_state = 0}, + [4473] = {.lex_state = 253}, + [4474] = {.lex_state = 621}, + [4475] = {.lex_state = 253}, + [4476] = {.lex_state = 55}, + [4477] = {.lex_state = 150}, + [4478] = {.lex_state = 621}, + [4479] = {.lex_state = 123}, + [4480] = {.lex_state = 152}, + [4481] = {.lex_state = 152}, + [4482] = {.lex_state = 1}, + [4483] = {.lex_state = 152}, + [4484] = {.lex_state = 152}, + [4485] = {.lex_state = 154}, + [4486] = {.lex_state = 154}, + [4487] = {.lex_state = 154}, [4488] = {.lex_state = 0}, - [4489] = {.lex_state = 0}, - [4490] = {.lex_state = 93}, - [4491] = {.lex_state = 278}, - [4492] = {.lex_state = 0}, - [4493] = {.lex_state = 93}, - [4494] = {.lex_state = 0}, - [4495] = {.lex_state = 0}, - [4496] = {.lex_state = 124}, - [4497] = {.lex_state = 93}, - [4498] = {.lex_state = 93}, - [4499] = {.lex_state = 229}, - [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 93}, - [4502] = {.lex_state = 180}, - [4503] = {.lex_state = 31}, - [4504] = {.lex_state = 0}, - [4505] = {.lex_state = 124}, - [4506] = {.lex_state = 124}, - [4507] = {.lex_state = 0}, - [4508] = {.lex_state = 0}, - [4509] = {.lex_state = 93}, - [4510] = {.lex_state = 190}, - [4511] = {.lex_state = 190}, - [4512] = {.lex_state = 93}, - [4513] = {.lex_state = 190}, - [4514] = {.lex_state = 124}, - [4515] = {.lex_state = 190}, - [4516] = {.lex_state = 190}, - [4517] = {.lex_state = 190}, - [4518] = {.lex_state = 0}, - [4519] = {.lex_state = 0}, - [4520] = {.lex_state = 149}, - [4521] = {.lex_state = 0}, - [4522] = {.lex_state = 31}, - [4523] = {.lex_state = 0}, - [4524] = {.lex_state = 124}, + [4489] = {.lex_state = 55}, + [4490] = {.lex_state = 0}, + [4491] = {.lex_state = 152}, + [4492] = {.lex_state = 55}, + [4493] = {.lex_state = 55}, + [4494] = {.lex_state = 55}, + [4495] = {.lex_state = 272}, + [4496] = {.lex_state = 55}, + [4497] = {.lex_state = 55}, + [4498] = {.lex_state = 152}, + [4499] = {.lex_state = 55}, + [4500] = {.lex_state = 55}, + [4501] = {.lex_state = 1}, + [4502] = {.lex_state = 0}, + [4503] = {.lex_state = 55}, + [4504] = {.lex_state = 55}, + [4505] = {.lex_state = 55}, + [4506] = {.lex_state = 159}, + [4507] = {.lex_state = 152}, + [4508] = {.lex_state = 152}, + [4509] = {.lex_state = 210}, + [4510] = {.lex_state = 55}, + [4511] = {.lex_state = 177}, + [4512] = {.lex_state = 258}, + [4513] = {.lex_state = 55}, + [4514] = {.lex_state = 55}, + [4515] = {.lex_state = 272}, + [4516] = {.lex_state = 295}, + [4517] = {.lex_state = 55}, + [4518] = {.lex_state = 152}, + [4519] = {.lex_state = 151}, + [4520] = {.lex_state = 55}, + [4521] = {.lex_state = 258}, + [4522] = {.lex_state = 258}, + [4523] = {.lex_state = 55}, + [4524] = {.lex_state = 272}, [4525] = {.lex_state = 0}, - [4526] = {.lex_state = 124}, + [4526] = {.lex_state = 218}, [4527] = {.lex_state = 0}, - [4528] = {.lex_state = 0}, - [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 278}, - [4531] = {.lex_state = 124}, - [4532] = {.lex_state = 31}, + [4528] = {.lex_state = 55}, + [4529] = {.lex_state = 258}, + [4530] = {.lex_state = 0}, + [4531] = {.lex_state = 0}, + [4532] = {.lex_state = 55}, [4533] = {.lex_state = 0}, - [4534] = {.lex_state = 0}, - [4535] = {.lex_state = 0}, - [4536] = {.lex_state = 124}, - [4537] = {.lex_state = 31}, + [4534] = {.lex_state = 258}, + [4535] = {.lex_state = 218}, + [4536] = {.lex_state = 55}, + [4537] = {.lex_state = 258}, [4538] = {.lex_state = 0}, - [4539] = {.lex_state = 149}, - [4540] = {.lex_state = 629}, - [4541] = {.lex_state = 34}, - [4542] = {.lex_state = 124}, - [4543] = {.lex_state = 149}, - [4544] = {.lex_state = 278}, - [4545] = {.lex_state = 0}, - [4546] = {.lex_state = 0}, - [4547] = {.lex_state = 46}, - [4548] = {.lex_state = 0}, - [4549] = {.lex_state = 124}, - [4550] = {.lex_state = 0}, - [4551] = {.lex_state = 124}, - [4552] = {.lex_state = 34}, - [4553] = {.lex_state = 0}, - [4554] = {.lex_state = 124}, - [4555] = {.lex_state = 31}, - [4556] = {.lex_state = 124}, - [4557] = {.lex_state = 124}, - [4558] = {.lex_state = 124}, - [4559] = {.lex_state = 124}, + [4539] = {.lex_state = 0}, + [4540] = {.lex_state = 0}, + [4541] = {.lex_state = 0}, + [4542] = {.lex_state = 177}, + [4543] = {.lex_state = 258}, + [4544] = {.lex_state = 152}, + [4545] = {.lex_state = 55}, + [4546] = {.lex_state = 177}, + [4547] = {.lex_state = 55}, + [4548] = {.lex_state = 55}, + [4549] = {.lex_state = 621}, + [4550] = {.lex_state = 55}, + [4551] = {.lex_state = 0}, + [4552] = {.lex_state = 152}, + [4553] = {.lex_state = 151}, + [4554] = {.lex_state = 151}, + [4555] = {.lex_state = 259}, + [4556] = {.lex_state = 154}, + [4557] = {.lex_state = 151}, + [4558] = {.lex_state = 260}, + [4559] = {.lex_state = 152}, [4560] = {.lex_state = 0}, [4561] = {.lex_state = 0}, [4562] = {.lex_state = 0}, - [4563] = {.lex_state = 0}, + [4563] = {.lex_state = 157}, [4564] = {.lex_state = 0}, [4565] = {.lex_state = 0}, - [4566] = {.lex_state = 124}, - [4567] = {.lex_state = 0}, - [4568] = {.lex_state = 124}, - [4569] = {.lex_state = 124}, - [4570] = {.lex_state = 124}, - [4571] = {.lex_state = 124}, - [4572] = {.lex_state = 149}, - [4573] = {.lex_state = 271}, - [4574] = {.lex_state = 149}, - [4575] = {.lex_state = 190}, - [4576] = {.lex_state = 190}, - [4577] = {.lex_state = 31}, - [4578] = {.lex_state = 124}, - [4579] = {.lex_state = 31}, - [4580] = {.lex_state = 124}, - [4581] = {.lex_state = 124}, - [4582] = {.lex_state = 0}, - [4583] = {.lex_state = 124}, - [4584] = {.lex_state = 226}, - [4585] = {.lex_state = 0}, - [4586] = {.lex_state = 124}, - [4587] = {.lex_state = 31}, - [4588] = {.lex_state = 124}, - [4589] = {.lex_state = 31}, - [4590] = {.lex_state = 124}, - [4591] = {.lex_state = 31}, - [4592] = {.lex_state = 31}, - [4593] = {.lex_state = 31}, - [4594] = {.lex_state = 254}, - [4595] = {.lex_state = 124}, - [4596] = {.lex_state = 190}, - [4597] = {.lex_state = 31}, - [4598] = {.lex_state = 269}, - [4599] = {.lex_state = 46}, - [4600] = {.lex_state = 93}, - [4601] = {.lex_state = 232}, - [4602] = {.lex_state = 31}, - [4603] = {.lex_state = 34}, - [4604] = {.lex_state = 0}, - [4605] = {.lex_state = 577}, - [4606] = {.lex_state = 190}, - [4607] = {.lex_state = 124}, - [4608] = {.lex_state = 124}, - [4609] = {.lex_state = 93}, - [4610] = {.lex_state = 229}, - [4611] = {.lex_state = 0}, - [4612] = {.lex_state = 42}, - [4613] = {.lex_state = 123}, - [4614] = {.lex_state = 629}, - [4615] = {.lex_state = 124}, - [4616] = {.lex_state = 31}, - [4617] = {.lex_state = 31}, - [4618] = {.lex_state = 149}, - [4619] = {.lex_state = 31}, - [4620] = {.lex_state = 149}, - [4621] = {.lex_state = 93}, + [4566] = {.lex_state = 152}, + [4567] = {.lex_state = 55}, + [4568] = {.lex_state = 218}, + [4569] = {.lex_state = 55}, + [4570] = {.lex_state = 152}, + [4571] = {.lex_state = 55}, + [4572] = {.lex_state = 0}, + [4573] = {.lex_state = 152}, + [4574] = {.lex_state = 123}, + [4575] = {.lex_state = 57}, + [4576] = {.lex_state = 123}, + [4577] = {.lex_state = 123}, + [4578] = {.lex_state = 152}, + [4579] = {.lex_state = 55}, + [4580] = {.lex_state = 177}, + [4581] = {.lex_state = 152}, + [4582] = {.lex_state = 152}, + [4583] = {.lex_state = 71}, + [4584] = {.lex_state = 152}, + [4585] = {.lex_state = 256}, + [4586] = {.lex_state = 218}, + [4587] = {.lex_state = 218}, + [4588] = {.lex_state = 218}, + [4589] = {.lex_state = 55}, + [4590] = {.lex_state = 672}, + [4591] = {.lex_state = 152}, + [4592] = {.lex_state = 152}, + [4593] = {.lex_state = 55}, + [4594] = {.lex_state = 152}, + [4595] = {.lex_state = 55}, + [4596] = {.lex_state = 123}, + [4597] = {.lex_state = 305}, + [4598] = {.lex_state = 123}, + [4599] = {.lex_state = 152}, + [4600] = {.lex_state = 55}, + [4601] = {.lex_state = 218}, + [4602] = {.lex_state = 218}, + [4603] = {.lex_state = 218}, + [4604] = {.lex_state = 55}, + [4605] = {.lex_state = 621}, + [4606] = {.lex_state = 55}, + [4607] = {.lex_state = 0}, + [4608] = {.lex_state = 0}, + [4609] = {.lex_state = 0}, + [4610] = {.lex_state = 55}, + [4611] = {.lex_state = 152}, + [4612] = {.lex_state = 0}, + [4613] = {.lex_state = 655}, + [4614] = {.lex_state = 0}, + [4615] = {.lex_state = 0}, + [4616] = {.lex_state = 57}, + [4617] = {.lex_state = 0}, + [4618] = {.lex_state = 0}, + [4619] = {.lex_state = 55}, + [4620] = {.lex_state = 55}, + [4621] = {.lex_state = 57}, [4622] = {.lex_state = 0}, - [4623] = {.lex_state = 2182}, - [4624] = {.lex_state = 0}, - [4625] = {.lex_state = 2182}, - [4626] = {.lex_state = 2182}, - [4627] = {.lex_state = 2182}, - [4628] = {.lex_state = 2182}, + [4623] = {.lex_state = 0}, + [4624] = {.lex_state = 152}, + [4625] = {.lex_state = 0}, + [4626] = {.lex_state = 55}, + [4627] = {.lex_state = 152}, + [4628] = {.lex_state = 0}, [4629] = {.lex_state = 0}, - [4630] = {.lex_state = 2186}, - [4631] = {.lex_state = 2186}, - [4632] = {.lex_state = 2186}, - [4633] = {.lex_state = 2186}, - [4634] = {.lex_state = 0}, + [4630] = {.lex_state = 55}, + [4631] = {.lex_state = 55}, + [4632] = {.lex_state = 0}, + [4633] = {.lex_state = 123}, + [4634] = {.lex_state = 152}, [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 124}, + [4636] = {.lex_state = 0}, [4637] = {.lex_state = 0}, - [4638] = {.lex_state = 0}, + [4638] = {.lex_state = 256}, [4639] = {.lex_state = 0}, - [4640] = {.lex_state = 629}, - [4641] = {.lex_state = 126}, + [4640] = {.lex_state = 297}, + [4641] = {.lex_state = 123}, [4642] = {.lex_state = 0}, [4643] = {.lex_state = 0}, [4644] = {.lex_state = 0}, - [4645] = {.lex_state = 0}, - [4646] = {.lex_state = 2182}, + [4645] = {.lex_state = 259}, + [4646] = {.lex_state = 0}, [4647] = {.lex_state = 0}, - [4648] = {.lex_state = 0}, - [4649] = {.lex_state = 2186}, - [4650] = {.lex_state = 2186}, - [4651] = {.lex_state = 0}, - [4652] = {.lex_state = 149}, - [4653] = {.lex_state = 229}, - [4654] = {.lex_state = 124}, - [4655] = {.lex_state = 2186}, - [4656] = {.lex_state = 124}, - [4657] = {.lex_state = 2182}, - [4658] = {.lex_state = 2182}, - [4659] = {.lex_state = 0}, - [4660] = {.lex_state = 229}, - [4661] = {.lex_state = 229}, - [4662] = {.lex_state = 0}, - [4663] = {.lex_state = 2182}, + [4648] = {.lex_state = 71}, + [4649] = {.lex_state = 0}, + [4650] = {.lex_state = 177}, + [4651] = {.lex_state = 177}, + [4652] = {.lex_state = 0}, + [4653] = {.lex_state = 71}, + [4654] = {.lex_state = 123}, + [4655] = {.lex_state = 119}, + [4656] = {.lex_state = 256}, + [4657] = {.lex_state = 123}, + [4658] = {.lex_state = 0}, + [4659] = {.lex_state = 177}, + [4660] = {.lex_state = 177}, + [4661] = {.lex_state = 0}, + [4662] = {.lex_state = 151}, + [4663] = {.lex_state = 152}, [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 2182}, - [4666] = {.lex_state = 0}, + [4665] = {.lex_state = 0}, + [4666] = {.lex_state = 71}, [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 0}, - [4669] = {.lex_state = 229}, - [4670] = {.lex_state = 0}, - [4671] = {.lex_state = 229}, - [4672] = {.lex_state = 0}, - [4673] = {.lex_state = 229}, - [4674] = {.lex_state = 578}, + [4668] = {.lex_state = 152}, + [4669] = {.lex_state = 151}, + [4670] = {.lex_state = 123}, + [4671] = {.lex_state = 152}, + [4672] = {.lex_state = 152}, + [4673] = {.lex_state = 123}, + [4674] = {.lex_state = 55}, [4675] = {.lex_state = 0}, - [4676] = {.lex_state = 124}, - [4677] = {.lex_state = 229}, - [4678] = {.lex_state = 124}, - [4679] = {.lex_state = 0}, - [4680] = {.lex_state = 0}, - [4681] = {.lex_state = 124}, - [4682] = {.lex_state = 124}, - [4683] = {.lex_state = 0}, - [4684] = {.lex_state = 124}, - [4685] = {.lex_state = 226}, + [4676] = {.lex_state = 157}, + [4677] = {.lex_state = 0}, + [4678] = {.lex_state = 0}, + [4679] = {.lex_state = 152}, + [4680] = {.lex_state = 1}, + [4681] = {.lex_state = 0}, + [4682] = {.lex_state = 152}, + [4683] = {.lex_state = 123}, + [4684] = {.lex_state = 55}, + [4685] = {.lex_state = 123}, [4686] = {.lex_state = 0}, - [4687] = {.lex_state = 0}, + [4687] = {.lex_state = 152}, [4688] = {.lex_state = 0}, [4689] = {.lex_state = 0}, - [4690] = {.lex_state = 0}, - [4691] = {.lex_state = 0}, + [4690] = {.lex_state = 57}, + [4691] = {.lex_state = 123}, [4692] = {.lex_state = 0}, - [4693] = {.lex_state = 0}, - [4694] = {.lex_state = 0}, - [4695] = {.lex_state = 229}, - [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 229}, - [4698] = {.lex_state = 229}, - [4699] = {.lex_state = 0}, - [4700] = {.lex_state = 123}, - [4701] = {.lex_state = 124}, - [4702] = {.lex_state = 0}, + [4693] = {.lex_state = 123}, + [4694] = {.lex_state = 596}, + [4695] = {.lex_state = 123}, + [4696] = {.lex_state = 208}, + [4697] = {.lex_state = 177}, + [4698] = {.lex_state = 119}, + [4699] = {.lex_state = 57}, + [4700] = {.lex_state = 177}, + [4701] = {.lex_state = 57}, + [4702] = {.lex_state = 152}, [4703] = {.lex_state = 0}, [4704] = {.lex_state = 0}, [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 577}, + [4706] = {.lex_state = 152}, [4707] = {.lex_state = 0}, - [4708] = {.lex_state = 2184}, - [4709] = {.lex_state = 149}, - [4710] = {.lex_state = 124}, - [4711] = {.lex_state = 124}, - [4712] = {.lex_state = 34}, - [4713] = {.lex_state = 229}, - [4714] = {.lex_state = 2186}, - [4715] = {.lex_state = 31}, - [4716] = {.lex_state = 124}, - [4717] = {.lex_state = 124}, - [4718] = {.lex_state = 0}, - [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 124}, - [4721] = {.lex_state = 124}, - [4722] = {.lex_state = 0}, - [4723] = {.lex_state = 229}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 2182}, - [4726] = {.lex_state = 0}, - [4727] = {.lex_state = 124}, - [4728] = {.lex_state = 2184}, - [4729] = {.lex_state = 124}, - [4730] = {.lex_state = 124}, - [4731] = {.lex_state = 124}, - [4732] = {.lex_state = 124}, - [4733] = {.lex_state = 126}, - [4734] = {.lex_state = 0}, - [4735] = {.lex_state = 2184}, - [4736] = {.lex_state = 124}, + [4708] = {.lex_state = 152}, + [4709] = {.lex_state = 0}, + [4710] = {.lex_state = 0}, + [4711] = {.lex_state = 0}, + [4712] = {.lex_state = 0}, + [4713] = {.lex_state = 0}, + [4714] = {.lex_state = 0}, + [4715] = {.lex_state = 0}, + [4716] = {.lex_state = 152}, + [4717] = {.lex_state = 0}, + [4718] = {.lex_state = 305}, + [4719] = {.lex_state = 152}, + [4720] = {.lex_state = 157}, + [4721] = {.lex_state = 305}, + [4722] = {.lex_state = 218}, + [4723] = {.lex_state = 218}, + [4724] = {.lex_state = 152}, + [4725] = {.lex_state = 152}, + [4726] = {.lex_state = 152}, + [4727] = {.lex_state = 297}, + [4728] = {.lex_state = 152}, + [4729] = {.lex_state = 152}, + [4730] = {.lex_state = 152}, + [4731] = {.lex_state = 0}, + [4732] = {.lex_state = 152}, + [4733] = {.lex_state = 177}, + [4734] = {.lex_state = 152}, + [4735] = {.lex_state = 0}, + [4736] = {.lex_state = 177}, [4737] = {.lex_state = 0}, [4738] = {.lex_state = 0}, - [4739] = {.lex_state = 2182}, - [4740] = {.lex_state = 0}, - [4741] = {.lex_state = 123}, - [4742] = {.lex_state = 124}, - [4743] = {.lex_state = 126}, - [4744] = {.lex_state = 124}, - [4745] = {.lex_state = 624}, - [4746] = {.lex_state = 2182}, + [4739] = {.lex_state = 296}, + [4740] = {.lex_state = 71}, + [4741] = {.lex_state = 152}, + [4742] = {.lex_state = 71}, + [4743] = {.lex_state = 0}, + [4744] = {.lex_state = 71}, + [4745] = {.lex_state = 0}, + [4746] = {.lex_state = 0}, [4747] = {.lex_state = 0}, - [4748] = {.lex_state = 124}, - [4749] = {.lex_state = 124}, - [4750] = {.lex_state = 124}, - [4751] = {.lex_state = 2184}, - [4752] = {.lex_state = 577}, - [4753] = {.lex_state = 124}, - [4754] = {.lex_state = 124}, - [4755] = {.lex_state = 2182}, - [4756] = {.lex_state = 0}, - [4757] = {.lex_state = 2182}, - [4758] = {.lex_state = 124}, - [4759] = {.lex_state = 624}, - [4760] = {.lex_state = 149}, - [4761] = {.lex_state = 124}, - [4762] = {.lex_state = 149}, - [4763] = {.lex_state = 0}, - [4764] = {.lex_state = 2184}, - [4765] = {.lex_state = 124}, - [4766] = {.lex_state = 93}, - [4767] = {.lex_state = 124}, - [4768] = {.lex_state = 124}, - [4769] = {.lex_state = 273}, - [4770] = {.lex_state = 124}, - [4771] = {.lex_state = 0}, - [4772] = {.lex_state = 1714}, - [4773] = {.lex_state = 273}, - [4774] = {.lex_state = 124}, - [4775] = {.lex_state = 2182}, - [4776] = {.lex_state = 0}, - [4777] = {.lex_state = 2182}, - [4778] = {.lex_state = 124}, + [4748] = {.lex_state = 253}, + [4749] = {.lex_state = 218}, + [4750] = {.lex_state = 0}, + [4751] = {.lex_state = 0}, + [4752] = {.lex_state = 154}, + [4753] = {.lex_state = 0}, + [4754] = {.lex_state = 177}, + [4755] = {.lex_state = 55}, + [4756] = {.lex_state = 218}, + [4757] = {.lex_state = 152}, + [4758] = {.lex_state = 152}, + [4759] = {.lex_state = 177}, + [4760] = {.lex_state = 218}, + [4761] = {.lex_state = 218}, + [4762] = {.lex_state = 218}, + [4763] = {.lex_state = 55}, + [4764] = {.lex_state = 55}, + [4765] = {.lex_state = 177}, + [4766] = {.lex_state = 152}, + [4767] = {.lex_state = 218}, + [4768] = {.lex_state = 152}, + [4769] = {.lex_state = 0}, + [4770] = {.lex_state = 152}, + [4771] = {.lex_state = 55}, + [4772] = {.lex_state = 55}, + [4773] = {.lex_state = 0}, + [4774] = {.lex_state = 152}, + [4775] = {.lex_state = 152}, + [4776] = {.lex_state = 151}, + [4777] = {.lex_state = 0}, + [4778] = {.lex_state = 0}, [4779] = {.lex_state = 0}, - [4780] = {.lex_state = 124}, + [4780] = {.lex_state = 123}, [4781] = {.lex_state = 0}, - [4782] = {.lex_state = 0}, - [4783] = {.lex_state = 2}, - [4784] = {.lex_state = 31}, - [4785] = {.lex_state = 124}, - [4786] = {.lex_state = 229}, - [4787] = {.lex_state = 229}, - [4788] = {.lex_state = 0}, - [4789] = {.lex_state = 2186}, - [4790] = {.lex_state = 124}, - [4791] = {.lex_state = 123}, - [4792] = {.lex_state = 0}, - [4793] = {.lex_state = 577}, - [4794] = {.lex_state = 577}, - [4795] = {.lex_state = 31}, + [4782] = {.lex_state = 57}, + [4783] = {.lex_state = 256}, + [4784] = {.lex_state = 177}, + [4785] = {.lex_state = 672}, + [4786] = {.lex_state = 177}, + [4787] = {.lex_state = 0}, + [4788] = {.lex_state = 621}, + [4789] = {.lex_state = 256}, + [4790] = {.lex_state = 152}, + [4791] = {.lex_state = 281}, + [4792] = {.lex_state = 123}, + [4793] = {.lex_state = 0}, + [4794] = {.lex_state = 55}, + [4795] = {.lex_state = 0}, [4796] = {.lex_state = 0}, [4797] = {.lex_state = 0}, - [4798] = {.lex_state = 31}, - [4799] = {.lex_state = 31}, + [4798] = {.lex_state = 0}, + [4799] = {.lex_state = 0}, [4800] = {.lex_state = 0}, - [4801] = {.lex_state = 0, .external_lex_state = 3}, - [4802] = {.lex_state = 1189}, + [4801] = {.lex_state = 152}, + [4802] = {.lex_state = 0}, [4803] = {.lex_state = 0}, - [4804] = {.lex_state = 31}, - [4805] = {.lex_state = 0, .external_lex_state = 3}, - [4806] = {.lex_state = 0}, - [4807] = {.lex_state = 31}, - [4808] = {.lex_state = 31}, - [4809] = {.lex_state = 0}, + [4804] = {.lex_state = 152}, + [4805] = {.lex_state = 177}, + [4806] = {.lex_state = 177}, + [4807] = {.lex_state = 258}, + [4808] = {.lex_state = 152}, + [4809] = {.lex_state = 152}, [4810] = {.lex_state = 0}, - [4811] = {.lex_state = 0}, - [4812] = {.lex_state = 0}, - [4813] = {.lex_state = 577}, - [4814] = {.lex_state = 577}, + [4811] = {.lex_state = 152}, + [4812] = {.lex_state = 152}, + [4813] = {.lex_state = 152}, + [4814] = {.lex_state = 0}, [4815] = {.lex_state = 0}, [4816] = {.lex_state = 0}, - [4817] = {.lex_state = 31}, - [4818] = {.lex_state = 1189}, - [4819] = {.lex_state = 0}, - [4820] = {.lex_state = 0}, - [4821] = {.lex_state = 46}, - [4822] = {.lex_state = 0, .external_lex_state = 3}, - [4823] = {.lex_state = 1189}, + [4817] = {.lex_state = 152}, + [4818] = {.lex_state = 0}, + [4819] = {.lex_state = 2418}, + [4820] = {.lex_state = 2418}, + [4821] = {.lex_state = 0}, + [4822] = {.lex_state = 0}, + [4823] = {.lex_state = 2416}, [4824] = {.lex_state = 0}, - [4825] = {.lex_state = 123}, + [4825] = {.lex_state = 154}, [4826] = {.lex_state = 0}, - [4827] = {.lex_state = 31}, + [4827] = {.lex_state = 0}, [4828] = {.lex_state = 0}, [4829] = {.lex_state = 0}, - [4830] = {.lex_state = 577}, - [4831] = {.lex_state = 577}, - [4832] = {.lex_state = 31}, - [4833] = {.lex_state = 1714}, - [4834] = {.lex_state = 577}, - [4835] = {.lex_state = 31}, - [4836] = {.lex_state = 622}, - [4837] = {.lex_state = 0, .external_lex_state = 3}, - [4838] = {.lex_state = 29}, - [4839] = {.lex_state = 31}, + [4830] = {.lex_state = 0}, + [4831] = {.lex_state = 0}, + [4832] = {.lex_state = 177}, + [4833] = {.lex_state = 0}, + [4834] = {.lex_state = 152}, + [4835] = {.lex_state = 0}, + [4836] = {.lex_state = 0}, + [4837] = {.lex_state = 0}, + [4838] = {.lex_state = 0}, + [4839] = {.lex_state = 0}, [4840] = {.lex_state = 0}, - [4841] = {.lex_state = 2184}, + [4841] = {.lex_state = 256}, [4842] = {.lex_state = 0}, [4843] = {.lex_state = 0}, - [4844] = {.lex_state = 577}, - [4845] = {.lex_state = 577}, - [4846] = {.lex_state = 31}, - [4847] = {.lex_state = 0, .external_lex_state = 3}, - [4848] = {.lex_state = 2}, - [4849] = {.lex_state = 46}, - [4850] = {.lex_state = 0, .external_lex_state = 3}, - [4851] = {.lex_state = 229}, + [4844] = {.lex_state = 0}, + [4845] = {.lex_state = 0}, + [4846] = {.lex_state = 152}, + [4847] = {.lex_state = 0}, + [4848] = {.lex_state = 1812}, + [4849] = {.lex_state = 152}, + [4850] = {.lex_state = 256}, + [4851] = {.lex_state = 0}, [4852] = {.lex_state = 0}, - [4853] = {.lex_state = 233}, - [4854] = {.lex_state = 0}, - [4855] = {.lex_state = 0}, - [4856] = {.lex_state = 577}, - [4857] = {.lex_state = 577}, - [4858] = {.lex_state = 0}, - [4859] = {.lex_state = 0}, - [4860] = {.lex_state = 0, .external_lex_state = 3}, - [4861] = {.lex_state = 232}, - [4862] = {.lex_state = 2}, - [4863] = {.lex_state = 0}, - [4864] = {.lex_state = 0}, - [4865] = {.lex_state = 577}, - [4866] = {.lex_state = 577}, - [4867] = {.lex_state = 229}, - [4868] = {.lex_state = 31}, - [4869] = {.lex_state = 0, .external_lex_state = 3}, - [4870] = {.lex_state = 0}, - [4871] = {.lex_state = 31}, - [4872] = {.lex_state = 229}, - [4873] = {.lex_state = 0}, - [4874] = {.lex_state = 577}, - [4875] = {.lex_state = 577}, - [4876] = {.lex_state = 31}, - [4877] = {.lex_state = 2186}, - [4878] = {.lex_state = 0, .external_lex_state = 3}, - [4879] = {.lex_state = 0}, - [4880] = {.lex_state = 0}, - [4881] = {.lex_state = 577}, - [4882] = {.lex_state = 577}, - [4883] = {.lex_state = 0, .external_lex_state = 3}, - [4884] = {.lex_state = 229}, - [4885] = {.lex_state = 0, .external_lex_state = 3}, + [4853] = {.lex_state = 2414}, + [4854] = {.lex_state = 152}, + [4855] = {.lex_state = 621}, + [4856] = {.lex_state = 2414}, + [4857] = {.lex_state = 2414}, + [4858] = {.lex_state = 152}, + [4859] = {.lex_state = 9}, + [4860] = {.lex_state = 2416}, + [4861] = {.lex_state = 2414}, + [4862] = {.lex_state = 0}, + [4863] = {.lex_state = 253}, + [4864] = {.lex_state = 152}, + [4865] = {.lex_state = 152}, + [4866] = {.lex_state = 2414}, + [4867] = {.lex_state = 2414}, + [4868] = {.lex_state = 256}, + [4869] = {.lex_state = 2414}, + [4870] = {.lex_state = 2418}, + [4871] = {.lex_state = 152}, + [4872] = {.lex_state = 152}, + [4873] = {.lex_state = 152}, + [4874] = {.lex_state = 2414}, + [4875] = {.lex_state = 0}, + [4876] = {.lex_state = 299}, + [4877] = {.lex_state = 152}, + [4878] = {.lex_state = 2414}, + [4879] = {.lex_state = 152}, + [4880] = {.lex_state = 152}, + [4881] = {.lex_state = 0}, + [4882] = {.lex_state = 299}, + [4883] = {.lex_state = 2414}, + [4884] = {.lex_state = 152}, + [4885] = {.lex_state = 152}, [4886] = {.lex_state = 0}, - [4887] = {.lex_state = 0}, - [4888] = {.lex_state = 577}, - [4889] = {.lex_state = 577}, - [4890] = {.lex_state = 577}, - [4891] = {.lex_state = 31}, - [4892] = {.lex_state = 0, .external_lex_state = 3}, - [4893] = {.lex_state = 31}, - [4894] = {.lex_state = 0}, - [4895] = {.lex_state = 577}, - [4896] = {.lex_state = 577}, - [4897] = {.lex_state = 31}, - [4898] = {.lex_state = 0}, - [4899] = {.lex_state = 0, .external_lex_state = 3}, - [4900] = {.lex_state = 0}, - [4901] = {.lex_state = 0}, - [4902] = {.lex_state = 577}, - [4903] = {.lex_state = 577}, - [4904] = {.lex_state = 0}, - [4905] = {.lex_state = 2184}, - [4906] = {.lex_state = 0, .external_lex_state = 3}, - [4907] = {.lex_state = 0}, - [4908] = {.lex_state = 0}, - [4909] = {.lex_state = 577}, - [4910] = {.lex_state = 577}, - [4911] = {.lex_state = 0}, - [4912] = {.lex_state = 0, .external_lex_state = 3}, - [4913] = {.lex_state = 0}, - [4914] = {.lex_state = 577}, - [4915] = {.lex_state = 577}, - [4916] = {.lex_state = 0, .external_lex_state = 4}, - [4917] = {.lex_state = 31}, - [4918] = {.lex_state = 229}, - [4919] = {.lex_state = 0}, + [4887] = {.lex_state = 152}, + [4888] = {.lex_state = 0}, + [4889] = {.lex_state = 152}, + [4890] = {.lex_state = 0}, + [4891] = {.lex_state = 2416}, + [4892] = {.lex_state = 0}, + [4893] = {.lex_state = 152}, + [4894] = {.lex_state = 152}, + [4895] = {.lex_state = 151}, + [4896] = {.lex_state = 154}, + [4897] = {.lex_state = 0}, + [4898] = {.lex_state = 2416}, + [4899] = {.lex_state = 152}, + [4900] = {.lex_state = 596}, + [4901] = {.lex_state = 2414}, + [4902] = {.lex_state = 152}, + [4903] = {.lex_state = 152}, + [4904] = {.lex_state = 152}, + [4905] = {.lex_state = 2418}, + [4906] = {.lex_state = 256}, + [4907] = {.lex_state = 152}, + [4908] = {.lex_state = 2418}, + [4909] = {.lex_state = 152}, + [4910] = {.lex_state = 256}, + [4911] = {.lex_state = 152}, + [4912] = {.lex_state = 152}, + [4913] = {.lex_state = 152}, + [4914] = {.lex_state = 2418}, + [4915] = {.lex_state = 2418}, + [4916] = {.lex_state = 152}, + [4917] = {.lex_state = 152}, + [4918] = {.lex_state = 256}, + [4919] = {.lex_state = 152}, [4920] = {.lex_state = 0}, - [4921] = {.lex_state = 1689}, - [4922] = {.lex_state = 1693}, - [4923] = {.lex_state = 664}, - [4924] = {.lex_state = 577}, - [4925] = {.lex_state = 31}, + [4921] = {.lex_state = 2414}, + [4922] = {.lex_state = 0}, + [4923] = {.lex_state = 0}, + [4924] = {.lex_state = 0}, + [4925] = {.lex_state = 0}, [4926] = {.lex_state = 0}, - [4927] = {.lex_state = 232}, - [4928] = {.lex_state = 232}, - [4929] = {.lex_state = 0}, + [4927] = {.lex_state = 152}, + [4928] = {.lex_state = 152}, + [4929] = {.lex_state = 123}, [4930] = {.lex_state = 0}, - [4931] = {.lex_state = 0}, - [4932] = {.lex_state = 0}, - [4933] = {.lex_state = 31}, - [4934] = {.lex_state = 0}, - [4935] = {.lex_state = 29}, - [4936] = {.lex_state = 2186}, - [4937] = {.lex_state = 29}, - [4938] = {.lex_state = 31}, + [4931] = {.lex_state = 151}, + [4932] = {.lex_state = 2414}, + [4933] = {.lex_state = 0}, + [4934] = {.lex_state = 2418}, + [4935] = {.lex_state = 256}, + [4936] = {.lex_state = 2418}, + [4937] = {.lex_state = 0}, + [4938] = {.lex_state = 2416}, [4939] = {.lex_state = 0}, - [4940] = {.lex_state = 577}, - [4941] = {.lex_state = 0}, + [4940] = {.lex_state = 256}, + [4941] = {.lex_state = 256}, [4942] = {.lex_state = 0}, - [4943] = {.lex_state = 624}, + [4943] = {.lex_state = 672}, [4944] = {.lex_state = 0}, - [4945] = {.lex_state = 577}, - [4946] = {.lex_state = 229}, + [4945] = {.lex_state = 0}, + [4946] = {.lex_state = 0}, [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 2182}, + [4948] = {.lex_state = 55}, [4949] = {.lex_state = 0}, - [4950] = {.lex_state = 622}, - [4951] = {.lex_state = 148}, - [4952] = {.lex_state = 1189}, - [4953] = {.lex_state = 31}, - [4954] = {.lex_state = 274}, - [4955] = {.lex_state = 0}, - [4956] = {.lex_state = 577}, - [4957] = {.lex_state = 148}, - [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 622}, - [4960] = {.lex_state = 622}, + [4950] = {.lex_state = 2414}, + [4951] = {.lex_state = 256}, + [4952] = {.lex_state = 256}, + [4953] = {.lex_state = 0}, + [4954] = {.lex_state = 152}, + [4955] = {.lex_state = 55}, + [4956] = {.lex_state = 0}, + [4957] = {.lex_state = 622}, + [4958] = {.lex_state = 2414}, + [4959] = {.lex_state = 2414}, + [4960] = {.lex_state = 0}, [4961] = {.lex_state = 0}, - [4962] = {.lex_state = 1189}, - [4963] = {.lex_state = 148}, - [4964] = {.lex_state = 0}, + [4962] = {.lex_state = 621}, + [4963] = {.lex_state = 256}, + [4964] = {.lex_state = 256}, [4965] = {.lex_state = 0}, - [4966] = {.lex_state = 2184}, - [4967] = {.lex_state = 622}, - [4968] = {.lex_state = 31}, - [4969] = {.lex_state = 29}, - [4970] = {.lex_state = 1189}, - [4971] = {.lex_state = 29}, + [4966] = {.lex_state = 0}, + [4967] = {.lex_state = 0}, + [4968] = {.lex_state = 177}, + [4969] = {.lex_state = 256}, + [4970] = {.lex_state = 154}, + [4971] = {.lex_state = 177}, [4972] = {.lex_state = 0}, - [4973] = {.lex_state = 1689}, + [4973] = {.lex_state = 177}, [4974] = {.lex_state = 0}, - [4975] = {.lex_state = 0}, - [4976] = {.lex_state = 0}, - [4977] = {.lex_state = 2197}, - [4978] = {.lex_state = 123}, - [4979] = {.lex_state = 1189}, - [4980] = {.lex_state = 0}, - [4981] = {.lex_state = 1693}, - [4982] = {.lex_state = 31}, - [4983] = {.lex_state = 31}, + [4975] = {.lex_state = 2414}, + [4976] = {.lex_state = 2414}, + [4977] = {.lex_state = 2414}, + [4978] = {.lex_state = 57}, + [4979] = {.lex_state = 2414}, + [4980] = {.lex_state = 2414}, + [4981] = {.lex_state = 596}, + [4982] = {.lex_state = 2416}, + [4983] = {.lex_state = 0}, [4984] = {.lex_state = 0}, [4985] = {.lex_state = 0}, [4986] = {.lex_state = 0}, - [4987] = {.lex_state = 29}, - [4988] = {.lex_state = 0, .external_lex_state = 3}, - [4989] = {.lex_state = 229}, - [4990] = {.lex_state = 0, .external_lex_state = 3}, - [4991] = {.lex_state = 664}, - [4992] = {.lex_state = 229}, - [4993] = {.lex_state = 0}, - [4994] = {.lex_state = 0}, - [4995] = {.lex_state = 0}, - [4996] = {.lex_state = 229}, - [4997] = {.lex_state = 232}, - [4998] = {.lex_state = 0, .external_lex_state = 4}, - [4999] = {.lex_state = 29}, - [5000] = {.lex_state = 2}, - [5001] = {.lex_state = 123}, - [5002] = {.lex_state = 622}, - [5003] = {.lex_state = 0}, - [5004] = {.lex_state = 31}, - [5005] = {.lex_state = 2}, - [5006] = {.lex_state = 31}, + [4987] = {.lex_state = 55}, + [4988] = {.lex_state = 0}, + [4989] = {.lex_state = 0}, + [4990] = {.lex_state = 0}, + [4991] = {.lex_state = 0}, + [4992] = {.lex_state = 0}, + [4993] = {.lex_state = 55}, + [4994] = {.lex_state = 666}, + [4995] = {.lex_state = 1221}, + [4996] = {.lex_state = 259}, + [4997] = {.lex_state = 0, .external_lex_state = 3}, + [4998] = {.lex_state = 0}, + [4999] = {.lex_state = 53}, + [5000] = {.lex_state = 0}, + [5001] = {.lex_state = 0}, + [5002] = {.lex_state = 55}, + [5003] = {.lex_state = 55}, + [5004] = {.lex_state = 0, .external_lex_state = 4}, + [5005] = {.lex_state = 0}, + [5006] = {.lex_state = 55}, [5007] = {.lex_state = 0}, - [5008] = {.lex_state = 0}, - [5009] = {.lex_state = 123}, + [5008] = {.lex_state = 621}, + [5009] = {.lex_state = 621}, [5010] = {.lex_state = 0}, [5011] = {.lex_state = 0}, [5012] = {.lex_state = 0}, - [5013] = {.lex_state = 0}, - [5014] = {.lex_state = 0}, + [5013] = {.lex_state = 55}, + [5014] = {.lex_state = 260}, [5015] = {.lex_state = 0}, - [5016] = {.lex_state = 0}, - [5017] = {.lex_state = 0}, - [5018] = {.lex_state = 0}, - [5019] = {.lex_state = 31}, + [5016] = {.lex_state = 176}, + [5017] = {.lex_state = 259}, + [5018] = {.lex_state = 256}, + [5019] = {.lex_state = 55}, [5020] = {.lex_state = 0, .external_lex_state = 3}, - [5021] = {.lex_state = 229}, - [5022] = {.lex_state = 0}, - [5023] = {.lex_state = 622}, - [5024] = {.lex_state = 2182}, - [5025] = {.lex_state = 31}, - [5026] = {.lex_state = 29}, - [5027] = {.lex_state = 31}, - [5028] = {.lex_state = 577}, - [5029] = {.lex_state = 0, .external_lex_state = 3}, - [5030] = {.lex_state = 31}, - [5031] = {.lex_state = 577}, - [5032] = {.lex_state = 229}, - [5033] = {.lex_state = 622}, - [5034] = {.lex_state = 31}, + [5021] = {.lex_state = 666}, + [5022] = {.lex_state = 55}, + [5023] = {.lex_state = 666}, + [5024] = {.lex_state = 0}, + [5025] = {.lex_state = 55}, + [5026] = {.lex_state = 621}, + [5027] = {.lex_state = 621}, + [5028] = {.lex_state = 0}, + [5029] = {.lex_state = 621}, + [5030] = {.lex_state = 621}, + [5031] = {.lex_state = 256}, + [5032] = {.lex_state = 0}, + [5033] = {.lex_state = 55}, + [5034] = {.lex_state = 0}, [5035] = {.lex_state = 0}, - [5036] = {.lex_state = 622}, - [5037] = {.lex_state = 577}, - [5038] = {.lex_state = 229}, - [5039] = {.lex_state = 2}, + [5036] = {.lex_state = 256}, + [5037] = {.lex_state = 55}, + [5038] = {.lex_state = 0, .external_lex_state = 3}, + [5039] = {.lex_state = 0}, [5040] = {.lex_state = 0}, [5041] = {.lex_state = 0}, - [5042] = {.lex_state = 1189}, - [5043] = {.lex_state = 0}, + [5042] = {.lex_state = 0}, + [5043] = {.lex_state = 1221}, [5044] = {.lex_state = 0}, - [5045] = {.lex_state = 148}, - [5046] = {.lex_state = 31}, - [5047] = {.lex_state = 0}, - [5048] = {.lex_state = 2182}, - [5049] = {.lex_state = 31}, - [5050] = {.lex_state = 229}, - [5051] = {.lex_state = 0}, - [5052] = {.lex_state = 31}, - [5053] = {.lex_state = 0}, + [5045] = {.lex_state = 0}, + [5046] = {.lex_state = 621}, + [5047] = {.lex_state = 621}, + [5048] = {.lex_state = 55}, + [5049] = {.lex_state = 666}, + [5050] = {.lex_state = 151}, + [5051] = {.lex_state = 2416}, + [5052] = {.lex_state = 0, .external_lex_state = 3}, + [5053] = {.lex_state = 55}, [5054] = {.lex_state = 0}, - [5055] = {.lex_state = 0}, - [5056] = {.lex_state = 0}, - [5057] = {.lex_state = 0, .external_lex_state = 4}, + [5055] = {.lex_state = 1221}, + [5056] = {.lex_state = 1221}, + [5057] = {.lex_state = 666}, [5058] = {.lex_state = 0}, - [5059] = {.lex_state = 1689}, - [5060] = {.lex_state = 1693}, - [5061] = {.lex_state = 0}, - [5062] = {.lex_state = 232}, - [5063] = {.lex_state = 622}, - [5064] = {.lex_state = 624}, - [5065] = {.lex_state = 0}, - [5066] = {.lex_state = 0}, - [5067] = {.lex_state = 31}, - [5068] = {.lex_state = 229}, - [5069] = {.lex_state = 232}, - [5070] = {.lex_state = 577}, - [5071] = {.lex_state = 1189}, - [5072] = {.lex_state = 577}, - [5073] = {.lex_state = 232}, - [5074] = {.lex_state = 0}, - [5075] = {.lex_state = 232}, + [5059] = {.lex_state = 621}, + [5060] = {.lex_state = 621}, + [5061] = {.lex_state = 55}, + [5062] = {.lex_state = 0}, + [5063] = {.lex_state = 9}, + [5064] = {.lex_state = 259}, + [5065] = {.lex_state = 0, .external_lex_state = 3}, + [5066] = {.lex_state = 666}, + [5067] = {.lex_state = 0, .external_lex_state = 3}, + [5068] = {.lex_state = 55}, + [5069] = {.lex_state = 0}, + [5070] = {.lex_state = 256}, + [5071] = {.lex_state = 0}, + [5072] = {.lex_state = 621}, + [5073] = {.lex_state = 621}, + [5074] = {.lex_state = 55}, + [5075] = {.lex_state = 55}, [5076] = {.lex_state = 0}, - [5077] = {.lex_state = 232}, - [5078] = {.lex_state = 577}, - [5079] = {.lex_state = 577}, - [5080] = {.lex_state = 0}, - [5081] = {.lex_state = 0}, - [5082] = {.lex_state = 1189}, - [5083] = {.lex_state = 622}, - [5084] = {.lex_state = 123}, - [5085] = {.lex_state = 0}, - [5086] = {.lex_state = 232}, + [5077] = {.lex_state = 666}, + [5078] = {.lex_state = 0, .external_lex_state = 3}, + [5079] = {.lex_state = 89}, + [5080] = {.lex_state = 55}, + [5081] = {.lex_state = 2414}, + [5082] = {.lex_state = 692}, + [5083] = {.lex_state = 0}, + [5084] = {.lex_state = 621}, + [5085] = {.lex_state = 621}, + [5086] = {.lex_state = 53}, [5087] = {.lex_state = 0}, - [5088] = {.lex_state = 622}, - [5089] = {.lex_state = 624}, - [5090] = {.lex_state = 31}, - [5091] = {.lex_state = 0}, - [5092] = {.lex_state = 622}, - [5093] = {.lex_state = 622}, - [5094] = {.lex_state = 0, .external_lex_state = 4}, - [5095] = {.lex_state = 0}, - [5096] = {.lex_state = 1689}, - [5097] = {.lex_state = 1693}, - [5098] = {.lex_state = 0}, - [5099] = {.lex_state = 624}, - [5100] = {.lex_state = 123}, - [5101] = {.lex_state = 31}, - [5102] = {.lex_state = 0}, - [5103] = {.lex_state = 2}, - [5104] = {.lex_state = 31}, - [5105] = {.lex_state = 31}, - [5106] = {.lex_state = 0, .external_lex_state = 4}, + [5088] = {.lex_state = 0, .external_lex_state = 3}, + [5089] = {.lex_state = 256}, + [5090] = {.lex_state = 0}, + [5091] = {.lex_state = 621}, + [5092] = {.lex_state = 621}, + [5093] = {.lex_state = 53}, + [5094] = {.lex_state = 53}, + [5095] = {.lex_state = 0, .external_lex_state = 3}, + [5096] = {.lex_state = 0}, + [5097] = {.lex_state = 0}, + [5098] = {.lex_state = 621}, + [5099] = {.lex_state = 621}, + [5100] = {.lex_state = 55}, + [5101] = {.lex_state = 256}, + [5102] = {.lex_state = 0, .external_lex_state = 3}, + [5103] = {.lex_state = 55}, + [5104] = {.lex_state = 0}, + [5105] = {.lex_state = 621}, + [5106] = {.lex_state = 621}, [5107] = {.lex_state = 0}, - [5108] = {.lex_state = 1689}, - [5109] = {.lex_state = 1693}, - [5110] = {.lex_state = 0, .external_lex_state = 4}, + [5108] = {.lex_state = 0}, + [5109] = {.lex_state = 0, .external_lex_state = 3}, + [5110] = {.lex_state = 55}, [5111] = {.lex_state = 0}, - [5112] = {.lex_state = 1689}, - [5113] = {.lex_state = 1693}, - [5114] = {.lex_state = 0, .external_lex_state = 4}, - [5115] = {.lex_state = 0}, - [5116] = {.lex_state = 1689}, - [5117] = {.lex_state = 1693}, - [5118] = {.lex_state = 0, .external_lex_state = 4}, - [5119] = {.lex_state = 1689}, - [5120] = {.lex_state = 1693}, - [5121] = {.lex_state = 0, .external_lex_state = 4}, - [5122] = {.lex_state = 1689}, - [5123] = {.lex_state = 1693}, - [5124] = {.lex_state = 0, .external_lex_state = 4}, - [5125] = {.lex_state = 1689}, - [5126] = {.lex_state = 1693}, - [5127] = {.lex_state = 0, .external_lex_state = 4}, - [5128] = {.lex_state = 1689}, - [5129] = {.lex_state = 1693}, - [5130] = {.lex_state = 0, .external_lex_state = 4}, - [5131] = {.lex_state = 1689}, - [5132] = {.lex_state = 1693}, - [5133] = {.lex_state = 0, .external_lex_state = 4}, - [5134] = {.lex_state = 1689}, - [5135] = {.lex_state = 1693}, - [5136] = {.lex_state = 0, .external_lex_state = 4}, - [5137] = {.lex_state = 1689}, - [5138] = {.lex_state = 1693}, - [5139] = {.lex_state = 0, .external_lex_state = 4}, - [5140] = {.lex_state = 1689}, - [5141] = {.lex_state = 1693}, - [5142] = {.lex_state = 0, .external_lex_state = 4}, - [5143] = {.lex_state = 1689}, - [5144] = {.lex_state = 1693}, - [5145] = {.lex_state = 0, .external_lex_state = 4}, - [5146] = {.lex_state = 1689}, - [5147] = {.lex_state = 1693}, - [5148] = {.lex_state = 0, .external_lex_state = 4}, - [5149] = {.lex_state = 1689}, - [5150] = {.lex_state = 1693}, - [5151] = {.lex_state = 0, .external_lex_state = 4}, - [5152] = {.lex_state = 1689}, - [5153] = {.lex_state = 1693}, - [5154] = {.lex_state = 0, .external_lex_state = 4}, - [5155] = {.lex_state = 1689}, - [5156] = {.lex_state = 1693}, - [5157] = {.lex_state = 1189}, - [5158] = {.lex_state = 0, .external_lex_state = 3}, + [5112] = {.lex_state = 621}, + [5113] = {.lex_state = 621}, + [5114] = {.lex_state = 0}, + [5115] = {.lex_state = 151}, + [5116] = {.lex_state = 0, .external_lex_state = 3}, + [5117] = {.lex_state = 176}, + [5118] = {.lex_state = 0}, + [5119] = {.lex_state = 621}, + [5120] = {.lex_state = 621}, + [5121] = {.lex_state = 0}, + [5122] = {.lex_state = 0, .external_lex_state = 3}, + [5123] = {.lex_state = 621}, + [5124] = {.lex_state = 0}, + [5125] = {.lex_state = 621}, + [5126] = {.lex_state = 621}, + [5127] = {.lex_state = 55}, + [5128] = {.lex_state = 0, .external_lex_state = 3}, + [5129] = {.lex_state = 0}, + [5130] = {.lex_state = 0}, + [5131] = {.lex_state = 621}, + [5132] = {.lex_state = 621}, + [5133] = {.lex_state = 621}, + [5134] = {.lex_state = 0, .external_lex_state = 3}, + [5135] = {.lex_state = 0}, + [5136] = {.lex_state = 621}, + [5137] = {.lex_state = 621}, + [5138] = {.lex_state = 0}, + [5139] = {.lex_state = 0, .external_lex_state = 3}, + [5140] = {.lex_state = 0}, + [5141] = {.lex_state = 621}, + [5142] = {.lex_state = 621}, + [5143] = {.lex_state = 0, .external_lex_state = 4}, + [5144] = {.lex_state = 0}, + [5145] = {.lex_state = 0}, + [5146] = {.lex_state = 1221}, + [5147] = {.lex_state = 0}, + [5148] = {.lex_state = 1787}, + [5149] = {.lex_state = 1791}, + [5150] = {.lex_state = 0}, + [5151] = {.lex_state = 1221}, + [5152] = {.lex_state = 0}, + [5153] = {.lex_state = 0}, + [5154] = {.lex_state = 151}, + [5155] = {.lex_state = 9}, + [5156] = {.lex_state = 0}, + [5157] = {.lex_state = 0}, + [5158] = {.lex_state = 0}, [5159] = {.lex_state = 0}, - [5160] = {.lex_state = 0}, - [5161] = {.lex_state = 29}, - [5162] = {.lex_state = 0}, + [5160] = {.lex_state = 9}, + [5161] = {.lex_state = 0}, + [5162] = {.lex_state = 2418}, [5163] = {.lex_state = 0}, - [5164] = {.lex_state = 577}, - [5165] = {.lex_state = 0}, - [5166] = {.lex_state = 239}, - [5167] = {.lex_state = 0}, + [5164] = {.lex_state = 0}, + [5165] = {.lex_state = 55}, + [5166] = {.lex_state = 53}, + [5167] = {.lex_state = 259}, [5168] = {.lex_state = 0}, [5169] = {.lex_state = 0}, - [5170] = {.lex_state = 2186}, - [5171] = {.lex_state = 275}, + [5170] = {.lex_state = 55}, + [5171] = {.lex_state = 2416}, [5172] = {.lex_state = 0}, - [5173] = {.lex_state = 31}, - [5174] = {.lex_state = 0}, - [5175] = {.lex_state = 31}, + [5173] = {.lex_state = 1221}, + [5174] = {.lex_state = 261}, + [5175] = {.lex_state = 302}, [5176] = {.lex_state = 0}, - [5177] = {.lex_state = 0}, + [5177] = {.lex_state = 666}, [5178] = {.lex_state = 0}, - [5179] = {.lex_state = 31}, - [5180] = {.lex_state = 0}, + [5179] = {.lex_state = 621}, + [5180] = {.lex_state = 2418}, [5181] = {.lex_state = 0}, - [5182] = {.lex_state = 1189}, + [5182] = {.lex_state = 0}, [5183] = {.lex_state = 0}, - [5184] = {.lex_state = 31}, - [5185] = {.lex_state = 0}, - [5186] = {.lex_state = 0}, - [5187] = {.lex_state = 577}, - [5188] = {.lex_state = 577}, - [5189] = {.lex_state = 31}, - [5190] = {.lex_state = 0}, - [5191] = {.lex_state = 0}, - [5192] = {.lex_state = 232}, - [5193] = {.lex_state = 1189}, - [5194] = {.lex_state = 622}, - [5195] = {.lex_state = 622}, - [5196] = {.lex_state = 1189}, - [5197] = {.lex_state = 622}, - [5198] = {.lex_state = 31}, - [5199] = {.lex_state = 232}, - [5200] = {.lex_state = 622}, - [5201] = {.lex_state = 29}, - [5202] = {.lex_state = 0}, - [5203] = {(TSStateId)(-1),}, + [5184] = {.lex_state = 0}, + [5185] = {.lex_state = 259}, + [5186] = {.lex_state = 666}, + [5187] = {.lex_state = 666}, + [5188] = {.lex_state = 55}, + [5189] = {.lex_state = 2418}, + [5190] = {.lex_state = 151}, + [5191] = {.lex_state = 55}, + [5192] = {.lex_state = 55}, + [5193] = {.lex_state = 0}, + [5194] = {.lex_state = 53}, + [5195] = {.lex_state = 259}, + [5196] = {.lex_state = 259}, + [5197] = {.lex_state = 151}, + [5198] = {.lex_state = 0}, + [5199] = {.lex_state = 0}, + [5200] = {.lex_state = 0, .external_lex_state = 3}, + [5201] = {.lex_state = 0}, + [5202] = {.lex_state = 256}, + [5203] = {.lex_state = 259}, + [5204] = {.lex_state = 256}, + [5205] = {.lex_state = 666}, + [5206] = {.lex_state = 256}, + [5207] = {.lex_state = 259}, + [5208] = {.lex_state = 256}, + [5209] = {.lex_state = 259}, + [5210] = {.lex_state = 55}, + [5211] = {.lex_state = 0}, + [5212] = {.lex_state = 0}, + [5213] = {.lex_state = 0}, + [5214] = {.lex_state = 55}, + [5215] = {.lex_state = 259}, + [5216] = {.lex_state = 0}, + [5217] = {.lex_state = 0}, + [5218] = {.lex_state = 0}, + [5219] = {.lex_state = 259}, + [5220] = {.lex_state = 0}, + [5221] = {.lex_state = 0, .external_lex_state = 3}, + [5222] = {.lex_state = 666}, + [5223] = {.lex_state = 0}, + [5224] = {.lex_state = 621}, + [5225] = {.lex_state = 621}, + [5226] = {.lex_state = 0}, + [5227] = {.lex_state = 0}, + [5228] = {.lex_state = 1221}, + [5229] = {.lex_state = 55}, + [5230] = {.lex_state = 0}, + [5231] = {.lex_state = 0}, + [5232] = {.lex_state = 9}, + [5233] = {.lex_state = 0}, + [5234] = {.lex_state = 55}, + [5235] = {.lex_state = 256}, + [5236] = {.lex_state = 1221}, + [5237] = {.lex_state = 176}, + [5238] = {.lex_state = 0}, + [5239] = {.lex_state = 0}, + [5240] = {.lex_state = 151}, + [5241] = {.lex_state = 151}, + [5242] = {.lex_state = 0}, + [5243] = {.lex_state = 0}, + [5244] = {.lex_state = 666}, + [5245] = {.lex_state = 1787}, + [5246] = {.lex_state = 55}, + [5247] = {.lex_state = 2414}, + [5248] = {.lex_state = 53}, + [5249] = {.lex_state = 301}, + [5250] = {.lex_state = 0, .external_lex_state = 3}, + [5251] = {.lex_state = 0}, + [5252] = {.lex_state = 0, .external_lex_state = 3}, + [5253] = {.lex_state = 666}, + [5254] = {.lex_state = 1791}, + [5255] = {.lex_state = 256}, + [5256] = {.lex_state = 621}, + [5257] = {.lex_state = 621}, + [5258] = {.lex_state = 0}, + [5259] = {.lex_state = 256}, + [5260] = {.lex_state = 0}, + [5261] = {.lex_state = 0}, + [5262] = {.lex_state = 0}, + [5263] = {.lex_state = 55}, + [5264] = {.lex_state = 55}, + [5265] = {.lex_state = 9}, + [5266] = {.lex_state = 0}, + [5267] = {.lex_state = 0}, + [5268] = {.lex_state = 256}, + [5269] = {.lex_state = 9}, + [5270] = {.lex_state = 0}, + [5271] = {.lex_state = 0}, + [5272] = {.lex_state = 55}, + [5273] = {.lex_state = 0}, + [5274] = {.lex_state = 0, .external_lex_state = 4}, + [5275] = {.lex_state = 0}, + [5276] = {.lex_state = 1787}, + [5277] = {.lex_state = 1791}, + [5278] = {.lex_state = 0}, + [5279] = {.lex_state = 0}, + [5280] = {.lex_state = 55}, + [5281] = {.lex_state = 0}, + [5282] = {.lex_state = 2414}, + [5283] = {.lex_state = 53}, + [5284] = {.lex_state = 0}, + [5285] = {.lex_state = 55}, + [5286] = {.lex_state = 2429}, + [5287] = {.lex_state = 0}, + [5288] = {.lex_state = 55}, + [5289] = {.lex_state = 0}, + [5290] = {.lex_state = 0}, + [5291] = {.lex_state = 621}, + [5292] = {.lex_state = 621}, + [5293] = {.lex_state = 0}, + [5294] = {.lex_state = 0}, + [5295] = {.lex_state = 53}, + [5296] = {.lex_state = 1221}, + [5297] = {.lex_state = 666}, + [5298] = {.lex_state = 9}, + [5299] = {.lex_state = 666}, + [5300] = {.lex_state = 0}, + [5301] = {.lex_state = 0}, + [5302] = {.lex_state = 55}, + [5303] = {.lex_state = 0}, + [5304] = {.lex_state = 621}, + [5305] = {.lex_state = 0}, + [5306] = {.lex_state = 0}, + [5307] = {.lex_state = 621}, + [5308] = {.lex_state = 692}, + [5309] = {.lex_state = 55}, + [5310] = {.lex_state = 0, .external_lex_state = 4}, + [5311] = {.lex_state = 0}, + [5312] = {.lex_state = 1787}, + [5313] = {.lex_state = 1791}, + [5314] = {.lex_state = 0}, + [5315] = {.lex_state = 55}, + [5316] = {.lex_state = 1221}, + [5317] = {.lex_state = 176}, + [5318] = {.lex_state = 0}, + [5319] = {.lex_state = 0}, + [5320] = {.lex_state = 0}, + [5321] = {.lex_state = 0, .external_lex_state = 4}, + [5322] = {.lex_state = 0}, + [5323] = {.lex_state = 1787}, + [5324] = {.lex_state = 1791}, + [5325] = {.lex_state = 0, .external_lex_state = 4}, + [5326] = {.lex_state = 0}, + [5327] = {.lex_state = 1787}, + [5328] = {.lex_state = 1791}, + [5329] = {.lex_state = 0, .external_lex_state = 4}, + [5330] = {.lex_state = 0}, + [5331] = {.lex_state = 1787}, + [5332] = {.lex_state = 1791}, + [5333] = {.lex_state = 0, .external_lex_state = 4}, + [5334] = {.lex_state = 0}, + [5335] = {.lex_state = 1787}, + [5336] = {.lex_state = 1791}, + [5337] = {.lex_state = 0, .external_lex_state = 4}, + [5338] = {.lex_state = 1787}, + [5339] = {.lex_state = 1791}, + [5340] = {.lex_state = 0, .external_lex_state = 4}, + [5341] = {.lex_state = 1787}, + [5342] = {.lex_state = 1791}, + [5343] = {.lex_state = 0, .external_lex_state = 4}, + [5344] = {.lex_state = 1787}, + [5345] = {.lex_state = 1791}, + [5346] = {.lex_state = 0, .external_lex_state = 4}, + [5347] = {.lex_state = 1787}, + [5348] = {.lex_state = 1791}, + [5349] = {.lex_state = 0, .external_lex_state = 4}, + [5350] = {.lex_state = 1787}, + [5351] = {.lex_state = 1791}, + [5352] = {.lex_state = 0, .external_lex_state = 4}, + [5353] = {.lex_state = 1787}, + [5354] = {.lex_state = 1791}, + [5355] = {.lex_state = 0, .external_lex_state = 4}, + [5356] = {.lex_state = 1787}, + [5357] = {.lex_state = 1791}, + [5358] = {.lex_state = 0, .external_lex_state = 4}, + [5359] = {.lex_state = 1787}, + [5360] = {.lex_state = 1791}, + [5361] = {.lex_state = 0, .external_lex_state = 4}, + [5362] = {.lex_state = 1787}, + [5363] = {.lex_state = 1791}, + [5364] = {.lex_state = 0, .external_lex_state = 4}, + [5365] = {.lex_state = 1787}, + [5366] = {.lex_state = 1791}, + [5367] = {.lex_state = 0, .external_lex_state = 4}, + [5368] = {.lex_state = 1787}, + [5369] = {.lex_state = 1791}, + [5370] = {.lex_state = 0, .external_lex_state = 4}, + [5371] = {.lex_state = 1787}, + [5372] = {.lex_state = 1791}, + [5373] = {.lex_state = 0, .external_lex_state = 4}, + [5374] = {.lex_state = 1787}, + [5375] = {.lex_state = 1791}, + [5376] = {.lex_state = 0, .external_lex_state = 4}, + [5377] = {.lex_state = 1787}, + [5378] = {.lex_state = 1791}, + [5379] = {.lex_state = 0, .external_lex_state = 4}, + [5380] = {.lex_state = 1787}, + [5381] = {.lex_state = 1791}, + [5382] = {.lex_state = 0}, + [5383] = {.lex_state = 0}, + [5384] = {.lex_state = 0}, + [5385] = {.lex_state = 55}, + [5386] = {.lex_state = 0}, + [5387] = {.lex_state = 1221}, + [5388] = {.lex_state = 0}, + [5389] = {.lex_state = 621}, + [5390] = {.lex_state = 55}, + [5391] = {.lex_state = 0}, + [5392] = {.lex_state = 55}, + [5393] = {.lex_state = 0}, + [5394] = {.lex_state = 1221}, + [5395] = {.lex_state = 0}, + [5396] = {.lex_state = 0}, + [5397] = {.lex_state = 621}, + [5398] = {.lex_state = 621}, + [5399] = {.lex_state = 0}, + [5400] = {.lex_state = 1812}, + [5401] = {.lex_state = 55}, + [5402] = {.lex_state = 1221}, + [5403] = {.lex_state = 0, .external_lex_state = 3}, + [5404] = {.lex_state = 55}, + [5405] = {.lex_state = 666}, + [5406] = {.lex_state = 256}, + [5407] = {.lex_state = 0, .external_lex_state = 3}, + [5408] = {.lex_state = 666}, + [5409] = {.lex_state = 0}, + [5410] = {.lex_state = 0, .external_lex_state = 3}, + [5411] = {.lex_state = 55}, + [5412] = {.lex_state = 55}, + [5413] = {.lex_state = 0}, + [5414] = {.lex_state = 55}, + [5415] = {.lex_state = 0}, + [5416] = {.lex_state = 0}, + [5417] = {.lex_state = 0}, + [5418] = {.lex_state = 89}, + [5419] = {.lex_state = 55}, + [5420] = {.lex_state = 0}, + [5421] = {.lex_state = 55}, + [5422] = {.lex_state = 55}, + [5423] = {.lex_state = 0}, + [5424] = {.lex_state = 621}, + [5425] = {.lex_state = 621}, + [5426] = {.lex_state = 0}, + [5427] = {.lex_state = 53}, + [5428] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -38322,76 +41564,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [STATE(1)] = { - [sym_nu_script] = STATE(5165), - [sym_shebang] = STATE(71), - [sym__block_body_statement] = STATE(4167), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym__block_body] = STATE(5186), - [sym_cmd_identifier] = STATE(2895), - [aux_sym__repeat_newline] = STATE(4614), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym_nu_script] = STATE(5251), + [sym_shebang] = STATE(40), + [sym__block_body_statement] = STATE(4527), + [sym__declaration] = STATE(4793), + [sym_decl_alias] = STATE(4688), + [sym_stmt_let] = STATE(4562), + [sym_stmt_mut] = STATE(4562), + [sym_stmt_const] = STATE(4562), + [sym_assignment] = STATE(4562), + [sym__mutable_assignment_pattern] = STATE(4572), + [sym__statement] = STATE(4793), + [sym_pipeline] = STATE(4562), + [sym__block_body] = STATE(5415), + [sym_cmd_identifier] = STATE(3080), + [aux_sym__repeat_newline] = STATE(4590), + [sym_attribute_list] = STATE(4605), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4688), + [sym_decl_export] = STATE(4688), + [sym_decl_extern] = STATE(4688), + [sym_decl_module] = STATE(4688), + [sym_decl_use] = STATE(4688), + [sym__ctrl_statement] = STATE(4562), + [sym__ctrl_expression] = STATE(3569), + [sym_ctrl_for] = STATE(4618), + [sym_ctrl_loop] = STATE(4618), + [sym_ctrl_while] = STATE(4618), + [sym_ctrl_if] = STATE(3466), + [sym_ctrl_match] = STATE(3466), + [sym_ctrl_try] = STATE(3466), + [sym_pipe_element] = STATE(3170), + [sym_where_command] = STATE(3569), + [sym__expression] = STATE(2481), + [sym_expr_unary] = STATE(1337), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1337), + [sym__expr_binary_expression] = STATE(2438), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1337), + [sym__value] = STATE(1337), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1320), + [sym_val_variable] = STATE(459), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3569), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym__block_body_repeat1] = STATE(85), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(285), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -38454,85 +41696,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(2)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5055), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym__match_pattern_record_body] = STATE(5085), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(397), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4542), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5284), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(51), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym__match_pattern_record_body] = STATE(5150), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(388), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5287), + [sym_record_entry] = STATE(4671), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(2), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(501), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(510), + [aux_sym__match_pattern_record_body_repeat1] = STATE(794), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38599,83 +41841,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(3)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4919), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4947), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5000), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(28), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(54), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5076), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(3), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38742,83 +41984,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(4)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5011), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(64), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5053), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5262), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(28), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(54), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5076), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(4), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38885,83 +42127,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(5)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4810), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4995), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5198), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(46), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5213), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(5), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39028,83 +42270,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(6)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5178), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5217), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(51), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5287), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(6), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39171,83 +42413,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(7)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5055), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5284), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(51), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5287), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(7), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39314,83 +42556,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(8)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4811), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4995), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5108), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(46), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5213), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(8), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39457,83 +42699,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(9)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5160), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(53), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5176), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5294), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(20), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(58), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5382), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(9), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39600,83 +42842,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(10)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4994), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(57), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5012), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5107), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(23), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(62), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5114), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(10), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39743,83 +42985,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(11)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4900), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(23), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(61), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4929), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5216), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(21), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(66), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5220), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(11), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39886,83 +43128,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(12)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5011), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(64), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5015), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5281), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(25), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(70), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5289), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(12), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40029,83 +43271,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(13)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4898), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4947), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5413), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(27), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(73), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5420), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(13), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40172,83 +43414,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(14)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4898), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4941), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5000), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(28), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(54), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5168), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(14), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40315,83 +43557,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(15)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4810), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5043), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5198), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(46), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5260), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(15), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40458,120 +43700,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(16)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5061), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(66), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5413), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(27), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(73), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(791), + [sym__spread_parenthesized] = STATE(4903), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5270), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(16), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(285), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(795), + [anon_sym_export] = ACTIONS(107), + [anon_sym_alias] = ACTIONS(109), + [anon_sym_let] = ACTIONS(111), + [anon_sym_mut] = ACTIONS(113), + [anon_sym_const] = ACTIONS(115), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(119), + [anon_sym_use] = ACTIONS(121), + [anon_sym_export_DASHenv] = ACTIONS(123), + [anon_sym_extern] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_loop] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_if] = ACTIONS(135), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(141), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(145), + [anon_sym_false] = ACTIONS(145), + [anon_sym_null] = ACTIONS(147), + [aux_sym_cmd_identifier_token3] = ACTIONS(149), + [aux_sym_cmd_identifier_token4] = ACTIONS(149), + [aux_sym_cmd_identifier_token5] = ACTIONS(149), + [sym__newline] = ACTIONS(151), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_PIPE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(241), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(183), + [aux_sym__val_number_decimal_token2] = ACTIONS(185), + [aux_sym__val_number_decimal_token3] = ACTIONS(187), + [aux_sym__val_number_decimal_token4] = ACTIONS(187), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -40584,125 +43837,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(17)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5008), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(69), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5388), + [sym_cmd_identifier] = STATE(3005), + [aux_sym__repeat_newline] = STATE(1387), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(53), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(17), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(285), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(287), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_PIPE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_RBRACE] = ACTIONS(291), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -40720,109 +43974,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(18)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4852), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(55), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5198), + [sym_cmd_identifier] = STATE(3005), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(46), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(18), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(285), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(287), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_PIPE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_RBRACE] = ACTIONS(299), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -40830,10 +44084,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -40851,109 +44105,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(19)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4819), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(44), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5262), + [sym_cmd_identifier] = STATE(3005), + [aux_sym__repeat_newline] = STATE(28), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(54), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(19), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(285), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(287), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_PIPE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_RBRACE] = ACTIONS(301), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -40961,10 +44215,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -40982,109 +44236,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(20)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5185), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(59), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(4988), + [sym_cmd_identifier] = STATE(3005), + [aux_sym__repeat_newline] = STATE(1387), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(60), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(20), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(285), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(287), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_PIPE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -41092,10 +44346,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -41113,109 +44367,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(21)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4811), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5231), + [sym_cmd_identifier] = STATE(3005), + [aux_sym__repeat_newline] = STATE(1387), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(68), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(21), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(285), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(287), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_PIPE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_RBRACE] = ACTIONS(305), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -41223,10 +44477,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -41244,109 +44498,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(22)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4810), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5386), + [sym_cmd_identifier] = STATE(3005), + [aux_sym__repeat_newline] = STATE(1387), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(48), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(285), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(287), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_PIPE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_RBRACE] = ACTIONS(307), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -41354,10 +44608,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -41375,109 +44629,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(23)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4961), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(63), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5163), + [sym_cmd_identifier] = STATE(3005), + [aux_sym__repeat_newline] = STATE(1387), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(64), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(285), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(287), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_PIPE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_RBRACE] = ACTIONS(309), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -41485,10 +44739,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -41506,109 +44760,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(24)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4898), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5108), + [sym_cmd_identifier] = STATE(3005), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(46), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(285), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(287), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_PIPE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_RBRACE] = ACTIONS(311), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -41616,10 +44870,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -41637,109 +44891,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(25)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5172), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(73), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5320), + [sym_cmd_identifier] = STATE(3005), + [aux_sym__repeat_newline] = STATE(1387), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(72), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(285), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(287), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_PIPE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -41747,10 +45001,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -41768,109 +45022,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(26)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4919), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5000), + [sym_cmd_identifier] = STATE(3005), + [aux_sym__repeat_newline] = STATE(28), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(54), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(285), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(287), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_PIPE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -41878,10 +45132,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -41899,118 +45153,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(27)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4983), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(4984), + [sym_cmd_identifier] = STATE(3005), + [aux_sym__repeat_newline] = STATE(1387), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(75), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(27), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(287), [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_PIPE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(331), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(317), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(335), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -42023,123 +45279,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(28)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5184), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5314), + [sym_cmd_identifier] = STATE(3005), + [aux_sym__repeat_newline] = STATE(1387), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym_parameter_pipes] = STATE(39), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(28), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(287), [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_PIPE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(345), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(319), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(347), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -42152,123 +45410,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(29)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5006), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5411), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(29), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(335), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(351), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [anon_sym_RPAREN2] = ACTIONS(339), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -42281,123 +45539,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(30)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5101), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5214), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(30), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(349), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(355), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [anon_sym_RPAREN2] = ACTIONS(351), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -42410,123 +45668,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(31)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4827), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5100), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(31), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(353), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(359), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [anon_sym_RPAREN2] = ACTIONS(355), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -42539,123 +45797,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(32)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5046), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5025), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(32), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(361), + [anon_sym_RPAREN] = ACTIONS(357), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(363), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [anon_sym_RPAREN2] = ACTIONS(359), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -42668,123 +45926,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(33)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5049), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5165), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(33), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(365), + [anon_sym_RPAREN] = ACTIONS(361), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), [anon_sym_RPAREN2] = ACTIONS(363), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -42797,123 +46055,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(34)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4938), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5263), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(34), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(367), + [anon_sym_RPAREN] = ACTIONS(365), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(359), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [anon_sym_RPAREN2] = ACTIONS(367), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -42926,104 +46184,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(35)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4832), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5285), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(35), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), @@ -43031,17 +46289,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_RPAREN] = ACTIONS(369), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [anon_sym_RPAREN2] = ACTIONS(371), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43054,122 +46313,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(36)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5034), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5246), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(36), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(371), + [anon_sym_RPAREN] = ACTIONS(373), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [anon_sym_RPAREN2] = ACTIONS(363), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43182,122 +46442,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(37)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5163), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5280), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(37), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(375), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(373), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [anon_sym_RPAREN2] = ACTIONS(367), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43310,122 +46571,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(38)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5198), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5074), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(38), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(377), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43438,122 +46699,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(39)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4827), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5156), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(39), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(377), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(379), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43566,122 +46827,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(40)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4828), - [sym_cmd_identifier] = STATE(2711), + [sym__block_body_statement] = STATE(4527), + [sym__declaration] = STATE(4793), + [sym_decl_alias] = STATE(4688), + [sym_stmt_let] = STATE(4562), + [sym_stmt_mut] = STATE(4562), + [sym_stmt_const] = STATE(4562), + [sym_assignment] = STATE(4562), + [sym__mutable_assignment_pattern] = STATE(4572), + [sym__statement] = STATE(4793), + [sym_pipeline] = STATE(4562), + [sym__block_body] = STATE(5266), + [sym_cmd_identifier] = STATE(3080), [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4688), + [sym_decl_export] = STATE(4688), + [sym_decl_extern] = STATE(4688), + [sym_decl_module] = STATE(4688), + [sym_decl_use] = STATE(4688), + [sym__ctrl_statement] = STATE(4562), + [sym__ctrl_expression] = STATE(3569), + [sym_ctrl_for] = STATE(4618), + [sym_ctrl_loop] = STATE(4618), + [sym_ctrl_while] = STATE(4618), + [sym_ctrl_if] = STATE(3466), + [sym_ctrl_match] = STATE(3466), + [sym_ctrl_try] = STATE(3466), + [sym_pipe_element] = STATE(3170), + [sym_where_command] = STATE(3569), + [sym__expression] = STATE(2481), + [sym_expr_unary] = STATE(1337), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1337), + [sym__expr_binary_expression] = STATE(2438), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1337), + [sym__value] = STATE(1337), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1320), + [sym_val_variable] = STATE(459), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3569), [sym_comment] = STATE(40), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym__block_body_repeat1] = STATE(85), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(381), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [sym__newline] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(41)] = { + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5103), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(41), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(383), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(379), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43694,122 +47083,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(41)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [STATE(42)] = { + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4868), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5246), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(41), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(42), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(385), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43822,122 +47211,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(42)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4976), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(43)] = { + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5153), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(43), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43954,246 +47343,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(43)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [STATE(44)] = { + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5105), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5191), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(43), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(44)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5081), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44206,122 +47467,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(45)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4859), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5129), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(391), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44339,117 +47600,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(46)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4839), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5399), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(46), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(391), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(393), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44462,122 +47723,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(47)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4983), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5401), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(47), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(395), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44590,122 +47851,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(48)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5090), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5040), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(395), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(397), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44718,122 +47979,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(49)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5174), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5229), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(49), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(399), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(397), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44846,122 +48107,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(50)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5175), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5100), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(401), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44974,122 +48235,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(51)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5046), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5391), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(401), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(403), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45102,122 +48363,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(52)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5049), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5392), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(405), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45230,122 +48491,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(53)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5016), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5211), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(53), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(407), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45363,117 +48624,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(54)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4799), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5318), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(407), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(409), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45486,122 +48747,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(55)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5013), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5080), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(55), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(411), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(409), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45614,122 +48875,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(56)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4893), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5280), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(411), + [anon_sym_RPAREN] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45742,122 +49003,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(57)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4803), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5422), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(57), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(415), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(413), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45870,122 +49131,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(58)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4804), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(4991), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(58), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(415), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(417), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45998,122 +49259,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(59)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4820), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(4993), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(59), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(419), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(417), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -46126,122 +49387,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(60)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5006), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5010), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(60), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(419), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(421), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -46254,122 +49515,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(61)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4964), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5272), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(61), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(423), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(421), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -46382,122 +49643,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(62)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4968), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5169), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(423), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -46510,122 +49771,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(63)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4974), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5170), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(63), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(427), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -46638,122 +49899,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(64)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5065), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5183), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(64), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -46771,117 +50032,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(65)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5067), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5411), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(431), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -46894,122 +50155,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(66)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5074), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5233), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(66), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(433), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47027,117 +50288,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(67)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4798), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5234), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(67), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(433), + [anon_sym_RPAREN] = ACTIONS(435), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47150,122 +50411,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(68)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5238), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(68), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(69)] = { + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4817), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5003), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(69), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(435), + [anon_sym_RPAREN] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47278,122 +50667,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(69)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4858), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(69), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(70)] = { + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5383), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(70), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_RBRACE] = ACTIONS(441), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47410,118 +50799,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(70)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [STATE(71)] = { + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4846), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5385), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(443), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47534,250 +50923,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(71)] = { - [sym__block_body_statement] = STATE(4167), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym__block_body] = STATE(5017), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(71), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(441), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [sym__newline] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, [STATE(72)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4938), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5393), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(443), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(445), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47790,122 +51051,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(73)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4958), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(4986), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(73), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(447), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47923,116 +51184,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(74)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(4987), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(74), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(449), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48045,121 +51307,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(75)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4891), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(4990), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(75), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(87), + [aux_sym__block_body_repeat2] = STATE(97), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(451), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48177,116 +51440,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(76)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5013), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(76), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(86), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(453), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(459), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48299,121 +51563,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(77)] = { - [sym__block_body_statement_parenthesized] = STATE(3767), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5033), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(90), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(455), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48426,121 +51691,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(78)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5052), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5048), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(78), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(457), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48553,248 +51819,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(79)] = { - [sym__block_body_statement] = STATE(4066), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5061), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(79), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(1370), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(459), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [sym__newline] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(459), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(80)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4835), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5165), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(461), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48807,121 +52075,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(81)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4876), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5263), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [sym__newline] = ACTIONS(153), [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(463), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48934,76 +52203,460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(82)] = { - [sym__block_body_statement] = STATE(4066), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5302), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(82), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(83)] = { + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5127), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(464), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(83), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(89), + [aux_sym__block_body_repeat2] = STATE(96), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(467), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(471), + [anon_sym_mut] = ACTIONS(473), + [anon_sym_const] = ACTIONS(475), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(477), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(84)] = { + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5037), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(84), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(85)] = { + [sym__block_body_statement] = STATE(4392), + [sym__declaration] = STATE(4793), + [sym_decl_alias] = STATE(4688), + [sym_stmt_let] = STATE(4562), + [sym_stmt_mut] = STATE(4562), + [sym_stmt_const] = STATE(4562), + [sym_assignment] = STATE(4562), + [sym__mutable_assignment_pattern] = STATE(4572), + [sym__statement] = STATE(4793), + [sym_pipeline] = STATE(4562), + [sym_cmd_identifier] = STATE(3080), + [sym_attribute_list] = STATE(4605), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4688), + [sym_decl_export] = STATE(4688), + [sym_decl_extern] = STATE(4688), + [sym_decl_module] = STATE(4688), + [sym_decl_use] = STATE(4688), + [sym__ctrl_statement] = STATE(4562), + [sym__ctrl_expression] = STATE(3569), + [sym_ctrl_for] = STATE(4618), + [sym_ctrl_loop] = STATE(4618), + [sym_ctrl_while] = STATE(4618), + [sym_ctrl_if] = STATE(3466), + [sym_ctrl_match] = STATE(3466), + [sym_ctrl_try] = STATE(3466), + [sym_pipe_element] = STATE(3170), + [sym_where_command] = STATE(3569), + [sym__expression] = STATE(2481), + [sym_expr_unary] = STATE(1337), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1337), + [sym__expr_binary_expression] = STATE(2438), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1337), + [sym__value] = STATE(1337), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1320), + [sym_val_variable] = STATE(459), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3569), + [sym_comment] = STATE(85), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym__block_body_repeat1] = STATE(1433), + [aux_sym__block_body_repeat2] = STATE(93), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(479), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -49030,6 +52683,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(51), [aux_sym_cmd_identifier_token4] = ACTIONS(51), [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [sym__newline] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), @@ -49061,113 +52716,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(83)] = { - [sym__block_body_statement_parenthesized] = STATE(3767), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [STATE(86)] = { + [sym__block_body_statement_parenthesized] = STATE(3938), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym__parenthesized_body] = STATE(5002), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(91), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(86), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(99), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -49180,117 +52839,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(84)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(84), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(87)] = { + [sym__block_body_statement] = STATE(4196), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(87), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(1404), + [aux_sym__block_body_repeat2] = STATE(95), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(479), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -49307,113 +52970,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(85)] = { - [sym__block_body_statement] = STATE(3918), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(85), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(88)] = { + [sym__block_body_statement_parenthesized] = STATE(3959), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(1404), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(100), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(481), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -49426,117 +53093,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(86)] = { - [sym__block_body_statement] = STATE(3918), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(86), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(89)] = { + [sym__block_body_statement] = STATE(4196), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(464), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(89), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(1404), + [aux_sym__block_body_repeat2] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(467), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(471), + [anon_sym_mut] = ACTIONS(473), + [anon_sym_const] = ACTIONS(475), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(477), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(479), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -49553,113 +53224,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(87)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(87), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(90)] = { + [sym__block_body_statement] = STATE(4106), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym__block_body] = STATE(5315), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(464), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(90), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(89), + [aux_sym__block_body_repeat2] = STATE(96), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(467), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(471), + [anon_sym_mut] = ACTIONS(473), + [anon_sym_const] = ACTIONS(475), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(477), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -49676,195 +53351,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(88)] = { - [sym__block_body_statement] = STATE(4396), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), + [STATE(91)] = { + [sym__block_body_statement] = STATE(4392), + [sym__declaration] = STATE(4793), + [sym_decl_alias] = STATE(4688), + [sym_stmt_let] = STATE(4562), + [sym_stmt_mut] = STATE(4562), + [sym_stmt_const] = STATE(4562), + [sym_assignment] = STATE(4562), + [sym__mutable_assignment_pattern] = STATE(4572), + [sym__statement] = STATE(4793), + [sym_pipeline] = STATE(4562), + [sym_cmd_identifier] = STATE(3080), [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(474), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(88), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(463), - [anon_sym_alias] = ACTIONS(466), - [anon_sym_let] = ACTIONS(469), - [anon_sym_mut] = ACTIONS(472), - [anon_sym_const] = ACTIONS(475), - [aux_sym_cmd_identifier_token1] = ACTIONS(478), - [anon_sym_def] = ACTIONS(481), - [anon_sym_use] = ACTIONS(484), - [anon_sym_export_DASHenv] = ACTIONS(487), - [anon_sym_extern] = ACTIONS(490), - [anon_sym_module] = ACTIONS(493), - [anon_sym_for] = ACTIONS(496), - [anon_sym_loop] = ACTIONS(499), - [anon_sym_while] = ACTIONS(502), - [anon_sym_if] = ACTIONS(505), - [anon_sym_else] = ACTIONS(508), - [anon_sym_try] = ACTIONS(511), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_match] = ACTIONS(514), - [anon_sym_in] = ACTIONS(517), - [anon_sym_true] = ACTIONS(520), - [anon_sym_false] = ACTIONS(520), - [anon_sym_null] = ACTIONS(523), - [aux_sym_cmd_identifier_token3] = ACTIONS(526), - [aux_sym_cmd_identifier_token4] = ACTIONS(526), - [aux_sym_cmd_identifier_token5] = ACTIONS(526), - [anon_sym_AT] = ACTIONS(529), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(538), - [anon_sym_DASH2] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_DOT_DOT] = ACTIONS(547), - [anon_sym_where] = ACTIONS(550), - [aux_sym_expr_unary_token1] = ACTIONS(553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(556), - [anon_sym_DOT_DOT_LT] = ACTIONS(556), - [aux_sym__val_number_decimal_token1] = ACTIONS(559), - [aux_sym__val_number_decimal_token2] = ACTIONS(562), - [aux_sym__val_number_decimal_token3] = ACTIONS(565), - [aux_sym__val_number_decimal_token4] = ACTIONS(565), - [aux_sym__val_number_token1] = ACTIONS(568), - [aux_sym__val_number_token2] = ACTIONS(568), - [aux_sym__val_number_token3] = ACTIONS(568), - [anon_sym_0b] = ACTIONS(571), - [anon_sym_0o] = ACTIONS(574), - [anon_sym_0x] = ACTIONS(574), - [sym_val_date] = ACTIONS(577), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(586), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(598), - }, - [STATE(89)] = { - [sym__block_body_statement] = STATE(4152), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(89), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4688), + [sym_decl_export] = STATE(4688), + [sym_decl_extern] = STATE(4688), + [sym_decl_module] = STATE(4688), + [sym_decl_use] = STATE(4688), + [sym__ctrl_statement] = STATE(4562), + [sym__ctrl_expression] = STATE(3569), + [sym_ctrl_for] = STATE(4618), + [sym_ctrl_loop] = STATE(4618), + [sym_ctrl_while] = STATE(4618), + [sym_ctrl_if] = STATE(3466), + [sym_ctrl_match] = STATE(3466), + [sym_ctrl_try] = STATE(3466), + [sym_pipe_element] = STATE(3170), + [sym_where_command] = STATE(3569), + [sym__expression] = STATE(2481), + [sym_expr_unary] = STATE(1337), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1337), + [sym__expr_binary_expression] = STATE(2438), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1337), + [sym__value] = STATE(1337), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1320), + [sym_val_variable] = STATE(459), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3569), + [sym_comment] = STATE(91), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym__block_body_repeat2] = STATE(94), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -49922,113 +53474,482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(90)] = { - [sym__block_body_statement_parenthesized] = STATE(3820), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [STATE(92)] = { + [sym__block_body_statement_parenthesized] = STATE(4472), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(91), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(483), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(92), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(92), + [anon_sym_export] = ACTIONS(483), + [anon_sym_alias] = ACTIONS(486), + [anon_sym_let] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(492), + [anon_sym_const] = ACTIONS(495), + [aux_sym_cmd_identifier_token1] = ACTIONS(498), + [anon_sym_def] = ACTIONS(501), + [anon_sym_use] = ACTIONS(504), + [anon_sym_export_DASHenv] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(510), + [anon_sym_module] = ACTIONS(513), + [anon_sym_for] = ACTIONS(516), + [anon_sym_loop] = ACTIONS(519), + [anon_sym_while] = ACTIONS(522), + [anon_sym_if] = ACTIONS(525), + [anon_sym_else] = ACTIONS(528), + [anon_sym_try] = ACTIONS(531), + [anon_sym_catch] = ACTIONS(528), + [anon_sym_match] = ACTIONS(534), + [anon_sym_in] = ACTIONS(537), + [anon_sym_true] = ACTIONS(540), + [anon_sym_false] = ACTIONS(540), + [anon_sym_null] = ACTIONS(543), + [aux_sym_cmd_identifier_token3] = ACTIONS(546), + [aux_sym_cmd_identifier_token4] = ACTIONS(546), + [aux_sym_cmd_identifier_token5] = ACTIONS(546), + [anon_sym_AT] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_DASH2] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(567), + [anon_sym_where] = ACTIONS(570), + [aux_sym_expr_unary_token1] = ACTIONS(573), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_DOT_DOT_LT] = ACTIONS(576), + [aux_sym__val_number_decimal_token1] = ACTIONS(579), + [aux_sym__val_number_decimal_token2] = ACTIONS(582), + [aux_sym__val_number_decimal_token3] = ACTIONS(585), + [aux_sym__val_number_decimal_token4] = ACTIONS(585), + [aux_sym__val_number_token1] = ACTIONS(588), + [aux_sym__val_number_token2] = ACTIONS(588), + [aux_sym__val_number_token3] = ACTIONS(588), + [anon_sym_0b] = ACTIONS(591), + [anon_sym_0o] = ACTIONS(594), + [anon_sym_0x] = ACTIONS(594), + [sym_val_date] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(600), + [anon_sym_SQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(606), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(618), + }, + [STATE(93)] = { + [sym__block_body_statement] = STATE(4502), + [sym__declaration] = STATE(4793), + [sym_decl_alias] = STATE(4688), + [sym_stmt_let] = STATE(4562), + [sym_stmt_mut] = STATE(4562), + [sym_stmt_const] = STATE(4562), + [sym_assignment] = STATE(4562), + [sym__mutable_assignment_pattern] = STATE(4572), + [sym__statement] = STATE(4793), + [sym_pipeline] = STATE(4562), + [sym_cmd_identifier] = STATE(3080), + [sym_attribute_list] = STATE(4605), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4688), + [sym_decl_export] = STATE(4688), + [sym_decl_extern] = STATE(4688), + [sym_decl_module] = STATE(4688), + [sym_decl_use] = STATE(4688), + [sym__ctrl_statement] = STATE(4562), + [sym__ctrl_expression] = STATE(3569), + [sym_ctrl_for] = STATE(4618), + [sym_ctrl_loop] = STATE(4618), + [sym_ctrl_while] = STATE(4618), + [sym_ctrl_if] = STATE(3466), + [sym_ctrl_match] = STATE(3466), + [sym_ctrl_try] = STATE(3466), + [sym_pipe_element] = STATE(3170), + [sym_where_command] = STATE(3569), + [sym__expression] = STATE(2481), + [sym_expr_unary] = STATE(1337), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1337), + [sym__expr_binary_expression] = STATE(2438), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1337), + [sym__value] = STATE(1337), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1320), + [sym_val_variable] = STATE(459), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3569), + [sym_comment] = STATE(93), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym__block_body_repeat2] = STATE(94), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(94)] = { + [sym__block_body_statement] = STATE(4731), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(488), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(94), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat2] = STATE(94), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(298), + [anon_sym_export] = ACTIONS(621), + [anon_sym_alias] = ACTIONS(624), + [anon_sym_let] = ACTIONS(627), + [anon_sym_mut] = ACTIONS(630), + [anon_sym_const] = ACTIONS(633), + [aux_sym_cmd_identifier_token1] = ACTIONS(636), + [anon_sym_def] = ACTIONS(639), + [anon_sym_use] = ACTIONS(642), + [anon_sym_export_DASHenv] = ACTIONS(645), + [anon_sym_extern] = ACTIONS(648), + [anon_sym_module] = ACTIONS(651), + [anon_sym_for] = ACTIONS(654), + [anon_sym_loop] = ACTIONS(657), + [anon_sym_while] = ACTIONS(660), + [anon_sym_if] = ACTIONS(663), + [anon_sym_else] = ACTIONS(666), + [anon_sym_try] = ACTIONS(669), + [anon_sym_catch] = ACTIONS(666), + [anon_sym_match] = ACTIONS(672), + [anon_sym_in] = ACTIONS(675), + [anon_sym_true] = ACTIONS(678), + [anon_sym_false] = ACTIONS(678), + [anon_sym_null] = ACTIONS(681), + [aux_sym_cmd_identifier_token3] = ACTIONS(684), + [aux_sym_cmd_identifier_token4] = ACTIONS(684), + [aux_sym_cmd_identifier_token5] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(696), + [anon_sym_DASH2] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_DOT_DOT] = ACTIONS(705), + [anon_sym_where] = ACTIONS(708), + [aux_sym_expr_unary_token1] = ACTIONS(711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(714), + [anon_sym_DOT_DOT_LT] = ACTIONS(714), + [aux_sym__val_number_decimal_token1] = ACTIONS(717), + [aux_sym__val_number_decimal_token2] = ACTIONS(720), + [aux_sym__val_number_decimal_token3] = ACTIONS(723), + [aux_sym__val_number_decimal_token4] = ACTIONS(723), + [aux_sym__val_number_token1] = ACTIONS(726), + [aux_sym__val_number_token2] = ACTIONS(726), + [aux_sym__val_number_token3] = ACTIONS(726), + [anon_sym_0b] = ACTIONS(729), + [anon_sym_0o] = ACTIONS(732), + [anon_sym_0x] = ACTIONS(732), + [sym_val_date] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(741), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(747), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(750), + [anon_sym_CARET] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(756), + }, + [STATE(95)] = { + [sym__block_body_statement] = STATE(4176), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(95), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat2] = STATE(94), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -50041,6008 +53962,6198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(91)] = { - [sym__block_body_statement_parenthesized] = STATE(4147), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(471), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [aux_sym__parenthesized_body_repeat2] = STATE(91), - [anon_sym_export] = ACTIONS(601), - [anon_sym_alias] = ACTIONS(604), - [anon_sym_let] = ACTIONS(607), - [anon_sym_mut] = ACTIONS(610), - [anon_sym_const] = ACTIONS(613), - [aux_sym_cmd_identifier_token1] = ACTIONS(616), - [anon_sym_def] = ACTIONS(619), - [anon_sym_use] = ACTIONS(622), - [anon_sym_export_DASHenv] = ACTIONS(625), - [anon_sym_extern] = ACTIONS(628), - [anon_sym_module] = ACTIONS(631), - [anon_sym_for] = ACTIONS(634), - [anon_sym_loop] = ACTIONS(637), - [anon_sym_while] = ACTIONS(640), - [anon_sym_if] = ACTIONS(643), - [anon_sym_else] = ACTIONS(646), - [anon_sym_try] = ACTIONS(649), - [anon_sym_catch] = ACTIONS(646), - [anon_sym_match] = ACTIONS(652), - [anon_sym_in] = ACTIONS(655), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_null] = ACTIONS(661), - [aux_sym_cmd_identifier_token3] = ACTIONS(664), - [aux_sym_cmd_identifier_token4] = ACTIONS(664), - [aux_sym_cmd_identifier_token5] = ACTIONS(664), - [anon_sym_AT] = ACTIONS(667), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(676), - [anon_sym_DASH2] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_DOT_DOT] = ACTIONS(685), - [anon_sym_where] = ACTIONS(688), - [aux_sym_expr_unary_token1] = ACTIONS(691), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_DOT_DOT_LT] = ACTIONS(694), - [aux_sym__val_number_decimal_token1] = ACTIONS(697), - [aux_sym__val_number_decimal_token2] = ACTIONS(700), - [aux_sym__val_number_decimal_token3] = ACTIONS(703), - [aux_sym__val_number_decimal_token4] = ACTIONS(703), - [aux_sym__val_number_token1] = ACTIONS(706), - [aux_sym__val_number_token2] = ACTIONS(706), - [aux_sym__val_number_token3] = ACTIONS(706), - [anon_sym_0b] = ACTIONS(709), - [anon_sym_0o] = ACTIONS(712), - [anon_sym_0x] = ACTIONS(712), - [sym_val_date] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(721), - [anon_sym_BQUOTE] = ACTIONS(724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(730), - [anon_sym_CARET] = ACTIONS(733), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(736), - }, - [STATE(92)] = { - [sym_comment] = STATE(92), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(745), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_COLON2] = ACTIONS(739), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(93)] = { - [sym_comment] = STATE(93), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(751), - [aux_sym__immediate_decimal_token5] = ACTIONS(753), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_COLON2] = ACTIONS(747), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(94)] = { - [sym_comment] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(757), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(95)] = { - [sym_comment] = STATE(95), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(96)] = { + [sym__block_body_statement] = STATE(4196), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(464), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(96), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(763), - [aux_sym__immediate_decimal_token5] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym__block_body_repeat2] = STATE(94), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(467), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(471), + [anon_sym_mut] = ACTIONS(473), + [anon_sym_const] = ACTIONS(475), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(477), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(97)] = { + [sym__block_body_statement] = STATE(4196), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(462), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(767), - [aux_sym__immediate_decimal_token5] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat2] = STATE(94), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(243), + [anon_sym_alias] = ACTIONS(245), + [anon_sym_let] = ACTIONS(247), + [anon_sym_mut] = ACTIONS(249), + [anon_sym_const] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(98)] = { + [sym__block_body_statement] = STATE(4176), + [sym__declaration] = STATE(4400), + [sym_decl_alias] = STATE(4550), + [sym_stmt_let] = STATE(4447), + [sym_stmt_mut] = STATE(4447), + [sym_stmt_const] = STATE(4447), + [sym_assignment] = STATE(4447), + [sym__mutable_assignment_pattern] = STATE(4476), + [sym__statement] = STATE(4400), + [sym_pipeline] = STATE(4447), + [sym_cmd_identifier] = STATE(3005), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4550), + [sym_decl_export] = STATE(4550), + [sym_decl_extern] = STATE(4550), + [sym_decl_module] = STATE(4550), + [sym_decl_use] = STATE(4550), + [sym__ctrl_statement] = STATE(4447), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(464), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), [sym_comment] = STATE(98), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(775), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_COLON2] = ACTIONS(771), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym__block_body_repeat2] = STATE(94), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(467), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(471), + [anon_sym_mut] = ACTIONS(473), + [anon_sym_const] = ACTIONS(475), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(477), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(99)] = { + [sym__block_body_statement_parenthesized] = STATE(3959), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(99), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(745), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_COLON2] = ACTIONS(739), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(92), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(100)] = { + [sym__block_body_statement_parenthesized] = STATE(3991), + [sym__declaration_parenthesized] = STATE(4619), + [sym_decl_alias_parenthesized] = STATE(4626), + [sym_stmt_let_parenthesized] = STATE(4630), + [sym_stmt_mut_parenthesized] = STATE(4630), + [sym_stmt_const_parenthesized] = STATE(4630), + [sym_assignment_parenthesized] = STATE(4630), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4631), + [sym__statement_parenthesized] = STATE(4619), + [sym_pipeline_parenthesized] = STATE(4630), + [sym_cmd_identifier] = STATE(3098), + [sym_attribute_list] = STATE(4788), + [sym_attribute] = STATE(4875), + [sym_decl_def] = STATE(4626), + [sym_decl_export] = STATE(4626), + [sym_decl_extern] = STATE(4626), + [sym_decl_module] = STATE(4626), + [sym_decl_use] = STATE(4626), + [sym__ctrl_statement] = STATE(4630), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_for] = STATE(4252), + [sym_ctrl_loop] = STATE(4252), + [sym_ctrl_while] = STATE(4252), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(460), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), [sym_comment] = STATE(100), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(779), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym_attribute_list_repeat1] = STATE(4063), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [aux_sym__parenthesized_body_repeat2] = STATE(92), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(255), + [anon_sym_use] = ACTIONS(257), + [anon_sym_export_DASHenv] = ACTIONS(259), + [anon_sym_extern] = ACTIONS(261), + [anon_sym_module] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_loop] = ACTIONS(267), + [anon_sym_while] = ACTIONS(269), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(101)] = { [sym_comment] = STATE(101), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(781), - [aux_sym__immediate_decimal_token5] = ACTIONS(783), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(763), + [aux_sym__immediate_decimal_token5] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_COLON2] = ACTIONS(759), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), [anon_sym_POUND] = ACTIONS(103), }, [STATE(102)] = { [sym_comment] = STATE(102), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(779), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_COLON2] = ACTIONS(767), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(103), }, [STATE(103)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), [sym_comment] = STATE(103), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(779), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_COLON2] = ACTIONS(775), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), }, [STATE(104)] = { [sym_comment] = STATE(104), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(845), - [aux_sym__immediate_decimal_token5] = ACTIONS(847), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(781), + [aux_sym__immediate_decimal_token5] = ACTIONS(783), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), [anon_sym_POUND] = ACTIONS(103), }, [STATE(105)] = { [sym_comment] = STATE(105), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_COLON2] = ACTIONS(771), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [ts_builtin_sym_end] = ACTIONS(769), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(787), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(103), }, [STATE(106)] = { [sym_comment] = STATE(106), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_COLON2] = ACTIONS(849), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(103), }, [STATE(107)] = { [sym_comment] = STATE(107), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(853), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(795), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), [anon_sym_POUND] = ACTIONS(103), }, [STATE(108)] = { [sym_comment] = STATE(108), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_COLON2] = ACTIONS(747), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [ts_builtin_sym_end] = ACTIONS(761), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(797), + [aux_sym__immediate_decimal_token5] = ACTIONS(799), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), [anon_sym_POUND] = ACTIONS(103), }, [STATE(109)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), [sym_comment] = STATE(109), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(855), - [sym__space] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_COLON2] = ACTIONS(858), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_COLON2] = ACTIONS(767), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), }, [STATE(110)] = { [sym_comment] = STATE(110), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(103), }, [STATE(111)] = { [sym_comment] = STATE(111), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(757), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(805), + [aux_sym__immediate_decimal_token5] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), [anon_sym_POUND] = ACTIONS(103), }, [STATE(112)] = { [sym_comment] = STATE(112), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(864), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(809), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, [STATE(113)] = { [sym_comment] = STATE(113), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(813), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(103), }, [STATE(114)] = { [sym_comment] = STATE(114), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(866), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_mod] = ACTIONS(817), + [anon_sym_SLASH_SLASH] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_bit_DASHshl] = ACTIONS(817), + [anon_sym_bit_DASHshr] = ACTIONS(817), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_like] = ACTIONS(817), + [anon_sym_not_DASHlike] = ACTIONS(817), + [anon_sym_bit_DASHand] = ACTIONS(817), + [anon_sym_bit_DASHxor] = ACTIONS(817), + [anon_sym_bit_DASHor] = ACTIONS(817), + [anon_sym_and] = ACTIONS(817), + [anon_sym_xor] = ACTIONS(817), + [anon_sym_or] = ACTIONS(817), + [anon_sym_in2] = ACTIONS(817), + [anon_sym_not_DASHin] = ACTIONS(817), + [anon_sym_has] = ACTIONS(817), + [anon_sym_not_DASHhas] = ACTIONS(817), + [anon_sym_starts_DASHwith] = ACTIONS(817), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(817), + [anon_sym_ends_DASHwith] = ACTIONS(817), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(817), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_LT_EQ] = ACTIONS(817), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_EQ] = ACTIONS(817), + [aux_sym_cmd_identifier_token6] = ACTIONS(821), + [sym__newline] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_err_GT_PIPE] = ACTIONS(815), + [anon_sym_out_GT_PIPE] = ACTIONS(815), + [anon_sym_e_GT_PIPE] = ACTIONS(815), + [anon_sym_o_GT_PIPE] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(815), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(815), + [anon_sym_xor2] = ACTIONS(815), + [anon_sym_or2] = ACTIONS(815), + [anon_sym_not_DASHin2] = ACTIONS(815), + [anon_sym_has2] = ACTIONS(815), + [anon_sym_not_DASHhas2] = ACTIONS(815), + [anon_sym_starts_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(815), + [anon_sym_ends_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(815), + [anon_sym_EQ_EQ2] = ACTIONS(815), + [anon_sym_BANG_EQ2] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(815), + [anon_sym_GT_EQ2] = ACTIONS(815), + [anon_sym_EQ_TILDE2] = ACTIONS(815), + [anon_sym_BANG_TILDE2] = ACTIONS(815), + [anon_sym_like2] = ACTIONS(815), + [anon_sym_not_DASHlike2] = ACTIONS(815), + [anon_sym_STAR_STAR2] = ACTIONS(815), + [anon_sym_PLUS_PLUS2] = ACTIONS(815), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(815), + [anon_sym_SLASH_SLASH2] = ACTIONS(815), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(815), + [anon_sym_bit_DASHshr2] = ACTIONS(815), + [anon_sym_bit_DASHand2] = ACTIONS(815), + [anon_sym_bit_DASHxor2] = ACTIONS(815), + [anon_sym_bit_DASHor2] = ACTIONS(815), + [anon_sym_DOT_DOT2] = ACTIONS(823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(825), + [anon_sym_DOT_DOT_LT2] = ACTIONS(825), + [sym_filesize_unit] = ACTIONS(827), + [sym_duration_unit] = ACTIONS(829), + [anon_sym_COLON2] = ACTIONS(815), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [anon_sym_err_GT_GT] = ACTIONS(815), + [anon_sym_out_GT_GT] = ACTIONS(815), + [anon_sym_e_GT_GT] = ACTIONS(815), + [anon_sym_o_GT_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(103), }, [STATE(115)] = { + [sym_expr_parenthesized] = STATE(2831), + [sym__spread_parenthesized] = STATE(3238), + [sym_val_range] = STATE(3239), + [sym__val_range] = STATE(4656), + [sym__value] = STATE(3239), + [sym_val_nothing] = STATE(3155), + [sym_val_bool] = STATE(2958), + [sym__spread_variable] = STATE(3240), + [sym_val_variable] = STATE(2848), + [sym_val_cellpath] = STATE(3155), + [sym_val_number] = STATE(3155), + [sym__val_number_decimal] = STATE(2580), + [sym__val_number] = STATE(3156), + [sym_val_duration] = STATE(3155), + [sym_val_filesize] = STATE(3155), + [sym_val_binary] = STATE(3155), + [sym_val_string] = STATE(3155), + [sym__raw_str] = STATE(2682), + [sym__str_double_quotes] = STATE(2682), + [sym__str_single_quotes] = STATE(2682), + [sym__str_back_ticks] = STATE(2682), + [sym_val_interpolated] = STATE(3155), + [sym__inter_single_quotes] = STATE(3207), + [sym__inter_double_quotes] = STATE(3208), + [sym_val_list] = STATE(3155), + [sym__spread_list] = STATE(3238), + [sym_val_record] = STATE(3155), + [sym_val_table] = STATE(3155), + [sym_val_closure] = STATE(3155), + [sym__cmd_arg] = STATE(3290), + [sym_redirection] = STATE(3241), + [sym__flag] = STATE(3242), + [sym_short_flag] = STATE(3243), + [sym_long_flag] = STATE(3243), + [sym_unquoted] = STATE(2970), + [sym__unquoted_with_expr] = STATE(3245), + [sym__unquoted_anonymous_prefix] = STATE(4656), [sym_comment] = STATE(115), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(870), - [anon_sym_STAR] = ACTIONS(872), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_mod] = ACTIONS(870), - [anon_sym_SLASH_SLASH] = ACTIONS(870), - [anon_sym_PLUS] = ACTIONS(872), - [anon_sym_DASH] = ACTIONS(870), - [anon_sym_bit_DASHshl] = ACTIONS(870), - [anon_sym_bit_DASHshr] = ACTIONS(870), - [anon_sym_EQ_TILDE] = ACTIONS(870), - [anon_sym_BANG_TILDE] = ACTIONS(870), - [anon_sym_like] = ACTIONS(870), - [anon_sym_not_DASHlike] = ACTIONS(870), - [anon_sym_bit_DASHand] = ACTIONS(870), - [anon_sym_bit_DASHxor] = ACTIONS(870), - [anon_sym_bit_DASHor] = ACTIONS(870), - [anon_sym_and] = ACTIONS(870), - [anon_sym_xor] = ACTIONS(870), - [anon_sym_or] = ACTIONS(870), - [anon_sym_in2] = ACTIONS(870), - [anon_sym_not_DASHin] = ACTIONS(870), - [anon_sym_has] = ACTIONS(870), - [anon_sym_not_DASHhas] = ACTIONS(870), - [anon_sym_starts_DASHwith] = ACTIONS(870), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(870), - [anon_sym_ends_DASHwith] = ACTIONS(870), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(870), - [anon_sym_EQ_EQ] = ACTIONS(870), - [anon_sym_BANG_EQ] = ACTIONS(870), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LT_EQ] = ACTIONS(870), - [anon_sym_GT] = ACTIONS(872), - [anon_sym_GT_EQ] = ACTIONS(870), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(880), - [sym_duration_unit] = ACTIONS(882), - [anon_sym_COLON2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [anon_sym_true] = ACTIONS(831), + [anon_sym_false] = ACTIONS(831), + [anon_sym_null] = ACTIONS(833), + [aux_sym_cmd_identifier_token3] = ACTIONS(835), + [aux_sym_cmd_identifier_token4] = ACTIONS(835), + [aux_sym_cmd_identifier_token5] = ACTIONS(835), + [sym__newline] = ACTIONS(837), + [sym__space] = ACTIONS(837), + [anon_sym_SEMI] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(840), + [anon_sym_err_GT_PIPE] = ACTIONS(840), + [anon_sym_out_GT_PIPE] = ACTIONS(840), + [anon_sym_e_GT_PIPE] = ACTIONS(840), + [anon_sym_o_GT_PIPE] = ACTIONS(840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_DASH2] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_RBRACE] = ACTIONS(840), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(858), + [anon_sym_DOT_DOT_LT] = ACTIONS(858), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(860), + [aux_sym__val_number_decimal_token1] = ACTIONS(862), + [aux_sym__val_number_decimal_token2] = ACTIONS(862), + [aux_sym__val_number_decimal_token3] = ACTIONS(864), + [aux_sym__val_number_decimal_token4] = ACTIONS(864), + [aux_sym__val_number_token1] = ACTIONS(866), + [aux_sym__val_number_token2] = ACTIONS(866), + [aux_sym__val_number_token3] = ACTIONS(866), + [anon_sym_0b] = ACTIONS(868), + [anon_sym_0o] = ACTIONS(870), + [anon_sym_0x] = ACTIONS(870), + [sym_val_date] = ACTIONS(872), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(884), + [anon_sym_COLON2] = ACTIONS(886), + [anon_sym_err_GT] = ACTIONS(888), + [anon_sym_out_GT] = ACTIONS(888), + [anon_sym_e_GT] = ACTIONS(888), + [anon_sym_o_GT] = ACTIONS(888), + [anon_sym_err_PLUSout_GT] = ACTIONS(888), + [anon_sym_out_PLUSerr_GT] = ACTIONS(888), + [anon_sym_o_PLUSe_GT] = ACTIONS(888), + [anon_sym_e_PLUSo_GT] = ACTIONS(888), + [anon_sym_err_GT_GT] = ACTIONS(888), + [anon_sym_out_GT_GT] = ACTIONS(888), + [anon_sym_e_GT_GT] = ACTIONS(888), + [anon_sym_o_GT_GT] = ACTIONS(888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(888), + [aux_sym_unquoted_token1] = ACTIONS(890), [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(892), }, [STATE(116)] = { [sym_comment] = STATE(116), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(890), - [sym_duration_unit] = ACTIONS(892), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [anon_sym_in] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(896), + [anon_sym_SLASH_SLASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_bit_DASHshl] = ACTIONS(896), + [anon_sym_bit_DASHshr] = ACTIONS(896), + [anon_sym_EQ_TILDE] = ACTIONS(896), + [anon_sym_BANG_TILDE] = ACTIONS(896), + [anon_sym_like] = ACTIONS(896), + [anon_sym_not_DASHlike] = ACTIONS(896), + [anon_sym_bit_DASHand] = ACTIONS(896), + [anon_sym_bit_DASHxor] = ACTIONS(896), + [anon_sym_bit_DASHor] = ACTIONS(896), + [anon_sym_and] = ACTIONS(896), + [anon_sym_xor] = ACTIONS(896), + [anon_sym_or] = ACTIONS(896), + [anon_sym_in2] = ACTIONS(896), + [anon_sym_not_DASHin] = ACTIONS(896), + [anon_sym_has] = ACTIONS(896), + [anon_sym_not_DASHhas] = ACTIONS(896), + [anon_sym_starts_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(896), + [anon_sym_ends_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(896), + [aux_sym_cmd_identifier_token6] = ACTIONS(894), + [sym__newline] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_err_GT_PIPE] = ACTIONS(894), + [anon_sym_out_GT_PIPE] = ACTIONS(894), + [anon_sym_e_GT_PIPE] = ACTIONS(894), + [anon_sym_o_GT_PIPE] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), + [anon_sym_GT2] = ACTIONS(894), + [anon_sym_DASH2] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_STAR2] = ACTIONS(894), + [anon_sym_and2] = ACTIONS(894), + [anon_sym_xor2] = ACTIONS(894), + [anon_sym_or2] = ACTIONS(894), + [anon_sym_not_DASHin2] = ACTIONS(894), + [anon_sym_has2] = ACTIONS(894), + [anon_sym_not_DASHhas2] = ACTIONS(894), + [anon_sym_starts_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(894), + [anon_sym_ends_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(894), + [anon_sym_EQ_EQ2] = ACTIONS(894), + [anon_sym_BANG_EQ2] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ2] = ACTIONS(894), + [anon_sym_GT_EQ2] = ACTIONS(894), + [anon_sym_EQ_TILDE2] = ACTIONS(894), + [anon_sym_BANG_TILDE2] = ACTIONS(894), + [anon_sym_like2] = ACTIONS(894), + [anon_sym_not_DASHlike2] = ACTIONS(894), + [anon_sym_STAR_STAR2] = ACTIONS(894), + [anon_sym_PLUS_PLUS2] = ACTIONS(894), + [anon_sym_SLASH2] = ACTIONS(894), + [anon_sym_mod2] = ACTIONS(894), + [anon_sym_SLASH_SLASH2] = ACTIONS(894), + [anon_sym_PLUS2] = ACTIONS(894), + [anon_sym_bit_DASHshl2] = ACTIONS(894), + [anon_sym_bit_DASHshr2] = ACTIONS(894), + [anon_sym_bit_DASHand2] = ACTIONS(894), + [anon_sym_bit_DASHxor2] = ACTIONS(894), + [anon_sym_bit_DASHor2] = ACTIONS(894), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(896), + [anon_sym_COLON2] = ACTIONS(894), + [anon_sym_err_GT] = ACTIONS(894), + [anon_sym_out_GT] = ACTIONS(894), + [anon_sym_e_GT] = ACTIONS(894), + [anon_sym_o_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT] = ACTIONS(894), + [anon_sym_err_GT_GT] = ACTIONS(894), + [anon_sym_out_GT_GT] = ACTIONS(894), + [anon_sym_e_GT_GT] = ACTIONS(894), + [anon_sym_o_GT_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(894), [anon_sym_POUND] = ACTIONS(103), }, [STATE(117)] = { [sym_comment] = STATE(117), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(898), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, [STATE(118)] = { [sym_comment] = STATE(118), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_COLON2] = ACTIONS(759), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), [anon_sym_POUND] = ACTIONS(103), }, [STATE(119)] = { [sym_comment] = STATE(119), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(900), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, [STATE(120)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(3208), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), [sym_comment] = STATE(120), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(894), - [sym__space] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(894), - [anon_sym_PIPE] = ACTIONS(894), - [anon_sym_err_GT_PIPE] = ACTIONS(894), - [anon_sym_out_GT_PIPE] = ACTIONS(894), - [anon_sym_e_GT_PIPE] = ACTIONS(894), - [anon_sym_o_GT_PIPE] = ACTIONS(894), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_RPAREN] = ACTIONS(894), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), }, [STATE(121)] = { [sym_comment] = STATE(121), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(898), - [sym_duration_unit] = ACTIONS(900), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [ts_builtin_sym_end] = ACTIONS(769), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(787), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(103), }, [STATE(122)] = { [sym_comment] = STATE(122), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(902), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_COLON2] = ACTIONS(775), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, [STATE(123)] = { [sym_comment] = STATE(123), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(103), }, [STATE(124)] = { + [sym_expr_parenthesized] = STATE(2831), + [sym__spread_parenthesized] = STATE(3238), + [sym_val_range] = STATE(3239), + [sym__val_range] = STATE(4656), + [sym__value] = STATE(3239), + [sym_val_nothing] = STATE(3155), + [sym_val_bool] = STATE(2958), + [sym__spread_variable] = STATE(3240), + [sym_val_variable] = STATE(2848), + [sym_val_cellpath] = STATE(3155), + [sym_val_number] = STATE(3155), + [sym__val_number_decimal] = STATE(2580), + [sym__val_number] = STATE(3156), + [sym_val_duration] = STATE(3155), + [sym_val_filesize] = STATE(3155), + [sym_val_binary] = STATE(3155), + [sym_val_string] = STATE(3155), + [sym__raw_str] = STATE(2682), + [sym__str_double_quotes] = STATE(2682), + [sym__str_single_quotes] = STATE(2682), + [sym__str_back_ticks] = STATE(2682), + [sym_val_interpolated] = STATE(3155), + [sym__inter_single_quotes] = STATE(3207), + [sym__inter_double_quotes] = STATE(3208), + [sym_val_list] = STATE(3155), + [sym__spread_list] = STATE(3238), + [sym_val_record] = STATE(3155), + [sym_val_table] = STATE(3155), + [sym_val_closure] = STATE(3155), + [sym__cmd_arg] = STATE(3290), + [sym_redirection] = STATE(3241), + [sym__flag] = STATE(3242), + [sym_short_flag] = STATE(3243), + [sym_long_flag] = STATE(3243), + [sym_unquoted] = STATE(2970), + [sym__unquoted_with_expr] = STATE(3245), + [sym__unquoted_anonymous_prefix] = STATE(4656), [sym_comment] = STATE(124), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_true] = ACTIONS(831), + [anon_sym_false] = ACTIONS(831), + [anon_sym_null] = ACTIONS(833), + [aux_sym_cmd_identifier_token3] = ACTIONS(835), + [aux_sym_cmd_identifier_token4] = ACTIONS(835), + [aux_sym_cmd_identifier_token5] = ACTIONS(835), + [sym__newline] = ACTIONS(840), + [sym__space] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(840), + [anon_sym_err_GT_PIPE] = ACTIONS(840), + [anon_sym_out_GT_PIPE] = ACTIONS(840), + [anon_sym_e_GT_PIPE] = ACTIONS(840), + [anon_sym_o_GT_PIPE] = ACTIONS(840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(840), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_DASH2] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_RBRACE] = ACTIONS(840), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(858), + [anon_sym_DOT_DOT_LT] = ACTIONS(858), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(860), + [aux_sym__val_number_decimal_token1] = ACTIONS(862), + [aux_sym__val_number_decimal_token2] = ACTIONS(862), + [aux_sym__val_number_decimal_token3] = ACTIONS(864), + [aux_sym__val_number_decimal_token4] = ACTIONS(864), + [aux_sym__val_number_token1] = ACTIONS(866), + [aux_sym__val_number_token2] = ACTIONS(866), + [aux_sym__val_number_token3] = ACTIONS(866), + [anon_sym_0b] = ACTIONS(868), + [anon_sym_0o] = ACTIONS(870), + [anon_sym_0x] = ACTIONS(870), + [sym_val_date] = ACTIONS(872), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(884), + [anon_sym_err_GT] = ACTIONS(888), + [anon_sym_out_GT] = ACTIONS(888), + [anon_sym_e_GT] = ACTIONS(888), + [anon_sym_o_GT] = ACTIONS(888), + [anon_sym_err_PLUSout_GT] = ACTIONS(888), + [anon_sym_out_PLUSerr_GT] = ACTIONS(888), + [anon_sym_o_PLUSe_GT] = ACTIONS(888), + [anon_sym_e_PLUSo_GT] = ACTIONS(888), + [anon_sym_err_GT_GT] = ACTIONS(888), + [anon_sym_out_GT_GT] = ACTIONS(888), + [anon_sym_e_GT_GT] = ACTIONS(888), + [anon_sym_o_GT_GT] = ACTIONS(888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(888), + [aux_sym_unquoted_token1] = ACTIONS(890), [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(892), }, [STATE(125)] = { [sym_comment] = STATE(125), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [ts_builtin_sym_end] = ACTIONS(904), + [anon_sym_in] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_SLASH] = ACTIONS(908), + [anon_sym_mod] = ACTIONS(906), + [anon_sym_SLASH_SLASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_bit_DASHshl] = ACTIONS(906), + [anon_sym_bit_DASHshr] = ACTIONS(906), + [anon_sym_EQ_TILDE] = ACTIONS(906), + [anon_sym_BANG_TILDE] = ACTIONS(906), + [anon_sym_like] = ACTIONS(906), + [anon_sym_not_DASHlike] = ACTIONS(906), + [anon_sym_bit_DASHand] = ACTIONS(906), + [anon_sym_bit_DASHxor] = ACTIONS(906), + [anon_sym_bit_DASHor] = ACTIONS(906), + [anon_sym_and] = ACTIONS(906), + [anon_sym_xor] = ACTIONS(906), + [anon_sym_or] = ACTIONS(906), + [anon_sym_in2] = ACTIONS(906), + [anon_sym_not_DASHin] = ACTIONS(906), + [anon_sym_has] = ACTIONS(906), + [anon_sym_not_DASHhas] = ACTIONS(906), + [anon_sym_starts_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), + [anon_sym_ends_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), + [anon_sym_EQ_EQ] = ACTIONS(906), + [anon_sym_BANG_EQ] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(906), + [aux_sym_cmd_identifier_token6] = ACTIONS(910), + [sym__newline] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_err_GT_PIPE] = ACTIONS(815), + [anon_sym_out_GT_PIPE] = ACTIONS(815), + [anon_sym_e_GT_PIPE] = ACTIONS(815), + [anon_sym_o_GT_PIPE] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(815), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(815), + [anon_sym_xor2] = ACTIONS(815), + [anon_sym_or2] = ACTIONS(815), + [anon_sym_not_DASHin2] = ACTIONS(815), + [anon_sym_has2] = ACTIONS(815), + [anon_sym_not_DASHhas2] = ACTIONS(815), + [anon_sym_starts_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(815), + [anon_sym_ends_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(815), + [anon_sym_EQ_EQ2] = ACTIONS(815), + [anon_sym_BANG_EQ2] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(815), + [anon_sym_GT_EQ2] = ACTIONS(815), + [anon_sym_EQ_TILDE2] = ACTIONS(815), + [anon_sym_BANG_TILDE2] = ACTIONS(815), + [anon_sym_like2] = ACTIONS(815), + [anon_sym_not_DASHlike2] = ACTIONS(815), + [anon_sym_STAR_STAR2] = ACTIONS(815), + [anon_sym_PLUS_PLUS2] = ACTIONS(815), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(815), + [anon_sym_SLASH_SLASH2] = ACTIONS(815), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(815), + [anon_sym_bit_DASHshr2] = ACTIONS(815), + [anon_sym_bit_DASHand2] = ACTIONS(815), + [anon_sym_bit_DASHxor2] = ACTIONS(815), + [anon_sym_bit_DASHor2] = ACTIONS(815), + [anon_sym_DOT_DOT2] = ACTIONS(912), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(914), + [anon_sym_DOT_DOT_LT2] = ACTIONS(914), + [sym_filesize_unit] = ACTIONS(916), + [sym_duration_unit] = ACTIONS(918), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [anon_sym_err_GT_GT] = ACTIONS(815), + [anon_sym_out_GT_GT] = ACTIONS(815), + [anon_sym_e_GT_GT] = ACTIONS(815), + [anon_sym_o_GT_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(103), }, [STATE(126)] = { [sym_comment] = STATE(126), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [ts_builtin_sym_end] = ACTIONS(896), + [anon_sym_in] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(896), + [anon_sym_SLASH_SLASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_bit_DASHshl] = ACTIONS(896), + [anon_sym_bit_DASHshr] = ACTIONS(896), + [anon_sym_EQ_TILDE] = ACTIONS(896), + [anon_sym_BANG_TILDE] = ACTIONS(896), + [anon_sym_like] = ACTIONS(896), + [anon_sym_not_DASHlike] = ACTIONS(896), + [anon_sym_bit_DASHand] = ACTIONS(896), + [anon_sym_bit_DASHxor] = ACTIONS(896), + [anon_sym_bit_DASHor] = ACTIONS(896), + [anon_sym_and] = ACTIONS(896), + [anon_sym_xor] = ACTIONS(896), + [anon_sym_or] = ACTIONS(896), + [anon_sym_in2] = ACTIONS(896), + [anon_sym_not_DASHin] = ACTIONS(896), + [anon_sym_has] = ACTIONS(896), + [anon_sym_not_DASHhas] = ACTIONS(896), + [anon_sym_starts_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(896), + [anon_sym_ends_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(896), + [aux_sym_cmd_identifier_token6] = ACTIONS(894), + [sym__newline] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_err_GT_PIPE] = ACTIONS(894), + [anon_sym_out_GT_PIPE] = ACTIONS(894), + [anon_sym_e_GT_PIPE] = ACTIONS(894), + [anon_sym_o_GT_PIPE] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), + [anon_sym_GT2] = ACTIONS(894), + [anon_sym_DASH2] = ACTIONS(894), + [anon_sym_STAR2] = ACTIONS(894), + [anon_sym_and2] = ACTIONS(894), + [anon_sym_xor2] = ACTIONS(894), + [anon_sym_or2] = ACTIONS(894), + [anon_sym_not_DASHin2] = ACTIONS(894), + [anon_sym_has2] = ACTIONS(894), + [anon_sym_not_DASHhas2] = ACTIONS(894), + [anon_sym_starts_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(894), + [anon_sym_ends_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(894), + [anon_sym_EQ_EQ2] = ACTIONS(894), + [anon_sym_BANG_EQ2] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ2] = ACTIONS(894), + [anon_sym_GT_EQ2] = ACTIONS(894), + [anon_sym_EQ_TILDE2] = ACTIONS(894), + [anon_sym_BANG_TILDE2] = ACTIONS(894), + [anon_sym_like2] = ACTIONS(894), + [anon_sym_not_DASHlike2] = ACTIONS(894), + [anon_sym_STAR_STAR2] = ACTIONS(894), + [anon_sym_PLUS_PLUS2] = ACTIONS(894), + [anon_sym_SLASH2] = ACTIONS(894), + [anon_sym_mod2] = ACTIONS(894), + [anon_sym_SLASH_SLASH2] = ACTIONS(894), + [anon_sym_PLUS2] = ACTIONS(894), + [anon_sym_bit_DASHshl2] = ACTIONS(894), + [anon_sym_bit_DASHshr2] = ACTIONS(894), + [anon_sym_bit_DASHand2] = ACTIONS(894), + [anon_sym_bit_DASHxor2] = ACTIONS(894), + [anon_sym_bit_DASHor2] = ACTIONS(894), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(896), + [anon_sym_err_GT] = ACTIONS(894), + [anon_sym_out_GT] = ACTIONS(894), + [anon_sym_e_GT] = ACTIONS(894), + [anon_sym_o_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT] = ACTIONS(894), + [anon_sym_err_GT_GT] = ACTIONS(894), + [anon_sym_out_GT_GT] = ACTIONS(894), + [anon_sym_e_GT_GT] = ACTIONS(894), + [anon_sym_o_GT_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(894), [anon_sym_POUND] = ACTIONS(103), }, [STATE(127)] = { [sym_comment] = STATE(127), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), [anon_sym_POUND] = ACTIONS(103), }, [STATE(128)] = { - [sym_expr_parenthesized] = STATE(2728), - [sym__spread_parenthesized] = STATE(3085), - [sym_val_range] = STATE(3166), - [sym__val_range] = STATE(4446), - [sym__value] = STATE(3166), - [sym_val_nothing] = STATE(3180), - [sym_val_bool] = STATE(2876), - [sym__spread_variable] = STATE(3170), - [sym_val_variable] = STATE(2645), - [sym_val_cellpath] = STATE(3180), - [sym_val_number] = STATE(3180), - [sym__val_number_decimal] = STATE(2397), - [sym__val_number] = STATE(3203), - [sym_val_duration] = STATE(3180), - [sym_val_filesize] = STATE(3180), - [sym_val_binary] = STATE(3180), - [sym_val_string] = STATE(3180), - [sym__raw_str] = STATE(2472), - [sym__str_double_quotes] = STATE(2472), - [sym__str_single_quotes] = STATE(2472), - [sym__str_back_ticks] = STATE(2472), - [sym_val_interpolated] = STATE(3180), - [sym__inter_single_quotes] = STATE(3091), - [sym__inter_double_quotes] = STATE(3098), - [sym_val_list] = STATE(3180), - [sym__spread_list] = STATE(3085), - [sym_val_record] = STATE(3180), - [sym_val_table] = STATE(3180), - [sym_val_closure] = STATE(3180), - [sym__cmd_arg] = STATE(3176), - [sym_redirection] = STATE(3181), - [sym__flag] = STATE(3196), - [sym_short_flag] = STATE(3210), - [sym_long_flag] = STATE(3210), - [sym_unquoted] = STATE(2832), - [sym__unquoted_with_expr] = STATE(3150), - [sym__unquoted_anonymous_prefix] = STATE(4446), [sym_comment] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_true] = ACTIONS(904), - [anon_sym_false] = ACTIONS(904), - [anon_sym_null] = ACTIONS(906), - [aux_sym_cmd_identifier_token3] = ACTIONS(908), - [aux_sym_cmd_identifier_token4] = ACTIONS(908), - [aux_sym_cmd_identifier_token5] = ACTIONS(908), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(910), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_DASH2] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(926), - [anon_sym_DOT_DOT_LT] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(928), - [aux_sym__val_number_decimal_token1] = ACTIONS(930), - [aux_sym__val_number_decimal_token2] = ACTIONS(930), - [aux_sym__val_number_decimal_token3] = ACTIONS(932), - [aux_sym__val_number_decimal_token4] = ACTIONS(932), - [aux_sym__val_number_token1] = ACTIONS(934), - [aux_sym__val_number_token2] = ACTIONS(934), - [aux_sym__val_number_token3] = ACTIONS(934), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(938), - [anon_sym_0x] = ACTIONS(938), - [sym_val_date] = ACTIONS(940), - [anon_sym_DQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_BQUOTE] = ACTIONS(946), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(952), - [anon_sym_err_GT] = ACTIONS(954), - [anon_sym_out_GT] = ACTIONS(954), - [anon_sym_e_GT] = ACTIONS(954), - [anon_sym_o_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT] = ACTIONS(954), - [anon_sym_err_GT_GT] = ACTIONS(954), - [anon_sym_out_GT_GT] = ACTIONS(954), - [anon_sym_e_GT_GT] = ACTIONS(954), - [anon_sym_o_GT_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), - [aux_sym_unquoted_token1] = ACTIONS(956), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(958), }, [STATE(129)] = { [sym_comment] = STATE(129), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(896), + [anon_sym_SLASH_SLASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_bit_DASHshl] = ACTIONS(896), + [anon_sym_bit_DASHshr] = ACTIONS(896), + [anon_sym_EQ_TILDE] = ACTIONS(896), + [anon_sym_BANG_TILDE] = ACTIONS(896), + [anon_sym_like] = ACTIONS(896), + [anon_sym_not_DASHlike] = ACTIONS(896), + [anon_sym_bit_DASHand] = ACTIONS(896), + [anon_sym_bit_DASHxor] = ACTIONS(896), + [anon_sym_bit_DASHor] = ACTIONS(896), + [anon_sym_and] = ACTIONS(896), + [anon_sym_xor] = ACTIONS(896), + [anon_sym_or] = ACTIONS(896), + [anon_sym_in2] = ACTIONS(896), + [anon_sym_not_DASHin] = ACTIONS(896), + [anon_sym_has] = ACTIONS(896), + [anon_sym_not_DASHhas] = ACTIONS(896), + [anon_sym_starts_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(896), + [anon_sym_ends_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(896), + [aux_sym_cmd_identifier_token6] = ACTIONS(894), + [sym__newline] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_err_GT_PIPE] = ACTIONS(894), + [anon_sym_out_GT_PIPE] = ACTIONS(894), + [anon_sym_e_GT_PIPE] = ACTIONS(894), + [anon_sym_o_GT_PIPE] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_GT2] = ACTIONS(894), + [anon_sym_DASH2] = ACTIONS(894), + [anon_sym_STAR2] = ACTIONS(894), + [anon_sym_and2] = ACTIONS(894), + [anon_sym_xor2] = ACTIONS(894), + [anon_sym_or2] = ACTIONS(894), + [anon_sym_not_DASHin2] = ACTIONS(894), + [anon_sym_has2] = ACTIONS(894), + [anon_sym_not_DASHhas2] = ACTIONS(894), + [anon_sym_starts_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(894), + [anon_sym_ends_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(894), + [anon_sym_EQ_EQ2] = ACTIONS(894), + [anon_sym_BANG_EQ2] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ2] = ACTIONS(894), + [anon_sym_GT_EQ2] = ACTIONS(894), + [anon_sym_EQ_TILDE2] = ACTIONS(894), + [anon_sym_BANG_TILDE2] = ACTIONS(894), + [anon_sym_like2] = ACTIONS(894), + [anon_sym_not_DASHlike2] = ACTIONS(894), + [anon_sym_STAR_STAR2] = ACTIONS(894), + [anon_sym_PLUS_PLUS2] = ACTIONS(894), + [anon_sym_SLASH2] = ACTIONS(894), + [anon_sym_mod2] = ACTIONS(894), + [anon_sym_SLASH_SLASH2] = ACTIONS(894), + [anon_sym_PLUS2] = ACTIONS(894), + [anon_sym_bit_DASHshl2] = ACTIONS(894), + [anon_sym_bit_DASHshr2] = ACTIONS(894), + [anon_sym_bit_DASHand2] = ACTIONS(894), + [anon_sym_bit_DASHxor2] = ACTIONS(894), + [anon_sym_bit_DASHor2] = ACTIONS(894), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(896), + [anon_sym_err_GT] = ACTIONS(894), + [anon_sym_out_GT] = ACTIONS(894), + [anon_sym_e_GT] = ACTIONS(894), + [anon_sym_o_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT] = ACTIONS(894), + [anon_sym_err_GT_GT] = ACTIONS(894), + [anon_sym_out_GT_GT] = ACTIONS(894), + [anon_sym_e_GT_GT] = ACTIONS(894), + [anon_sym_o_GT_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(894), [anon_sym_POUND] = ACTIONS(103), }, [STATE(130)] = { [sym_comment] = STATE(130), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(962), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_in] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_like] = ACTIONS(920), + [anon_sym_not_DASHlike] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_in2] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_has] = ACTIONS(920), + [anon_sym_not_DASHhas] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(920), + [aux_sym_cmd_identifier_token6] = ACTIONS(924), + [sym__newline] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_err_GT_PIPE] = ACTIONS(815), + [anon_sym_out_GT_PIPE] = ACTIONS(815), + [anon_sym_e_GT_PIPE] = ACTIONS(815), + [anon_sym_o_GT_PIPE] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(815), + [anon_sym_xor2] = ACTIONS(815), + [anon_sym_or2] = ACTIONS(815), + [anon_sym_not_DASHin2] = ACTIONS(815), + [anon_sym_has2] = ACTIONS(815), + [anon_sym_not_DASHhas2] = ACTIONS(815), + [anon_sym_starts_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(815), + [anon_sym_ends_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(815), + [anon_sym_EQ_EQ2] = ACTIONS(815), + [anon_sym_BANG_EQ2] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(815), + [anon_sym_GT_EQ2] = ACTIONS(815), + [anon_sym_EQ_TILDE2] = ACTIONS(815), + [anon_sym_BANG_TILDE2] = ACTIONS(815), + [anon_sym_like2] = ACTIONS(815), + [anon_sym_not_DASHlike2] = ACTIONS(815), + [anon_sym_STAR_STAR2] = ACTIONS(815), + [anon_sym_PLUS_PLUS2] = ACTIONS(815), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(815), + [anon_sym_SLASH_SLASH2] = ACTIONS(815), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(815), + [anon_sym_bit_DASHshr2] = ACTIONS(815), + [anon_sym_bit_DASHand2] = ACTIONS(815), + [anon_sym_bit_DASHxor2] = ACTIONS(815), + [anon_sym_bit_DASHor2] = ACTIONS(815), + [anon_sym_DOT_DOT2] = ACTIONS(823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(825), + [anon_sym_DOT_DOT_LT2] = ACTIONS(825), + [sym_filesize_unit] = ACTIONS(926), + [sym_duration_unit] = ACTIONS(928), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [anon_sym_err_GT_GT] = ACTIONS(815), + [anon_sym_out_GT_GT] = ACTIONS(815), + [anon_sym_e_GT_GT] = ACTIONS(815), + [anon_sym_o_GT_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(103), }, [STATE(131)] = { [sym_comment] = STATE(131), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(964), - [aux_sym__immediate_decimal_token5] = ACTIONS(966), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, [STATE(132)] = { [sym_comment] = STATE(132), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(970), - [anon_sym_SLASH_SLASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_bit_DASHshl] = ACTIONS(970), - [anon_sym_bit_DASHshr] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [anon_sym_BANG_TILDE] = ACTIONS(970), - [anon_sym_like] = ACTIONS(970), - [anon_sym_not_DASHlike] = ACTIONS(970), - [anon_sym_bit_DASHand] = ACTIONS(970), - [anon_sym_bit_DASHxor] = ACTIONS(970), - [anon_sym_bit_DASHor] = ACTIONS(970), - [anon_sym_and] = ACTIONS(970), - [anon_sym_xor] = ACTIONS(970), - [anon_sym_or] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_not_DASHin] = ACTIONS(970), - [anon_sym_has] = ACTIONS(970), - [anon_sym_not_DASHhas] = ACTIONS(970), - [anon_sym_starts_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(970), - [anon_sym_ends_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [sym_filesize_unit] = ACTIONS(980), - [sym_duration_unit] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), [anon_sym_POUND] = ACTIONS(103), }, [STATE(133)] = { [sym_comment] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, [STATE(134)] = { [sym_comment] = STATE(134), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [ts_builtin_sym_end] = ACTIONS(761), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), [anon_sym_POUND] = ACTIONS(103), }, [STATE(135)] = { [sym_comment] = STATE(135), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(984), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(896), + [anon_sym_SLASH_SLASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_bit_DASHshl] = ACTIONS(896), + [anon_sym_bit_DASHshr] = ACTIONS(896), + [anon_sym_EQ_TILDE] = ACTIONS(896), + [anon_sym_BANG_TILDE] = ACTIONS(896), + [anon_sym_like] = ACTIONS(896), + [anon_sym_not_DASHlike] = ACTIONS(896), + [anon_sym_bit_DASHand] = ACTIONS(896), + [anon_sym_bit_DASHxor] = ACTIONS(896), + [anon_sym_bit_DASHor] = ACTIONS(896), + [anon_sym_and] = ACTIONS(896), + [anon_sym_xor] = ACTIONS(896), + [anon_sym_or] = ACTIONS(896), + [anon_sym_in2] = ACTIONS(896), + [anon_sym_not_DASHin] = ACTIONS(896), + [anon_sym_has] = ACTIONS(896), + [anon_sym_not_DASHhas] = ACTIONS(896), + [anon_sym_starts_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(896), + [anon_sym_ends_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(896), + [aux_sym_cmd_identifier_token6] = ACTIONS(894), + [sym__newline] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_err_GT_PIPE] = ACTIONS(894), + [anon_sym_out_GT_PIPE] = ACTIONS(894), + [anon_sym_e_GT_PIPE] = ACTIONS(894), + [anon_sym_o_GT_PIPE] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), + [anon_sym_GT2] = ACTIONS(894), + [anon_sym_DASH2] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_STAR2] = ACTIONS(894), + [anon_sym_and2] = ACTIONS(894), + [anon_sym_xor2] = ACTIONS(894), + [anon_sym_or2] = ACTIONS(894), + [anon_sym_not_DASHin2] = ACTIONS(894), + [anon_sym_has2] = ACTIONS(894), + [anon_sym_not_DASHhas2] = ACTIONS(894), + [anon_sym_starts_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(894), + [anon_sym_ends_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(894), + [anon_sym_EQ_EQ2] = ACTIONS(894), + [anon_sym_BANG_EQ2] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ2] = ACTIONS(894), + [anon_sym_GT_EQ2] = ACTIONS(894), + [anon_sym_EQ_TILDE2] = ACTIONS(894), + [anon_sym_BANG_TILDE2] = ACTIONS(894), + [anon_sym_like2] = ACTIONS(894), + [anon_sym_not_DASHlike2] = ACTIONS(894), + [anon_sym_STAR_STAR2] = ACTIONS(894), + [anon_sym_PLUS_PLUS2] = ACTIONS(894), + [anon_sym_SLASH2] = ACTIONS(894), + [anon_sym_mod2] = ACTIONS(894), + [anon_sym_SLASH_SLASH2] = ACTIONS(894), + [anon_sym_PLUS2] = ACTIONS(894), + [anon_sym_bit_DASHshl2] = ACTIONS(894), + [anon_sym_bit_DASHshr2] = ACTIONS(894), + [anon_sym_bit_DASHand2] = ACTIONS(894), + [anon_sym_bit_DASHxor2] = ACTIONS(894), + [anon_sym_bit_DASHor2] = ACTIONS(894), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(896), + [anon_sym_err_GT] = ACTIONS(894), + [anon_sym_out_GT] = ACTIONS(894), + [anon_sym_e_GT] = ACTIONS(894), + [anon_sym_o_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT] = ACTIONS(894), + [anon_sym_err_GT_GT] = ACTIONS(894), + [anon_sym_out_GT_GT] = ACTIONS(894), + [anon_sym_e_GT_GT] = ACTIONS(894), + [anon_sym_o_GT_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(894), [anon_sym_POUND] = ACTIONS(103), }, [STATE(136)] = { + [sym_expr_parenthesized] = STATE(2831), + [sym__spread_parenthesized] = STATE(3238), + [sym_val_range] = STATE(3239), + [sym__val_range] = STATE(4656), + [sym__value] = STATE(3239), + [sym_val_nothing] = STATE(3155), + [sym_val_bool] = STATE(2958), + [sym__spread_variable] = STATE(3240), + [sym_val_variable] = STATE(2848), + [sym_val_cellpath] = STATE(3155), + [sym_val_number] = STATE(3155), + [sym__val_number_decimal] = STATE(2580), + [sym__val_number] = STATE(3156), + [sym_val_duration] = STATE(3155), + [sym_val_filesize] = STATE(3155), + [sym_val_binary] = STATE(3155), + [sym_val_string] = STATE(3155), + [sym__raw_str] = STATE(2682), + [sym__str_double_quotes] = STATE(2682), + [sym__str_single_quotes] = STATE(2682), + [sym__str_back_ticks] = STATE(2682), + [sym_val_interpolated] = STATE(3155), + [sym__inter_single_quotes] = STATE(3207), + [sym__inter_double_quotes] = STATE(3208), + [sym_val_list] = STATE(3155), + [sym__spread_list] = STATE(3238), + [sym_val_record] = STATE(3155), + [sym_val_table] = STATE(3155), + [sym_val_closure] = STATE(3155), + [sym__cmd_arg] = STATE(3339), + [sym_redirection] = STATE(3241), + [sym__flag] = STATE(3242), + [sym_short_flag] = STATE(3243), + [sym_long_flag] = STATE(3243), + [sym_unquoted] = STATE(2970), + [sym__unquoted_with_expr] = STATE(3245), + [sym__unquoted_anonymous_prefix] = STATE(4656), [sym_comment] = STATE(136), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(986), - [sym_duration_unit] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [anon_sym_true] = ACTIONS(831), + [anon_sym_false] = ACTIONS(831), + [anon_sym_null] = ACTIONS(833), + [aux_sym_cmd_identifier_token3] = ACTIONS(835), + [aux_sym_cmd_identifier_token4] = ACTIONS(835), + [aux_sym_cmd_identifier_token5] = ACTIONS(835), + [sym__newline] = ACTIONS(930), + [sym__space] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_PIPE] = ACTIONS(930), + [anon_sym_err_GT_PIPE] = ACTIONS(930), + [anon_sym_out_GT_PIPE] = ACTIONS(930), + [anon_sym_e_GT_PIPE] = ACTIONS(930), + [anon_sym_o_GT_PIPE] = ACTIONS(930), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(930), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(930), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(930), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(846), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_DASH2] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(858), + [anon_sym_DOT_DOT_LT] = ACTIONS(858), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(860), + [aux_sym__val_number_decimal_token1] = ACTIONS(862), + [aux_sym__val_number_decimal_token2] = ACTIONS(862), + [aux_sym__val_number_decimal_token3] = ACTIONS(864), + [aux_sym__val_number_decimal_token4] = ACTIONS(864), + [aux_sym__val_number_token1] = ACTIONS(866), + [aux_sym__val_number_token2] = ACTIONS(866), + [aux_sym__val_number_token3] = ACTIONS(866), + [anon_sym_0b] = ACTIONS(868), + [anon_sym_0o] = ACTIONS(870), + [anon_sym_0x] = ACTIONS(870), + [sym_val_date] = ACTIONS(872), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(878), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(884), + [anon_sym_err_GT] = ACTIONS(888), + [anon_sym_out_GT] = ACTIONS(888), + [anon_sym_e_GT] = ACTIONS(888), + [anon_sym_o_GT] = ACTIONS(888), + [anon_sym_err_PLUSout_GT] = ACTIONS(888), + [anon_sym_out_PLUSerr_GT] = ACTIONS(888), + [anon_sym_o_PLUSe_GT] = ACTIONS(888), + [anon_sym_e_PLUSo_GT] = ACTIONS(888), + [anon_sym_err_GT_GT] = ACTIONS(888), + [anon_sym_out_GT_GT] = ACTIONS(888), + [anon_sym_e_GT_GT] = ACTIONS(888), + [anon_sym_o_GT_GT] = ACTIONS(888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(888), + [aux_sym_unquoted_token1] = ACTIONS(890), [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(892), }, [STATE(137)] = { [sym_comment] = STATE(137), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(934), + [aux_sym__immediate_decimal_token5] = ACTIONS(936), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), [anon_sym_POUND] = ACTIONS(103), }, [STATE(138)] = { + [sym_expr_parenthesized] = STATE(2920), + [sym__spread_parenthesized] = STATE(3386), + [sym_val_range] = STATE(3387), + [sym__val_range] = STATE(4585), + [sym__value] = STATE(3387), + [sym_val_nothing] = STATE(3435), + [sym_val_bool] = STATE(3074), + [sym__spread_variable] = STATE(3388), + [sym_val_variable] = STATE(2932), + [sym_val_cellpath] = STATE(3435), + [sym_val_number] = STATE(3435), + [sym__val_number_decimal] = STATE(2635), + [sym__val_number] = STATE(3304), + [sym_val_duration] = STATE(3435), + [sym_val_filesize] = STATE(3435), + [sym_val_binary] = STATE(3435), + [sym_val_string] = STATE(3435), + [sym__raw_str] = STATE(2727), + [sym__str_double_quotes] = STATE(2727), + [sym__str_single_quotes] = STATE(2727), + [sym__str_back_ticks] = STATE(2727), + [sym_val_interpolated] = STATE(3435), + [sym__inter_single_quotes] = STATE(3309), + [sym__inter_double_quotes] = STATE(3310), + [sym_val_list] = STATE(3435), + [sym__spread_list] = STATE(3386), + [sym_val_record] = STATE(3435), + [sym_val_table] = STATE(3435), + [sym_val_closure] = STATE(3435), + [sym__cmd_arg] = STATE(3350), + [sym_redirection] = STATE(3391), + [sym__flag] = STATE(3392), + [sym_short_flag] = STATE(3393), + [sym_long_flag] = STATE(3393), + [sym_unquoted] = STATE(3110), + [sym__unquoted_with_expr] = STATE(3395), + [sym__unquoted_anonymous_prefix] = STATE(4585), [sym_comment] = STATE(138), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [ts_builtin_sym_end] = ACTIONS(902), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [anon_sym_null] = ACTIONS(940), + [aux_sym_cmd_identifier_token3] = ACTIONS(942), + [aux_sym_cmd_identifier_token4] = ACTIONS(942), + [aux_sym_cmd_identifier_token5] = ACTIONS(942), + [sym__newline] = ACTIONS(840), + [sym__space] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(840), + [anon_sym_PIPE] = ACTIONS(840), + [anon_sym_err_GT_PIPE] = ACTIONS(840), + [anon_sym_out_GT_PIPE] = ACTIONS(840), + [anon_sym_e_GT_PIPE] = ACTIONS(840), + [anon_sym_o_GT_PIPE] = ACTIONS(840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_DOT_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(960), + [anon_sym_DOT_DOT_LT] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [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(970), + [anon_sym_0o] = ACTIONS(972), + [anon_sym_0x] = ACTIONS(972), + [sym_val_date] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(976), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_BQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(988), + [anon_sym_out_GT] = ACTIONS(988), + [anon_sym_e_GT] = ACTIONS(988), + [anon_sym_o_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT] = ACTIONS(988), + [anon_sym_err_GT_GT] = ACTIONS(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(990), [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(992), }, [STATE(139)] = { [sym_comment] = STATE(139), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(962), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(813), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(103), }, [STATE(140)] = { [sym_comment] = STATE(140), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(994), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, [STATE(141)] = { [sym_comment] = STATE(141), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(990), - [sym_duration_unit] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [anon_sym_in] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_like] = ACTIONS(920), + [anon_sym_not_DASHlike] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_in2] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_has] = ACTIONS(920), + [anon_sym_not_DASHhas] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(920), + [aux_sym_cmd_identifier_token6] = ACTIONS(924), + [sym__newline] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_err_GT_PIPE] = ACTIONS(815), + [anon_sym_out_GT_PIPE] = ACTIONS(815), + [anon_sym_e_GT_PIPE] = ACTIONS(815), + [anon_sym_o_GT_PIPE] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(815), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(815), + [anon_sym_xor2] = ACTIONS(815), + [anon_sym_or2] = ACTIONS(815), + [anon_sym_not_DASHin2] = ACTIONS(815), + [anon_sym_has2] = ACTIONS(815), + [anon_sym_not_DASHhas2] = ACTIONS(815), + [anon_sym_starts_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(815), + [anon_sym_ends_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(815), + [anon_sym_EQ_EQ2] = ACTIONS(815), + [anon_sym_BANG_EQ2] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(815), + [anon_sym_GT_EQ2] = ACTIONS(815), + [anon_sym_EQ_TILDE2] = ACTIONS(815), + [anon_sym_BANG_TILDE2] = ACTIONS(815), + [anon_sym_like2] = ACTIONS(815), + [anon_sym_not_DASHlike2] = ACTIONS(815), + [anon_sym_STAR_STAR2] = ACTIONS(815), + [anon_sym_PLUS_PLUS2] = ACTIONS(815), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(815), + [anon_sym_SLASH_SLASH2] = ACTIONS(815), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(815), + [anon_sym_bit_DASHshr2] = ACTIONS(815), + [anon_sym_bit_DASHand2] = ACTIONS(815), + [anon_sym_bit_DASHxor2] = ACTIONS(815), + [anon_sym_bit_DASHor2] = ACTIONS(815), + [anon_sym_DOT_DOT2] = ACTIONS(823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(825), + [anon_sym_DOT_DOT_LT2] = ACTIONS(825), + [sym_filesize_unit] = ACTIONS(996), + [sym_duration_unit] = ACTIONS(998), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [anon_sym_err_GT_GT] = ACTIONS(815), + [anon_sym_out_GT_GT] = ACTIONS(815), + [anon_sym_e_GT_GT] = ACTIONS(815), + [anon_sym_o_GT_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(103), }, [STATE(142)] = { [sym_comment] = STATE(142), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1002), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(103), }, [STATE(143)] = { [sym_comment] = STATE(143), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1002), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(103), }, [STATE(144)] = { [sym_comment] = STATE(144), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_in] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_like] = ACTIONS(920), + [anon_sym_not_DASHlike] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_in2] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_has] = ACTIONS(920), + [anon_sym_not_DASHhas] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(920), + [aux_sym_cmd_identifier_token6] = ACTIONS(924), + [sym__newline] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_err_GT_PIPE] = ACTIONS(815), + [anon_sym_out_GT_PIPE] = ACTIONS(815), + [anon_sym_e_GT_PIPE] = ACTIONS(815), + [anon_sym_o_GT_PIPE] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(815), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(815), + [anon_sym_xor2] = ACTIONS(815), + [anon_sym_or2] = ACTIONS(815), + [anon_sym_not_DASHin2] = ACTIONS(815), + [anon_sym_has2] = ACTIONS(815), + [anon_sym_not_DASHhas2] = ACTIONS(815), + [anon_sym_starts_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(815), + [anon_sym_ends_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(815), + [anon_sym_EQ_EQ2] = ACTIONS(815), + [anon_sym_BANG_EQ2] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(815), + [anon_sym_GT_EQ2] = ACTIONS(815), + [anon_sym_EQ_TILDE2] = ACTIONS(815), + [anon_sym_BANG_TILDE2] = ACTIONS(815), + [anon_sym_like2] = ACTIONS(815), + [anon_sym_not_DASHlike2] = ACTIONS(815), + [anon_sym_STAR_STAR2] = ACTIONS(815), + [anon_sym_PLUS_PLUS2] = ACTIONS(815), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(815), + [anon_sym_SLASH_SLASH2] = ACTIONS(815), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(815), + [anon_sym_bit_DASHshr2] = ACTIONS(815), + [anon_sym_bit_DASHand2] = ACTIONS(815), + [anon_sym_bit_DASHxor2] = ACTIONS(815), + [anon_sym_bit_DASHor2] = ACTIONS(815), + [anon_sym_DOT_DOT2] = ACTIONS(823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(825), + [anon_sym_DOT_DOT_LT2] = ACTIONS(825), + [sym_filesize_unit] = ACTIONS(1004), + [sym_duration_unit] = ACTIONS(1006), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [anon_sym_err_GT_GT] = ACTIONS(815), + [anon_sym_out_GT_GT] = ACTIONS(815), + [anon_sym_e_GT_GT] = ACTIONS(815), + [anon_sym_o_GT_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(815), [anon_sym_POUND] = ACTIONS(103), }, [STATE(145)] = { [sym_comment] = STATE(145), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1004), - [anon_sym_SLASH_SLASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_bit_DASHshl] = ACTIONS(1004), - [anon_sym_bit_DASHshr] = ACTIONS(1004), - [anon_sym_EQ_TILDE] = ACTIONS(1004), - [anon_sym_BANG_TILDE] = ACTIONS(1004), - [anon_sym_like] = ACTIONS(1004), - [anon_sym_not_DASHlike] = ACTIONS(1004), - [anon_sym_bit_DASHand] = ACTIONS(1004), - [anon_sym_bit_DASHxor] = ACTIONS(1004), - [anon_sym_bit_DASHor] = ACTIONS(1004), - [anon_sym_and] = ACTIONS(1004), - [anon_sym_xor] = ACTIONS(1004), - [anon_sym_or] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_not_DASHin] = ACTIONS(1004), - [anon_sym_has] = ACTIONS(1004), - [anon_sym_not_DASHhas] = ACTIONS(1004), - [anon_sym_starts_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), - [anon_sym_ends_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1004), - [anon_sym_BANG_EQ] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1008), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, [STATE(146)] = { [sym_comment] = STATE(146), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(103), }, [STATE(147)] = { [sym_comment] = STATE(147), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(148)] = { + [sym_comment] = STATE(148), + [anon_sym_in] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(896), + [anon_sym_SLASH_SLASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_bit_DASHshl] = ACTIONS(896), + [anon_sym_bit_DASHshr] = ACTIONS(896), + [anon_sym_EQ_TILDE] = ACTIONS(896), + [anon_sym_BANG_TILDE] = ACTIONS(896), + [anon_sym_like] = ACTIONS(896), + [anon_sym_not_DASHlike] = ACTIONS(896), + [anon_sym_bit_DASHand] = ACTIONS(896), + [anon_sym_bit_DASHxor] = ACTIONS(896), + [anon_sym_bit_DASHor] = ACTIONS(896), + [anon_sym_and] = ACTIONS(896), + [anon_sym_xor] = ACTIONS(896), + [anon_sym_or] = ACTIONS(896), + [anon_sym_in2] = ACTIONS(896), + [anon_sym_not_DASHin] = ACTIONS(896), + [anon_sym_has] = ACTIONS(896), + [anon_sym_not_DASHhas] = ACTIONS(896), + [anon_sym_starts_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(896), + [anon_sym_ends_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(896), + [aux_sym_cmd_identifier_token6] = ACTIONS(894), + [sym__newline] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_err_GT_PIPE] = ACTIONS(894), + [anon_sym_out_GT_PIPE] = ACTIONS(894), + [anon_sym_e_GT_PIPE] = ACTIONS(894), + [anon_sym_o_GT_PIPE] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), + [anon_sym_GT2] = ACTIONS(894), + [anon_sym_DASH2] = ACTIONS(894), + [anon_sym_STAR2] = ACTIONS(894), + [anon_sym_and2] = ACTIONS(894), + [anon_sym_xor2] = ACTIONS(894), + [anon_sym_or2] = ACTIONS(894), + [anon_sym_not_DASHin2] = ACTIONS(894), + [anon_sym_has2] = ACTIONS(894), + [anon_sym_not_DASHhas2] = ACTIONS(894), + [anon_sym_starts_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(894), + [anon_sym_ends_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(894), + [anon_sym_EQ_EQ2] = ACTIONS(894), + [anon_sym_BANG_EQ2] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ2] = ACTIONS(894), + [anon_sym_GT_EQ2] = ACTIONS(894), + [anon_sym_EQ_TILDE2] = ACTIONS(894), + [anon_sym_BANG_TILDE2] = ACTIONS(894), + [anon_sym_like2] = ACTIONS(894), + [anon_sym_not_DASHlike2] = ACTIONS(894), + [anon_sym_STAR_STAR2] = ACTIONS(894), + [anon_sym_PLUS_PLUS2] = ACTIONS(894), + [anon_sym_SLASH2] = ACTIONS(894), + [anon_sym_mod2] = ACTIONS(894), + [anon_sym_SLASH_SLASH2] = ACTIONS(894), + [anon_sym_PLUS2] = ACTIONS(894), + [anon_sym_bit_DASHshl2] = ACTIONS(894), + [anon_sym_bit_DASHshr2] = ACTIONS(894), + [anon_sym_bit_DASHand2] = ACTIONS(894), + [anon_sym_bit_DASHxor2] = ACTIONS(894), + [anon_sym_bit_DASHor2] = ACTIONS(894), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(896), + [anon_sym_err_GT] = ACTIONS(894), + [anon_sym_out_GT] = ACTIONS(894), + [anon_sym_e_GT] = ACTIONS(894), + [anon_sym_o_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT] = ACTIONS(894), + [anon_sym_err_GT_GT] = ACTIONS(894), + [anon_sym_out_GT_GT] = ACTIONS(894), + [anon_sym_e_GT_GT] = ACTIONS(894), + [anon_sym_o_GT_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(149)] = { + [sym_comment] = STATE(149), + [anon_sym_in] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(896), + [anon_sym_SLASH_SLASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_bit_DASHshl] = ACTIONS(896), + [anon_sym_bit_DASHshr] = ACTIONS(896), + [anon_sym_EQ_TILDE] = ACTIONS(896), + [anon_sym_BANG_TILDE] = ACTIONS(896), + [anon_sym_like] = ACTIONS(896), + [anon_sym_not_DASHlike] = ACTIONS(896), + [anon_sym_bit_DASHand] = ACTIONS(896), + [anon_sym_bit_DASHxor] = ACTIONS(896), + [anon_sym_bit_DASHor] = ACTIONS(896), + [anon_sym_and] = ACTIONS(896), + [anon_sym_xor] = ACTIONS(896), + [anon_sym_or] = ACTIONS(896), + [anon_sym_in2] = ACTIONS(896), + [anon_sym_not_DASHin] = ACTIONS(896), + [anon_sym_has] = ACTIONS(896), + [anon_sym_not_DASHhas] = ACTIONS(896), + [anon_sym_starts_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(896), + [anon_sym_ends_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(896), + [aux_sym_cmd_identifier_token6] = ACTIONS(894), + [sym__newline] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_err_GT_PIPE] = ACTIONS(894), + [anon_sym_out_GT_PIPE] = ACTIONS(894), + [anon_sym_e_GT_PIPE] = ACTIONS(894), + [anon_sym_o_GT_PIPE] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), + [anon_sym_GT2] = ACTIONS(894), + [anon_sym_DASH2] = ACTIONS(894), + [anon_sym_STAR2] = ACTIONS(894), + [anon_sym_and2] = ACTIONS(894), + [anon_sym_xor2] = ACTIONS(894), + [anon_sym_or2] = ACTIONS(894), + [anon_sym_not_DASHin2] = ACTIONS(894), + [anon_sym_has2] = ACTIONS(894), + [anon_sym_not_DASHhas2] = ACTIONS(894), + [anon_sym_starts_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(894), + [anon_sym_ends_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(894), + [anon_sym_EQ_EQ2] = ACTIONS(894), + [anon_sym_BANG_EQ2] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ2] = ACTIONS(894), + [anon_sym_GT_EQ2] = ACTIONS(894), + [anon_sym_EQ_TILDE2] = ACTIONS(894), + [anon_sym_BANG_TILDE2] = ACTIONS(894), + [anon_sym_like2] = ACTIONS(894), + [anon_sym_not_DASHlike2] = ACTIONS(894), + [anon_sym_STAR_STAR2] = ACTIONS(894), + [anon_sym_PLUS_PLUS2] = ACTIONS(894), + [anon_sym_SLASH2] = ACTIONS(894), + [anon_sym_mod2] = ACTIONS(894), + [anon_sym_SLASH_SLASH2] = ACTIONS(894), + [anon_sym_PLUS2] = ACTIONS(894), + [anon_sym_bit_DASHshl2] = ACTIONS(894), + [anon_sym_bit_DASHshr2] = ACTIONS(894), + [anon_sym_bit_DASHand2] = ACTIONS(894), + [anon_sym_bit_DASHxor2] = ACTIONS(894), + [anon_sym_bit_DASHor2] = ACTIONS(894), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(896), + [anon_sym_err_GT] = ACTIONS(894), + [anon_sym_out_GT] = ACTIONS(894), + [anon_sym_e_GT] = ACTIONS(894), + [anon_sym_o_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT] = ACTIONS(894), + [anon_sym_err_GT_GT] = ACTIONS(894), + [anon_sym_out_GT_GT] = ACTIONS(894), + [anon_sym_e_GT_GT] = ACTIONS(894), + [anon_sym_o_GT_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(150)] = { + [sym_comment] = STATE(150), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(759), + [anon_sym_out_GT_GT] = ACTIONS(759), + [anon_sym_e_GT_GT] = ACTIONS(759), + [anon_sym_o_GT_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(151)] = { + [sym_comment] = STATE(151), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(775), + [anon_sym_out_GT_GT] = ACTIONS(775), + [anon_sym_e_GT_GT] = ACTIONS(775), + [anon_sym_o_GT_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(775), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(152)] = { + [sym_comment] = STATE(152), + [anon_sym_in] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_like] = ACTIONS(920), + [anon_sym_not_DASHlike] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_in2] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_has] = ACTIONS(920), + [anon_sym_not_DASHhas] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(920), + [aux_sym_cmd_identifier_token6] = ACTIONS(924), + [sym__newline] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_err_GT_PIPE] = ACTIONS(815), + [anon_sym_out_GT_PIPE] = ACTIONS(815), + [anon_sym_e_GT_PIPE] = ACTIONS(815), + [anon_sym_o_GT_PIPE] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(815), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(815), + [anon_sym_xor2] = ACTIONS(815), + [anon_sym_or2] = ACTIONS(815), + [anon_sym_not_DASHin2] = ACTIONS(815), + [anon_sym_has2] = ACTIONS(815), + [anon_sym_not_DASHhas2] = ACTIONS(815), + [anon_sym_starts_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(815), + [anon_sym_ends_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(815), + [anon_sym_EQ_EQ2] = ACTIONS(815), + [anon_sym_BANG_EQ2] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(815), + [anon_sym_GT_EQ2] = ACTIONS(815), + [anon_sym_EQ_TILDE2] = ACTIONS(815), + [anon_sym_BANG_TILDE2] = ACTIONS(815), + [anon_sym_like2] = ACTIONS(815), + [anon_sym_not_DASHlike2] = ACTIONS(815), + [anon_sym_STAR_STAR2] = ACTIONS(815), + [anon_sym_PLUS_PLUS2] = ACTIONS(815), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(815), + [anon_sym_SLASH_SLASH2] = ACTIONS(815), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(815), + [anon_sym_bit_DASHshr2] = ACTIONS(815), + [anon_sym_bit_DASHand2] = ACTIONS(815), + [anon_sym_bit_DASHxor2] = ACTIONS(815), + [anon_sym_bit_DASHor2] = ACTIONS(815), + [anon_sym_DOT_DOT2] = ACTIONS(823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(825), + [anon_sym_DOT_DOT_LT2] = ACTIONS(825), + [sym_filesize_unit] = ACTIONS(1010), + [sym_duration_unit] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [anon_sym_err_GT_GT] = ACTIONS(815), + [anon_sym_out_GT_GT] = ACTIONS(815), + [anon_sym_e_GT_GT] = ACTIONS(815), + [anon_sym_o_GT_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(153)] = { + [sym_comment] = STATE(153), + [ts_builtin_sym_end] = ACTIONS(1014), [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1018), + [anon_sym_SLASH_SLASH] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_bit_DASHshl] = ACTIONS(1018), + [anon_sym_bit_DASHshr] = ACTIONS(1018), + [anon_sym_EQ_TILDE] = ACTIONS(1018), + [anon_sym_BANG_TILDE] = ACTIONS(1018), + [anon_sym_like] = ACTIONS(1018), + [anon_sym_not_DASHlike] = ACTIONS(1018), + [anon_sym_bit_DASHand] = ACTIONS(1018), + [anon_sym_bit_DASHxor] = ACTIONS(1018), + [anon_sym_bit_DASHor] = ACTIONS(1018), + [anon_sym_and] = ACTIONS(1018), + [anon_sym_xor] = ACTIONS(1018), + [anon_sym_or] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_not_DASHin] = ACTIONS(1018), + [anon_sym_has] = ACTIONS(1018), + [anon_sym_not_DASHhas] = ACTIONS(1018), + [anon_sym_starts_DASHwith] = ACTIONS(1018), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1018), + [anon_sym_ends_DASHwith] = ACTIONS(1018), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1018), + [anon_sym_EQ_EQ] = ACTIONS(1018), + [anon_sym_BANG_EQ] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1018), + [aux_sym_cmd_identifier_token6] = ACTIONS(1022), [sym__newline] = ACTIONS(1016), [anon_sym_SEMI] = ACTIONS(1016), [anon_sym_PIPE] = ACTIONS(1016), @@ -56054,7 +60165,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), [anon_sym_GT2] = ACTIONS(1016), [anon_sym_DASH2] = ACTIONS(1016), [anon_sym_STAR2] = ACTIONS(1016), @@ -56106,145 +60216,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(148)] = { - [sym_comment] = STATE(148), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [STATE(154)] = { + [sym_comment] = STATE(154), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), + [sym__newline] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_GT2] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_STAR2] = ACTIONS(1024), + [anon_sym_and2] = ACTIONS(1024), + [anon_sym_xor2] = ACTIONS(1024), + [anon_sym_or2] = ACTIONS(1024), + [anon_sym_not_DASHin2] = ACTIONS(1024), + [anon_sym_has2] = ACTIONS(1024), + [anon_sym_not_DASHhas2] = ACTIONS(1024), + [anon_sym_starts_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1024), + [anon_sym_ends_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1024), + [anon_sym_EQ_EQ2] = ACTIONS(1024), + [anon_sym_BANG_EQ2] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ2] = ACTIONS(1024), + [anon_sym_GT_EQ2] = ACTIONS(1024), + [anon_sym_EQ_TILDE2] = ACTIONS(1024), + [anon_sym_BANG_TILDE2] = ACTIONS(1024), + [anon_sym_like2] = ACTIONS(1024), + [anon_sym_not_DASHlike2] = ACTIONS(1024), + [anon_sym_STAR_STAR2] = ACTIONS(1024), + [anon_sym_PLUS_PLUS2] = ACTIONS(1024), + [anon_sym_SLASH2] = ACTIONS(1024), + [anon_sym_mod2] = ACTIONS(1024), + [anon_sym_SLASH_SLASH2] = ACTIONS(1024), + [anon_sym_PLUS2] = ACTIONS(1024), + [anon_sym_bit_DASHshl2] = ACTIONS(1024), + [anon_sym_bit_DASHshr2] = ACTIONS(1024), + [anon_sym_bit_DASHand2] = ACTIONS(1024), + [anon_sym_bit_DASHxor2] = ACTIONS(1024), + [anon_sym_bit_DASHor2] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1024), + [anon_sym_out_GT] = ACTIONS(1024), + [anon_sym_e_GT] = ACTIONS(1024), + [anon_sym_o_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT] = ACTIONS(1024), + [anon_sym_err_GT_GT] = ACTIONS(1024), + [anon_sym_out_GT_GT] = ACTIONS(1024), + [anon_sym_e_GT_GT] = ACTIONS(1024), + [anon_sym_o_GT_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(149)] = { - [sym_comment] = STATE(149), + [STATE(155)] = { + [sym_comment] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(1032), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_STAR_STAR] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1018), + [anon_sym_SLASH_SLASH] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_bit_DASHshl] = ACTIONS(1018), + [anon_sym_bit_DASHshr] = ACTIONS(1018), + [anon_sym_EQ_TILDE] = ACTIONS(1018), + [anon_sym_BANG_TILDE] = ACTIONS(1018), + [anon_sym_like] = ACTIONS(1018), + [anon_sym_not_DASHlike] = ACTIONS(1018), + [anon_sym_bit_DASHand] = ACTIONS(1018), + [anon_sym_bit_DASHxor] = ACTIONS(1018), + [anon_sym_bit_DASHor] = ACTIONS(1018), + [anon_sym_and] = ACTIONS(1018), + [anon_sym_xor] = ACTIONS(1018), + [anon_sym_or] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_not_DASHin] = ACTIONS(1018), + [anon_sym_has] = ACTIONS(1018), + [anon_sym_not_DASHhas] = ACTIONS(1018), + [anon_sym_starts_DASHwith] = ACTIONS(1018), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1018), + [anon_sym_ends_DASHwith] = ACTIONS(1018), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1018), + [anon_sym_EQ_EQ] = ACTIONS(1018), + [anon_sym_BANG_EQ] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1018), + [aux_sym_cmd_identifier_token6] = ACTIONS(1022), + [sym__newline] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_GT2] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1024), + [anon_sym_STAR2] = ACTIONS(1024), + [anon_sym_and2] = ACTIONS(1024), + [anon_sym_xor2] = ACTIONS(1024), + [anon_sym_or2] = ACTIONS(1024), + [anon_sym_not_DASHin2] = ACTIONS(1024), + [anon_sym_has2] = ACTIONS(1024), + [anon_sym_not_DASHhas2] = ACTIONS(1024), + [anon_sym_starts_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1024), + [anon_sym_ends_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1024), + [anon_sym_EQ_EQ2] = ACTIONS(1024), + [anon_sym_BANG_EQ2] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ2] = ACTIONS(1024), + [anon_sym_GT_EQ2] = ACTIONS(1024), + [anon_sym_EQ_TILDE2] = ACTIONS(1024), + [anon_sym_BANG_TILDE2] = ACTIONS(1024), + [anon_sym_like2] = ACTIONS(1024), + [anon_sym_not_DASHlike2] = ACTIONS(1024), + [anon_sym_STAR_STAR2] = ACTIONS(1024), + [anon_sym_PLUS_PLUS2] = ACTIONS(1024), + [anon_sym_SLASH2] = ACTIONS(1024), + [anon_sym_mod2] = ACTIONS(1024), + [anon_sym_SLASH_SLASH2] = ACTIONS(1024), + [anon_sym_PLUS2] = ACTIONS(1024), + [anon_sym_bit_DASHshl2] = ACTIONS(1024), + [anon_sym_bit_DASHshr2] = ACTIONS(1024), + [anon_sym_bit_DASHand2] = ACTIONS(1024), + [anon_sym_bit_DASHxor2] = ACTIONS(1024), + [anon_sym_bit_DASHor2] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1024), + [anon_sym_out_GT] = ACTIONS(1024), + [anon_sym_e_GT] = ACTIONS(1024), + [anon_sym_o_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT] = ACTIONS(1024), + [anon_sym_err_GT_GT] = ACTIONS(1024), + [anon_sym_out_GT_GT] = ACTIONS(1024), + [anon_sym_e_GT_GT] = ACTIONS(1024), + [anon_sym_o_GT_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(156)] = { + [sym_comment] = STATE(156), [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), [sym__newline] = ACTIONS(1016), [anon_sym_SEMI] = ACTIONS(1016), [anon_sym_PIPE] = ACTIONS(1016), @@ -56256,9 +60467,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1016), [anon_sym_GT2] = ACTIONS(1016), [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), [anon_sym_STAR2] = ACTIONS(1016), [anon_sym_and2] = ACTIONS(1016), [anon_sym_xor2] = ACTIONS(1016), @@ -56308,45 +60519,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(150)] = { - [sym_comment] = STATE(150), - [ts_builtin_sym_end] = ACTIONS(1018), + [STATE(157)] = { + [sym_comment] = STATE(157), [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_mod] = ACTIONS(1034), + [anon_sym_SLASH_SLASH] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_bit_DASHshl] = ACTIONS(1034), + [anon_sym_bit_DASHshr] = ACTIONS(1034), + [anon_sym_EQ_TILDE] = ACTIONS(1034), + [anon_sym_BANG_TILDE] = ACTIONS(1034), + [anon_sym_like] = ACTIONS(1034), + [anon_sym_not_DASHlike] = ACTIONS(1034), + [anon_sym_bit_DASHand] = ACTIONS(1034), + [anon_sym_bit_DASHxor] = ACTIONS(1034), + [anon_sym_bit_DASHor] = ACTIONS(1034), + [anon_sym_and] = ACTIONS(1034), + [anon_sym_xor] = ACTIONS(1034), + [anon_sym_or] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1034), + [anon_sym_not_DASHin] = ACTIONS(1034), + [anon_sym_has] = ACTIONS(1034), + [anon_sym_not_DASHhas] = ACTIONS(1034), + [anon_sym_starts_DASHwith] = ACTIONS(1034), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1034), + [anon_sym_ends_DASHwith] = ACTIONS(1034), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1034), + [anon_sym_BANG_EQ] = ACTIONS(1034), + [anon_sym_LT] = ACTIONS(1036), + [anon_sym_LT_EQ] = ACTIONS(1034), + [anon_sym_GT] = ACTIONS(1036), + [anon_sym_GT_EQ] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), [sym__newline] = ACTIONS(1016), [anon_sym_SEMI] = ACTIONS(1016), [anon_sym_PIPE] = ACTIONS(1016), @@ -56360,6 +60570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), [anon_sym_GT2] = ACTIONS(1016), [anon_sym_DASH2] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), [anon_sym_STAR2] = ACTIONS(1016), [anon_sym_and2] = ACTIONS(1016), [anon_sym_xor2] = ACTIONS(1016), @@ -56409,44 +60620,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(151)] = { - [sym_comment] = STATE(151), + [STATE(158)] = { + [sym_comment] = STATE(158), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_STAR_STAR] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_mod] = ACTIONS(1034), + [anon_sym_SLASH_SLASH] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_bit_DASHshl] = ACTIONS(1034), + [anon_sym_bit_DASHshr] = ACTIONS(1034), + [anon_sym_EQ_TILDE] = ACTIONS(1034), + [anon_sym_BANG_TILDE] = ACTIONS(1034), + [anon_sym_like] = ACTIONS(1034), + [anon_sym_not_DASHlike] = ACTIONS(1034), + [anon_sym_bit_DASHand] = ACTIONS(1034), + [anon_sym_bit_DASHxor] = ACTIONS(1034), + [anon_sym_bit_DASHor] = ACTIONS(1034), + [anon_sym_and] = ACTIONS(1034), + [anon_sym_xor] = ACTIONS(1034), + [anon_sym_or] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1034), + [anon_sym_not_DASHin] = ACTIONS(1034), + [anon_sym_has] = ACTIONS(1034), + [anon_sym_not_DASHhas] = ACTIONS(1034), + [anon_sym_starts_DASHwith] = ACTIONS(1034), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1034), + [anon_sym_ends_DASHwith] = ACTIONS(1034), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1034), + [anon_sym_BANG_EQ] = ACTIONS(1034), + [anon_sym_LT] = ACTIONS(1036), + [anon_sym_LT_EQ] = ACTIONS(1034), + [anon_sym_GT] = ACTIONS(1036), + [anon_sym_GT_EQ] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), + [sym__newline] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_GT2] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_STAR2] = ACTIONS(1024), + [anon_sym_and2] = ACTIONS(1024), + [anon_sym_xor2] = ACTIONS(1024), + [anon_sym_or2] = ACTIONS(1024), + [anon_sym_not_DASHin2] = ACTIONS(1024), + [anon_sym_has2] = ACTIONS(1024), + [anon_sym_not_DASHhas2] = ACTIONS(1024), + [anon_sym_starts_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1024), + [anon_sym_ends_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1024), + [anon_sym_EQ_EQ2] = ACTIONS(1024), + [anon_sym_BANG_EQ2] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ2] = ACTIONS(1024), + [anon_sym_GT_EQ2] = ACTIONS(1024), + [anon_sym_EQ_TILDE2] = ACTIONS(1024), + [anon_sym_BANG_TILDE2] = ACTIONS(1024), + [anon_sym_like2] = ACTIONS(1024), + [anon_sym_not_DASHlike2] = ACTIONS(1024), + [anon_sym_STAR_STAR2] = ACTIONS(1024), + [anon_sym_PLUS_PLUS2] = ACTIONS(1024), + [anon_sym_SLASH2] = ACTIONS(1024), + [anon_sym_mod2] = ACTIONS(1024), + [anon_sym_SLASH_SLASH2] = ACTIONS(1024), + [anon_sym_PLUS2] = ACTIONS(1024), + [anon_sym_bit_DASHshl2] = ACTIONS(1024), + [anon_sym_bit_DASHshr2] = ACTIONS(1024), + [anon_sym_bit_DASHand2] = ACTIONS(1024), + [anon_sym_bit_DASHxor2] = ACTIONS(1024), + [anon_sym_bit_DASHor2] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1024), + [anon_sym_out_GT] = ACTIONS(1024), + [anon_sym_e_GT] = ACTIONS(1024), + [anon_sym_o_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT] = ACTIONS(1024), + [anon_sym_err_GT_GT] = ACTIONS(1024), + [anon_sym_out_GT_GT] = ACTIONS(1024), + [anon_sym_e_GT_GT] = ACTIONS(1024), + [anon_sym_o_GT_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(159)] = { + [sym_comment] = STATE(159), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), + [sym__newline] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_GT2] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1024), + [anon_sym_STAR2] = ACTIONS(1024), + [anon_sym_and2] = ACTIONS(1024), + [anon_sym_xor2] = ACTIONS(1024), + [anon_sym_or2] = ACTIONS(1024), + [anon_sym_not_DASHin2] = ACTIONS(1024), + [anon_sym_has2] = ACTIONS(1024), + [anon_sym_not_DASHhas2] = ACTIONS(1024), + [anon_sym_starts_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1024), + [anon_sym_ends_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1024), + [anon_sym_EQ_EQ2] = ACTIONS(1024), + [anon_sym_BANG_EQ2] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ2] = ACTIONS(1024), + [anon_sym_GT_EQ2] = ACTIONS(1024), + [anon_sym_EQ_TILDE2] = ACTIONS(1024), + [anon_sym_BANG_TILDE2] = ACTIONS(1024), + [anon_sym_like2] = ACTIONS(1024), + [anon_sym_not_DASHlike2] = ACTIONS(1024), + [anon_sym_STAR_STAR2] = ACTIONS(1024), + [anon_sym_PLUS_PLUS2] = ACTIONS(1024), + [anon_sym_SLASH2] = ACTIONS(1024), + [anon_sym_mod2] = ACTIONS(1024), + [anon_sym_SLASH_SLASH2] = ACTIONS(1024), + [anon_sym_PLUS2] = ACTIONS(1024), + [anon_sym_bit_DASHshl2] = ACTIONS(1024), + [anon_sym_bit_DASHshr2] = ACTIONS(1024), + [anon_sym_bit_DASHand2] = ACTIONS(1024), + [anon_sym_bit_DASHxor2] = ACTIONS(1024), + [anon_sym_bit_DASHor2] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1024), + [anon_sym_out_GT] = ACTIONS(1024), + [anon_sym_e_GT] = ACTIONS(1024), + [anon_sym_o_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT] = ACTIONS(1024), + [anon_sym_err_GT_GT] = ACTIONS(1024), + [anon_sym_out_GT_GT] = ACTIONS(1024), + [anon_sym_e_GT_GT] = ACTIONS(1024), + [anon_sym_o_GT_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(160)] = { + [sym_comment] = STATE(160), [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1004), - [anon_sym_SLASH_SLASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_bit_DASHshl] = ACTIONS(1004), - [anon_sym_bit_DASHshr] = ACTIONS(1004), - [anon_sym_EQ_TILDE] = ACTIONS(1004), - [anon_sym_BANG_TILDE] = ACTIONS(1004), - [anon_sym_like] = ACTIONS(1004), - [anon_sym_not_DASHlike] = ACTIONS(1004), - [anon_sym_bit_DASHand] = ACTIONS(1004), - [anon_sym_bit_DASHxor] = ACTIONS(1004), - [anon_sym_bit_DASHor] = ACTIONS(1004), - [anon_sym_and] = ACTIONS(1004), - [anon_sym_xor] = ACTIONS(1004), - [anon_sym_or] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_not_DASHin] = ACTIONS(1004), - [anon_sym_has] = ACTIONS(1004), - [anon_sym_not_DASHhas] = ACTIONS(1004), - [anon_sym_starts_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), - [anon_sym_ends_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1004), - [anon_sym_BANG_EQ] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), [sym__newline] = ACTIONS(1016), [anon_sym_SEMI] = ACTIONS(1016), [anon_sym_PIPE] = ACTIONS(1016), @@ -56510,290 +60923,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(152)] = { - [sym_pipeline] = STATE(4430), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(152), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(153)] = { - [sym_pipeline] = STATE(4585), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(153), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(154)] = { - [sym_pipeline] = STATE(4212), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(154), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(161)] = { + [sym_pipeline_parenthesized] = STATE(4794), + [sym_cmd_identifier] = STATE(3098), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(161), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -56806,94 +61019,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(155)] = { - [sym_pipeline] = STATE(4294), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(155), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(162)] = { + [sym_pipeline_parenthesized] = STATE(4763), + [sym_cmd_identifier] = STATE(3098), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(162), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -56906,94 +61119,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(156)] = { - [sym_pipeline] = STATE(4304), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(156), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(163)] = { + [sym_pipeline] = STATE(4492), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(163), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(477), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57010,90 +61223,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(157)] = { - [sym_pipeline] = STATE(4311), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(157), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(164)] = { + [sym_pipeline] = STATE(4379), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(164), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57110,90 +61323,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(158)] = { - [sym_pipeline] = STATE(4331), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(158), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(165)] = { + [sym_pipeline] = STATE(4548), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(165), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(477), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57210,90 +61423,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(159)] = { - [sym_pipeline_parenthesized] = STATE(4460), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [STATE(166)] = { + [sym_pipeline_parenthesized] = STATE(4771), + [sym_cmd_identifier] = STATE(3098), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(159), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(166), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57306,194 +61519,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(160)] = { - [sym_pipeline] = STATE(4518), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(161)] = { - [sym_pipeline_parenthesized] = STATE(4589), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [STATE(167)] = { + [sym_pipeline_parenthesized] = STATE(4772), + [sym_cmd_identifier] = STATE(3098), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(161), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(167), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57506,94 +61619,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(162)] = { - [sym_pipeline_parenthesized] = STATE(4592), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [STATE(168)] = { + [sym_pipeline_parenthesized] = STATE(4771), + [sym_cmd_identifier] = STATE(3098), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(162), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(168), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57606,94 +61719,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(163)] = { - [sym_pipeline_parenthesized] = STATE(4616), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [STATE(169)] = { + [sym_pipeline_parenthesized] = STATE(4772), + [sym_cmd_identifier] = STATE(3098), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(163), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(169), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57706,94 +61819,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(164)] = { - [sym_pipeline_parenthesized] = STATE(4617), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [STATE(170)] = { + [sym_pipeline_parenthesized] = STATE(4764), + [sym_cmd_identifier] = STATE(3098), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(164), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(170), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57806,54 +61919,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(165)] = { - [sym_pipeline] = STATE(4409), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(165), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(171)] = { + [sym_pipeline] = STATE(4717), + [sym_cmd_identifier] = STATE(3080), + [sym__ctrl_expression] = STATE(3569), + [sym_ctrl_if] = STATE(3466), + [sym_ctrl_match] = STATE(3466), + [sym_ctrl_try] = STATE(3466), + [sym_pipe_element] = STATE(3170), + [sym_where_command] = STATE(3569), + [sym__expression] = STATE(2481), + [sym_expr_unary] = STATE(1337), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1337), + [sym__expr_binary_expression] = STATE(2438), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1337), + [sym__value] = STATE(1337), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1320), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3569), + [sym_comment] = STATE(171), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -57882,7 +61995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -57910,190 +62023,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(166)] = { - [sym_pipeline] = STATE(4212), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [STATE(172)] = { + [sym_pipeline] = STATE(4622), + [sym_cmd_identifier] = STATE(3080), + [sym__ctrl_expression] = STATE(3569), + [sym_ctrl_if] = STATE(3466), + [sym_ctrl_match] = STATE(3466), + [sym_ctrl_try] = STATE(3466), + [sym_pipe_element] = STATE(3170), + [sym_where_command] = STATE(3569), + [sym__expression] = STATE(2481), + [sym_expr_unary] = STATE(1337), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1337), + [sym__expr_binary_expression] = STATE(2438), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1337), + [sym__value] = STATE(1337), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1320), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3569), + [sym_comment] = STATE(172), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(167)] = { - [sym_pipeline] = STATE(4294), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(173)] = { + [sym_pipeline] = STATE(4234), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(477), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58110,90 +62223,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(168)] = { - [sym_pipeline] = STATE(4304), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(174)] = { + [sym_pipeline] = STATE(4380), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(174), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58210,90 +62323,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(169)] = { - [sym_pipeline] = STATE(4311), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(175)] = { + [sym_pipeline] = STATE(4234), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(175), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(298), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58310,90 +62423,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(170)] = { - [sym_pipeline] = STATE(4331), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(170), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(176)] = { + [sym_pipeline] = STATE(4492), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58410,390 +62523,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(171)] = { - [sym_pipeline_parenthesized] = STATE(4589), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(171), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(172)] = { - [sym_comment] = STATE(172), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(173)] = { - [sym_comment] = STATE(173), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(174)] = { - [sym_pipeline] = STATE(4212), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(177)] = { + [sym_pipeline] = STATE(4379), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(177), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(298), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58810,90 +62623,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(175)] = { - [sym_pipeline] = STATE(4294), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(178)] = { + [sym_pipeline] = STATE(4380), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(298), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58910,90 +62723,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(176)] = { - [sym_pipeline] = STATE(4304), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(176), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(179)] = { + [sym_pipeline] = STATE(4492), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(179), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(298), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59010,90 +62823,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(177)] = { - [sym_pipeline] = STATE(4311), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(177), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(180)] = { + [sym_pipeline] = STATE(4548), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(180), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(298), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59110,190 +62923,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(178)] = { - [sym_pipeline] = STATE(4331), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [STATE(181)] = { + [sym_pipeline] = STATE(4778), + [sym_cmd_identifier] = STATE(3080), + [sym__ctrl_expression] = STATE(3569), + [sym_ctrl_if] = STATE(3466), + [sym_ctrl_match] = STATE(3466), + [sym_ctrl_try] = STATE(3466), + [sym_pipe_element] = STATE(3170), + [sym_where_command] = STATE(3569), + [sym__expression] = STATE(2481), + [sym_expr_unary] = STATE(1337), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1337), + [sym__expr_binary_expression] = STATE(2438), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1337), + [sym__value] = STATE(1337), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1320), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3569), + [sym_comment] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(179)] = { - [sym_pipeline_parenthesized] = STATE(4592), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(179), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(182)] = { + [sym_pipeline] = STATE(4548), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(182), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59306,94 +63119,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(180)] = { - [sym_pipeline_parenthesized] = STATE(4460), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [STATE(183)] = { + [sym_pipeline_parenthesized] = STATE(4764), + [sym_cmd_identifier] = STATE(3098), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(180), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(183), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59406,194 +63219,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(181)] = { - [sym_pipeline_parenthesized] = STATE(4616), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(181), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [STATE(184)] = { + [sym_pipeline] = STATE(4607), + [sym_cmd_identifier] = STATE(3080), + [sym__ctrl_expression] = STATE(3569), + [sym_ctrl_if] = STATE(3466), + [sym_ctrl_match] = STATE(3466), + [sym_ctrl_try] = STATE(3466), + [sym_pipe_element] = STATE(3170), + [sym_where_command] = STATE(3569), + [sym__expression] = STATE(2481), + [sym_expr_unary] = STATE(1337), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1337), + [sym__expr_binary_expression] = STATE(2438), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1337), + [sym__value] = STATE(1337), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1320), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3569), + [sym_comment] = STATE(184), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(182)] = { - [sym_pipeline_parenthesized] = STATE(4617), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(182), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(185)] = { + [sym_pipeline] = STATE(4234), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59606,54 +63419,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(183)] = { - [sym_pipeline] = STATE(4412), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(186)] = { + [sym_pipeline] = STATE(4779), + [sym_cmd_identifier] = STATE(3080), + [sym__ctrl_expression] = STATE(3569), + [sym_ctrl_if] = STATE(3466), + [sym_ctrl_match] = STATE(3466), + [sym_ctrl_try] = STATE(3466), + [sym_pipe_element] = STATE(3170), + [sym_where_command] = STATE(3569), + [sym__expression] = STATE(2481), + [sym_expr_unary] = STATE(1337), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1337), + [sym__expr_binary_expression] = STATE(2438), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1337), + [sym__value] = STATE(1337), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1320), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3569), + [sym_comment] = STATE(186), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -59682,7 +63495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -59710,89 +63523,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(184)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(186), + [STATE(187)] = { + [sym_pipeline] = STATE(4379), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(187), + [aux_sym_pipeline_repeat1] = STATE(199), [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(477), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59809,89 +63623,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(185)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(188)] = { + [sym_pipeline] = STATE(4380), + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3102), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(188), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(477), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59908,188 +63723,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(186)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(3228), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(186), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1037), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_mut] = ACTIONS(1037), - [anon_sym_const] = ACTIONS(1037), - [aux_sym_cmd_identifier_token1] = ACTIONS(1040), - [anon_sym_def] = ACTIONS(1037), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_export_DASHenv] = ACTIONS(1037), - [anon_sym_extern] = ACTIONS(1037), - [anon_sym_module] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_loop] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1043), - [anon_sym_else] = ACTIONS(1037), - [anon_sym_try] = ACTIONS(1046), - [anon_sym_catch] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_in] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1052), - [anon_sym_false] = ACTIONS(1052), - [anon_sym_null] = ACTIONS(1055), - [aux_sym_cmd_identifier_token3] = ACTIONS(1058), - [aux_sym_cmd_identifier_token4] = ACTIONS(1058), - [aux_sym_cmd_identifier_token5] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_DOLLAR] = ACTIONS(1067), - [anon_sym_DASH2] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1076), - [anon_sym_where] = ACTIONS(1079), - [aux_sym_expr_unary_token1] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1085), - [aux_sym__val_number_decimal_token1] = ACTIONS(1088), - [aux_sym__val_number_decimal_token2] = ACTIONS(1091), - [aux_sym__val_number_decimal_token3] = ACTIONS(1094), - [aux_sym__val_number_decimal_token4] = ACTIONS(1094), - [aux_sym__val_number_token1] = ACTIONS(1097), - [aux_sym__val_number_token2] = ACTIONS(1097), - [aux_sym__val_number_token3] = ACTIONS(1097), - [anon_sym_0b] = ACTIONS(1100), - [anon_sym_0o] = ACTIONS(1103), - [anon_sym_0x] = ACTIONS(1103), - [sym_val_date] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1109), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_BQUOTE] = ACTIONS(1115), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1118), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1121), - [anon_sym_CARET] = ACTIONS(1124), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1127), + [STATE(189)] = { + [sym_pipeline_parenthesized] = STATE(4794), + [sym_cmd_identifier] = STATE(3098), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(189), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(187)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2976), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [STATE(190)] = { + [sym_comment] = STATE(190), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), + [sym__newline] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_GT2] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1024), + [anon_sym_STAR2] = ACTIONS(1024), + [anon_sym_and2] = ACTIONS(1024), + [anon_sym_xor2] = ACTIONS(1024), + [anon_sym_or2] = ACTIONS(1024), + [anon_sym_not_DASHin2] = ACTIONS(1024), + [anon_sym_has2] = ACTIONS(1024), + [anon_sym_not_DASHhas2] = ACTIONS(1024), + [anon_sym_starts_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1024), + [anon_sym_ends_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1024), + [anon_sym_EQ_EQ2] = ACTIONS(1024), + [anon_sym_BANG_EQ2] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ2] = ACTIONS(1024), + [anon_sym_GT_EQ2] = ACTIONS(1024), + [anon_sym_EQ_TILDE2] = ACTIONS(1024), + [anon_sym_BANG_TILDE2] = ACTIONS(1024), + [anon_sym_like2] = ACTIONS(1024), + [anon_sym_not_DASHlike2] = ACTIONS(1024), + [anon_sym_STAR_STAR2] = ACTIONS(1024), + [anon_sym_PLUS_PLUS2] = ACTIONS(1024), + [anon_sym_SLASH2] = ACTIONS(1024), + [anon_sym_mod2] = ACTIONS(1024), + [anon_sym_SLASH_SLASH2] = ACTIONS(1024), + [anon_sym_PLUS2] = ACTIONS(1024), + [anon_sym_bit_DASHshl2] = ACTIONS(1024), + [anon_sym_bit_DASHshr2] = ACTIONS(1024), + [anon_sym_bit_DASHand2] = ACTIONS(1024), + [anon_sym_bit_DASHxor2] = ACTIONS(1024), + [anon_sym_bit_DASHor2] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1024), + [anon_sym_out_GT] = ACTIONS(1024), + [anon_sym_e_GT] = ACTIONS(1024), + [anon_sym_o_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT] = ACTIONS(1024), + [anon_sym_err_GT_GT] = ACTIONS(1024), + [anon_sym_out_GT_GT] = ACTIONS(1024), + [anon_sym_e_GT_GT] = ACTIONS(1024), + [anon_sym_o_GT_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(191)] = { + [sym_comment] = STATE(191), + [anon_sym_in] = ACTIONS(1016), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), + [sym__newline] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_err_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_GT_PIPE] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), + [anon_sym_GT2] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(1016), + [anon_sym_STAR2] = ACTIONS(1016), + [anon_sym_and2] = ACTIONS(1016), + [anon_sym_xor2] = ACTIONS(1016), + [anon_sym_or2] = ACTIONS(1016), + [anon_sym_not_DASHin2] = ACTIONS(1016), + [anon_sym_has2] = ACTIONS(1016), + [anon_sym_not_DASHhas2] = ACTIONS(1016), + [anon_sym_starts_DASHwith2] = ACTIONS(1016), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), + [anon_sym_ends_DASHwith2] = ACTIONS(1016), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), + [anon_sym_EQ_EQ2] = ACTIONS(1016), + [anon_sym_BANG_EQ2] = ACTIONS(1016), + [anon_sym_LT2] = ACTIONS(1016), + [anon_sym_LT_EQ2] = ACTIONS(1016), + [anon_sym_GT_EQ2] = ACTIONS(1016), + [anon_sym_EQ_TILDE2] = ACTIONS(1016), + [anon_sym_BANG_TILDE2] = ACTIONS(1016), + [anon_sym_like2] = ACTIONS(1016), + [anon_sym_not_DASHlike2] = ACTIONS(1016), + [anon_sym_STAR_STAR2] = ACTIONS(1016), + [anon_sym_PLUS_PLUS2] = ACTIONS(1016), + [anon_sym_SLASH2] = ACTIONS(1016), + [anon_sym_mod2] = ACTIONS(1016), + [anon_sym_SLASH_SLASH2] = ACTIONS(1016), + [anon_sym_PLUS2] = ACTIONS(1016), + [anon_sym_bit_DASHshl2] = ACTIONS(1016), + [anon_sym_bit_DASHshr2] = ACTIONS(1016), + [anon_sym_bit_DASHand2] = ACTIONS(1016), + [anon_sym_bit_DASHxor2] = ACTIONS(1016), + [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_err_GT] = ACTIONS(1016), + [anon_sym_out_GT] = ACTIONS(1016), + [anon_sym_e_GT] = ACTIONS(1016), + [anon_sym_o_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT] = ACTIONS(1016), + [anon_sym_err_GT_GT] = ACTIONS(1016), + [anon_sym_out_GT_GT] = ACTIONS(1016), + [anon_sym_e_GT_GT] = ACTIONS(1016), + [anon_sym_o_GT_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(192)] = { + [sym_pipeline_parenthesized] = STATE(4763), + [sym_cmd_identifier] = STATE(3098), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3152), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(187), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(192), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60102,93 +64119,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(188)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(188), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(193)] = { + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3079), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(193), + [aux_sym_pipeline_repeat1] = STATE(196), + [aux_sym_pipe_element_repeat2] = STATE(298), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60205,143 +64222,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(189)] = { - [sym_comment] = STATE(189), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), + [STATE(194)] = { + [sym_cmd_identifier] = STATE(3098), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3252), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(194), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(190)] = { - [sym_comment] = STATE(190), + [STATE(195)] = { + [sym_comment] = STATE(195), [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), [sym__newline] = ACTIONS(1016), [anon_sym_PIPE] = ACTIONS(1016), [anon_sym_err_GT_PIPE] = ACTIONS(1016), @@ -60403,49 +64420,643 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(191)] = { - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2938), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(196)] = { + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3516), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(196), + [aux_sym_pipeline_repeat1] = STATE(196), + [aux_sym_pipe_element_repeat2] = STATE(295), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1057), + [anon_sym_let] = ACTIONS(1057), + [anon_sym_mut] = ACTIONS(1057), + [anon_sym_const] = ACTIONS(1057), + [aux_sym_cmd_identifier_token1] = ACTIONS(1060), + [anon_sym_def] = ACTIONS(1057), + [anon_sym_use] = ACTIONS(1057), + [anon_sym_export_DASHenv] = ACTIONS(1057), + [anon_sym_extern] = ACTIONS(1057), + [anon_sym_module] = ACTIONS(1057), + [anon_sym_for] = ACTIONS(1057), + [anon_sym_loop] = ACTIONS(1057), + [anon_sym_while] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_else] = ACTIONS(1057), + [anon_sym_try] = ACTIONS(1066), + [anon_sym_catch] = ACTIONS(1057), + [anon_sym_match] = ACTIONS(1069), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1075), + [aux_sym_cmd_identifier_token3] = ACTIONS(1078), + [aux_sym_cmd_identifier_token4] = ACTIONS(1078), + [aux_sym_cmd_identifier_token5] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1081), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_DASH2] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1096), + [anon_sym_where] = ACTIONS(1099), + [aux_sym_expr_unary_token1] = ACTIONS(1102), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1105), + [anon_sym_DOT_DOT_LT] = ACTIONS(1105), + [aux_sym__val_number_decimal_token1] = ACTIONS(1108), + [aux_sym__val_number_decimal_token2] = ACTIONS(1111), + [aux_sym__val_number_decimal_token3] = ACTIONS(1114), + [aux_sym__val_number_decimal_token4] = ACTIONS(1114), + [aux_sym__val_number_token1] = ACTIONS(1117), + [aux_sym__val_number_token2] = ACTIONS(1117), + [aux_sym__val_number_token3] = ACTIONS(1117), + [anon_sym_0b] = ACTIONS(1120), + [anon_sym_0o] = ACTIONS(1123), + [anon_sym_0x] = ACTIONS(1123), + [sym_val_date] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_BQUOTE] = ACTIONS(1135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1138), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1141), + [anon_sym_CARET] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1147), + }, + [STATE(197)] = { + [sym_cmd_identifier] = STATE(3098), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3457), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(197), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(302), + [anon_sym_export] = ACTIONS(1150), + [anon_sym_alias] = ACTIONS(1153), + [anon_sym_let] = ACTIONS(1153), + [anon_sym_mut] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [aux_sym_cmd_identifier_token1] = ACTIONS(1156), + [anon_sym_def] = ACTIONS(1153), + [anon_sym_use] = ACTIONS(1153), + [anon_sym_export_DASHenv] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym_module] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_loop] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1153), + [anon_sym_try] = ACTIONS(1162), + [anon_sym_catch] = ACTIONS(1153), + [anon_sym_match] = ACTIONS(1165), + [anon_sym_in] = ACTIONS(1150), + [anon_sym_true] = ACTIONS(1168), + [anon_sym_false] = ACTIONS(1168), + [anon_sym_null] = ACTIONS(1171), + [aux_sym_cmd_identifier_token3] = ACTIONS(1174), + [aux_sym_cmd_identifier_token4] = ACTIONS(1174), + [aux_sym_cmd_identifier_token5] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1180), + [anon_sym_DOLLAR] = ACTIONS(1183), + [anon_sym_DASH2] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_DOT_DOT] = ACTIONS(1192), + [anon_sym_where] = ACTIONS(1195), + [aux_sym_expr_unary_token1] = ACTIONS(1198), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1201), + [anon_sym_DOT_DOT_LT] = ACTIONS(1201), + [aux_sym__val_number_decimal_token1] = ACTIONS(1204), + [aux_sym__val_number_decimal_token2] = ACTIONS(1207), + [aux_sym__val_number_decimal_token3] = ACTIONS(1210), + [aux_sym__val_number_decimal_token4] = ACTIONS(1210), + [aux_sym__val_number_token1] = ACTIONS(1213), + [aux_sym__val_number_token2] = ACTIONS(1213), + [aux_sym__val_number_token3] = ACTIONS(1213), + [anon_sym_0b] = ACTIONS(1216), + [anon_sym_0o] = ACTIONS(1219), + [anon_sym_0x] = ACTIONS(1219), + [sym_val_date] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1234), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1237), + [anon_sym_CARET] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1243), + }, + [STATE(198)] = { + [sym_comment] = STATE(198), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), + [sym__newline] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_GT2] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1024), + [anon_sym_STAR2] = ACTIONS(1024), + [anon_sym_and2] = ACTIONS(1024), + [anon_sym_xor2] = ACTIONS(1024), + [anon_sym_or2] = ACTIONS(1024), + [anon_sym_not_DASHin2] = ACTIONS(1024), + [anon_sym_has2] = ACTIONS(1024), + [anon_sym_not_DASHhas2] = ACTIONS(1024), + [anon_sym_starts_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1024), + [anon_sym_ends_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1024), + [anon_sym_EQ_EQ2] = ACTIONS(1024), + [anon_sym_BANG_EQ2] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ2] = ACTIONS(1024), + [anon_sym_GT_EQ2] = ACTIONS(1024), + [anon_sym_EQ_TILDE2] = ACTIONS(1024), + [anon_sym_BANG_TILDE2] = ACTIONS(1024), + [anon_sym_like2] = ACTIONS(1024), + [anon_sym_not_DASHlike2] = ACTIONS(1024), + [anon_sym_STAR_STAR2] = ACTIONS(1024), + [anon_sym_PLUS_PLUS2] = ACTIONS(1024), + [anon_sym_SLASH2] = ACTIONS(1024), + [anon_sym_mod2] = ACTIONS(1024), + [anon_sym_SLASH_SLASH2] = ACTIONS(1024), + [anon_sym_PLUS2] = ACTIONS(1024), + [anon_sym_bit_DASHshl2] = ACTIONS(1024), + [anon_sym_bit_DASHshr2] = ACTIONS(1024), + [anon_sym_bit_DASHand2] = ACTIONS(1024), + [anon_sym_bit_DASHxor2] = ACTIONS(1024), + [anon_sym_bit_DASHor2] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1024), + [anon_sym_out_GT] = ACTIONS(1024), + [anon_sym_e_GT] = ACTIONS(1024), + [anon_sym_o_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT] = ACTIONS(1024), + [anon_sym_err_GT_GT] = ACTIONS(1024), + [anon_sym_out_GT_GT] = ACTIONS(1024), + [anon_sym_e_GT_GT] = ACTIONS(1024), + [anon_sym_o_GT_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(199)] = { + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3079), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(196), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(477), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(200)] = { + [sym_cmd_identifier] = STATE(3005), + [sym__ctrl_expression] = STATE(3403), + [sym_ctrl_if] = STATE(3405), + [sym_ctrl_match] = STATE(3405), + [sym_ctrl_try] = STATE(3405), + [sym_pipe_element] = STATE(3079), + [sym_where_command] = STATE(3403), + [sym__expression] = STATE(2478), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3403), + [sym_comment] = STATE(200), + [aux_sym_pipeline_repeat1] = STATE(196), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(201)] = { + [sym_cmd_identifier] = STATE(3098), + [sym__ctrl_expression_parenthesized] = STATE(3514), + [sym_ctrl_if_parenthesized] = STATE(3486), + [sym_ctrl_match] = STATE(3486), + [sym_ctrl_try_parenthesized] = STATE(3486), + [sym_pipe_element_parenthesized] = STATE(3252), + [sym_where_command_parenthesized] = STATE(3514), + [sym__expression_parenthesized] = STATE(2483), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3517), + [sym_comment] = STATE(201), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(277), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(202)] = { + [sym_cmd_identifier] = STATE(3080), + [sym__ctrl_expression] = STATE(3569), + [sym_ctrl_if] = STATE(3466), + [sym_ctrl_match] = STATE(3466), + [sym_ctrl_try] = STATE(3466), + [sym_pipe_element] = STATE(3143), + [sym_where_command] = STATE(3569), + [sym__expression] = STATE(2481), + [sym_expr_unary] = STATE(1337), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1337), + [sym__expr_binary_expression] = STATE(2438), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1337), + [sym__value] = STATE(1337), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1320), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3569), + [sym_comment] = STATE(202), + [aux_sym_pipeline_repeat1] = STATE(196), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -60474,7 +65085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -60502,89 +65113,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(192)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2976), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), + [STATE(203)] = { + [sym_expr_parenthesized] = STATE(1487), + [sym__spread_parenthesized] = STATE(1583), + [sym_val_range] = STATE(1585), + [sym__val_range] = STATE(4789), + [sym__value] = STATE(1585), + [sym_val_nothing] = STATE(1597), + [sym_val_bool] = STATE(1523), + [sym__spread_variable] = STATE(1588), + [sym_val_variable] = STATE(1478), + [sym_val_cellpath] = STATE(1597), + [sym_val_number] = STATE(1597), + [sym__val_number_decimal] = STATE(1304), + [sym__val_number] = STATE(1598), + [sym_val_duration] = STATE(1597), + [sym_val_filesize] = STATE(1597), + [sym_val_binary] = STATE(1597), + [sym_val_string] = STATE(1597), + [sym__raw_str] = STATE(1608), + [sym__str_double_quotes] = STATE(1608), + [sym__str_single_quotes] = STATE(1608), + [sym__str_back_ticks] = STATE(1608), + [sym_val_interpolated] = STATE(1597), + [sym__inter_single_quotes] = STATE(1639), + [sym__inter_double_quotes] = STATE(1640), + [sym_val_list] = STATE(1597), + [sym__spread_list] = STATE(1583), + [sym_val_record] = STATE(1597), + [sym_val_table] = STATE(1597), + [sym_val_closure] = STATE(1597), + [sym__cmd_arg] = STATE(1589), + [sym_redirection] = STATE(1590), + [sym__flag] = STATE(1591), + [sym_short_flag] = STATE(1592), + [sym_long_flag] = STATE(1592), + [sym_unquoted] = STATE(1511), + [sym__unquoted_with_expr] = STATE(1594), + [sym__unquoted_anonymous_prefix] = STATE(4789), + [sym_comment] = STATE(203), + [aux_sym_attribute_repeat1] = STATE(204), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [anon_sym_null] = ACTIONS(1248), + [aux_sym_cmd_identifier_token3] = ACTIONS(1250), + [aux_sym_cmd_identifier_token4] = ACTIONS(1250), + [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [sym__newline] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_DASH2] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(1266), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1268), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1270), + [anon_sym_DOT_DOT_LT] = ACTIONS(1270), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_token1] = ACTIONS(1280), + [aux_sym__val_number_token2] = ACTIONS(1280), + [aux_sym__val_number_token3] = ACTIONS(1280), + [anon_sym_0b] = ACTIONS(1282), + [anon_sym_0o] = ACTIONS(1284), + [anon_sym_0x] = ACTIONS(1284), + [sym_val_date] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1298), + [anon_sym_err_GT] = ACTIONS(1300), + [anon_sym_out_GT] = ACTIONS(1300), + [anon_sym_e_GT] = ACTIONS(1300), + [anon_sym_o_GT] = ACTIONS(1300), + [anon_sym_err_PLUSout_GT] = ACTIONS(1300), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1300), + [anon_sym_o_PLUSe_GT] = ACTIONS(1300), + [anon_sym_e_PLUSo_GT] = ACTIONS(1300), + [anon_sym_err_GT_GT] = ACTIONS(1302), + [anon_sym_out_GT_GT] = ACTIONS(1302), + [anon_sym_e_GT_GT] = ACTIONS(1302), + [anon_sym_o_GT_GT] = ACTIONS(1302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1302), + [aux_sym_unquoted_token1] = ACTIONS(1304), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1306), + }, + [STATE(204)] = { + [sym_expr_parenthesized] = STATE(1487), + [sym__spread_parenthesized] = STATE(1583), + [sym_val_range] = STATE(1585), + [sym__val_range] = STATE(4789), + [sym__value] = STATE(1585), + [sym_val_nothing] = STATE(1597), + [sym_val_bool] = STATE(1523), + [sym__spread_variable] = STATE(1588), + [sym_val_variable] = STATE(1478), + [sym_val_cellpath] = STATE(1597), + [sym_val_number] = STATE(1597), + [sym__val_number_decimal] = STATE(1304), + [sym__val_number] = STATE(1598), + [sym_val_duration] = STATE(1597), + [sym_val_filesize] = STATE(1597), + [sym_val_binary] = STATE(1597), + [sym_val_string] = STATE(1597), + [sym__raw_str] = STATE(1608), + [sym__str_double_quotes] = STATE(1608), + [sym__str_single_quotes] = STATE(1608), + [sym__str_back_ticks] = STATE(1608), + [sym_val_interpolated] = STATE(1597), + [sym__inter_single_quotes] = STATE(1639), + [sym__inter_double_quotes] = STATE(1640), + [sym_val_list] = STATE(1597), + [sym__spread_list] = STATE(1583), + [sym_val_record] = STATE(1597), + [sym_val_table] = STATE(1597), + [sym_val_closure] = STATE(1597), + [sym__cmd_arg] = STATE(1589), + [sym_redirection] = STATE(1590), + [sym__flag] = STATE(1591), + [sym_short_flag] = STATE(1592), + [sym_long_flag] = STATE(1592), + [sym_unquoted] = STATE(1511), + [sym__unquoted_with_expr] = STATE(1594), + [sym__unquoted_anonymous_prefix] = STATE(4789), + [sym_comment] = STATE(204), + [aux_sym_attribute_repeat1] = STATE(205), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [anon_sym_null] = ACTIONS(1248), + [aux_sym_cmd_identifier_token3] = ACTIONS(1250), + [aux_sym_cmd_identifier_token4] = ACTIONS(1250), + [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [sym__newline] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_DASH2] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(1266), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1268), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1270), + [anon_sym_DOT_DOT_LT] = ACTIONS(1270), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_token1] = ACTIONS(1280), + [aux_sym__val_number_token2] = ACTIONS(1280), + [aux_sym__val_number_token3] = ACTIONS(1280), + [anon_sym_0b] = ACTIONS(1282), + [anon_sym_0o] = ACTIONS(1284), + [anon_sym_0x] = ACTIONS(1284), + [sym_val_date] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1298), + [anon_sym_err_GT] = ACTIONS(1300), + [anon_sym_out_GT] = ACTIONS(1300), + [anon_sym_e_GT] = ACTIONS(1300), + [anon_sym_o_GT] = ACTIONS(1300), + [anon_sym_err_PLUSout_GT] = ACTIONS(1300), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1300), + [anon_sym_o_PLUSe_GT] = ACTIONS(1300), + [anon_sym_e_PLUSo_GT] = ACTIONS(1300), + [anon_sym_err_GT_GT] = ACTIONS(1302), + [anon_sym_out_GT_GT] = ACTIONS(1302), + [anon_sym_e_GT_GT] = ACTIONS(1302), + [anon_sym_o_GT_GT] = ACTIONS(1302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1302), + [aux_sym_unquoted_token1] = ACTIONS(1304), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1306), + }, + [STATE(205)] = { + [sym_expr_parenthesized] = STATE(1487), + [sym__spread_parenthesized] = STATE(1583), + [sym_val_range] = STATE(1585), + [sym__val_range] = STATE(4789), + [sym__value] = STATE(1585), + [sym_val_nothing] = STATE(1597), + [sym_val_bool] = STATE(1523), + [sym__spread_variable] = STATE(1588), + [sym_val_variable] = STATE(1478), + [sym_val_cellpath] = STATE(1597), + [sym_val_number] = STATE(1597), + [sym__val_number_decimal] = STATE(1304), + [sym__val_number] = STATE(1598), + [sym_val_duration] = STATE(1597), + [sym_val_filesize] = STATE(1597), + [sym_val_binary] = STATE(1597), + [sym_val_string] = STATE(1597), + [sym__raw_str] = STATE(1608), + [sym__str_double_quotes] = STATE(1608), + [sym__str_single_quotes] = STATE(1608), + [sym__str_back_ticks] = STATE(1608), + [sym_val_interpolated] = STATE(1597), + [sym__inter_single_quotes] = STATE(1639), + [sym__inter_double_quotes] = STATE(1640), + [sym_val_list] = STATE(1597), + [sym__spread_list] = STATE(1583), + [sym_val_record] = STATE(1597), + [sym_val_table] = STATE(1597), + [sym_val_closure] = STATE(1597), + [sym__cmd_arg] = STATE(1589), + [sym_redirection] = STATE(1590), + [sym__flag] = STATE(1591), + [sym_short_flag] = STATE(1592), + [sym_long_flag] = STATE(1592), + [sym_unquoted] = STATE(1511), + [sym__unquoted_with_expr] = STATE(1594), + [sym__unquoted_anonymous_prefix] = STATE(4789), + [sym_comment] = STATE(205), + [aux_sym_attribute_repeat1] = STATE(205), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_null] = ACTIONS(1313), + [aux_sym_cmd_identifier_token3] = ACTIONS(1316), + [aux_sym_cmd_identifier_token4] = ACTIONS(1316), + [aux_sym_cmd_identifier_token5] = ACTIONS(1316), + [sym__newline] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_DASH2] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_DOT_DOT] = ACTIONS(1339), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1342), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1345), + [anon_sym_DOT_DOT_LT] = ACTIONS(1345), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1348), + [aux_sym__val_number_decimal_token1] = ACTIONS(1351), + [aux_sym__val_number_decimal_token2] = ACTIONS(1354), + [aux_sym__val_number_decimal_token3] = ACTIONS(1357), + [aux_sym__val_number_decimal_token4] = ACTIONS(1357), + [aux_sym__val_number_token1] = ACTIONS(1360), + [aux_sym__val_number_token2] = ACTIONS(1360), + [aux_sym__val_number_token3] = ACTIONS(1360), + [anon_sym_0b] = ACTIONS(1363), + [anon_sym_0o] = ACTIONS(1366), + [anon_sym_0x] = ACTIONS(1366), + [sym_val_date] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1378), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1381), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1384), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1387), + [anon_sym_err_GT] = ACTIONS(1390), + [anon_sym_out_GT] = ACTIONS(1390), + [anon_sym_e_GT] = ACTIONS(1390), + [anon_sym_o_GT] = ACTIONS(1390), + [anon_sym_err_PLUSout_GT] = ACTIONS(1390), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1390), + [anon_sym_o_PLUSe_GT] = ACTIONS(1390), + [anon_sym_e_PLUSo_GT] = ACTIONS(1390), + [anon_sym_err_GT_GT] = ACTIONS(1393), + [anon_sym_out_GT_GT] = ACTIONS(1393), + [anon_sym_e_GT_GT] = ACTIONS(1393), + [anon_sym_o_GT_GT] = ACTIONS(1393), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1393), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1393), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1393), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1393), + [aux_sym_unquoted_token1] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1399), + }, + [STATE(206)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(247), + [sym_ctrl_if_parenthesized] = STATE(3440), + [sym_block] = STATE(3441), + [sym__expression_parenthesized] = STATE(3441), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(192), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3441), + [sym_comment] = STATE(206), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60597,282 +65490,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(193)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(3227), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(193), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [anon_sym_export] = ACTIONS(1130), - [anon_sym_alias] = ACTIONS(1133), - [anon_sym_let] = ACTIONS(1133), - [anon_sym_mut] = ACTIONS(1133), - [anon_sym_const] = ACTIONS(1133), - [aux_sym_cmd_identifier_token1] = ACTIONS(1136), - [anon_sym_def] = ACTIONS(1133), - [anon_sym_use] = ACTIONS(1133), - [anon_sym_export_DASHenv] = ACTIONS(1133), - [anon_sym_extern] = ACTIONS(1133), - [anon_sym_module] = ACTIONS(1133), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_loop] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1133), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1133), - [anon_sym_try] = ACTIONS(1142), - [anon_sym_catch] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1130), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [anon_sym_null] = ACTIONS(1151), - [aux_sym_cmd_identifier_token3] = ACTIONS(1154), - [aux_sym_cmd_identifier_token4] = ACTIONS(1154), - [aux_sym_cmd_identifier_token5] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1163), - [anon_sym_DASH2] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1175), - [aux_sym_expr_unary_token1] = ACTIONS(1178), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), - [anon_sym_DOT_DOT_LT] = ACTIONS(1181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1184), - [aux_sym__val_number_decimal_token2] = ACTIONS(1187), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_decimal_token4] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1196), - [anon_sym_0o] = ACTIONS(1199), - [anon_sym_0x] = ACTIONS(1199), - [sym_val_date] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_BQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1214), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1223), - }, - [STATE(194)] = { - [sym_expr_parenthesized] = STATE(3738), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(3941), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(3848), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(3366), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), - [sym_comment] = STATE(194), - [anon_sym_true] = ACTIONS(1226), - [anon_sym_false] = ACTIONS(1226), - [anon_sym_null] = ACTIONS(1228), - [aux_sym_cmd_identifier_token3] = ACTIONS(1230), - [aux_sym_cmd_identifier_token4] = ACTIONS(1230), - [aux_sym_cmd_identifier_token5] = ACTIONS(1230), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1238), - [anon_sym_DOT_DOT_LT] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(1240), - [aux_sym__val_number_decimal_token2] = ACTIONS(1240), - [aux_sym__val_number_decimal_token3] = ACTIONS(1242), - [aux_sym__val_number_decimal_token4] = ACTIONS(1242), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), - }, - [STATE(195)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(262), - [sym_ctrl_if_parenthesized] = STATE(3315), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), + [STATE(207)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3536), + [sym_block] = STATE(3537), + [sym__expression_parenthesized] = STATE(3537), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3316), - [sym_comment] = STATE(195), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3537), + [sym_comment] = STATE(207), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60889,83 +65587,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(196)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), + [STATE(208)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(211), + [sym_ctrl_if_parenthesized] = STATE(3468), + [sym_block] = STATE(3469), + [sym__expression_parenthesized] = STATE(3469), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), - [sym_comment] = STATE(196), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3469), + [sym_comment] = STATE(208), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60982,83 +65680,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(197)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), + [STATE(209)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(214), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_block] = STATE(3476), + [sym__expression_parenthesized] = STATE(3476), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), - [sym_comment] = STATE(197), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3476), + [sym_comment] = STATE(209), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61075,83 +65773,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(198)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(203), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), + [STATE(210)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(216), + [sym_ctrl_if_parenthesized] = STATE(3562), + [sym_block] = STATE(3508), + [sym__expression_parenthesized] = STATE(3508), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), - [sym_comment] = STATE(198), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3508), + [sym_comment] = STATE(210), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61168,83 +65866,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(199)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), + [STATE(211)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3559), + [sym_block] = STATE(3564), + [sym__expression_parenthesized] = STATE(3564), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), - [sym_comment] = STATE(199), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3564), + [sym_comment] = STATE(211), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61261,83 +65959,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(200)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), + [STATE(212)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(218), + [sym_ctrl_if_parenthesized] = STATE(3559), + [sym_block] = STATE(3564), + [sym__expression_parenthesized] = STATE(3564), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), - [sym_comment] = STATE(200), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3564), + [sym_comment] = STATE(212), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61354,83 +66052,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(201)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(204), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), + [STATE(213)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(220), + [sym_ctrl_if_parenthesized] = STATE(3498), + [sym_block] = STATE(3512), + [sym__expression_parenthesized] = STATE(3512), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), - [sym_comment] = STATE(201), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3512), + [sym_comment] = STATE(213), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61447,83 +66145,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(202)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), + [STATE(214)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3480), + [sym_block] = STATE(3545), + [sym__expression_parenthesized] = STATE(3545), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), - [sym_comment] = STATE(202), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3545), + [sym_comment] = STATE(214), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61540,83 +66238,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(203)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), + [STATE(215)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(222), + [sym_ctrl_if_parenthesized] = STATE(3480), + [sym_block] = STATE(3545), + [sym__expression_parenthesized] = STATE(3545), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), - [sym_comment] = STATE(203), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3545), + [sym_comment] = STATE(215), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61633,83 +66331,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(204)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), + [STATE(216)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3440), + [sym_block] = STATE(3441), + [sym__expression_parenthesized] = STATE(3441), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), - [sym_comment] = STATE(204), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3441), + [sym_comment] = STATE(216), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61726,83 +66424,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(205)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(202), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), + [STATE(217)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(223), + [sym_ctrl_if_parenthesized] = STATE(3440), + [sym_block] = STATE(3441), + [sym__expression_parenthesized] = STATE(3441), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), - [sym_comment] = STATE(205), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3441), + [sym_comment] = STATE(217), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61819,83 +66517,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(206)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(209), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), + [STATE(218)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3467), + [sym_block] = STATE(3471), + [sym__expression_parenthesized] = STATE(3471), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), - [sym_comment] = STATE(206), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3471), + [sym_comment] = STATE(218), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61912,83 +66610,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(207)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(212), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), + [STATE(219)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(225), + [sym_ctrl_if_parenthesized] = STATE(3467), + [sym_block] = STATE(3471), + [sym__expression_parenthesized] = STATE(3471), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), - [sym_comment] = STATE(207), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3471), + [sym_comment] = STATE(219), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62005,83 +66703,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(208)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(214), - [sym_ctrl_if_parenthesized] = STATE(3315), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), + [STATE(220)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3530), + [sym_block] = STATE(3442), + [sym__expression_parenthesized] = STATE(3442), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3316), - [sym_comment] = STATE(208), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3442), + [sym_comment] = STATE(220), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62098,83 +66796,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(209)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), + [STATE(221)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(226), + [sym_ctrl_if_parenthesized] = STATE(3530), + [sym_block] = STATE(3442), + [sym__expression_parenthesized] = STATE(3442), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), - [sym_comment] = STATE(209), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3442), + [sym_comment] = STATE(221), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62191,83 +66889,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(210)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(216), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), + [STATE(222)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3456), + [sym_block] = STATE(3459), + [sym__expression_parenthesized] = STATE(3459), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), - [sym_comment] = STATE(210), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3459), + [sym_comment] = STATE(222), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62284,83 +66982,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(211)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(218), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), + [STATE(223)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3549), + [sym_block] = STATE(3489), + [sym__expression_parenthesized] = STATE(3489), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), - [sym_comment] = STATE(211), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3489), + [sym_comment] = STATE(223), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62377,83 +67075,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(212)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), + [STATE(224)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(229), + [sym_ctrl_if_parenthesized] = STATE(3549), + [sym_block] = STATE(3489), + [sym__expression_parenthesized] = STATE(3489), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), - [sym_comment] = STATE(212), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3489), + [sym_comment] = STATE(224), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62470,83 +67168,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(213)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(220), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), + [STATE(225)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3538), + [sym_block] = STATE(3437), + [sym__expression_parenthesized] = STATE(3437), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), - [sym_comment] = STATE(213), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3437), + [sym_comment] = STATE(225), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62563,83 +67261,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(214)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), + [STATE(226)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3541), + [sym_block] = STATE(3542), + [sym__expression_parenthesized] = STATE(3542), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), - [sym_comment] = STATE(214), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3542), + [sym_comment] = STATE(226), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62656,83 +67354,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(215)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(222), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), + [STATE(227)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(230), + [sym_ctrl_if_parenthesized] = STATE(3541), + [sym_block] = STATE(3542), + [sym__expression_parenthesized] = STATE(3542), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), - [sym_comment] = STATE(215), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3542), + [sym_comment] = STATE(227), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62749,83 +67447,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(216)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), + [STATE(228)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3547), + [sym_block] = STATE(3461), + [sym__expression_parenthesized] = STATE(3461), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), - [sym_comment] = STATE(216), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3461), + [sym_comment] = STATE(228), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62842,83 +67540,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(217)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(224), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), + [STATE(229)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3477), + [sym_block] = STATE(3515), + [sym__expression_parenthesized] = STATE(3515), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), - [sym_comment] = STATE(217), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3515), + [sym_comment] = STATE(229), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62935,83 +67633,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(218)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), + [STATE(230)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3536), + [sym_block] = STATE(3537), + [sym__expression_parenthesized] = STATE(3537), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), - [sym_comment] = STATE(218), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3537), + [sym_comment] = STATE(230), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63028,83 +67726,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(219)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(225), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), + [STATE(231)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(257), + [sym_ctrl_if_parenthesized] = STATE(3468), + [sym_block] = STATE(3469), + [sym__expression_parenthesized] = STATE(3469), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), - [sym_comment] = STATE(219), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3469), + [sym_comment] = STATE(231), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63121,83 +67819,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(220)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), + [STATE(232)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(235), + [sym_ctrl_if_parenthesized] = STATE(3468), + [sym_block] = STATE(3469), + [sym__expression_parenthesized] = STATE(3469), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), - [sym_comment] = STATE(220), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3469), + [sym_comment] = STATE(232), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63214,83 +67912,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(221)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(227), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), + [STATE(233)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(238), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_block] = STATE(3476), + [sym__expression_parenthesized] = STATE(3476), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), - [sym_comment] = STATE(221), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3476), + [sym_comment] = STATE(233), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63307,83 +68005,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(222)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), + [STATE(234)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(240), + [sym_ctrl_if_parenthesized] = STATE(3562), + [sym_block] = STATE(3508), + [sym__expression_parenthesized] = STATE(3508), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), - [sym_comment] = STATE(222), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3508), + [sym_comment] = STATE(234), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63400,83 +68098,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(223)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(228), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), + [STATE(235)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3559), + [sym_block] = STATE(3564), + [sym__expression_parenthesized] = STATE(3564), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), - [sym_comment] = STATE(223), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3564), + [sym_comment] = STATE(235), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63493,83 +68191,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(224)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), + [STATE(236)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(241), + [sym_ctrl_if_parenthesized] = STATE(3559), + [sym_block] = STATE(3564), + [sym__expression_parenthesized] = STATE(3564), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), - [sym_comment] = STATE(224), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3564), + [sym_comment] = STATE(236), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63586,83 +68284,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(225)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), + [STATE(237)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(243), + [sym_ctrl_if_parenthesized] = STATE(3498), + [sym_block] = STATE(3512), + [sym__expression_parenthesized] = STATE(3512), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), - [sym_comment] = STATE(225), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3512), + [sym_comment] = STATE(237), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63679,83 +68377,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(226)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(229), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), + [STATE(238)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3480), + [sym_block] = STATE(3545), + [sym__expression_parenthesized] = STATE(3545), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), - [sym_comment] = STATE(226), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3545), + [sym_comment] = STATE(238), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63772,83 +68470,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(227)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), + [STATE(239)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(245), + [sym_ctrl_if_parenthesized] = STATE(3480), + [sym_block] = STATE(3545), + [sym__expression_parenthesized] = STATE(3545), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), - [sym_comment] = STATE(227), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3545), + [sym_comment] = STATE(239), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63865,83 +68563,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(228)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), + [STATE(240)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3440), + [sym_block] = STATE(3441), + [sym__expression_parenthesized] = STATE(3441), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), - [sym_comment] = STATE(228), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3441), + [sym_comment] = STATE(240), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63958,83 +68656,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(229)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), + [STATE(241)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3467), + [sym_block] = STATE(3471), + [sym__expression_parenthesized] = STATE(3471), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), - [sym_comment] = STATE(229), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3471), + [sym_comment] = STATE(241), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64051,83 +68749,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(230)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), + [STATE(242)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(249), + [sym_ctrl_if_parenthesized] = STATE(3467), + [sym_block] = STATE(3471), + [sym__expression_parenthesized] = STATE(3471), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), - [sym_comment] = STATE(230), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3471), + [sym_comment] = STATE(242), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64144,83 +68842,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(231)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(266), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), + [STATE(243)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3530), + [sym_block] = STATE(3442), + [sym__expression_parenthesized] = STATE(3442), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), - [sym_comment] = STATE(231), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3442), + [sym_comment] = STATE(243), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64237,83 +68935,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(232)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(237), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), + [STATE(244)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(250), + [sym_ctrl_if_parenthesized] = STATE(3530), + [sym_block] = STATE(3442), + [sym__expression_parenthesized] = STATE(3442), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), - [sym_comment] = STATE(232), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3442), + [sym_comment] = STATE(244), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64330,83 +69028,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(233)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(239), - [sym_ctrl_if_parenthesized] = STATE(3315), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), + [STATE(245)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3456), + [sym_block] = STATE(3459), + [sym__expression_parenthesized] = STATE(3459), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3316), - [sym_comment] = STATE(233), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3459), + [sym_comment] = STATE(245), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64423,83 +69121,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(234)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(200), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), + [STATE(246)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(252), + [sym_ctrl_if_parenthesized] = STATE(3456), + [sym_block] = STATE(3459), + [sym__expression_parenthesized] = STATE(3459), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), - [sym_comment] = STATE(234), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3459), + [sym_comment] = STATE(246), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64516,83 +69214,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(235)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(241), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), + [STATE(247)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3549), + [sym_block] = STATE(3489), + [sym__expression_parenthesized] = STATE(3489), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), - [sym_comment] = STATE(235), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3489), + [sym_comment] = STATE(247), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64609,83 +69307,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(236)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(243), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), + [STATE(248)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(253), + [sym_ctrl_if_parenthesized] = STATE(3549), + [sym_block] = STATE(3489), + [sym__expression_parenthesized] = STATE(3489), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), - [sym_comment] = STATE(236), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3489), + [sym_comment] = STATE(248), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64702,83 +69400,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(237)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), + [STATE(249)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3538), + [sym_block] = STATE(3437), + [sym__expression_parenthesized] = STATE(3437), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), - [sym_comment] = STATE(237), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3437), + [sym_comment] = STATE(249), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64795,83 +69493,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(238)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(245), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), + [STATE(250)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3541), + [sym_block] = STATE(3542), + [sym__expression_parenthesized] = STATE(3542), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), - [sym_comment] = STATE(238), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3542), + [sym_comment] = STATE(250), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64888,83 +69586,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(239)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), + [STATE(251)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(254), + [sym_ctrl_if_parenthesized] = STATE(3541), + [sym_block] = STATE(3542), + [sym__expression_parenthesized] = STATE(3542), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), - [sym_comment] = STATE(239), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3542), + [sym_comment] = STATE(251), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64981,83 +69679,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(240)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(247), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), + [STATE(252)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3547), + [sym_block] = STATE(3461), + [sym__expression_parenthesized] = STATE(3461), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), - [sym_comment] = STATE(240), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3461), + [sym_comment] = STATE(252), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65074,83 +69772,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(241)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), + [STATE(253)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3477), + [sym_block] = STATE(3515), + [sym__expression_parenthesized] = STATE(3515), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), - [sym_comment] = STATE(241), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3515), + [sym_comment] = STATE(253), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65167,83 +69865,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(242)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(249), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), + [STATE(254)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3536), + [sym_block] = STATE(3537), + [sym__expression_parenthesized] = STATE(3537), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), - [sym_comment] = STATE(242), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3537), + [sym_comment] = STATE(254), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65260,83 +69958,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(243)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), + [STATE(255)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(260), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_block] = STATE(3476), + [sym__expression_parenthesized] = STATE(3476), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), - [sym_comment] = STATE(243), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3476), + [sym_comment] = STATE(255), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65353,83 +70051,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(244)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(250), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), + [STATE(256)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(262), + [sym_ctrl_if_parenthesized] = STATE(3562), + [sym_block] = STATE(3508), + [sym__expression_parenthesized] = STATE(3508), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), - [sym_comment] = STATE(244), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3508), + [sym_comment] = STATE(256), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65446,83 +70144,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(245)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), + [STATE(257)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3559), + [sym_block] = STATE(3564), + [sym__expression_parenthesized] = STATE(3564), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), - [sym_comment] = STATE(245), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3564), + [sym_comment] = STATE(257), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65539,83 +70237,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(246)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(252), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), + [STATE(258)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(264), + [sym_ctrl_if_parenthesized] = STATE(3559), + [sym_block] = STATE(3564), + [sym__expression_parenthesized] = STATE(3564), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), - [sym_comment] = STATE(246), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3564), + [sym_comment] = STATE(258), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65632,83 +70330,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(247)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), + [STATE(259)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(266), + [sym_ctrl_if_parenthesized] = STATE(3498), + [sym_block] = STATE(3512), + [sym__expression_parenthesized] = STATE(3512), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), - [sym_comment] = STATE(247), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3512), + [sym_comment] = STATE(259), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65725,83 +70423,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(248)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(253), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), + [STATE(260)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3480), + [sym_block] = STATE(3545), + [sym__expression_parenthesized] = STATE(3545), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), - [sym_comment] = STATE(248), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3545), + [sym_comment] = STATE(260), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65818,83 +70516,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(249)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), + [STATE(261)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(268), + [sym_ctrl_if_parenthesized] = STATE(3480), + [sym_block] = STATE(3545), + [sym__expression_parenthesized] = STATE(3545), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), - [sym_comment] = STATE(249), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3545), + [sym_comment] = STATE(261), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65911,83 +70609,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(250)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), + [STATE(262)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3440), + [sym_block] = STATE(3441), + [sym__expression_parenthesized] = STATE(3441), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), - [sym_comment] = STATE(250), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3441), + [sym_comment] = STATE(262), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66004,83 +70702,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(251)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(254), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), + [STATE(263)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(270), + [sym_ctrl_if_parenthesized] = STATE(3440), + [sym_block] = STATE(3441), + [sym__expression_parenthesized] = STATE(3441), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), - [sym_comment] = STATE(251), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3441), + [sym_comment] = STATE(263), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66097,83 +70795,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(252)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), + [STATE(264)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3467), + [sym_block] = STATE(3471), + [sym__expression_parenthesized] = STATE(3471), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), - [sym_comment] = STATE(252), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3471), + [sym_comment] = STATE(264), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66190,83 +70888,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(253)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), + [STATE(265)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(272), + [sym_ctrl_if_parenthesized] = STATE(3467), + [sym_block] = STATE(3471), + [sym__expression_parenthesized] = STATE(3471), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), - [sym_comment] = STATE(253), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3471), + [sym_comment] = STATE(265), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66283,83 +70981,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(254)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), + [STATE(266)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3530), + [sym_block] = STATE(3442), + [sym__expression_parenthesized] = STATE(3442), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), - [sym_comment] = STATE(254), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3442), + [sym_comment] = STATE(266), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66376,83 +71074,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(255)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(257), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), + [STATE(267)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(273), + [sym_ctrl_if_parenthesized] = STATE(3530), + [sym_block] = STATE(3442), + [sym__expression_parenthesized] = STATE(3442), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), - [sym_comment] = STATE(255), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3442), + [sym_comment] = STATE(267), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66469,83 +71167,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(256)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(260), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), + [STATE(268)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3456), + [sym_block] = STATE(3459), + [sym__expression_parenthesized] = STATE(3459), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), - [sym_comment] = STATE(256), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3459), + [sym_comment] = STATE(268), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66562,83 +71260,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(257)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), + [STATE(269)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(275), + [sym_ctrl_if_parenthesized] = STATE(3456), + [sym_block] = STATE(3459), + [sym__expression_parenthesized] = STATE(3459), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), - [sym_comment] = STATE(257), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3459), + [sym_comment] = STATE(269), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66655,83 +71353,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(258)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(264), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), + [STATE(270)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3549), + [sym_block] = STATE(3489), + [sym__expression_parenthesized] = STATE(3489), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), - [sym_comment] = STATE(258), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3489), + [sym_comment] = STATE(270), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66748,83 +71446,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(259)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(196), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), + [STATE(271)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(276), + [sym_ctrl_if_parenthesized] = STATE(3549), + [sym_block] = STATE(3489), + [sym__expression_parenthesized] = STATE(3489), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), - [sym_comment] = STATE(259), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3489), + [sym_comment] = STATE(271), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66841,83 +71539,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(260)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), + [STATE(272)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3538), + [sym_block] = STATE(3437), + [sym__expression_parenthesized] = STATE(3437), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), - [sym_comment] = STATE(260), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3437), + [sym_comment] = STATE(272), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66934,83 +71632,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(261)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(197), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), + [STATE(273)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3541), + [sym_block] = STATE(3542), + [sym__expression_parenthesized] = STATE(3542), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), - [sym_comment] = STATE(261), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3542), + [sym_comment] = STATE(273), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67027,83 +71725,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(262)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), + [STATE(274)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(207), + [sym_ctrl_if_parenthesized] = STATE(3541), + [sym_block] = STATE(3542), + [sym__expression_parenthesized] = STATE(3542), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), - [sym_comment] = STATE(262), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3542), + [sym_comment] = STATE(274), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67120,83 +71818,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(263)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(230), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), + [STATE(275)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3547), + [sym_block] = STATE(3461), + [sym__expression_parenthesized] = STATE(3461), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), - [sym_comment] = STATE(263), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3461), + [sym_comment] = STATE(275), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67213,83 +71911,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(264)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), + [STATE(276)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(1545), + [sym_ctrl_if_parenthesized] = STATE(3477), + [sym_block] = STATE(3515), + [sym__expression_parenthesized] = STATE(3515), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), - [sym_comment] = STATE(264), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3515), + [sym_comment] = STATE(276), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67306,83 +72004,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(265)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(199), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), + [STATE(277)] = { + [sym_cmd_identifier] = STATE(3129), + [aux_sym__repeat_newline] = STATE(228), + [sym_ctrl_if_parenthesized] = STATE(3456), + [sym_block] = STATE(3459), + [sym__expression_parenthesized] = STATE(3459), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), - [sym_comment] = STATE(265), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3459), + [sym_comment] = STATE(277), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), + [sym__newline] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67399,83 +72097,906 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(266)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), - [sym_comment] = STATE(266), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [STATE(278)] = { + [sym_comment] = STATE(278), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(1432), + [aux_sym__immediate_decimal_token5] = ACTIONS(1434), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(279)] = { + [sym_comment] = STATE(279), + [ts_builtin_sym_end] = ACTIONS(769), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1438), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(280)] = { + [sym_comment] = STATE(280), + [ts_builtin_sym_end] = ACTIONS(761), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(1440), + [aux_sym__immediate_decimal_token5] = ACTIONS(1442), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(281)] = { + [sym_comment] = STATE(281), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1446), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(282)] = { + [sym_comment] = STATE(282), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(1448), + [aux_sym__immediate_decimal_token5] = ACTIONS(1450), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(283)] = { + [sym_comment] = STATE(283), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(1452), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1454), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(284)] = { + [sym_comment] = STATE(284), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(1456), + [aux_sym__immediate_decimal_token5] = ACTIONS(1458), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(285)] = { + [sym_cmd_identifier] = STATE(3080), + [sym__expression] = STATE(2486), + [sym_expr_unary] = STATE(1337), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1337), + [sym__expr_binary_expression] = STATE(2438), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1337), + [sym__value] = STATE(1337), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1320), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3535), + [sym_comment] = STATE(285), + [aux_sym_pipe_element_repeat2] = STATE(1493), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(39), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(39), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(39), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(286)] = { + [sym_comment] = STATE(286), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1460), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(287)] = { + [sym_cmd_identifier] = STATE(3005), + [sym__expression] = STATE(2480), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3424), + [sym_comment] = STATE(287), + [aux_sym_pipe_element_repeat2] = STATE(1493), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67492,724 +73013,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(267)] = { - [sym_comment] = STATE(267), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1278), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(268)] = { - [sym_comment] = STATE(268), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1280), - [aux_sym__immediate_decimal_token5] = ACTIONS(1282), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(269)] = { - [sym_comment] = STATE(269), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1284), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1286), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(270)] = { - [sym_comment] = STATE(270), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1288), - [aux_sym__immediate_decimal_token5] = ACTIONS(1290), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(271)] = { - [sym_comment] = STATE(271), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1292), - [aux_sym__immediate_decimal_token5] = ACTIONS(1294), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(272)] = { - [sym_comment] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1296), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1298), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(273)] = { - [sym_comment] = STATE(273), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1300), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [STATE(288)] = { + [sym_comment] = STATE(288), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1446), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(274)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(274), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [STATE(289)] = { + [sym_cmd_identifier] = STATE(3129), + [sym_ctrl_if] = STATE(3313), + [sym_block] = STATE(3314), + [sym__expression] = STATE(3314), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2445), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3314), + [sym_comment] = STATE(289), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(477), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1418), + [aux_sym__val_number_decimal_token2] = ACTIONS(1420), + [aux_sym__val_number_decimal_token3] = ACTIONS(1422), + [aux_sym__val_number_decimal_token4] = ACTIONS(1422), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68226,81 +73195,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(275)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), + [STATE(290)] = { + [sym_comment] = STATE(290), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1462), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(291)] = { + [sym_comment] = STATE(291), + [ts_builtin_sym_end] = ACTIONS(769), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1438), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(292)] = { + [sym_comment] = STATE(292), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1454), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(293)] = { + [sym_cmd_identifier] = STATE(3098), + [sym__expression_parenthesized] = STATE(2484), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(275), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3458), + [sym_comment] = STATE(293), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1502), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68313,85 +73555,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(276)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(307), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(276), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [STATE(294)] = { + [sym_comment] = STATE(294), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1464), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(295)] = { + [sym_cmd_identifier] = STATE(3005), + [sym__expression] = STATE(2480), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3424), + [sym_comment] = STATE(295), + [aux_sym_pipe_element_repeat2] = STATE(1493), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1304), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), + [aux_sym__val_number_decimal_token1] = ACTIONS(1466), + [aux_sym__val_number_decimal_token2] = ACTIONS(1468), + [aux_sym__val_number_decimal_token3] = ACTIONS(1470), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68408,354 +73741,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(277)] = { - [sym_comment] = STATE(277), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1310), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(278)] = { - [sym_comment] = STATE(278), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1312), - [aux_sym__immediate_decimal_token5] = ACTIONS(1314), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(279)] = { - [sym_comment] = STATE(279), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1278), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(280)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(280), - [aux_sym_pipe_element_repeat2] = STATE(1392), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(296)] = { + [sym_cmd_identifier] = STATE(3129), + [sym_ctrl_if] = STATE(3313), + [sym_block] = STATE(3314), + [sym__expression] = STATE(3314), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2445), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(329), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3314), + [sym_comment] = STATE(296), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1318), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_decimal_token4] = ACTIONS(1320), + [aux_sym__val_number_decimal_token1] = ACTIONS(1426), + [aux_sym__val_number_decimal_token2] = ACTIONS(1428), + [aux_sym__val_number_decimal_token3] = ACTIONS(1430), + [aux_sym__val_number_decimal_token4] = ACTIONS(1430), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68772,263 +73832,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(281)] = { - [sym_cmd_identifier] = STATE(2895), - [sym__expression] = STATE(2262), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3334), - [sym_comment] = STATE(281), - [aux_sym_pipe_element_repeat2] = STATE(1392), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(39), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(39), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(282)] = { - [sym_comment] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1298), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), + [STATE(297)] = { + [sym_comment] = STATE(297), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1476), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(283)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(283), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(298)] = { + [sym_cmd_identifier] = STATE(3005), + [sym__expression] = STATE(2480), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(144), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3424), + [sym_comment] = STATE(298), + [aux_sym_pipe_element_repeat2] = STATE(1493), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69041,176 +74010,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(284)] = { - [sym_comment] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1322), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(285)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(285), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [STATE(299)] = { + [sym_cmd_identifier] = STATE(3129), + [sym_ctrl_if] = STATE(3313), + [sym_block] = STATE(3314), + [sym__expression] = STATE(3314), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2445), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(325), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3314), + [sym_comment] = STATE(299), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1412), + [aux_sym__val_number_decimal_token2] = ACTIONS(1414), + [aux_sym__val_number_decimal_token3] = ACTIONS(1416), + [aux_sym__val_number_decimal_token4] = ACTIONS(1416), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69227,172 +74105,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(286)] = { - [sym_comment] = STATE(286), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1286), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(287)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(287), - [aux_sym_pipe_element_repeat2] = STATE(1392), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(300)] = { + [sym_cmd_identifier] = STATE(3005), + [sym__expression] = STATE(2480), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2443), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4900), + [sym_command] = STATE(3424), + [sym_comment] = STATE(300), + [aux_sym_pipe_element_repeat2] = STATE(1493), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(293), + [aux_sym__val_number_decimal_token2] = ACTIONS(295), + [aux_sym__val_number_decimal_token3] = ACTIONS(297), + [aux_sym__val_number_decimal_token4] = ACTIONS(297), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69409,81 +74196,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(288)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(288), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [STATE(301)] = { + [sym_cmd_identifier] = STATE(3129), + [sym_ctrl_if] = STATE(3313), + [sym_block] = STATE(3314), + [sym__expression] = STATE(3314), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2445), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_command] = STATE(3314), + [sym_comment] = STATE(301), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [anon_sym_null] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1406), + [aux_sym_cmd_identifier_token4] = ACTIONS(1406), + [aux_sym_cmd_identifier_token5] = ACTIONS(1406), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(1410), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1478), + [aux_sym__val_number_decimal_token2] = ACTIONS(1480), + [aux_sym__val_number_decimal_token3] = ACTIONS(1482), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69500,81 +74287,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(289)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), + [STATE(302)] = { + [sym_cmd_identifier] = STATE(3098), + [sym__expression_parenthesized] = STATE(2484), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(289), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(152), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3458), + [sym_comment] = STATE(302), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1502), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1318), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_decimal_token4] = ACTIONS(1320), + [aux_sym__val_number_decimal_token1] = ACTIONS(1466), + [aux_sym__val_number_decimal_token2] = ACTIONS(1468), + [aux_sym__val_number_decimal_token3] = ACTIONS(1470), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69587,85 +74374,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(290)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(290), - [aux_sym_pipe_element_repeat2] = STATE(1392), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [STATE(303)] = { + [sym_cmd_identifier] = STATE(3098), + [sym__expression_parenthesized] = STATE(2484), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(130), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_env_var] = STATE(4694), + [sym__command_parenthesized] = STATE(3458), + [sym_comment] = STATE(303), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1502), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(273), + [anon_sym_let] = ACTIONS(273), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(253), + [anon_sym_def] = ACTIONS(273), + [anon_sym_use] = ACTIONS(273), + [anon_sym_export_DASHenv] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_loop] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(273), + [anon_sym_match] = ACTIONS(273), + [anon_sym_in] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_null] = ACTIONS(283), + [aux_sym_cmd_identifier_token3] = ACTIONS(285), + [aux_sym_cmd_identifier_token4] = ACTIONS(285), + [aux_sym_cmd_identifier_token5] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69678,46 +74465,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(291)] = { - [sym_cmd_identifier] = STATE(2929), - [sym_ctrl_if] = STATE(3301), - [sym_block] = STATE(3302), - [sym__expression] = STATE(3302), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_command] = STATE(3302), - [sym_comment] = STATE(291), + [STATE(304)] = { + [sym_cmd_identifier] = STATE(3194), + [sym_ctrl_if] = STATE(3554), + [sym_block] = STATE(3546), + [sym__expression] = STATE(3546), + [sym_expr_unary] = STATE(1337), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1337), + [sym__expr_binary_expression] = STATE(2439), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1337), + [sym__value] = STATE(1337), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1320), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_command] = STATE(3546), + [sym_comment] = STATE(304), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -69738,25 +74525,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(39), [anon_sym_match] = ACTIONS(39), [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [anon_sym_null] = ACTIONS(1328), - [aux_sym_cmd_identifier_token3] = ACTIONS(1330), - [aux_sym_cmd_identifier_token4] = ACTIONS(1330), - [aux_sym_cmd_identifier_token5] = ACTIONS(1330), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1488), + [aux_sym_cmd_identifier_token4] = ACTIONS(1488), + [aux_sym_cmd_identifier_token5] = ACTIONS(1488), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1490), [anon_sym_DOT_DOT] = ACTIONS(69), [aux_sym_expr_unary_token1] = ACTIONS(73), [anon_sym_DOT_DOT_EQ] = ACTIONS(75), [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1338), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), @@ -69773,2814 +74560,2716 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(292)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(292), - [aux_sym_pipe_element_repeat2] = STATE(1392), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(293)] = { - [sym_comment] = STATE(293), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1340), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(294)] = { - [sym_comment] = STATE(294), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1342), - [sym_duration_unit] = ACTIONS(1344), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(295)] = { - [sym_comment] = STATE(295), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1310), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(296)] = { - [sym_comment] = STATE(296), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1346), - [aux_sym__immediate_decimal_token5] = ACTIONS(1348), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(297)] = { - [sym_comment] = STATE(297), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(298)] = { - [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(299)] = { - [sym_comment] = STATE(299), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(300)] = { - [sym_comment] = STATE(300), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(301)] = { - [sym_comment] = STATE(301), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(302)] = { - [sym_comment] = STATE(302), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(303)] = { - [sym_comment] = STATE(303), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(304)] = { - [sym_comment] = STATE(304), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(305)] = { [sym_comment] = STATE(305), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [anon_sym_in] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_like] = ACTIONS(920), + [anon_sym_not_DASHlike] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_in2] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_has] = ACTIONS(920), + [anon_sym_not_DASHhas] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(920), + [aux_sym_cmd_identifier_token6] = ACTIONS(924), + [sym__newline] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_err_GT_PIPE] = ACTIONS(815), + [anon_sym_out_GT_PIPE] = ACTIONS(815), + [anon_sym_e_GT_PIPE] = ACTIONS(815), + [anon_sym_o_GT_PIPE] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(815), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(815), + [anon_sym_xor2] = ACTIONS(815), + [anon_sym_or2] = ACTIONS(815), + [anon_sym_not_DASHin2] = ACTIONS(815), + [anon_sym_has2] = ACTIONS(815), + [anon_sym_not_DASHhas2] = ACTIONS(815), + [anon_sym_starts_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(815), + [anon_sym_ends_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(815), + [anon_sym_EQ_EQ2] = ACTIONS(815), + [anon_sym_BANG_EQ2] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(815), + [anon_sym_GT_EQ2] = ACTIONS(815), + [anon_sym_EQ_TILDE2] = ACTIONS(815), + [anon_sym_BANG_TILDE2] = ACTIONS(815), + [anon_sym_like2] = ACTIONS(815), + [anon_sym_not_DASHlike2] = ACTIONS(815), + [anon_sym_STAR_STAR2] = ACTIONS(815), + [anon_sym_PLUS_PLUS2] = ACTIONS(815), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(815), + [anon_sym_SLASH_SLASH2] = ACTIONS(815), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(815), + [anon_sym_bit_DASHshr2] = ACTIONS(815), + [anon_sym_bit_DASHand2] = ACTIONS(815), + [anon_sym_bit_DASHxor2] = ACTIONS(815), + [anon_sym_bit_DASHor2] = ACTIONS(815), + [anon_sym_DOT_DOT2] = ACTIONS(823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(825), + [anon_sym_DOT_DOT_LT2] = ACTIONS(825), + [sym_filesize_unit] = ACTIONS(1498), + [sym_duration_unit] = ACTIONS(1500), [anon_sym_POUND] = ACTIONS(103), }, [STATE(306)] = { [sym_comment] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(970), - [anon_sym_SLASH_SLASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_bit_DASHshl] = ACTIONS(970), - [anon_sym_bit_DASHshr] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [anon_sym_BANG_TILDE] = ACTIONS(970), - [anon_sym_like] = ACTIONS(970), - [anon_sym_not_DASHlike] = ACTIONS(970), - [anon_sym_bit_DASHand] = ACTIONS(970), - [anon_sym_bit_DASHxor] = ACTIONS(970), - [anon_sym_bit_DASHor] = ACTIONS(970), - [anon_sym_and] = ACTIONS(970), - [anon_sym_xor] = ACTIONS(970), - [anon_sym_or] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_not_DASHin] = ACTIONS(970), - [anon_sym_has] = ACTIONS(970), - [anon_sym_not_DASHhas] = ACTIONS(970), - [anon_sym_starts_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(970), - [anon_sym_ends_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [sym_filesize_unit] = ACTIONS(1350), - [sym_duration_unit] = ACTIONS(1352), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(1502), + [aux_sym__immediate_decimal_token5] = ACTIONS(1504), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), [anon_sym_POUND] = ACTIONS(103), }, [STATE(307)] = { [sym_comment] = STATE(307), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1354), - [sym_duration_unit] = ACTIONS(1356), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(103), }, [STATE(308)] = { [sym_comment] = STATE(308), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1360), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), + [anon_sym_in] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(896), + [anon_sym_SLASH_SLASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_bit_DASHshl] = ACTIONS(896), + [anon_sym_bit_DASHshr] = ACTIONS(896), + [anon_sym_EQ_TILDE] = ACTIONS(896), + [anon_sym_BANG_TILDE] = ACTIONS(896), + [anon_sym_like] = ACTIONS(896), + [anon_sym_not_DASHlike] = ACTIONS(896), + [anon_sym_bit_DASHand] = ACTIONS(896), + [anon_sym_bit_DASHxor] = ACTIONS(896), + [anon_sym_bit_DASHor] = ACTIONS(896), + [anon_sym_and] = ACTIONS(896), + [anon_sym_xor] = ACTIONS(896), + [anon_sym_or] = ACTIONS(896), + [anon_sym_in2] = ACTIONS(896), + [anon_sym_not_DASHin] = ACTIONS(896), + [anon_sym_has] = ACTIONS(896), + [anon_sym_not_DASHhas] = ACTIONS(896), + [anon_sym_starts_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(896), + [anon_sym_ends_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(896), + [aux_sym_cmd_identifier_token6] = ACTIONS(894), + [sym__newline] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_err_GT_PIPE] = ACTIONS(894), + [anon_sym_out_GT_PIPE] = ACTIONS(894), + [anon_sym_e_GT_PIPE] = ACTIONS(894), + [anon_sym_o_GT_PIPE] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_GT2] = ACTIONS(894), + [anon_sym_DASH2] = ACTIONS(894), + [anon_sym_STAR2] = ACTIONS(894), + [anon_sym_and2] = ACTIONS(894), + [anon_sym_xor2] = ACTIONS(894), + [anon_sym_or2] = ACTIONS(894), + [anon_sym_not_DASHin2] = ACTIONS(894), + [anon_sym_has2] = ACTIONS(894), + [anon_sym_not_DASHhas2] = ACTIONS(894), + [anon_sym_starts_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(894), + [anon_sym_ends_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(894), + [anon_sym_EQ_EQ2] = ACTIONS(894), + [anon_sym_BANG_EQ2] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ2] = ACTIONS(894), + [anon_sym_GT_EQ2] = ACTIONS(894), + [anon_sym_EQ_TILDE2] = ACTIONS(894), + [anon_sym_BANG_TILDE2] = ACTIONS(894), + [anon_sym_like2] = ACTIONS(894), + [anon_sym_not_DASHlike2] = ACTIONS(894), + [anon_sym_STAR_STAR2] = ACTIONS(894), + [anon_sym_PLUS_PLUS2] = ACTIONS(894), + [anon_sym_SLASH2] = ACTIONS(894), + [anon_sym_mod2] = ACTIONS(894), + [anon_sym_SLASH_SLASH2] = ACTIONS(894), + [anon_sym_PLUS2] = ACTIONS(894), + [anon_sym_bit_DASHshl2] = ACTIONS(894), + [anon_sym_bit_DASHshr2] = ACTIONS(894), + [anon_sym_bit_DASHand2] = ACTIONS(894), + [anon_sym_bit_DASHxor2] = ACTIONS(894), + [anon_sym_bit_DASHor2] = ACTIONS(894), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(896), [anon_sym_POUND] = ACTIONS(103), }, [STATE(309)] = { [sym_comment] = STATE(309), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1362), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(103), }, [STATE(310)] = { [sym_comment] = STATE(310), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1364), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [ts_builtin_sym_end] = ACTIONS(896), + [anon_sym_in] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(896), + [anon_sym_SLASH_SLASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_bit_DASHshl] = ACTIONS(896), + [anon_sym_bit_DASHshr] = ACTIONS(896), + [anon_sym_EQ_TILDE] = ACTIONS(896), + [anon_sym_BANG_TILDE] = ACTIONS(896), + [anon_sym_like] = ACTIONS(896), + [anon_sym_not_DASHlike] = ACTIONS(896), + [anon_sym_bit_DASHand] = ACTIONS(896), + [anon_sym_bit_DASHxor] = ACTIONS(896), + [anon_sym_bit_DASHor] = ACTIONS(896), + [anon_sym_and] = ACTIONS(896), + [anon_sym_xor] = ACTIONS(896), + [anon_sym_or] = ACTIONS(896), + [anon_sym_in2] = ACTIONS(896), + [anon_sym_not_DASHin] = ACTIONS(896), + [anon_sym_has] = ACTIONS(896), + [anon_sym_not_DASHhas] = ACTIONS(896), + [anon_sym_starts_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(896), + [anon_sym_ends_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(896), + [aux_sym_cmd_identifier_token6] = ACTIONS(894), + [sym__newline] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_err_GT_PIPE] = ACTIONS(894), + [anon_sym_out_GT_PIPE] = ACTIONS(894), + [anon_sym_e_GT_PIPE] = ACTIONS(894), + [anon_sym_o_GT_PIPE] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), + [anon_sym_GT2] = ACTIONS(894), + [anon_sym_DASH2] = ACTIONS(894), + [anon_sym_STAR2] = ACTIONS(894), + [anon_sym_and2] = ACTIONS(894), + [anon_sym_xor2] = ACTIONS(894), + [anon_sym_or2] = ACTIONS(894), + [anon_sym_not_DASHin2] = ACTIONS(894), + [anon_sym_has2] = ACTIONS(894), + [anon_sym_not_DASHhas2] = ACTIONS(894), + [anon_sym_starts_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(894), + [anon_sym_ends_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(894), + [anon_sym_EQ_EQ2] = ACTIONS(894), + [anon_sym_BANG_EQ2] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ2] = ACTIONS(894), + [anon_sym_GT_EQ2] = ACTIONS(894), + [anon_sym_EQ_TILDE2] = ACTIONS(894), + [anon_sym_BANG_TILDE2] = ACTIONS(894), + [anon_sym_like2] = ACTIONS(894), + [anon_sym_not_DASHlike2] = ACTIONS(894), + [anon_sym_STAR_STAR2] = ACTIONS(894), + [anon_sym_PLUS_PLUS2] = ACTIONS(894), + [anon_sym_SLASH2] = ACTIONS(894), + [anon_sym_mod2] = ACTIONS(894), + [anon_sym_SLASH_SLASH2] = ACTIONS(894), + [anon_sym_PLUS2] = ACTIONS(894), + [anon_sym_bit_DASHshl2] = ACTIONS(894), + [anon_sym_bit_DASHshr2] = ACTIONS(894), + [anon_sym_bit_DASHand2] = ACTIONS(894), + [anon_sym_bit_DASHxor2] = ACTIONS(894), + [anon_sym_bit_DASHor2] = ACTIONS(894), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(896), [anon_sym_POUND] = ACTIONS(103), }, [STATE(311)] = { [sym_comment] = STATE(311), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1366), - [sym_duration_unit] = ACTIONS(1368), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), [anon_sym_POUND] = ACTIONS(103), }, [STATE(312)] = { [sym_comment] = STATE(312), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1476), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(103), }, [STATE(313)] = { [sym_comment] = STATE(313), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), [anon_sym_POUND] = ACTIONS(103), }, [STATE(314)] = { [sym_comment] = STATE(314), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1506), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(103), }, [STATE(315)] = { [sym_comment] = STATE(315), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1360), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), + [ts_builtin_sym_end] = ACTIONS(761), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), [anon_sym_POUND] = ACTIONS(103), }, [STATE(316)] = { [sym_comment] = STATE(316), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(103), }, [STATE(317)] = { [sym_comment] = STATE(317), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), + [ts_builtin_sym_end] = ACTIONS(904), + [anon_sym_in] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_SLASH] = ACTIONS(908), + [anon_sym_mod] = ACTIONS(906), + [anon_sym_SLASH_SLASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_bit_DASHshl] = ACTIONS(906), + [anon_sym_bit_DASHshr] = ACTIONS(906), + [anon_sym_EQ_TILDE] = ACTIONS(906), + [anon_sym_BANG_TILDE] = ACTIONS(906), + [anon_sym_like] = ACTIONS(906), + [anon_sym_not_DASHlike] = ACTIONS(906), + [anon_sym_bit_DASHand] = ACTIONS(906), + [anon_sym_bit_DASHxor] = ACTIONS(906), + [anon_sym_bit_DASHor] = ACTIONS(906), + [anon_sym_and] = ACTIONS(906), + [anon_sym_xor] = ACTIONS(906), + [anon_sym_or] = ACTIONS(906), + [anon_sym_in2] = ACTIONS(906), + [anon_sym_not_DASHin] = ACTIONS(906), + [anon_sym_has] = ACTIONS(906), + [anon_sym_not_DASHhas] = ACTIONS(906), + [anon_sym_starts_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), + [anon_sym_ends_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), + [anon_sym_EQ_EQ] = ACTIONS(906), + [anon_sym_BANG_EQ] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(906), + [aux_sym_cmd_identifier_token6] = ACTIONS(910), + [sym__newline] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_err_GT_PIPE] = ACTIONS(815), + [anon_sym_out_GT_PIPE] = ACTIONS(815), + [anon_sym_e_GT_PIPE] = ACTIONS(815), + [anon_sym_o_GT_PIPE] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(815), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(815), + [anon_sym_xor2] = ACTIONS(815), + [anon_sym_or2] = ACTIONS(815), + [anon_sym_not_DASHin2] = ACTIONS(815), + [anon_sym_has2] = ACTIONS(815), + [anon_sym_not_DASHhas2] = ACTIONS(815), + [anon_sym_starts_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(815), + [anon_sym_ends_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(815), + [anon_sym_EQ_EQ2] = ACTIONS(815), + [anon_sym_BANG_EQ2] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(815), + [anon_sym_GT_EQ2] = ACTIONS(815), + [anon_sym_EQ_TILDE2] = ACTIONS(815), + [anon_sym_BANG_TILDE2] = ACTIONS(815), + [anon_sym_like2] = ACTIONS(815), + [anon_sym_not_DASHlike2] = ACTIONS(815), + [anon_sym_STAR_STAR2] = ACTIONS(815), + [anon_sym_PLUS_PLUS2] = ACTIONS(815), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(815), + [anon_sym_SLASH_SLASH2] = ACTIONS(815), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(815), + [anon_sym_bit_DASHshr2] = ACTIONS(815), + [anon_sym_bit_DASHand2] = ACTIONS(815), + [anon_sym_bit_DASHxor2] = ACTIONS(815), + [anon_sym_bit_DASHor2] = ACTIONS(815), + [anon_sym_DOT_DOT2] = ACTIONS(912), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(914), + [anon_sym_DOT_DOT_LT2] = ACTIONS(914), + [sym_filesize_unit] = ACTIONS(1508), + [sym_duration_unit] = ACTIONS(1510), [anon_sym_POUND] = ACTIONS(103), }, [STATE(318)] = { [sym_comment] = STATE(318), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), + [anon_sym_in] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(896), + [anon_sym_SLASH_SLASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_bit_DASHshl] = ACTIONS(896), + [anon_sym_bit_DASHshr] = ACTIONS(896), + [anon_sym_EQ_TILDE] = ACTIONS(896), + [anon_sym_BANG_TILDE] = ACTIONS(896), + [anon_sym_like] = ACTIONS(896), + [anon_sym_not_DASHlike] = ACTIONS(896), + [anon_sym_bit_DASHand] = ACTIONS(896), + [anon_sym_bit_DASHxor] = ACTIONS(896), + [anon_sym_bit_DASHor] = ACTIONS(896), + [anon_sym_and] = ACTIONS(896), + [anon_sym_xor] = ACTIONS(896), + [anon_sym_or] = ACTIONS(896), + [anon_sym_in2] = ACTIONS(896), + [anon_sym_not_DASHin] = ACTIONS(896), + [anon_sym_has] = ACTIONS(896), + [anon_sym_not_DASHhas] = ACTIONS(896), + [anon_sym_starts_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(896), + [anon_sym_ends_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(896), + [aux_sym_cmd_identifier_token6] = ACTIONS(894), + [sym__newline] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_err_GT_PIPE] = ACTIONS(894), + [anon_sym_out_GT_PIPE] = ACTIONS(894), + [anon_sym_e_GT_PIPE] = ACTIONS(894), + [anon_sym_o_GT_PIPE] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), + [anon_sym_GT2] = ACTIONS(894), + [anon_sym_DASH2] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_STAR2] = ACTIONS(894), + [anon_sym_and2] = ACTIONS(894), + [anon_sym_xor2] = ACTIONS(894), + [anon_sym_or2] = ACTIONS(894), + [anon_sym_not_DASHin2] = ACTIONS(894), + [anon_sym_has2] = ACTIONS(894), + [anon_sym_not_DASHhas2] = ACTIONS(894), + [anon_sym_starts_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(894), + [anon_sym_ends_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(894), + [anon_sym_EQ_EQ2] = ACTIONS(894), + [anon_sym_BANG_EQ2] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ2] = ACTIONS(894), + [anon_sym_GT_EQ2] = ACTIONS(894), + [anon_sym_EQ_TILDE2] = ACTIONS(894), + [anon_sym_BANG_TILDE2] = ACTIONS(894), + [anon_sym_like2] = ACTIONS(894), + [anon_sym_not_DASHlike2] = ACTIONS(894), + [anon_sym_STAR_STAR2] = ACTIONS(894), + [anon_sym_PLUS_PLUS2] = ACTIONS(894), + [anon_sym_SLASH2] = ACTIONS(894), + [anon_sym_mod2] = ACTIONS(894), + [anon_sym_SLASH_SLASH2] = ACTIONS(894), + [anon_sym_PLUS2] = ACTIONS(894), + [anon_sym_bit_DASHshl2] = ACTIONS(894), + [anon_sym_bit_DASHshr2] = ACTIONS(894), + [anon_sym_bit_DASHand2] = ACTIONS(894), + [anon_sym_bit_DASHxor2] = ACTIONS(894), + [anon_sym_bit_DASHor2] = ACTIONS(894), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(896), [anon_sym_POUND] = ACTIONS(103), }, [STATE(319)] = { [sym_comment] = STATE(319), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1372), + [anon_sym_in] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_like] = ACTIONS(920), + [anon_sym_not_DASHlike] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_in2] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_has] = ACTIONS(920), + [anon_sym_not_DASHhas] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(920), + [aux_sym_cmd_identifier_token6] = ACTIONS(924), + [sym__newline] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_err_GT_PIPE] = ACTIONS(815), + [anon_sym_out_GT_PIPE] = ACTIONS(815), + [anon_sym_e_GT_PIPE] = ACTIONS(815), + [anon_sym_o_GT_PIPE] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(815), + [anon_sym_xor2] = ACTIONS(815), + [anon_sym_or2] = ACTIONS(815), + [anon_sym_not_DASHin2] = ACTIONS(815), + [anon_sym_has2] = ACTIONS(815), + [anon_sym_not_DASHhas2] = ACTIONS(815), + [anon_sym_starts_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(815), + [anon_sym_ends_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(815), + [anon_sym_EQ_EQ2] = ACTIONS(815), + [anon_sym_BANG_EQ2] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(815), + [anon_sym_GT_EQ2] = ACTIONS(815), + [anon_sym_EQ_TILDE2] = ACTIONS(815), + [anon_sym_BANG_TILDE2] = ACTIONS(815), + [anon_sym_like2] = ACTIONS(815), + [anon_sym_not_DASHlike2] = ACTIONS(815), + [anon_sym_STAR_STAR2] = ACTIONS(815), + [anon_sym_PLUS_PLUS2] = ACTIONS(815), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(815), + [anon_sym_SLASH_SLASH2] = ACTIONS(815), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(815), + [anon_sym_bit_DASHshr2] = ACTIONS(815), + [anon_sym_bit_DASHand2] = ACTIONS(815), + [anon_sym_bit_DASHxor2] = ACTIONS(815), + [anon_sym_bit_DASHor2] = ACTIONS(815), + [anon_sym_DOT_DOT2] = ACTIONS(823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(825), + [anon_sym_DOT_DOT_LT2] = ACTIONS(825), + [sym_filesize_unit] = ACTIONS(1512), + [sym_duration_unit] = ACTIONS(1514), [anon_sym_POUND] = ACTIONS(103), }, [STATE(320)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4980), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(320), - [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4025), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_RBRACK] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(321)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5080), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(321), - [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4025), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_RBRACK] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_in] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(896), + [anon_sym_SLASH_SLASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_bit_DASHshl] = ACTIONS(896), + [anon_sym_bit_DASHshr] = ACTIONS(896), + [anon_sym_EQ_TILDE] = ACTIONS(896), + [anon_sym_BANG_TILDE] = ACTIONS(896), + [anon_sym_like] = ACTIONS(896), + [anon_sym_not_DASHlike] = ACTIONS(896), + [anon_sym_bit_DASHand] = ACTIONS(896), + [anon_sym_bit_DASHxor] = ACTIONS(896), + [anon_sym_bit_DASHor] = ACTIONS(896), + [anon_sym_and] = ACTIONS(896), + [anon_sym_xor] = ACTIONS(896), + [anon_sym_or] = ACTIONS(896), + [anon_sym_in2] = ACTIONS(896), + [anon_sym_not_DASHin] = ACTIONS(896), + [anon_sym_has] = ACTIONS(896), + [anon_sym_not_DASHhas] = ACTIONS(896), + [anon_sym_starts_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(896), + [anon_sym_ends_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(896), + [aux_sym_cmd_identifier_token6] = ACTIONS(894), + [sym__newline] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_err_GT_PIPE] = ACTIONS(894), + [anon_sym_out_GT_PIPE] = ACTIONS(894), + [anon_sym_e_GT_PIPE] = ACTIONS(894), + [anon_sym_o_GT_PIPE] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), + [anon_sym_GT2] = ACTIONS(894), + [anon_sym_DASH2] = ACTIONS(894), + [anon_sym_STAR2] = ACTIONS(894), + [anon_sym_and2] = ACTIONS(894), + [anon_sym_xor2] = ACTIONS(894), + [anon_sym_or2] = ACTIONS(894), + [anon_sym_not_DASHin2] = ACTIONS(894), + [anon_sym_has2] = ACTIONS(894), + [anon_sym_not_DASHhas2] = ACTIONS(894), + [anon_sym_starts_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(894), + [anon_sym_ends_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(894), + [anon_sym_EQ_EQ2] = ACTIONS(894), + [anon_sym_BANG_EQ2] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ2] = ACTIONS(894), + [anon_sym_GT_EQ2] = ACTIONS(894), + [anon_sym_EQ_TILDE2] = ACTIONS(894), + [anon_sym_BANG_TILDE2] = ACTIONS(894), + [anon_sym_like2] = ACTIONS(894), + [anon_sym_not_DASHlike2] = ACTIONS(894), + [anon_sym_STAR_STAR2] = ACTIONS(894), + [anon_sym_PLUS_PLUS2] = ACTIONS(894), + [anon_sym_SLASH2] = ACTIONS(894), + [anon_sym_mod2] = ACTIONS(894), + [anon_sym_SLASH_SLASH2] = ACTIONS(894), + [anon_sym_PLUS2] = ACTIONS(894), + [anon_sym_bit_DASHshl2] = ACTIONS(894), + [anon_sym_bit_DASHshr2] = ACTIONS(894), + [anon_sym_bit_DASHand2] = ACTIONS(894), + [anon_sym_bit_DASHxor2] = ACTIONS(894), + [anon_sym_bit_DASHor2] = ACTIONS(894), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(896), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(322)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5047), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(322), - [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4025), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_RBRACK] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(323)] = { [sym_comment] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1520), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(324)] = { + [sym_comment] = STATE(324), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(325)] = { + [sym_comment] = STATE(325), + [anon_sym_in] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_like] = ACTIONS(920), + [anon_sym_not_DASHlike] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_in2] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_has] = ACTIONS(920), + [anon_sym_not_DASHhas] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(920), + [aux_sym_cmd_identifier_token6] = ACTIONS(924), + [sym__newline] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_err_GT_PIPE] = ACTIONS(815), + [anon_sym_out_GT_PIPE] = ACTIONS(815), + [anon_sym_e_GT_PIPE] = ACTIONS(815), + [anon_sym_o_GT_PIPE] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(815), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(815), + [anon_sym_xor2] = ACTIONS(815), + [anon_sym_or2] = ACTIONS(815), + [anon_sym_not_DASHin2] = ACTIONS(815), + [anon_sym_has2] = ACTIONS(815), + [anon_sym_not_DASHhas2] = ACTIONS(815), + [anon_sym_starts_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(815), + [anon_sym_ends_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(815), + [anon_sym_EQ_EQ2] = ACTIONS(815), + [anon_sym_BANG_EQ2] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(815), + [anon_sym_GT_EQ2] = ACTIONS(815), + [anon_sym_EQ_TILDE2] = ACTIONS(815), + [anon_sym_BANG_TILDE2] = ACTIONS(815), + [anon_sym_like2] = ACTIONS(815), + [anon_sym_not_DASHlike2] = ACTIONS(815), + [anon_sym_STAR_STAR2] = ACTIONS(815), + [anon_sym_PLUS_PLUS2] = ACTIONS(815), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(815), + [anon_sym_SLASH_SLASH2] = ACTIONS(815), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(815), + [anon_sym_bit_DASHshr2] = ACTIONS(815), + [anon_sym_bit_DASHand2] = ACTIONS(815), + [anon_sym_bit_DASHxor2] = ACTIONS(815), + [anon_sym_bit_DASHor2] = ACTIONS(815), + [anon_sym_DOT_DOT2] = ACTIONS(823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(825), + [anon_sym_DOT_DOT_LT2] = ACTIONS(825), + [sym_filesize_unit] = ACTIONS(1522), + [sym_duration_unit] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(326)] = { + [sym_comment] = STATE(326), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1518), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(327)] = { + [sym_comment] = STATE(327), + [anon_sym_in] = ACTIONS(894), + [anon_sym_STAR_STAR] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(896), + [anon_sym_SLASH_SLASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_bit_DASHshl] = ACTIONS(896), + [anon_sym_bit_DASHshr] = ACTIONS(896), + [anon_sym_EQ_TILDE] = ACTIONS(896), + [anon_sym_BANG_TILDE] = ACTIONS(896), + [anon_sym_like] = ACTIONS(896), + [anon_sym_not_DASHlike] = ACTIONS(896), + [anon_sym_bit_DASHand] = ACTIONS(896), + [anon_sym_bit_DASHxor] = ACTIONS(896), + [anon_sym_bit_DASHor] = ACTIONS(896), + [anon_sym_and] = ACTIONS(896), + [anon_sym_xor] = ACTIONS(896), + [anon_sym_or] = ACTIONS(896), + [anon_sym_in2] = ACTIONS(896), + [anon_sym_not_DASHin] = ACTIONS(896), + [anon_sym_has] = ACTIONS(896), + [anon_sym_not_DASHhas] = ACTIONS(896), + [anon_sym_starts_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(896), + [anon_sym_ends_DASHwith] = ACTIONS(896), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(896), + [aux_sym_cmd_identifier_token6] = ACTIONS(894), + [sym__newline] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_err_GT_PIPE] = ACTIONS(894), + [anon_sym_out_GT_PIPE] = ACTIONS(894), + [anon_sym_e_GT_PIPE] = ACTIONS(894), + [anon_sym_o_GT_PIPE] = ACTIONS(894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), + [anon_sym_GT2] = ACTIONS(894), + [anon_sym_DASH2] = ACTIONS(894), + [anon_sym_STAR2] = ACTIONS(894), + [anon_sym_and2] = ACTIONS(894), + [anon_sym_xor2] = ACTIONS(894), + [anon_sym_or2] = ACTIONS(894), + [anon_sym_not_DASHin2] = ACTIONS(894), + [anon_sym_has2] = ACTIONS(894), + [anon_sym_not_DASHhas2] = ACTIONS(894), + [anon_sym_starts_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(894), + [anon_sym_ends_DASHwith2] = ACTIONS(894), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(894), + [anon_sym_EQ_EQ2] = ACTIONS(894), + [anon_sym_BANG_EQ2] = ACTIONS(894), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ2] = ACTIONS(894), + [anon_sym_GT_EQ2] = ACTIONS(894), + [anon_sym_EQ_TILDE2] = ACTIONS(894), + [anon_sym_BANG_TILDE2] = ACTIONS(894), + [anon_sym_like2] = ACTIONS(894), + [anon_sym_not_DASHlike2] = ACTIONS(894), + [anon_sym_STAR_STAR2] = ACTIONS(894), + [anon_sym_PLUS_PLUS2] = ACTIONS(894), + [anon_sym_SLASH2] = ACTIONS(894), + [anon_sym_mod2] = ACTIONS(894), + [anon_sym_SLASH_SLASH2] = ACTIONS(894), + [anon_sym_PLUS2] = ACTIONS(894), + [anon_sym_bit_DASHshl2] = ACTIONS(894), + [anon_sym_bit_DASHshr2] = ACTIONS(894), + [anon_sym_bit_DASHand2] = ACTIONS(894), + [anon_sym_bit_DASHxor2] = ACTIONS(894), + [anon_sym_bit_DASHor2] = ACTIONS(894), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(896), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(328)] = { + [sym_comment] = STATE(328), + [anon_sym_in] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(777), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_bit_DASHshl] = ACTIONS(777), + [anon_sym_bit_DASHshr] = ACTIONS(777), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_like] = ACTIONS(777), + [anon_sym_not_DASHlike] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(777), + [anon_sym_bit_DASHxor] = ACTIONS(777), + [anon_sym_bit_DASHor] = ACTIONS(777), + [anon_sym_and] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(777), + [anon_sym_or] = ACTIONS(777), + [anon_sym_in2] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(777), + [anon_sym_has] = ACTIONS(777), + [anon_sym_not_DASHhas] = ACTIONS(777), + [anon_sym_starts_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(777), + [anon_sym_ends_DASHwith] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(777), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [aux_sym_cmd_identifier_token6] = ACTIONS(775), + [sym__newline] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_err_GT_PIPE] = ACTIONS(775), + [anon_sym_out_GT_PIPE] = ACTIONS(775), + [anon_sym_e_GT_PIPE] = ACTIONS(775), + [anon_sym_o_GT_PIPE] = ACTIONS(775), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(775), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(775), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(775), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(775), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(775), + [anon_sym_xor2] = ACTIONS(775), + [anon_sym_or2] = ACTIONS(775), + [anon_sym_not_DASHin2] = ACTIONS(775), + [anon_sym_has2] = ACTIONS(775), + [anon_sym_not_DASHhas2] = ACTIONS(775), + [anon_sym_starts_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(775), + [anon_sym_ends_DASHwith2] = ACTIONS(775), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(775), + [anon_sym_EQ_EQ2] = ACTIONS(775), + [anon_sym_BANG_EQ2] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(775), + [anon_sym_GT_EQ2] = ACTIONS(775), + [anon_sym_EQ_TILDE2] = ACTIONS(775), + [anon_sym_BANG_TILDE2] = ACTIONS(775), + [anon_sym_like2] = ACTIONS(775), + [anon_sym_not_DASHlike2] = ACTIONS(775), + [anon_sym_STAR_STAR2] = ACTIONS(775), + [anon_sym_PLUS_PLUS2] = ACTIONS(775), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(775), + [anon_sym_SLASH_SLASH2] = ACTIONS(775), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(775), + [anon_sym_bit_DASHshr2] = ACTIONS(775), + [anon_sym_bit_DASHand2] = ACTIONS(775), + [anon_sym_bit_DASHxor2] = ACTIONS(775), + [anon_sym_bit_DASHor2] = ACTIONS(775), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(329)] = { + [sym_comment] = STATE(329), + [anon_sym_in] = ACTIONS(815), + [anon_sym_STAR_STAR] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_bit_DASHshl] = ACTIONS(920), + [anon_sym_bit_DASHshr] = ACTIONS(920), + [anon_sym_EQ_TILDE] = ACTIONS(920), + [anon_sym_BANG_TILDE] = ACTIONS(920), + [anon_sym_like] = ACTIONS(920), + [anon_sym_not_DASHlike] = ACTIONS(920), + [anon_sym_bit_DASHand] = ACTIONS(920), + [anon_sym_bit_DASHxor] = ACTIONS(920), + [anon_sym_bit_DASHor] = ACTIONS(920), + [anon_sym_and] = ACTIONS(920), + [anon_sym_xor] = ACTIONS(920), + [anon_sym_or] = ACTIONS(920), + [anon_sym_in2] = ACTIONS(920), + [anon_sym_not_DASHin] = ACTIONS(920), + [anon_sym_has] = ACTIONS(920), + [anon_sym_not_DASHhas] = ACTIONS(920), + [anon_sym_starts_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(920), + [anon_sym_ends_DASHwith] = ACTIONS(920), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(920), + [aux_sym_cmd_identifier_token6] = ACTIONS(924), + [sym__newline] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_err_GT_PIPE] = ACTIONS(815), + [anon_sym_out_GT_PIPE] = ACTIONS(815), + [anon_sym_e_GT_PIPE] = ACTIONS(815), + [anon_sym_o_GT_PIPE] = ACTIONS(815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(815), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(815), + [anon_sym_xor2] = ACTIONS(815), + [anon_sym_or2] = ACTIONS(815), + [anon_sym_not_DASHin2] = ACTIONS(815), + [anon_sym_has2] = ACTIONS(815), + [anon_sym_not_DASHhas2] = ACTIONS(815), + [anon_sym_starts_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(815), + [anon_sym_ends_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(815), + [anon_sym_EQ_EQ2] = ACTIONS(815), + [anon_sym_BANG_EQ2] = ACTIONS(815), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(815), + [anon_sym_GT_EQ2] = ACTIONS(815), + [anon_sym_EQ_TILDE2] = ACTIONS(815), + [anon_sym_BANG_TILDE2] = ACTIONS(815), + [anon_sym_like2] = ACTIONS(815), + [anon_sym_not_DASHlike2] = ACTIONS(815), + [anon_sym_STAR_STAR2] = ACTIONS(815), + [anon_sym_PLUS_PLUS2] = ACTIONS(815), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(815), + [anon_sym_SLASH_SLASH2] = ACTIONS(815), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(815), + [anon_sym_bit_DASHshr2] = ACTIONS(815), + [anon_sym_bit_DASHand2] = ACTIONS(815), + [anon_sym_bit_DASHxor2] = ACTIONS(815), + [anon_sym_bit_DASHor2] = ACTIONS(815), + [anon_sym_DOT_DOT2] = ACTIONS(823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(825), + [anon_sym_DOT_DOT_LT2] = ACTIONS(825), + [sym_filesize_unit] = ACTIONS(1526), + [sym_duration_unit] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(330)] = { + [sym_comment] = STATE(330), + [anon_sym_in] = ACTIONS(759), + [anon_sym_STAR_STAR] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_mod] = ACTIONS(761), + [anon_sym_SLASH_SLASH] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_bit_DASHshl] = ACTIONS(761), + [anon_sym_bit_DASHshr] = ACTIONS(761), + [anon_sym_EQ_TILDE] = ACTIONS(761), + [anon_sym_BANG_TILDE] = ACTIONS(761), + [anon_sym_like] = ACTIONS(761), + [anon_sym_not_DASHlike] = ACTIONS(761), + [anon_sym_bit_DASHand] = ACTIONS(761), + [anon_sym_bit_DASHxor] = ACTIONS(761), + [anon_sym_bit_DASHor] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_in2] = ACTIONS(761), + [anon_sym_not_DASHin] = ACTIONS(761), + [anon_sym_has] = ACTIONS(761), + [anon_sym_not_DASHhas] = ACTIONS(761), + [anon_sym_starts_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), + [anon_sym_ends_DASHwith] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(761), + [aux_sym_cmd_identifier_token6] = ACTIONS(759), + [sym__newline] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_err_GT_PIPE] = ACTIONS(759), + [anon_sym_out_GT_PIPE] = ACTIONS(759), + [anon_sym_e_GT_PIPE] = ACTIONS(759), + [anon_sym_o_GT_PIPE] = ACTIONS(759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(759), + [anon_sym_xor2] = ACTIONS(759), + [anon_sym_or2] = ACTIONS(759), + [anon_sym_not_DASHin2] = ACTIONS(759), + [anon_sym_has2] = ACTIONS(759), + [anon_sym_not_DASHhas2] = ACTIONS(759), + [anon_sym_starts_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), + [anon_sym_ends_DASHwith2] = ACTIONS(759), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), + [anon_sym_EQ_EQ2] = ACTIONS(759), + [anon_sym_BANG_EQ2] = ACTIONS(759), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(759), + [anon_sym_GT_EQ2] = ACTIONS(759), + [anon_sym_EQ_TILDE2] = ACTIONS(759), + [anon_sym_BANG_TILDE2] = ACTIONS(759), + [anon_sym_like2] = ACTIONS(759), + [anon_sym_not_DASHlike2] = ACTIONS(759), + [anon_sym_STAR_STAR2] = ACTIONS(759), + [anon_sym_PLUS_PLUS2] = ACTIONS(759), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(759), + [anon_sym_SLASH_SLASH2] = ACTIONS(759), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(759), + [anon_sym_bit_DASHshr2] = ACTIONS(759), + [anon_sym_bit_DASHand2] = ACTIONS(759), + [anon_sym_bit_DASHxor2] = ACTIONS(759), + [anon_sym_bit_DASHor2] = ACTIONS(759), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(331)] = { + [aux_sym__repeat_newline] = STATE(4247), + [sym__match_pattern_expression] = STATE(4443), + [sym__match_pattern_value] = STATE(4756), + [sym__match_pattern_list_body] = STATE(4655), + [sym__match_pattern_list] = STATE(4760), + [sym__match_pattern_rest] = STATE(5144), + [sym__match_pattern_record] = STATE(4761), + [sym_expr_parenthesized] = STATE(4005), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4722), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4723), + [sym_val_bool] = STATE(4083), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4008), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4723), + [sym__val_number_decimal] = STATE(3590), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4723), + [sym_val_filesize] = STATE(4723), + [sym_val_binary] = STATE(4723), + [sym_val_string] = STATE(4723), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5212), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3873), + [sym_val_table] = STATE(4723), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4080), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), + [sym_comment] = STATE(331), + [aux_sym__types_body_repeat1] = STATE(384), + [aux_sym_parameter_repeat2] = STATE(4086), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1574), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1532), + [aux_sym_cmd_identifier_token3] = ACTIONS(1534), + [aux_sym_cmd_identifier_token4] = ACTIONS(1534), + [aux_sym_cmd_identifier_token5] = ACTIONS(1534), + [sym__newline] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_DOT_DOT] = ACTIONS(1550), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT] = ACTIONS(1552), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), + }, + [STATE(332)] = { + [aux_sym__repeat_newline] = STATE(4247), + [sym__match_pattern_expression] = STATE(4443), + [sym__match_pattern_value] = STATE(4756), + [sym__match_pattern_list_body] = STATE(4655), + [sym__match_pattern_list] = STATE(4760), + [sym__match_pattern_rest] = STATE(5144), + [sym__match_pattern_record] = STATE(4761), + [sym_expr_parenthesized] = STATE(4005), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4722), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4723), + [sym_val_bool] = STATE(4083), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4008), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4723), + [sym__val_number_decimal] = STATE(3590), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4723), + [sym_val_filesize] = STATE(4723), + [sym_val_binary] = STATE(4723), + [sym_val_string] = STATE(4723), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5087), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3873), + [sym_val_table] = STATE(4723), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4080), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), + [sym_comment] = STATE(332), + [aux_sym__types_body_repeat1] = STATE(384), + [aux_sym_parameter_repeat2] = STATE(4086), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1574), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1532), + [aux_sym_cmd_identifier_token3] = ACTIONS(1534), + [aux_sym_cmd_identifier_token4] = ACTIONS(1534), + [aux_sym_cmd_identifier_token5] = ACTIONS(1534), + [sym__newline] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_DOT_DOT] = ACTIONS(1550), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT] = ACTIONS(1552), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), + }, + [STATE(333)] = { + [aux_sym__repeat_newline] = STATE(4247), + [sym__match_pattern_expression] = STATE(4443), + [sym__match_pattern_value] = STATE(4756), + [sym__match_pattern_list_body] = STATE(4655), + [sym__match_pattern_list] = STATE(4760), + [sym__match_pattern_rest] = STATE(5144), + [sym__match_pattern_record] = STATE(4761), + [sym_expr_parenthesized] = STATE(4005), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4722), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4723), + [sym_val_bool] = STATE(4083), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4008), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4723), + [sym__val_number_decimal] = STATE(3590), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4723), + [sym_val_filesize] = STATE(4723), + [sym_val_binary] = STATE(4723), + [sym_val_string] = STATE(4723), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5278), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3873), + [sym_val_table] = STATE(4723), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4080), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), + [sym_comment] = STATE(333), + [aux_sym__types_body_repeat1] = STATE(384), + [aux_sym_parameter_repeat2] = STATE(4086), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1574), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1532), + [aux_sym_cmd_identifier_token3] = ACTIONS(1534), + [aux_sym_cmd_identifier_token4] = ACTIONS(1534), + [aux_sym_cmd_identifier_token5] = ACTIONS(1534), + [sym__newline] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_DOT_DOT] = ACTIONS(1550), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT] = ACTIONS(1552), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), + }, + [STATE(334)] = { + [sym_comment] = STATE(334), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), + [sym__newline] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_GT2] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_STAR2] = ACTIONS(1024), + [anon_sym_and2] = ACTIONS(1024), + [anon_sym_xor2] = ACTIONS(1024), + [anon_sym_or2] = ACTIONS(1024), + [anon_sym_not_DASHin2] = ACTIONS(1024), + [anon_sym_has2] = ACTIONS(1024), + [anon_sym_not_DASHhas2] = ACTIONS(1024), + [anon_sym_starts_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1024), + [anon_sym_ends_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1024), + [anon_sym_EQ_EQ2] = ACTIONS(1024), + [anon_sym_BANG_EQ2] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ2] = ACTIONS(1024), + [anon_sym_GT_EQ2] = ACTIONS(1024), + [anon_sym_EQ_TILDE2] = ACTIONS(1024), + [anon_sym_BANG_TILDE2] = ACTIONS(1024), + [anon_sym_like2] = ACTIONS(1024), + [anon_sym_not_DASHlike2] = ACTIONS(1024), + [anon_sym_STAR_STAR2] = ACTIONS(1024), + [anon_sym_PLUS_PLUS2] = ACTIONS(1024), + [anon_sym_SLASH2] = ACTIONS(1024), + [anon_sym_mod2] = ACTIONS(1024), + [anon_sym_SLASH_SLASH2] = ACTIONS(1024), + [anon_sym_PLUS2] = ACTIONS(1024), + [anon_sym_bit_DASHshl2] = ACTIONS(1024), + [anon_sym_bit_DASHshr2] = ACTIONS(1024), + [anon_sym_bit_DASHand2] = ACTIONS(1024), + [anon_sym_bit_DASHxor2] = ACTIONS(1024), + [anon_sym_bit_DASHor2] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(335)] = { + [sym_comment] = STATE(335), [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), [sym__newline] = ACTIONS(1016), [anon_sym_SEMI] = ACTIONS(1016), [anon_sym_PIPE] = ACTIONS(1016), @@ -72592,6 +77281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1016), [anon_sym_GT2] = ACTIONS(1016), [anon_sym_DASH2] = ACTIONS(1016), [anon_sym_STAR2] = ACTIONS(1016), @@ -72627,214 +77317,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(324)] = { - [sym_comment] = STATE(324), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(325)] = { - [sym_comment] = STATE(325), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [STATE(336)] = { + [sym_comment] = STATE(336), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), + [sym__newline] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_GT2] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1024), + [anon_sym_STAR2] = ACTIONS(1024), + [anon_sym_and2] = ACTIONS(1024), + [anon_sym_xor2] = ACTIONS(1024), + [anon_sym_or2] = ACTIONS(1024), + [anon_sym_not_DASHin2] = ACTIONS(1024), + [anon_sym_has2] = ACTIONS(1024), + [anon_sym_not_DASHhas2] = ACTIONS(1024), + [anon_sym_starts_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1024), + [anon_sym_ends_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1024), + [anon_sym_EQ_EQ2] = ACTIONS(1024), + [anon_sym_BANG_EQ2] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ2] = ACTIONS(1024), + [anon_sym_GT_EQ2] = ACTIONS(1024), + [anon_sym_EQ_TILDE2] = ACTIONS(1024), + [anon_sym_BANG_TILDE2] = ACTIONS(1024), + [anon_sym_like2] = ACTIONS(1024), + [anon_sym_not_DASHlike2] = ACTIONS(1024), + [anon_sym_STAR_STAR2] = ACTIONS(1024), + [anon_sym_PLUS_PLUS2] = ACTIONS(1024), + [anon_sym_SLASH2] = ACTIONS(1024), + [anon_sym_mod2] = ACTIONS(1024), + [anon_sym_SLASH_SLASH2] = ACTIONS(1024), + [anon_sym_PLUS2] = ACTIONS(1024), + [anon_sym_bit_DASHshl2] = ACTIONS(1024), + [anon_sym_bit_DASHshr2] = ACTIONS(1024), + [anon_sym_bit_DASHand2] = ACTIONS(1024), + [anon_sym_bit_DASHxor2] = ACTIONS(1024), + [anon_sym_bit_DASHor2] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(326)] = { - [sym_comment] = STATE(326), + [STATE(337)] = { + [sym_comment] = STATE(337), + [ts_builtin_sym_end] = ACTIONS(1014), [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1018), + [anon_sym_SLASH_SLASH] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_bit_DASHshl] = ACTIONS(1018), + [anon_sym_bit_DASHshr] = ACTIONS(1018), + [anon_sym_EQ_TILDE] = ACTIONS(1018), + [anon_sym_BANG_TILDE] = ACTIONS(1018), + [anon_sym_like] = ACTIONS(1018), + [anon_sym_not_DASHlike] = ACTIONS(1018), + [anon_sym_bit_DASHand] = ACTIONS(1018), + [anon_sym_bit_DASHxor] = ACTIONS(1018), + [anon_sym_bit_DASHor] = ACTIONS(1018), + [anon_sym_and] = ACTIONS(1018), + [anon_sym_xor] = ACTIONS(1018), + [anon_sym_or] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_not_DASHin] = ACTIONS(1018), + [anon_sym_has] = ACTIONS(1018), + [anon_sym_not_DASHhas] = ACTIONS(1018), + [anon_sym_starts_DASHwith] = ACTIONS(1018), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1018), + [anon_sym_ends_DASHwith] = ACTIONS(1018), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1018), + [anon_sym_EQ_EQ] = ACTIONS(1018), + [anon_sym_BANG_EQ] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1018), + [aux_sym_cmd_identifier_token6] = ACTIONS(1022), [sym__newline] = ACTIONS(1016), [anon_sym_SEMI] = ACTIONS(1016), [anon_sym_PIPE] = ACTIONS(1016), @@ -72848,7 +77454,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), [anon_sym_GT2] = ACTIONS(1016), [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), [anon_sym_STAR2] = ACTIONS(1016), [anon_sym_and2] = ACTIONS(1016), [anon_sym_xor2] = ACTIONS(1016), @@ -72882,44 +77487,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(327)] = { - [sym_comment] = STATE(327), + [STATE(338)] = { + [sym_comment] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(1032), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_STAR_STAR] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1018), + [anon_sym_SLASH_SLASH] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_bit_DASHshl] = ACTIONS(1018), + [anon_sym_bit_DASHshr] = ACTIONS(1018), + [anon_sym_EQ_TILDE] = ACTIONS(1018), + [anon_sym_BANG_TILDE] = ACTIONS(1018), + [anon_sym_like] = ACTIONS(1018), + [anon_sym_not_DASHlike] = ACTIONS(1018), + [anon_sym_bit_DASHand] = ACTIONS(1018), + [anon_sym_bit_DASHxor] = ACTIONS(1018), + [anon_sym_bit_DASHor] = ACTIONS(1018), + [anon_sym_and] = ACTIONS(1018), + [anon_sym_xor] = ACTIONS(1018), + [anon_sym_or] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_not_DASHin] = ACTIONS(1018), + [anon_sym_has] = ACTIONS(1018), + [anon_sym_not_DASHhas] = ACTIONS(1018), + [anon_sym_starts_DASHwith] = ACTIONS(1018), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1018), + [anon_sym_ends_DASHwith] = ACTIONS(1018), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1018), + [anon_sym_EQ_EQ] = ACTIONS(1018), + [anon_sym_BANG_EQ] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1018), + [aux_sym_cmd_identifier_token6] = ACTIONS(1022), + [sym__newline] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_GT2] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1024), + [anon_sym_STAR2] = ACTIONS(1024), + [anon_sym_and2] = ACTIONS(1024), + [anon_sym_xor2] = ACTIONS(1024), + [anon_sym_or2] = ACTIONS(1024), + [anon_sym_not_DASHin2] = ACTIONS(1024), + [anon_sym_has2] = ACTIONS(1024), + [anon_sym_not_DASHhas2] = ACTIONS(1024), + [anon_sym_starts_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1024), + [anon_sym_ends_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1024), + [anon_sym_EQ_EQ2] = ACTIONS(1024), + [anon_sym_BANG_EQ2] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ2] = ACTIONS(1024), + [anon_sym_GT_EQ2] = ACTIONS(1024), + [anon_sym_EQ_TILDE2] = ACTIONS(1024), + [anon_sym_BANG_TILDE2] = ACTIONS(1024), + [anon_sym_like2] = ACTIONS(1024), + [anon_sym_not_DASHlike2] = ACTIONS(1024), + [anon_sym_STAR_STAR2] = ACTIONS(1024), + [anon_sym_PLUS_PLUS2] = ACTIONS(1024), + [anon_sym_SLASH2] = ACTIONS(1024), + [anon_sym_mod2] = ACTIONS(1024), + [anon_sym_SLASH_SLASH2] = ACTIONS(1024), + [anon_sym_PLUS2] = ACTIONS(1024), + [anon_sym_bit_DASHshl2] = ACTIONS(1024), + [anon_sym_bit_DASHshr2] = ACTIONS(1024), + [anon_sym_bit_DASHand2] = ACTIONS(1024), + [anon_sym_bit_DASHxor2] = ACTIONS(1024), + [anon_sym_bit_DASHor2] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(339)] = { + [sym_comment] = STATE(339), [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), [sym__newline] = ACTIONS(1016), [anon_sym_SEMI] = ACTIONS(1016), [anon_sym_PIPE] = ACTIONS(1016), @@ -72931,9 +77621,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), [anon_sym_GT2] = ACTIONS(1016), [anon_sym_DASH2] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), [anon_sym_STAR2] = ACTIONS(1016), [anon_sym_and2] = ACTIONS(1016), [anon_sym_xor2] = ACTIONS(1016), @@ -72967,129 +77657,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(328)] = { - [sym_comment] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(329)] = { - [sym_comment] = STATE(329), + [STATE(340)] = { + [sym_comment] = STATE(340), [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), [sym__newline] = ACTIONS(1016), [anon_sym_SEMI] = ACTIONS(1016), [anon_sym_PIPE] = ACTIONS(1016), @@ -73136,211 +77741,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(330)] = { - [sym_comment] = STATE(330), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [STATE(341)] = { + [sym_comment] = STATE(341), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), + [sym__newline] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_GT2] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1024), + [anon_sym_STAR2] = ACTIONS(1024), + [anon_sym_and2] = ACTIONS(1024), + [anon_sym_xor2] = ACTIONS(1024), + [anon_sym_or2] = ACTIONS(1024), + [anon_sym_not_DASHin2] = ACTIONS(1024), + [anon_sym_has2] = ACTIONS(1024), + [anon_sym_not_DASHhas2] = ACTIONS(1024), + [anon_sym_starts_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1024), + [anon_sym_ends_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1024), + [anon_sym_EQ_EQ2] = ACTIONS(1024), + [anon_sym_BANG_EQ2] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ2] = ACTIONS(1024), + [anon_sym_GT_EQ2] = ACTIONS(1024), + [anon_sym_EQ_TILDE2] = ACTIONS(1024), + [anon_sym_BANG_TILDE2] = ACTIONS(1024), + [anon_sym_like2] = ACTIONS(1024), + [anon_sym_not_DASHlike2] = ACTIONS(1024), + [anon_sym_STAR_STAR2] = ACTIONS(1024), + [anon_sym_PLUS_PLUS2] = ACTIONS(1024), + [anon_sym_SLASH2] = ACTIONS(1024), + [anon_sym_mod2] = ACTIONS(1024), + [anon_sym_SLASH_SLASH2] = ACTIONS(1024), + [anon_sym_PLUS2] = ACTIONS(1024), + [anon_sym_bit_DASHshl2] = ACTIONS(1024), + [anon_sym_bit_DASHshr2] = ACTIONS(1024), + [anon_sym_bit_DASHand2] = ACTIONS(1024), + [anon_sym_bit_DASHxor2] = ACTIONS(1024), + [anon_sym_bit_DASHor2] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(331)] = { - [sym_comment] = STATE(331), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [STATE(342)] = { + [sym_comment] = STATE(342), + [anon_sym_in] = ACTIONS(1024), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), + [sym__newline] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_GT2] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1024), + [anon_sym_STAR2] = ACTIONS(1024), + [anon_sym_and2] = ACTIONS(1024), + [anon_sym_xor2] = ACTIONS(1024), + [anon_sym_or2] = ACTIONS(1024), + [anon_sym_not_DASHin2] = ACTIONS(1024), + [anon_sym_has2] = ACTIONS(1024), + [anon_sym_not_DASHhas2] = ACTIONS(1024), + [anon_sym_starts_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1024), + [anon_sym_ends_DASHwith2] = ACTIONS(1024), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1024), + [anon_sym_EQ_EQ2] = ACTIONS(1024), + [anon_sym_BANG_EQ2] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ2] = ACTIONS(1024), + [anon_sym_GT_EQ2] = ACTIONS(1024), + [anon_sym_EQ_TILDE2] = ACTIONS(1024), + [anon_sym_BANG_TILDE2] = ACTIONS(1024), + [anon_sym_like2] = ACTIONS(1024), + [anon_sym_not_DASHlike2] = ACTIONS(1024), + [anon_sym_STAR_STAR2] = ACTIONS(1024), + [anon_sym_PLUS_PLUS2] = ACTIONS(1024), + [anon_sym_SLASH2] = ACTIONS(1024), + [anon_sym_mod2] = ACTIONS(1024), + [anon_sym_SLASH_SLASH2] = ACTIONS(1024), + [anon_sym_PLUS2] = ACTIONS(1024), + [anon_sym_bit_DASHshl2] = ACTIONS(1024), + [anon_sym_bit_DASHshr2] = ACTIONS(1024), + [anon_sym_bit_DASHand2] = ACTIONS(1024), + [anon_sym_bit_DASHxor2] = ACTIONS(1024), + [anon_sym_bit_DASHor2] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(332)] = { - [sym_comment] = STATE(332), + [STATE(343)] = { + [sym_comment] = STATE(343), [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_SLASH_SLASH] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1026), + [anon_sym_bit_DASHshl] = ACTIONS(1026), + [anon_sym_bit_DASHshr] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1026), + [anon_sym_BANG_TILDE] = ACTIONS(1026), + [anon_sym_like] = ACTIONS(1026), + [anon_sym_not_DASHlike] = ACTIONS(1026), + [anon_sym_bit_DASHand] = ACTIONS(1026), + [anon_sym_bit_DASHxor] = ACTIONS(1026), + [anon_sym_bit_DASHor] = ACTIONS(1026), + [anon_sym_and] = ACTIONS(1026), + [anon_sym_xor] = ACTIONS(1026), + [anon_sym_or] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_not_DASHin] = ACTIONS(1026), + [anon_sym_has] = ACTIONS(1026), + [anon_sym_not_DASHhas] = ACTIONS(1026), + [anon_sym_starts_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1026), + [anon_sym_ends_DASHwith] = ACTIONS(1026), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1026), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), [sym__newline] = ACTIONS(1016), [anon_sym_PIPE] = ACTIONS(1016), [anon_sym_err_GT_PIPE] = ACTIONS(1016), @@ -73386,4461 +77991,3375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(333)] = { - [sym_cell_path] = STATE(368), - [sym_path] = STATE(339), - [sym_comment] = STATE(333), - [aux_sym__where_predicate_lhs_repeat1] = STATE(363), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_PLUS_EQ] = ACTIONS(1432), - [anon_sym_DASH_EQ] = ACTIONS(1432), - [anon_sym_STAR_EQ] = ACTIONS(1432), - [anon_sym_SLASH_EQ] = ACTIONS(1432), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1432), - [anon_sym_in] = ACTIONS(1432), - [sym__newline] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_err_GT_PIPE] = ACTIONS(1432), - [anon_sym_out_GT_PIPE] = ACTIONS(1432), - [anon_sym_e_GT_PIPE] = ACTIONS(1432), - [anon_sym_o_GT_PIPE] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1432), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1432), - [anon_sym_xor2] = ACTIONS(1432), - [anon_sym_or2] = ACTIONS(1432), - [anon_sym_not_DASHin2] = ACTIONS(1432), - [anon_sym_has2] = ACTIONS(1432), - [anon_sym_not_DASHhas2] = ACTIONS(1432), - [anon_sym_starts_DASHwith2] = ACTIONS(1432), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1432), - [anon_sym_ends_DASHwith2] = ACTIONS(1432), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1432), - [anon_sym_EQ_EQ2] = ACTIONS(1432), - [anon_sym_BANG_EQ2] = ACTIONS(1432), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1432), - [anon_sym_GT_EQ2] = ACTIONS(1432), - [anon_sym_EQ_TILDE2] = ACTIONS(1432), - [anon_sym_BANG_TILDE2] = ACTIONS(1432), - [anon_sym_like2] = ACTIONS(1432), - [anon_sym_not_DASHlike2] = ACTIONS(1432), - [anon_sym_STAR_STAR2] = ACTIONS(1432), - [anon_sym_PLUS_PLUS2] = ACTIONS(1432), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1432), - [anon_sym_SLASH_SLASH2] = ACTIONS(1432), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1432), - [anon_sym_bit_DASHshr2] = ACTIONS(1432), - [anon_sym_bit_DASHand2] = ACTIONS(1432), - [anon_sym_bit_DASHxor2] = ACTIONS(1432), - [anon_sym_bit_DASHor2] = ACTIONS(1432), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [sym__entry_separator] = ACTIONS(1434), - [anon_sym_COLON2] = ACTIONS(1432), - [anon_sym_DOT2] = ACTIONS(1436), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1432), - [anon_sym_out_GT_GT] = ACTIONS(1432), - [anon_sym_e_GT_GT] = ACTIONS(1432), - [anon_sym_o_GT_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(334)] = { - [sym_comment] = STATE(334), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1438), - [anon_sym_DASH_EQ] = ACTIONS(1438), - [anon_sym_STAR_EQ] = ACTIONS(1438), - [anon_sym_SLASH_EQ] = ACTIONS(1438), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1438), - [anon_sym_in] = ACTIONS(1438), - [sym__newline] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_err_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_GT_PIPE] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(1438), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1438), - [anon_sym_xor2] = ACTIONS(1438), - [anon_sym_or2] = ACTIONS(1438), - [anon_sym_not_DASHin2] = ACTIONS(1438), - [anon_sym_has2] = ACTIONS(1438), - [anon_sym_not_DASHhas2] = ACTIONS(1438), - [anon_sym_starts_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1438), - [anon_sym_ends_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1438), - [anon_sym_EQ_EQ2] = ACTIONS(1438), - [anon_sym_BANG_EQ2] = ACTIONS(1438), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1438), - [anon_sym_GT_EQ2] = ACTIONS(1438), - [anon_sym_EQ_TILDE2] = ACTIONS(1438), - [anon_sym_BANG_TILDE2] = ACTIONS(1438), - [anon_sym_like2] = ACTIONS(1438), - [anon_sym_not_DASHlike2] = ACTIONS(1438), - [anon_sym_STAR_STAR2] = ACTIONS(1438), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1438), - [anon_sym_SLASH_SLASH2] = ACTIONS(1438), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1438), - [anon_sym_bit_DASHshr2] = ACTIONS(1438), - [anon_sym_bit_DASHand2] = ACTIONS(1438), - [anon_sym_bit_DASHxor2] = ACTIONS(1438), - [anon_sym_bit_DASHor2] = ACTIONS(1438), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [sym__entry_separator] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1438), - [anon_sym_QMARK2] = ACTIONS(1442), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1438), - [anon_sym_out_GT_GT] = ACTIONS(1438), - [anon_sym_e_GT_GT] = ACTIONS(1438), - [anon_sym_o_GT_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(335)] = { - [sym_cell_path] = STATE(405), - [sym_path] = STATE(385), - [sym_comment] = STATE(335), - [aux_sym__where_predicate_lhs_repeat1] = STATE(338), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_PLUS_EQ] = ACTIONS(1434), - [anon_sym_DASH_EQ] = ACTIONS(1434), - [anon_sym_STAR_EQ] = ACTIONS(1434), - [anon_sym_SLASH_EQ] = ACTIONS(1434), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1432), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_COLON2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1444), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(336)] = { - [sym__path_suffix] = STATE(351), - [sym_comment] = STATE(336), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1446), - [anon_sym_DASH_EQ] = ACTIONS(1446), - [anon_sym_STAR_EQ] = ACTIONS(1446), - [anon_sym_SLASH_EQ] = ACTIONS(1446), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1446), - [anon_sym_in] = ACTIONS(1446), - [sym__newline] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1446), - [anon_sym_err_GT_PIPE] = ACTIONS(1446), - [anon_sym_out_GT_PIPE] = ACTIONS(1446), - [anon_sym_e_GT_PIPE] = ACTIONS(1446), - [anon_sym_o_GT_PIPE] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1446), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1446), - [anon_sym_xor2] = ACTIONS(1446), - [anon_sym_or2] = ACTIONS(1446), - [anon_sym_not_DASHin2] = ACTIONS(1446), - [anon_sym_has2] = ACTIONS(1446), - [anon_sym_not_DASHhas2] = ACTIONS(1446), - [anon_sym_starts_DASHwith2] = ACTIONS(1446), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1446), - [anon_sym_ends_DASHwith2] = ACTIONS(1446), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1446), - [anon_sym_EQ_EQ2] = ACTIONS(1446), - [anon_sym_BANG_EQ2] = ACTIONS(1446), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1446), - [anon_sym_GT_EQ2] = ACTIONS(1446), - [anon_sym_EQ_TILDE2] = ACTIONS(1446), - [anon_sym_BANG_TILDE2] = ACTIONS(1446), - [anon_sym_like2] = ACTIONS(1446), - [anon_sym_not_DASHlike2] = ACTIONS(1446), - [anon_sym_STAR_STAR2] = ACTIONS(1446), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1446), - [anon_sym_SLASH_SLASH2] = ACTIONS(1446), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1446), - [anon_sym_bit_DASHshr2] = ACTIONS(1446), - [anon_sym_bit_DASHand2] = ACTIONS(1446), - [anon_sym_bit_DASHxor2] = ACTIONS(1446), - [anon_sym_bit_DASHor2] = ACTIONS(1446), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [sym__entry_separator] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1446), - [anon_sym_QMARK2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1446), - [anon_sym_out_GT_GT] = ACTIONS(1446), - [anon_sym_e_GT_GT] = ACTIONS(1446), - [anon_sym_o_GT_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(337)] = { - [sym__path_suffix] = STATE(388), - [sym_comment] = STATE(337), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(338)] = { - [sym_path] = STATE(385), - [sym_comment] = STATE(338), - [aux_sym__where_predicate_lhs_repeat1] = STATE(353), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_PLUS_EQ] = ACTIONS(1460), - [anon_sym_DASH_EQ] = ACTIONS(1460), - [anon_sym_STAR_EQ] = ACTIONS(1460), - [anon_sym_SLASH_EQ] = ACTIONS(1460), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1460), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1458), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_COLON2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1444), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(339)] = { - [sym_comment] = STATE(339), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1462), - [anon_sym_DASH_EQ] = ACTIONS(1462), - [anon_sym_STAR_EQ] = ACTIONS(1462), - [anon_sym_SLASH_EQ] = ACTIONS(1462), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1462), - [anon_sym_in] = ACTIONS(1462), - [sym__newline] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_err_GT_PIPE] = ACTIONS(1462), - [anon_sym_out_GT_PIPE] = ACTIONS(1462), - [anon_sym_e_GT_PIPE] = ACTIONS(1462), - [anon_sym_o_GT_PIPE] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1462), - [anon_sym_RBRACK] = ACTIONS(1462), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1462), - [anon_sym_xor2] = ACTIONS(1462), - [anon_sym_or2] = ACTIONS(1462), - [anon_sym_not_DASHin2] = ACTIONS(1462), - [anon_sym_has2] = ACTIONS(1462), - [anon_sym_not_DASHhas2] = ACTIONS(1462), - [anon_sym_starts_DASHwith2] = ACTIONS(1462), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1462), - [anon_sym_ends_DASHwith2] = ACTIONS(1462), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1462), - [anon_sym_EQ_EQ2] = ACTIONS(1462), - [anon_sym_BANG_EQ2] = ACTIONS(1462), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1462), - [anon_sym_GT_EQ2] = ACTIONS(1462), - [anon_sym_EQ_TILDE2] = ACTIONS(1462), - [anon_sym_BANG_TILDE2] = ACTIONS(1462), - [anon_sym_like2] = ACTIONS(1462), - [anon_sym_not_DASHlike2] = ACTIONS(1462), - [anon_sym_STAR_STAR2] = ACTIONS(1462), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1462), - [anon_sym_SLASH_SLASH2] = ACTIONS(1462), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1462), - [anon_sym_bit_DASHshr2] = ACTIONS(1462), - [anon_sym_bit_DASHand2] = ACTIONS(1462), - [anon_sym_bit_DASHxor2] = ACTIONS(1462), - [anon_sym_bit_DASHor2] = ACTIONS(1462), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [sym__entry_separator] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1462), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1462), - [anon_sym_out_GT_GT] = ACTIONS(1462), - [anon_sym_e_GT_GT] = ACTIONS(1462), - [anon_sym_o_GT_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(340)] = { - [sym_comment] = STATE(340), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1466), - [anon_sym_DASH_EQ] = ACTIONS(1466), - [anon_sym_STAR_EQ] = ACTIONS(1466), - [anon_sym_SLASH_EQ] = ACTIONS(1466), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1466), - [anon_sym_in] = ACTIONS(1466), - [sym__newline] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_err_GT_PIPE] = ACTIONS(1466), - [anon_sym_out_GT_PIPE] = ACTIONS(1466), - [anon_sym_e_GT_PIPE] = ACTIONS(1466), - [anon_sym_o_GT_PIPE] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1466), - [anon_sym_xor2] = ACTIONS(1466), - [anon_sym_or2] = ACTIONS(1466), - [anon_sym_not_DASHin2] = ACTIONS(1466), - [anon_sym_has2] = ACTIONS(1466), - [anon_sym_not_DASHhas2] = ACTIONS(1466), - [anon_sym_starts_DASHwith2] = ACTIONS(1466), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), - [anon_sym_ends_DASHwith2] = ACTIONS(1466), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), - [anon_sym_EQ_EQ2] = ACTIONS(1466), - [anon_sym_BANG_EQ2] = ACTIONS(1466), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1466), - [anon_sym_GT_EQ2] = ACTIONS(1466), - [anon_sym_EQ_TILDE2] = ACTIONS(1466), - [anon_sym_BANG_TILDE2] = ACTIONS(1466), - [anon_sym_like2] = ACTIONS(1466), - [anon_sym_not_DASHlike2] = ACTIONS(1466), - [anon_sym_STAR_STAR2] = ACTIONS(1466), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1466), - [anon_sym_SLASH_SLASH2] = ACTIONS(1466), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1466), - [anon_sym_bit_DASHshr2] = ACTIONS(1466), - [anon_sym_bit_DASHand2] = ACTIONS(1466), - [anon_sym_bit_DASHxor2] = ACTIONS(1466), - [anon_sym_bit_DASHor2] = ACTIONS(1466), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [sym__entry_separator] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1466), - [anon_sym_QMARK2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1466), - [anon_sym_out_GT_GT] = ACTIONS(1466), - [anon_sym_e_GT_GT] = ACTIONS(1466), - [anon_sym_o_GT_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(341)] = { - [sym_comment] = STATE(341), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1470), - [anon_sym_DASH_EQ] = ACTIONS(1470), - [anon_sym_STAR_EQ] = ACTIONS(1470), - [anon_sym_SLASH_EQ] = ACTIONS(1470), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [sym__newline] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_err_GT_PIPE] = ACTIONS(1470), - [anon_sym_out_GT_PIPE] = ACTIONS(1470), - [anon_sym_e_GT_PIPE] = ACTIONS(1470), - [anon_sym_o_GT_PIPE] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1470), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1470), - [anon_sym_xor2] = ACTIONS(1470), - [anon_sym_or2] = ACTIONS(1470), - [anon_sym_not_DASHin2] = ACTIONS(1470), - [anon_sym_has2] = ACTIONS(1470), - [anon_sym_not_DASHhas2] = ACTIONS(1470), - [anon_sym_starts_DASHwith2] = ACTIONS(1470), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1470), - [anon_sym_ends_DASHwith2] = ACTIONS(1470), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1470), - [anon_sym_EQ_EQ2] = ACTIONS(1470), - [anon_sym_BANG_EQ2] = ACTIONS(1470), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1470), - [anon_sym_GT_EQ2] = ACTIONS(1470), - [anon_sym_EQ_TILDE2] = ACTIONS(1470), - [anon_sym_BANG_TILDE2] = ACTIONS(1470), - [anon_sym_like2] = ACTIONS(1470), - [anon_sym_not_DASHlike2] = ACTIONS(1470), - [anon_sym_STAR_STAR2] = ACTIONS(1470), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1470), - [anon_sym_SLASH_SLASH2] = ACTIONS(1470), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1470), - [anon_sym_bit_DASHshr2] = ACTIONS(1470), - [anon_sym_bit_DASHand2] = ACTIONS(1470), - [anon_sym_bit_DASHxor2] = ACTIONS(1470), - [anon_sym_bit_DASHor2] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [sym__entry_separator] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1470), - [anon_sym_QMARK2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1470), - [anon_sym_out_GT_GT] = ACTIONS(1470), - [anon_sym_e_GT_GT] = ACTIONS(1470), - [anon_sym_o_GT_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(342)] = { - [sym_comment] = STATE(342), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1474), - [anon_sym_DASH_EQ] = ACTIONS(1474), - [anon_sym_STAR_EQ] = ACTIONS(1474), - [anon_sym_SLASH_EQ] = ACTIONS(1474), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1474), - [anon_sym_in] = ACTIONS(1474), - [sym__newline] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_err_GT_PIPE] = ACTIONS(1474), - [anon_sym_out_GT_PIPE] = ACTIONS(1474), - [anon_sym_e_GT_PIPE] = ACTIONS(1474), - [anon_sym_o_GT_PIPE] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1474), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1474), - [anon_sym_xor2] = ACTIONS(1474), - [anon_sym_or2] = ACTIONS(1474), - [anon_sym_not_DASHin2] = ACTIONS(1474), - [anon_sym_has2] = ACTIONS(1474), - [anon_sym_not_DASHhas2] = ACTIONS(1474), - [anon_sym_starts_DASHwith2] = ACTIONS(1474), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1474), - [anon_sym_ends_DASHwith2] = ACTIONS(1474), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1474), - [anon_sym_EQ_EQ2] = ACTIONS(1474), - [anon_sym_BANG_EQ2] = ACTIONS(1474), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1474), - [anon_sym_GT_EQ2] = ACTIONS(1474), - [anon_sym_EQ_TILDE2] = ACTIONS(1474), - [anon_sym_BANG_TILDE2] = ACTIONS(1474), - [anon_sym_like2] = ACTIONS(1474), - [anon_sym_not_DASHlike2] = ACTIONS(1474), - [anon_sym_STAR_STAR2] = ACTIONS(1474), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1474), - [anon_sym_SLASH_SLASH2] = ACTIONS(1474), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1474), - [anon_sym_bit_DASHshr2] = ACTIONS(1474), - [anon_sym_bit_DASHand2] = ACTIONS(1474), - [anon_sym_bit_DASHxor2] = ACTIONS(1474), - [anon_sym_bit_DASHor2] = ACTIONS(1474), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [sym__entry_separator] = ACTIONS(1476), - [anon_sym_COLON2] = ACTIONS(1474), - [anon_sym_QMARK2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1474), - [anon_sym_out_GT_GT] = ACTIONS(1474), - [anon_sym_e_GT_GT] = ACTIONS(1474), - [anon_sym_o_GT_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(343)] = { - [sym_comment] = STATE(343), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(344)] = { + [sym_cell_path] = STATE(380), + [sym_path] = STATE(354), [sym_comment] = STATE(344), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_STAR_EQ] = ACTIONS(1472), - [anon_sym_SLASH_EQ] = ACTIONS(1472), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__where_predicate_lhs_repeat1] = STATE(378), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_PLUS_EQ] = ACTIONS(1588), + [anon_sym_DASH_EQ] = ACTIONS(1588), + [anon_sym_STAR_EQ] = ACTIONS(1588), + [anon_sym_SLASH_EQ] = ACTIONS(1588), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1588), + [anon_sym_in] = ACTIONS(1588), + [sym__newline] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_err_GT_PIPE] = ACTIONS(1588), + [anon_sym_out_GT_PIPE] = ACTIONS(1588), + [anon_sym_e_GT_PIPE] = ACTIONS(1588), + [anon_sym_o_GT_PIPE] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1588), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1588), + [anon_sym_xor2] = ACTIONS(1588), + [anon_sym_or2] = ACTIONS(1588), + [anon_sym_not_DASHin2] = ACTIONS(1588), + [anon_sym_has2] = ACTIONS(1588), + [anon_sym_not_DASHhas2] = ACTIONS(1588), + [anon_sym_starts_DASHwith2] = ACTIONS(1588), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1588), + [anon_sym_ends_DASHwith2] = ACTIONS(1588), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1588), + [anon_sym_EQ_EQ2] = ACTIONS(1588), + [anon_sym_BANG_EQ2] = ACTIONS(1588), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1588), + [anon_sym_GT_EQ2] = ACTIONS(1588), + [anon_sym_EQ_TILDE2] = ACTIONS(1588), + [anon_sym_BANG_TILDE2] = ACTIONS(1588), + [anon_sym_like2] = ACTIONS(1588), + [anon_sym_not_DASHlike2] = ACTIONS(1588), + [anon_sym_STAR_STAR2] = ACTIONS(1588), + [anon_sym_PLUS_PLUS2] = ACTIONS(1588), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1588), + [anon_sym_SLASH_SLASH2] = ACTIONS(1588), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1588), + [anon_sym_bit_DASHshr2] = ACTIONS(1588), + [anon_sym_bit_DASHand2] = ACTIONS(1588), + [anon_sym_bit_DASHxor2] = ACTIONS(1588), + [anon_sym_bit_DASHor2] = ACTIONS(1588), + [anon_sym_DOT_DOT2] = ACTIONS(1588), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1590), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1590), + [sym__entry_separator] = ACTIONS(1590), + [anon_sym_COLON2] = ACTIONS(1588), + [anon_sym_DOT2] = ACTIONS(1592), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1588), + [anon_sym_out_GT_GT] = ACTIONS(1588), + [anon_sym_e_GT_GT] = ACTIONS(1588), + [anon_sym_o_GT_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(345)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5177), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3656), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [sym__path_suffix] = STATE(364), [sym_comment] = STATE(345), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1594), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_STAR_EQ] = ACTIONS(1594), + [anon_sym_SLASH_EQ] = ACTIONS(1594), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1594), + [anon_sym_in] = ACTIONS(1594), + [sym__newline] = ACTIONS(1594), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_err_GT_PIPE] = ACTIONS(1594), + [anon_sym_out_GT_PIPE] = ACTIONS(1594), + [anon_sym_e_GT_PIPE] = ACTIONS(1594), + [anon_sym_o_GT_PIPE] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1594), + [anon_sym_GT2] = ACTIONS(1594), + [anon_sym_DASH2] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_STAR2] = ACTIONS(1594), + [anon_sym_and2] = ACTIONS(1594), + [anon_sym_xor2] = ACTIONS(1594), + [anon_sym_or2] = ACTIONS(1594), + [anon_sym_not_DASHin2] = ACTIONS(1594), + [anon_sym_has2] = ACTIONS(1594), + [anon_sym_not_DASHhas2] = ACTIONS(1594), + [anon_sym_starts_DASHwith2] = ACTIONS(1594), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1594), + [anon_sym_ends_DASHwith2] = ACTIONS(1594), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1594), + [anon_sym_EQ_EQ2] = ACTIONS(1594), + [anon_sym_BANG_EQ2] = ACTIONS(1594), + [anon_sym_LT2] = ACTIONS(1594), + [anon_sym_LT_EQ2] = ACTIONS(1594), + [anon_sym_GT_EQ2] = ACTIONS(1594), + [anon_sym_EQ_TILDE2] = ACTIONS(1594), + [anon_sym_BANG_TILDE2] = ACTIONS(1594), + [anon_sym_like2] = ACTIONS(1594), + [anon_sym_not_DASHlike2] = ACTIONS(1594), + [anon_sym_STAR_STAR2] = ACTIONS(1594), + [anon_sym_PLUS_PLUS2] = ACTIONS(1594), + [anon_sym_SLASH2] = ACTIONS(1594), + [anon_sym_mod2] = ACTIONS(1594), + [anon_sym_SLASH_SLASH2] = ACTIONS(1594), + [anon_sym_PLUS2] = ACTIONS(1594), + [anon_sym_bit_DASHshl2] = ACTIONS(1594), + [anon_sym_bit_DASHshr2] = ACTIONS(1594), + [anon_sym_bit_DASHand2] = ACTIONS(1594), + [anon_sym_bit_DASHxor2] = ACTIONS(1594), + [anon_sym_bit_DASHor2] = ACTIONS(1594), + [anon_sym_DOT_DOT2] = ACTIONS(1594), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1596), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1596), + [sym__entry_separator] = ACTIONS(1596), + [anon_sym_COLON2] = ACTIONS(1594), + [anon_sym_QMARK2] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_DOT2] = ACTIONS(1594), + [anon_sym_err_GT] = ACTIONS(1594), + [anon_sym_out_GT] = ACTIONS(1594), + [anon_sym_e_GT] = ACTIONS(1594), + [anon_sym_o_GT] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT] = ACTIONS(1594), + [anon_sym_err_GT_GT] = ACTIONS(1594), + [anon_sym_out_GT_GT] = ACTIONS(1594), + [anon_sym_e_GT_GT] = ACTIONS(1594), + [anon_sym_o_GT_GT] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(346)] = { + [sym__path_suffix] = STATE(395), [sym_comment] = STATE(346), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_COLON2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1594), + [anon_sym_PLUS_EQ] = ACTIONS(1596), + [anon_sym_DASH_EQ] = ACTIONS(1596), + [anon_sym_STAR_EQ] = ACTIONS(1596), + [anon_sym_SLASH_EQ] = ACTIONS(1596), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1596), + [anon_sym_in] = ACTIONS(1596), + [sym__newline] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_err_GT_PIPE] = ACTIONS(1596), + [anon_sym_out_GT_PIPE] = ACTIONS(1596), + [anon_sym_e_GT_PIPE] = ACTIONS(1596), + [anon_sym_o_GT_PIPE] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1596), + [anon_sym_GT2] = ACTIONS(1594), + [anon_sym_DASH2] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_STAR2] = ACTIONS(1594), + [anon_sym_and2] = ACTIONS(1596), + [anon_sym_xor2] = ACTIONS(1596), + [anon_sym_or2] = ACTIONS(1596), + [anon_sym_not_DASHin2] = ACTIONS(1596), + [anon_sym_has2] = ACTIONS(1596), + [anon_sym_not_DASHhas2] = ACTIONS(1596), + [anon_sym_starts_DASHwith2] = ACTIONS(1596), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), + [anon_sym_ends_DASHwith2] = ACTIONS(1596), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), + [anon_sym_EQ_EQ2] = ACTIONS(1596), + [anon_sym_BANG_EQ2] = ACTIONS(1596), + [anon_sym_LT2] = ACTIONS(1594), + [anon_sym_LT_EQ2] = ACTIONS(1596), + [anon_sym_GT_EQ2] = ACTIONS(1596), + [anon_sym_EQ_TILDE2] = ACTIONS(1596), + [anon_sym_BANG_TILDE2] = ACTIONS(1596), + [anon_sym_like2] = ACTIONS(1596), + [anon_sym_not_DASHlike2] = ACTIONS(1596), + [anon_sym_STAR_STAR2] = ACTIONS(1596), + [anon_sym_PLUS_PLUS2] = ACTIONS(1594), + [anon_sym_SLASH2] = ACTIONS(1594), + [anon_sym_mod2] = ACTIONS(1596), + [anon_sym_SLASH_SLASH2] = ACTIONS(1596), + [anon_sym_PLUS2] = ACTIONS(1594), + [anon_sym_bit_DASHshl2] = ACTIONS(1596), + [anon_sym_bit_DASHshr2] = ACTIONS(1596), + [anon_sym_bit_DASHand2] = ACTIONS(1596), + [anon_sym_bit_DASHxor2] = ACTIONS(1596), + [anon_sym_bit_DASHor2] = ACTIONS(1596), + [anon_sym_DOT_DOT2] = ACTIONS(1594), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1596), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1596), + [anon_sym_COLON2] = ACTIONS(1596), + [anon_sym_QMARK2] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_DOT2] = ACTIONS(1594), + [anon_sym_err_GT] = ACTIONS(1594), + [anon_sym_out_GT] = ACTIONS(1594), + [anon_sym_e_GT] = ACTIONS(1594), + [anon_sym_o_GT] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT] = ACTIONS(1594), + [anon_sym_err_GT_GT] = ACTIONS(1596), + [anon_sym_out_GT_GT] = ACTIONS(1596), + [anon_sym_e_GT_GT] = ACTIONS(1596), + [anon_sym_o_GT_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), [anon_sym_POUND] = ACTIONS(3), }, [STATE(347)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5080), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [sym_cell_path] = STATE(421), + [sym_path] = STATE(402), [sym_comment] = STATE(347), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__where_predicate_lhs_repeat1] = STATE(352), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_PLUS_EQ] = ACTIONS(1590), + [anon_sym_DASH_EQ] = ACTIONS(1590), + [anon_sym_STAR_EQ] = ACTIONS(1590), + [anon_sym_SLASH_EQ] = ACTIONS(1590), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1590), + [anon_sym_xor2] = ACTIONS(1590), + [anon_sym_or2] = ACTIONS(1590), + [anon_sym_not_DASHin2] = ACTIONS(1590), + [anon_sym_has2] = ACTIONS(1590), + [anon_sym_not_DASHhas2] = ACTIONS(1590), + [anon_sym_starts_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1590), + [anon_sym_ends_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1590), + [anon_sym_EQ_EQ2] = ACTIONS(1590), + [anon_sym_BANG_EQ2] = ACTIONS(1590), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1590), + [anon_sym_GT_EQ2] = ACTIONS(1590), + [anon_sym_EQ_TILDE2] = ACTIONS(1590), + [anon_sym_BANG_TILDE2] = ACTIONS(1590), + [anon_sym_like2] = ACTIONS(1590), + [anon_sym_not_DASHlike2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1590), + [anon_sym_PLUS_PLUS2] = ACTIONS(1588), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1590), + [anon_sym_SLASH_SLASH2] = ACTIONS(1590), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1590), + [anon_sym_bit_DASHshr2] = ACTIONS(1590), + [anon_sym_bit_DASHand2] = ACTIONS(1590), + [anon_sym_bit_DASHxor2] = ACTIONS(1590), + [anon_sym_bit_DASHor2] = ACTIONS(1590), + [anon_sym_DOT_DOT2] = ACTIONS(1588), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1590), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1590), + [anon_sym_COLON2] = ACTIONS(1590), + [anon_sym_DOT2] = ACTIONS(1606), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(348)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4886), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3646), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(348), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_PLUS_EQ] = ACTIONS(1608), + [anon_sym_DASH_EQ] = ACTIONS(1608), + [anon_sym_STAR_EQ] = ACTIONS(1608), + [anon_sym_SLASH_EQ] = ACTIONS(1608), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1608), + [anon_sym_in] = ACTIONS(1608), + [sym__newline] = ACTIONS(1608), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_err_GT_PIPE] = ACTIONS(1608), + [anon_sym_out_GT_PIPE] = ACTIONS(1608), + [anon_sym_e_GT_PIPE] = ACTIONS(1608), + [anon_sym_o_GT_PIPE] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1608), + [anon_sym_RBRACK] = ACTIONS(1608), + [anon_sym_GT2] = ACTIONS(1608), + [anon_sym_DASH2] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1608), + [anon_sym_STAR2] = ACTIONS(1608), + [anon_sym_and2] = ACTIONS(1608), + [anon_sym_xor2] = ACTIONS(1608), + [anon_sym_or2] = ACTIONS(1608), + [anon_sym_not_DASHin2] = ACTIONS(1608), + [anon_sym_has2] = ACTIONS(1608), + [anon_sym_not_DASHhas2] = ACTIONS(1608), + [anon_sym_starts_DASHwith2] = ACTIONS(1608), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1608), + [anon_sym_ends_DASHwith2] = ACTIONS(1608), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1608), + [anon_sym_EQ_EQ2] = ACTIONS(1608), + [anon_sym_BANG_EQ2] = ACTIONS(1608), + [anon_sym_LT2] = ACTIONS(1608), + [anon_sym_LT_EQ2] = ACTIONS(1608), + [anon_sym_GT_EQ2] = ACTIONS(1608), + [anon_sym_EQ_TILDE2] = ACTIONS(1608), + [anon_sym_BANG_TILDE2] = ACTIONS(1608), + [anon_sym_like2] = ACTIONS(1608), + [anon_sym_not_DASHlike2] = ACTIONS(1608), + [anon_sym_STAR_STAR2] = ACTIONS(1608), + [anon_sym_PLUS_PLUS2] = ACTIONS(1608), + [anon_sym_SLASH2] = ACTIONS(1608), + [anon_sym_mod2] = ACTIONS(1608), + [anon_sym_SLASH_SLASH2] = ACTIONS(1608), + [anon_sym_PLUS2] = ACTIONS(1608), + [anon_sym_bit_DASHshl2] = ACTIONS(1608), + [anon_sym_bit_DASHshr2] = ACTIONS(1608), + [anon_sym_bit_DASHand2] = ACTIONS(1608), + [anon_sym_bit_DASHxor2] = ACTIONS(1608), + [anon_sym_bit_DASHor2] = ACTIONS(1608), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [sym__entry_separator] = ACTIONS(1610), + [anon_sym_COLON2] = ACTIONS(1608), + [anon_sym_QMARK2] = ACTIONS(1612), + [anon_sym_DOT2] = ACTIONS(1608), + [anon_sym_err_GT] = ACTIONS(1608), + [anon_sym_out_GT] = ACTIONS(1608), + [anon_sym_e_GT] = ACTIONS(1608), + [anon_sym_o_GT] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT] = ACTIONS(1608), + [anon_sym_err_GT_GT] = ACTIONS(1608), + [anon_sym_out_GT_GT] = ACTIONS(1608), + [anon_sym_e_GT_GT] = ACTIONS(1608), + [anon_sym_o_GT_GT] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(349)] = { + [aux_sym__repeat_newline] = STATE(4247), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(4989), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3835), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(349), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1514), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_COLON2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(350)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4809), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3709), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [sym_path] = STATE(354), [sym_comment] = STATE(350), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__where_predicate_lhs_repeat1] = STATE(350), + [anon_sym_EQ] = ACTIONS(1642), + [anon_sym_PLUS_EQ] = ACTIONS(1642), + [anon_sym_DASH_EQ] = ACTIONS(1642), + [anon_sym_STAR_EQ] = ACTIONS(1642), + [anon_sym_SLASH_EQ] = ACTIONS(1642), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1642), + [anon_sym_in] = ACTIONS(1642), + [sym__newline] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_err_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_GT_PIPE] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), + [anon_sym_GT2] = ACTIONS(1642), + [anon_sym_DASH2] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_STAR2] = ACTIONS(1642), + [anon_sym_and2] = ACTIONS(1642), + [anon_sym_xor2] = ACTIONS(1642), + [anon_sym_or2] = ACTIONS(1642), + [anon_sym_not_DASHin2] = ACTIONS(1642), + [anon_sym_has2] = ACTIONS(1642), + [anon_sym_not_DASHhas2] = ACTIONS(1642), + [anon_sym_starts_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), + [anon_sym_ends_DASHwith2] = ACTIONS(1642), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), + [anon_sym_EQ_EQ2] = ACTIONS(1642), + [anon_sym_BANG_EQ2] = ACTIONS(1642), + [anon_sym_LT2] = ACTIONS(1642), + [anon_sym_LT_EQ2] = ACTIONS(1642), + [anon_sym_GT_EQ2] = ACTIONS(1642), + [anon_sym_EQ_TILDE2] = ACTIONS(1642), + [anon_sym_BANG_TILDE2] = ACTIONS(1642), + [anon_sym_like2] = ACTIONS(1642), + [anon_sym_not_DASHlike2] = ACTIONS(1642), + [anon_sym_STAR_STAR2] = ACTIONS(1642), + [anon_sym_PLUS_PLUS2] = ACTIONS(1642), + [anon_sym_SLASH2] = ACTIONS(1642), + [anon_sym_mod2] = ACTIONS(1642), + [anon_sym_SLASH_SLASH2] = ACTIONS(1642), + [anon_sym_PLUS2] = ACTIONS(1642), + [anon_sym_bit_DASHshl2] = ACTIONS(1642), + [anon_sym_bit_DASHshr2] = ACTIONS(1642), + [anon_sym_bit_DASHand2] = ACTIONS(1642), + [anon_sym_bit_DASHxor2] = ACTIONS(1642), + [anon_sym_bit_DASHor2] = ACTIONS(1642), + [anon_sym_DOT_DOT2] = ACTIONS(1642), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1644), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1644), + [sym__entry_separator] = ACTIONS(1644), + [anon_sym_COLON2] = ACTIONS(1642), + [anon_sym_DOT2] = ACTIONS(1646), + [anon_sym_err_GT] = ACTIONS(1642), + [anon_sym_out_GT] = ACTIONS(1642), + [anon_sym_e_GT] = ACTIONS(1642), + [anon_sym_o_GT] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT] = ACTIONS(1642), + [anon_sym_err_GT_GT] = ACTIONS(1642), + [anon_sym_out_GT_GT] = ACTIONS(1642), + [anon_sym_e_GT_GT] = ACTIONS(1642), + [anon_sym_o_GT_GT] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(351)] = { + [aux_sym__repeat_newline] = STATE(4247), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5069), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3863), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(351), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1520), - [anon_sym_in] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RBRACK] = ACTIONS(1520), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1520), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1520), - [anon_sym_xor2] = ACTIONS(1520), - [anon_sym_or2] = ACTIONS(1520), - [anon_sym_not_DASHin2] = ACTIONS(1520), - [anon_sym_has2] = ACTIONS(1520), - [anon_sym_not_DASHhas2] = ACTIONS(1520), - [anon_sym_starts_DASHwith2] = ACTIONS(1520), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1520), - [anon_sym_ends_DASHwith2] = ACTIONS(1520), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1520), - [anon_sym_EQ_EQ2] = ACTIONS(1520), - [anon_sym_BANG_EQ2] = ACTIONS(1520), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1520), - [anon_sym_GT_EQ2] = ACTIONS(1520), - [anon_sym_EQ_TILDE2] = ACTIONS(1520), - [anon_sym_BANG_TILDE2] = ACTIONS(1520), - [anon_sym_like2] = ACTIONS(1520), - [anon_sym_not_DASHlike2] = ACTIONS(1520), - [anon_sym_STAR_STAR2] = ACTIONS(1520), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1520), - [anon_sym_SLASH_SLASH2] = ACTIONS(1520), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1520), - [anon_sym_bit_DASHshr2] = ACTIONS(1520), - [anon_sym_bit_DASHand2] = ACTIONS(1520), - [anon_sym_bit_DASHxor2] = ACTIONS(1520), - [anon_sym_bit_DASHor2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [sym__entry_separator] = ACTIONS(1522), - [anon_sym_COLON2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(352)] = { + [sym_path] = STATE(402), [sym_comment] = STATE(352), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1514), - [anon_sym_DASH_EQ] = ACTIONS(1514), - [anon_sym_STAR_EQ] = ACTIONS(1514), - [anon_sym_SLASH_EQ] = ACTIONS(1514), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1514), - [anon_sym_in] = ACTIONS(1514), - [sym__newline] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_err_GT_PIPE] = ACTIONS(1514), - [anon_sym_out_GT_PIPE] = ACTIONS(1514), - [anon_sym_e_GT_PIPE] = ACTIONS(1514), - [anon_sym_o_GT_PIPE] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1514), - [anon_sym_xor2] = ACTIONS(1514), - [anon_sym_or2] = ACTIONS(1514), - [anon_sym_not_DASHin2] = ACTIONS(1514), - [anon_sym_has2] = ACTIONS(1514), - [anon_sym_not_DASHhas2] = ACTIONS(1514), - [anon_sym_starts_DASHwith2] = ACTIONS(1514), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1514), - [anon_sym_ends_DASHwith2] = ACTIONS(1514), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1514), - [anon_sym_EQ_EQ2] = ACTIONS(1514), - [anon_sym_BANG_EQ2] = ACTIONS(1514), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1514), - [anon_sym_GT_EQ2] = ACTIONS(1514), - [anon_sym_EQ_TILDE2] = ACTIONS(1514), - [anon_sym_BANG_TILDE2] = ACTIONS(1514), - [anon_sym_like2] = ACTIONS(1514), - [anon_sym_not_DASHlike2] = ACTIONS(1514), - [anon_sym_STAR_STAR2] = ACTIONS(1514), - [anon_sym_PLUS_PLUS2] = ACTIONS(1514), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1514), - [anon_sym_SLASH_SLASH2] = ACTIONS(1514), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1514), - [anon_sym_bit_DASHshr2] = ACTIONS(1514), - [anon_sym_bit_DASHand2] = ACTIONS(1514), - [anon_sym_bit_DASHxor2] = ACTIONS(1514), - [anon_sym_bit_DASHor2] = ACTIONS(1514), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [sym__entry_separator] = ACTIONS(1516), - [anon_sym_COLON2] = ACTIONS(1514), - [anon_sym_QMARK2] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1514), - [anon_sym_out_GT_GT] = ACTIONS(1514), - [anon_sym_e_GT_GT] = ACTIONS(1514), - [anon_sym_o_GT_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym__where_predicate_lhs_repeat1] = STATE(355), + [anon_sym_EQ] = ACTIONS(1651), + [anon_sym_PLUS_EQ] = ACTIONS(1653), + [anon_sym_DASH_EQ] = ACTIONS(1653), + [anon_sym_STAR_EQ] = ACTIONS(1653), + [anon_sym_SLASH_EQ] = ACTIONS(1653), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_RPAREN] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1651), + [anon_sym_DASH2] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1651), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_has2] = ACTIONS(1653), + [anon_sym_not_DASHhas2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1651), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_like2] = ACTIONS(1653), + [anon_sym_not_DASHlike2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1651), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1651), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(1651), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1653), + [anon_sym_COLON2] = ACTIONS(1653), + [anon_sym_DOT2] = ACTIONS(1606), + [anon_sym_err_GT] = ACTIONS(1651), + [anon_sym_out_GT] = ACTIONS(1651), + [anon_sym_e_GT] = ACTIONS(1651), + [anon_sym_o_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT] = ACTIONS(1651), + [anon_sym_err_GT_GT] = ACTIONS(1653), + [anon_sym_out_GT_GT] = ACTIONS(1653), + [anon_sym_e_GT_GT] = ACTIONS(1653), + [anon_sym_o_GT_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(353)] = { - [sym_path] = STATE(385), + [aux_sym__repeat_newline] = STATE(4247), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5278), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3876), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(353), - [aux_sym__where_predicate_lhs_repeat1] = STATE(353), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_PLUS_EQ] = ACTIONS(1526), - [anon_sym_DASH_EQ] = ACTIONS(1526), - [anon_sym_STAR_EQ] = ACTIONS(1526), - [anon_sym_SLASH_EQ] = ACTIONS(1526), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(354)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5047), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(354), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1657), + [anon_sym_PLUS_EQ] = ACTIONS(1657), + [anon_sym_DASH_EQ] = ACTIONS(1657), + [anon_sym_STAR_EQ] = ACTIONS(1657), + [anon_sym_SLASH_EQ] = ACTIONS(1657), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1657), + [anon_sym_in] = ACTIONS(1657), + [sym__newline] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_err_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_GT_PIPE] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), + [anon_sym_RBRACK] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1657), + [anon_sym_DASH2] = ACTIONS(1657), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_DOT_DOT] = ACTIONS(1657), + [anon_sym_STAR2] = ACTIONS(1657), + [anon_sym_and2] = ACTIONS(1657), + [anon_sym_xor2] = ACTIONS(1657), + [anon_sym_or2] = ACTIONS(1657), + [anon_sym_not_DASHin2] = ACTIONS(1657), + [anon_sym_has2] = ACTIONS(1657), + [anon_sym_not_DASHhas2] = ACTIONS(1657), + [anon_sym_starts_DASHwith2] = ACTIONS(1657), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1657), + [anon_sym_ends_DASHwith2] = ACTIONS(1657), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1657), + [anon_sym_EQ_EQ2] = ACTIONS(1657), + [anon_sym_BANG_EQ2] = ACTIONS(1657), + [anon_sym_LT2] = ACTIONS(1657), + [anon_sym_LT_EQ2] = ACTIONS(1657), + [anon_sym_GT_EQ2] = ACTIONS(1657), + [anon_sym_EQ_TILDE2] = ACTIONS(1657), + [anon_sym_BANG_TILDE2] = ACTIONS(1657), + [anon_sym_like2] = ACTIONS(1657), + [anon_sym_not_DASHlike2] = ACTIONS(1657), + [anon_sym_STAR_STAR2] = ACTIONS(1657), + [anon_sym_PLUS_PLUS2] = ACTIONS(1657), + [anon_sym_SLASH2] = ACTIONS(1657), + [anon_sym_mod2] = ACTIONS(1657), + [anon_sym_SLASH_SLASH2] = ACTIONS(1657), + [anon_sym_PLUS2] = ACTIONS(1657), + [anon_sym_bit_DASHshl2] = ACTIONS(1657), + [anon_sym_bit_DASHshr2] = ACTIONS(1657), + [anon_sym_bit_DASHand2] = ACTIONS(1657), + [anon_sym_bit_DASHxor2] = ACTIONS(1657), + [anon_sym_bit_DASHor2] = ACTIONS(1657), + [anon_sym_DOT_DOT2] = ACTIONS(1657), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1659), + [sym__entry_separator] = ACTIONS(1659), + [anon_sym_COLON2] = ACTIONS(1657), + [anon_sym_DOT2] = ACTIONS(1657), + [anon_sym_err_GT] = ACTIONS(1657), + [anon_sym_out_GT] = ACTIONS(1657), + [anon_sym_e_GT] = ACTIONS(1657), + [anon_sym_o_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT] = ACTIONS(1657), + [anon_sym_err_GT_GT] = ACTIONS(1657), + [anon_sym_out_GT_GT] = ACTIONS(1657), + [anon_sym_e_GT_GT] = ACTIONS(1657), + [anon_sym_o_GT_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(355)] = { + [sym_path] = STATE(402), [sym_comment] = STATE(355), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_STAR_EQ] = ACTIONS(1468), - [anon_sym_SLASH_EQ] = ACTIONS(1468), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), + [aux_sym__where_predicate_lhs_repeat1] = STATE(355), + [anon_sym_EQ] = ACTIONS(1642), + [anon_sym_PLUS_EQ] = ACTIONS(1644), + [anon_sym_DASH_EQ] = ACTIONS(1644), + [anon_sym_STAR_EQ] = ACTIONS(1644), + [anon_sym_SLASH_EQ] = ACTIONS(1644), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1644), + [anon_sym_in] = ACTIONS(1644), + [sym__newline] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_err_GT_PIPE] = ACTIONS(1644), + [anon_sym_out_GT_PIPE] = ACTIONS(1644), + [anon_sym_e_GT_PIPE] = ACTIONS(1644), + [anon_sym_o_GT_PIPE] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_GT2] = ACTIONS(1642), + [anon_sym_DASH2] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_STAR2] = ACTIONS(1642), + [anon_sym_and2] = ACTIONS(1644), + [anon_sym_xor2] = ACTIONS(1644), + [anon_sym_or2] = ACTIONS(1644), + [anon_sym_not_DASHin2] = ACTIONS(1644), + [anon_sym_has2] = ACTIONS(1644), + [anon_sym_not_DASHhas2] = ACTIONS(1644), + [anon_sym_starts_DASHwith2] = ACTIONS(1644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1644), + [anon_sym_ends_DASHwith2] = ACTIONS(1644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1644), + [anon_sym_EQ_EQ2] = ACTIONS(1644), + [anon_sym_BANG_EQ2] = ACTIONS(1644), + [anon_sym_LT2] = ACTIONS(1642), + [anon_sym_LT_EQ2] = ACTIONS(1644), + [anon_sym_GT_EQ2] = ACTIONS(1644), + [anon_sym_EQ_TILDE2] = ACTIONS(1644), + [anon_sym_BANG_TILDE2] = ACTIONS(1644), + [anon_sym_like2] = ACTIONS(1644), + [anon_sym_not_DASHlike2] = ACTIONS(1644), + [anon_sym_STAR_STAR2] = ACTIONS(1644), + [anon_sym_PLUS_PLUS2] = ACTIONS(1642), + [anon_sym_SLASH2] = ACTIONS(1642), + [anon_sym_mod2] = ACTIONS(1644), + [anon_sym_SLASH_SLASH2] = ACTIONS(1644), + [anon_sym_PLUS2] = ACTIONS(1642), + [anon_sym_bit_DASHshl2] = ACTIONS(1644), + [anon_sym_bit_DASHshr2] = ACTIONS(1644), + [anon_sym_bit_DASHand2] = ACTIONS(1644), + [anon_sym_bit_DASHxor2] = ACTIONS(1644), + [anon_sym_bit_DASHor2] = ACTIONS(1644), + [anon_sym_DOT_DOT2] = ACTIONS(1642), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1644), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1644), + [anon_sym_COLON2] = ACTIONS(1644), + [anon_sym_DOT2] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1642), + [anon_sym_out_GT] = ACTIONS(1642), + [anon_sym_e_GT] = ACTIONS(1642), + [anon_sym_o_GT] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT] = ACTIONS(1642), + [anon_sym_err_GT_GT] = ACTIONS(1644), + [anon_sym_out_GT_GT] = ACTIONS(1644), + [anon_sym_e_GT_GT] = ACTIONS(1644), + [anon_sym_o_GT_GT] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(356)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5041), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3665), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(4247), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5279), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3851), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(356), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1664), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(357)] = { + [aux_sym__repeat_newline] = STATE(4247), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5161), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3891), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(357), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [sym__newline] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1535), - [anon_sym_err_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_GT_PIPE] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), - [anon_sym_RBRACK] = ACTIONS(1535), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1535), - [anon_sym_xor2] = ACTIONS(1535), - [anon_sym_or2] = ACTIONS(1535), - [anon_sym_not_DASHin2] = ACTIONS(1535), - [anon_sym_has2] = ACTIONS(1535), - [anon_sym_not_DASHhas2] = ACTIONS(1535), - [anon_sym_starts_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), - [anon_sym_ends_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), - [anon_sym_EQ_EQ2] = ACTIONS(1535), - [anon_sym_BANG_EQ2] = ACTIONS(1535), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1535), - [anon_sym_GT_EQ2] = ACTIONS(1535), - [anon_sym_EQ_TILDE2] = ACTIONS(1535), - [anon_sym_BANG_TILDE2] = ACTIONS(1535), - [anon_sym_like2] = ACTIONS(1535), - [anon_sym_not_DASHlike2] = ACTIONS(1535), - [anon_sym_STAR_STAR2] = ACTIONS(1535), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1535), - [anon_sym_SLASH_SLASH2] = ACTIONS(1535), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1535), - [anon_sym_bit_DASHshr2] = ACTIONS(1535), - [anon_sym_bit_DASHand2] = ACTIONS(1535), - [anon_sym_bit_DASHxor2] = ACTIONS(1535), - [anon_sym_bit_DASHor2] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [sym__entry_separator] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1535), - [anon_sym_out_GT_GT] = ACTIONS(1535), - [anon_sym_e_GT_GT] = ACTIONS(1535), - [anon_sym_o_GT_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(358)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4926), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3675), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(358), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1668), + [anon_sym_PLUS_EQ] = ACTIONS(1670), + [anon_sym_DASH_EQ] = ACTIONS(1670), + [anon_sym_STAR_EQ] = ACTIONS(1670), + [anon_sym_SLASH_EQ] = ACTIONS(1670), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1670), + [anon_sym_in] = ACTIONS(1670), + [sym__newline] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_err_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_GT_PIPE] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1670), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_GT2] = ACTIONS(1668), + [anon_sym_DASH2] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_STAR2] = ACTIONS(1668), + [anon_sym_and2] = ACTIONS(1670), + [anon_sym_xor2] = ACTIONS(1670), + [anon_sym_or2] = ACTIONS(1670), + [anon_sym_not_DASHin2] = ACTIONS(1670), + [anon_sym_has2] = ACTIONS(1670), + [anon_sym_not_DASHhas2] = ACTIONS(1670), + [anon_sym_starts_DASHwith2] = ACTIONS(1670), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1670), + [anon_sym_ends_DASHwith2] = ACTIONS(1670), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1670), + [anon_sym_EQ_EQ2] = ACTIONS(1670), + [anon_sym_BANG_EQ2] = ACTIONS(1670), + [anon_sym_LT2] = ACTIONS(1668), + [anon_sym_LT_EQ2] = ACTIONS(1670), + [anon_sym_GT_EQ2] = ACTIONS(1670), + [anon_sym_EQ_TILDE2] = ACTIONS(1670), + [anon_sym_BANG_TILDE2] = ACTIONS(1670), + [anon_sym_like2] = ACTIONS(1670), + [anon_sym_not_DASHlike2] = ACTIONS(1670), + [anon_sym_STAR_STAR2] = ACTIONS(1670), + [anon_sym_PLUS_PLUS2] = ACTIONS(1668), + [anon_sym_SLASH2] = ACTIONS(1668), + [anon_sym_mod2] = ACTIONS(1670), + [anon_sym_SLASH_SLASH2] = ACTIONS(1670), + [anon_sym_PLUS2] = ACTIONS(1668), + [anon_sym_bit_DASHshl2] = ACTIONS(1670), + [anon_sym_bit_DASHshr2] = ACTIONS(1670), + [anon_sym_bit_DASHand2] = ACTIONS(1670), + [anon_sym_bit_DASHxor2] = ACTIONS(1670), + [anon_sym_bit_DASHor2] = ACTIONS(1670), + [anon_sym_DOT_DOT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1670), + [anon_sym_COLON2] = ACTIONS(1670), + [anon_sym_QMARK2] = ACTIONS(1670), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_DOT2] = ACTIONS(1668), + [anon_sym_err_GT] = ACTIONS(1668), + [anon_sym_out_GT] = ACTIONS(1668), + [anon_sym_e_GT] = ACTIONS(1668), + [anon_sym_o_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT] = ACTIONS(1668), + [anon_sym_err_GT_GT] = ACTIONS(1670), + [anon_sym_out_GT_GT] = ACTIONS(1670), + [anon_sym_e_GT_GT] = ACTIONS(1670), + [anon_sym_o_GT_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(359)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5003), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3702), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(359), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1674), + [anon_sym_DASH_EQ] = ACTIONS(1674), + [anon_sym_STAR_EQ] = ACTIONS(1674), + [anon_sym_SLASH_EQ] = ACTIONS(1674), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1674), + [anon_sym_in] = ACTIONS(1674), + [sym__newline] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_err_GT_PIPE] = ACTIONS(1674), + [anon_sym_out_GT_PIPE] = ACTIONS(1674), + [anon_sym_e_GT_PIPE] = ACTIONS(1674), + [anon_sym_o_GT_PIPE] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_GT2] = ACTIONS(1672), + [anon_sym_DASH2] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_STAR2] = ACTIONS(1672), + [anon_sym_and2] = ACTIONS(1674), + [anon_sym_xor2] = ACTIONS(1674), + [anon_sym_or2] = ACTIONS(1674), + [anon_sym_not_DASHin2] = ACTIONS(1674), + [anon_sym_has2] = ACTIONS(1674), + [anon_sym_not_DASHhas2] = ACTIONS(1674), + [anon_sym_starts_DASHwith2] = ACTIONS(1674), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1674), + [anon_sym_ends_DASHwith2] = ACTIONS(1674), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1674), + [anon_sym_EQ_EQ2] = ACTIONS(1674), + [anon_sym_BANG_EQ2] = ACTIONS(1674), + [anon_sym_LT2] = ACTIONS(1672), + [anon_sym_LT_EQ2] = ACTIONS(1674), + [anon_sym_GT_EQ2] = ACTIONS(1674), + [anon_sym_EQ_TILDE2] = ACTIONS(1674), + [anon_sym_BANG_TILDE2] = ACTIONS(1674), + [anon_sym_like2] = ACTIONS(1674), + [anon_sym_not_DASHlike2] = ACTIONS(1674), + [anon_sym_STAR_STAR2] = ACTIONS(1674), + [anon_sym_PLUS_PLUS2] = ACTIONS(1672), + [anon_sym_SLASH2] = ACTIONS(1672), + [anon_sym_mod2] = ACTIONS(1674), + [anon_sym_SLASH_SLASH2] = ACTIONS(1674), + [anon_sym_PLUS2] = ACTIONS(1672), + [anon_sym_bit_DASHshl2] = ACTIONS(1674), + [anon_sym_bit_DASHshr2] = ACTIONS(1674), + [anon_sym_bit_DASHand2] = ACTIONS(1674), + [anon_sym_bit_DASHxor2] = ACTIONS(1674), + [anon_sym_bit_DASHor2] = ACTIONS(1674), + [anon_sym_DOT_DOT2] = ACTIONS(1672), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1674), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1674), + [anon_sym_COLON2] = ACTIONS(1674), + [anon_sym_QMARK2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_DOT2] = ACTIONS(1672), + [anon_sym_err_GT] = ACTIONS(1672), + [anon_sym_out_GT] = ACTIONS(1672), + [anon_sym_e_GT] = ACTIONS(1672), + [anon_sym_o_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT] = ACTIONS(1672), + [anon_sym_err_GT_GT] = ACTIONS(1674), + [anon_sym_out_GT_GT] = ACTIONS(1674), + [anon_sym_e_GT_GT] = ACTIONS(1674), + [anon_sym_o_GT_GT] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(360)] = { [sym_comment] = STATE(360), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1543), - [anon_sym_in] = ACTIONS(1543), - [sym__newline] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_err_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_GT_PIPE] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1543), - [anon_sym_xor2] = ACTIONS(1543), - [anon_sym_or2] = ACTIONS(1543), - [anon_sym_not_DASHin2] = ACTIONS(1543), - [anon_sym_has2] = ACTIONS(1543), - [anon_sym_not_DASHhas2] = ACTIONS(1543), - [anon_sym_starts_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1543), - [anon_sym_ends_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1543), - [anon_sym_EQ_EQ2] = ACTIONS(1543), - [anon_sym_BANG_EQ2] = ACTIONS(1543), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1543), - [anon_sym_GT_EQ2] = ACTIONS(1543), - [anon_sym_EQ_TILDE2] = ACTIONS(1543), - [anon_sym_BANG_TILDE2] = ACTIONS(1543), - [anon_sym_like2] = ACTIONS(1543), - [anon_sym_not_DASHlike2] = ACTIONS(1543), - [anon_sym_STAR_STAR2] = ACTIONS(1543), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1543), - [anon_sym_SLASH_SLASH2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1543), - [anon_sym_bit_DASHshr2] = ACTIONS(1543), - [anon_sym_bit_DASHand2] = ACTIONS(1543), - [anon_sym_bit_DASHxor2] = ACTIONS(1543), - [anon_sym_bit_DASHor2] = ACTIONS(1543), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [sym__entry_separator] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1543), - [anon_sym_QMARK2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1543), - [anon_sym_out_GT_GT] = ACTIONS(1543), - [anon_sym_e_GT_GT] = ACTIONS(1543), - [anon_sym_o_GT_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_EQ] = ACTIONS(1676), + [anon_sym_PLUS_EQ] = ACTIONS(1678), + [anon_sym_DASH_EQ] = ACTIONS(1678), + [anon_sym_STAR_EQ] = ACTIONS(1678), + [anon_sym_SLASH_EQ] = ACTIONS(1678), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1678), + [anon_sym_in] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1676), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1676), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_like2] = ACTIONS(1678), + [anon_sym_not_DASHlike2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1676), + [anon_sym_SLASH2] = ACTIONS(1676), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1676), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_COLON2] = ACTIONS(1678), + [anon_sym_QMARK2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_DOT2] = ACTIONS(1676), + [anon_sym_err_GT] = ACTIONS(1676), + [anon_sym_out_GT] = ACTIONS(1676), + [anon_sym_e_GT] = ACTIONS(1676), + [anon_sym_o_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT] = ACTIONS(1676), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(361)] = { [sym_comment] = STATE(361), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1545), - [anon_sym_DASH_EQ] = ACTIONS(1545), - [anon_sym_STAR_EQ] = ACTIONS(1545), - [anon_sym_SLASH_EQ] = ACTIONS(1545), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), + [anon_sym_EQ] = ACTIONS(1680), + [anon_sym_PLUS_EQ] = ACTIONS(1682), + [anon_sym_DASH_EQ] = ACTIONS(1682), + [anon_sym_STAR_EQ] = ACTIONS(1682), + [anon_sym_SLASH_EQ] = ACTIONS(1682), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [sym__newline] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_err_GT_PIPE] = ACTIONS(1682), + [anon_sym_out_GT_PIPE] = ACTIONS(1682), + [anon_sym_e_GT_PIPE] = ACTIONS(1682), + [anon_sym_o_GT_PIPE] = ACTIONS(1682), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1682), + [anon_sym_GT2] = ACTIONS(1680), + [anon_sym_DASH2] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_STAR2] = ACTIONS(1680), + [anon_sym_and2] = ACTIONS(1682), + [anon_sym_xor2] = ACTIONS(1682), + [anon_sym_or2] = ACTIONS(1682), + [anon_sym_not_DASHin2] = ACTIONS(1682), + [anon_sym_has2] = ACTIONS(1682), + [anon_sym_not_DASHhas2] = ACTIONS(1682), + [anon_sym_starts_DASHwith2] = ACTIONS(1682), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1682), + [anon_sym_ends_DASHwith2] = ACTIONS(1682), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1682), + [anon_sym_EQ_EQ2] = ACTIONS(1682), + [anon_sym_BANG_EQ2] = ACTIONS(1682), + [anon_sym_LT2] = ACTIONS(1680), + [anon_sym_LT_EQ2] = ACTIONS(1682), + [anon_sym_GT_EQ2] = ACTIONS(1682), + [anon_sym_EQ_TILDE2] = ACTIONS(1682), + [anon_sym_BANG_TILDE2] = ACTIONS(1682), + [anon_sym_like2] = ACTIONS(1682), + [anon_sym_not_DASHlike2] = ACTIONS(1682), + [anon_sym_STAR_STAR2] = ACTIONS(1682), + [anon_sym_PLUS_PLUS2] = ACTIONS(1680), + [anon_sym_SLASH2] = ACTIONS(1680), + [anon_sym_mod2] = ACTIONS(1682), + [anon_sym_SLASH_SLASH2] = ACTIONS(1682), + [anon_sym_PLUS2] = ACTIONS(1680), + [anon_sym_bit_DASHshl2] = ACTIONS(1682), + [anon_sym_bit_DASHshr2] = ACTIONS(1682), + [anon_sym_bit_DASHand2] = ACTIONS(1682), + [anon_sym_bit_DASHxor2] = ACTIONS(1682), + [anon_sym_bit_DASHor2] = ACTIONS(1682), + [anon_sym_DOT_DOT2] = ACTIONS(1680), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), + [anon_sym_COLON2] = ACTIONS(1682), + [anon_sym_QMARK2] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_DOT2] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1680), + [anon_sym_out_GT] = ACTIONS(1680), + [anon_sym_e_GT] = ACTIONS(1680), + [anon_sym_o_GT] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT] = ACTIONS(1680), + [anon_sym_err_GT_GT] = ACTIONS(1682), + [anon_sym_out_GT_GT] = ACTIONS(1682), + [anon_sym_e_GT_GT] = ACTIONS(1682), + [anon_sym_o_GT_GT] = ACTIONS(1682), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), [anon_sym_POUND] = ACTIONS(3), }, [STATE(362)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5056), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3670), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(4247), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5087), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3876), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(362), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(363)] = { - [sym_path] = STATE(339), [sym_comment] = STATE(363), - [aux_sym__where_predicate_lhs_repeat1] = STATE(364), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_PLUS_EQ] = ACTIONS(1458), - [anon_sym_DASH_EQ] = ACTIONS(1458), - [anon_sym_STAR_EQ] = ACTIONS(1458), - [anon_sym_SLASH_EQ] = ACTIONS(1458), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1458), - [anon_sym_in] = ACTIONS(1458), - [sym__newline] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_err_GT_PIPE] = ACTIONS(1458), - [anon_sym_out_GT_PIPE] = ACTIONS(1458), - [anon_sym_e_GT_PIPE] = ACTIONS(1458), - [anon_sym_o_GT_PIPE] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1458), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1458), - [anon_sym_xor2] = ACTIONS(1458), - [anon_sym_or2] = ACTIONS(1458), - [anon_sym_not_DASHin2] = ACTIONS(1458), - [anon_sym_has2] = ACTIONS(1458), - [anon_sym_not_DASHhas2] = ACTIONS(1458), - [anon_sym_starts_DASHwith2] = ACTIONS(1458), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1458), - [anon_sym_ends_DASHwith2] = ACTIONS(1458), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1458), - [anon_sym_EQ_EQ2] = ACTIONS(1458), - [anon_sym_BANG_EQ2] = ACTIONS(1458), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1458), - [anon_sym_GT_EQ2] = ACTIONS(1458), - [anon_sym_EQ_TILDE2] = ACTIONS(1458), - [anon_sym_BANG_TILDE2] = ACTIONS(1458), - [anon_sym_like2] = ACTIONS(1458), - [anon_sym_not_DASHlike2] = ACTIONS(1458), - [anon_sym_STAR_STAR2] = ACTIONS(1458), - [anon_sym_PLUS_PLUS2] = ACTIONS(1458), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1458), - [anon_sym_SLASH_SLASH2] = ACTIONS(1458), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1458), - [anon_sym_bit_DASHshr2] = ACTIONS(1458), - [anon_sym_bit_DASHand2] = ACTIONS(1458), - [anon_sym_bit_DASHxor2] = ACTIONS(1458), - [anon_sym_bit_DASHor2] = ACTIONS(1458), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [sym__entry_separator] = ACTIONS(1460), - [anon_sym_COLON2] = ACTIONS(1458), - [anon_sym_DOT2] = ACTIONS(1436), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1458), - [anon_sym_out_GT_GT] = ACTIONS(1458), - [anon_sym_e_GT_GT] = ACTIONS(1458), - [anon_sym_o_GT_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_EQ] = ACTIONS(1686), + [anon_sym_PLUS_EQ] = ACTIONS(1688), + [anon_sym_DASH_EQ] = ACTIONS(1688), + [anon_sym_STAR_EQ] = ACTIONS(1688), + [anon_sym_SLASH_EQ] = ACTIONS(1688), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1688), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1688), + [anon_sym_GT2] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_STAR2] = ACTIONS(1686), + [anon_sym_and2] = ACTIONS(1688), + [anon_sym_xor2] = ACTIONS(1688), + [anon_sym_or2] = ACTIONS(1688), + [anon_sym_not_DASHin2] = ACTIONS(1688), + [anon_sym_has2] = ACTIONS(1688), + [anon_sym_not_DASHhas2] = ACTIONS(1688), + [anon_sym_starts_DASHwith2] = ACTIONS(1688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1688), + [anon_sym_ends_DASHwith2] = ACTIONS(1688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1688), + [anon_sym_EQ_EQ2] = ACTIONS(1688), + [anon_sym_BANG_EQ2] = ACTIONS(1688), + [anon_sym_LT2] = ACTIONS(1686), + [anon_sym_LT_EQ2] = ACTIONS(1688), + [anon_sym_GT_EQ2] = ACTIONS(1688), + [anon_sym_EQ_TILDE2] = ACTIONS(1688), + [anon_sym_BANG_TILDE2] = ACTIONS(1688), + [anon_sym_like2] = ACTIONS(1688), + [anon_sym_not_DASHlike2] = ACTIONS(1688), + [anon_sym_STAR_STAR2] = ACTIONS(1688), + [anon_sym_PLUS_PLUS2] = ACTIONS(1686), + [anon_sym_SLASH2] = ACTIONS(1686), + [anon_sym_mod2] = ACTIONS(1688), + [anon_sym_SLASH_SLASH2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_bit_DASHshl2] = ACTIONS(1688), + [anon_sym_bit_DASHshr2] = ACTIONS(1688), + [anon_sym_bit_DASHand2] = ACTIONS(1688), + [anon_sym_bit_DASHxor2] = ACTIONS(1688), + [anon_sym_bit_DASHor2] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_COLON2] = ACTIONS(1688), + [anon_sym_QMARK2] = ACTIONS(1688), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_DOT2] = ACTIONS(1686), + [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(3), }, [STATE(364)] = { - [sym_path] = STATE(339), [sym_comment] = STATE(364), - [aux_sym__where_predicate_lhs_repeat1] = STATE(364), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_PLUS_EQ] = ACTIONS(1524), - [anon_sym_DASH_EQ] = ACTIONS(1524), - [anon_sym_STAR_EQ] = ACTIONS(1524), - [anon_sym_SLASH_EQ] = ACTIONS(1524), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1524), - [anon_sym_in] = ACTIONS(1524), - [sym__newline] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_err_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_GT_PIPE] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1524), - [anon_sym_xor2] = ACTIONS(1524), - [anon_sym_or2] = ACTIONS(1524), - [anon_sym_not_DASHin2] = ACTIONS(1524), - [anon_sym_has2] = ACTIONS(1524), - [anon_sym_not_DASHhas2] = ACTIONS(1524), - [anon_sym_starts_DASHwith2] = ACTIONS(1524), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1524), - [anon_sym_ends_DASHwith2] = ACTIONS(1524), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1524), - [anon_sym_EQ_EQ2] = ACTIONS(1524), - [anon_sym_BANG_EQ2] = ACTIONS(1524), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1524), - [anon_sym_GT_EQ2] = ACTIONS(1524), - [anon_sym_EQ_TILDE2] = ACTIONS(1524), - [anon_sym_BANG_TILDE2] = ACTIONS(1524), - [anon_sym_like2] = ACTIONS(1524), - [anon_sym_not_DASHlike2] = ACTIONS(1524), - [anon_sym_STAR_STAR2] = ACTIONS(1524), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1524), - [anon_sym_SLASH_SLASH2] = ACTIONS(1524), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1524), - [anon_sym_bit_DASHshr2] = ACTIONS(1524), - [anon_sym_bit_DASHand2] = ACTIONS(1524), - [anon_sym_bit_DASHxor2] = ACTIONS(1524), - [anon_sym_bit_DASHor2] = ACTIONS(1524), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [sym__entry_separator] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1524), - [anon_sym_DOT2] = ACTIONS(1549), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1524), - [anon_sym_out_GT_GT] = ACTIONS(1524), - [anon_sym_e_GT_GT] = ACTIONS(1524), - [anon_sym_o_GT_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(1690), + [anon_sym_PLUS_EQ] = ACTIONS(1690), + [anon_sym_DASH_EQ] = ACTIONS(1690), + [anon_sym_STAR_EQ] = ACTIONS(1690), + [anon_sym_SLASH_EQ] = ACTIONS(1690), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1690), + [anon_sym_in] = ACTIONS(1690), + [sym__newline] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1690), + [anon_sym_err_GT_PIPE] = ACTIONS(1690), + [anon_sym_out_GT_PIPE] = ACTIONS(1690), + [anon_sym_e_GT_PIPE] = ACTIONS(1690), + [anon_sym_o_GT_PIPE] = ACTIONS(1690), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1690), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1690), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1690), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1690), + [anon_sym_RBRACK] = ACTIONS(1690), + [anon_sym_GT2] = ACTIONS(1690), + [anon_sym_DASH2] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_DOT_DOT] = ACTIONS(1690), + [anon_sym_STAR2] = ACTIONS(1690), + [anon_sym_and2] = ACTIONS(1690), + [anon_sym_xor2] = ACTIONS(1690), + [anon_sym_or2] = ACTIONS(1690), + [anon_sym_not_DASHin2] = ACTIONS(1690), + [anon_sym_has2] = ACTIONS(1690), + [anon_sym_not_DASHhas2] = ACTIONS(1690), + [anon_sym_starts_DASHwith2] = ACTIONS(1690), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1690), + [anon_sym_ends_DASHwith2] = ACTIONS(1690), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1690), + [anon_sym_EQ_EQ2] = ACTIONS(1690), + [anon_sym_BANG_EQ2] = ACTIONS(1690), + [anon_sym_LT2] = ACTIONS(1690), + [anon_sym_LT_EQ2] = ACTIONS(1690), + [anon_sym_GT_EQ2] = ACTIONS(1690), + [anon_sym_EQ_TILDE2] = ACTIONS(1690), + [anon_sym_BANG_TILDE2] = ACTIONS(1690), + [anon_sym_like2] = ACTIONS(1690), + [anon_sym_not_DASHlike2] = ACTIONS(1690), + [anon_sym_STAR_STAR2] = ACTIONS(1690), + [anon_sym_PLUS_PLUS2] = ACTIONS(1690), + [anon_sym_SLASH2] = ACTIONS(1690), + [anon_sym_mod2] = ACTIONS(1690), + [anon_sym_SLASH_SLASH2] = ACTIONS(1690), + [anon_sym_PLUS2] = ACTIONS(1690), + [anon_sym_bit_DASHshl2] = ACTIONS(1690), + [anon_sym_bit_DASHshr2] = ACTIONS(1690), + [anon_sym_bit_DASHand2] = ACTIONS(1690), + [anon_sym_bit_DASHxor2] = ACTIONS(1690), + [anon_sym_bit_DASHor2] = ACTIONS(1690), + [anon_sym_DOT_DOT2] = ACTIONS(1690), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1692), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1692), + [sym__entry_separator] = ACTIONS(1692), + [anon_sym_COLON2] = ACTIONS(1690), + [anon_sym_DOT2] = ACTIONS(1690), + [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(1690), + [anon_sym_out_GT_GT] = ACTIONS(1690), + [anon_sym_e_GT_GT] = ACTIONS(1690), + [anon_sym_o_GT_GT] = ACTIONS(1690), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1690), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1690), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1690), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1690), [anon_sym_POUND] = ACTIONS(103), }, [STATE(365)] = { [sym_comment] = STATE(365), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1478), - [anon_sym_DASH_EQ] = ACTIONS(1478), - [anon_sym_STAR_EQ] = ACTIONS(1478), - [anon_sym_SLASH_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [sym__newline] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_err_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_GT_PIPE] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1478), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1478), - [anon_sym_xor2] = ACTIONS(1478), - [anon_sym_or2] = ACTIONS(1478), - [anon_sym_not_DASHin2] = ACTIONS(1478), - [anon_sym_has2] = ACTIONS(1478), - [anon_sym_not_DASHhas2] = ACTIONS(1478), - [anon_sym_starts_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1478), - [anon_sym_ends_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1478), - [anon_sym_EQ_EQ2] = ACTIONS(1478), - [anon_sym_BANG_EQ2] = ACTIONS(1478), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1478), - [anon_sym_GT_EQ2] = ACTIONS(1478), - [anon_sym_EQ_TILDE2] = ACTIONS(1478), - [anon_sym_BANG_TILDE2] = ACTIONS(1478), - [anon_sym_like2] = ACTIONS(1478), - [anon_sym_not_DASHlike2] = ACTIONS(1478), - [anon_sym_STAR_STAR2] = ACTIONS(1478), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1478), - [anon_sym_SLASH_SLASH2] = ACTIONS(1478), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1478), - [anon_sym_bit_DASHshr2] = ACTIONS(1478), - [anon_sym_bit_DASHand2] = ACTIONS(1478), - [anon_sym_bit_DASHxor2] = ACTIONS(1478), - [anon_sym_bit_DASHor2] = ACTIONS(1478), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [sym__entry_separator] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1478), - [anon_sym_QMARK2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1478), - [anon_sym_out_GT_GT] = ACTIONS(1478), - [anon_sym_e_GT_GT] = ACTIONS(1478), - [anon_sym_o_GT_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_PLUS_EQ] = ACTIONS(1694), + [anon_sym_DASH_EQ] = ACTIONS(1694), + [anon_sym_STAR_EQ] = ACTIONS(1694), + [anon_sym_SLASH_EQ] = ACTIONS(1694), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [sym__newline] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1694), + [anon_sym_err_GT_PIPE] = ACTIONS(1694), + [anon_sym_out_GT_PIPE] = ACTIONS(1694), + [anon_sym_e_GT_PIPE] = ACTIONS(1694), + [anon_sym_o_GT_PIPE] = ACTIONS(1694), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1694), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1694), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1694), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1694), + [anon_sym_RBRACK] = ACTIONS(1694), + [anon_sym_GT2] = ACTIONS(1694), + [anon_sym_DASH2] = ACTIONS(1694), + [anon_sym_RBRACE] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1694), + [anon_sym_STAR2] = ACTIONS(1694), + [anon_sym_and2] = ACTIONS(1694), + [anon_sym_xor2] = ACTIONS(1694), + [anon_sym_or2] = ACTIONS(1694), + [anon_sym_not_DASHin2] = ACTIONS(1694), + [anon_sym_has2] = ACTIONS(1694), + [anon_sym_not_DASHhas2] = ACTIONS(1694), + [anon_sym_starts_DASHwith2] = ACTIONS(1694), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1694), + [anon_sym_ends_DASHwith2] = ACTIONS(1694), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1694), + [anon_sym_EQ_EQ2] = ACTIONS(1694), + [anon_sym_BANG_EQ2] = ACTIONS(1694), + [anon_sym_LT2] = ACTIONS(1694), + [anon_sym_LT_EQ2] = ACTIONS(1694), + [anon_sym_GT_EQ2] = ACTIONS(1694), + [anon_sym_EQ_TILDE2] = ACTIONS(1694), + [anon_sym_BANG_TILDE2] = ACTIONS(1694), + [anon_sym_like2] = ACTIONS(1694), + [anon_sym_not_DASHlike2] = ACTIONS(1694), + [anon_sym_STAR_STAR2] = ACTIONS(1694), + [anon_sym_PLUS_PLUS2] = ACTIONS(1694), + [anon_sym_SLASH2] = ACTIONS(1694), + [anon_sym_mod2] = ACTIONS(1694), + [anon_sym_SLASH_SLASH2] = ACTIONS(1694), + [anon_sym_PLUS2] = ACTIONS(1694), + [anon_sym_bit_DASHshl2] = ACTIONS(1694), + [anon_sym_bit_DASHshr2] = ACTIONS(1694), + [anon_sym_bit_DASHand2] = ACTIONS(1694), + [anon_sym_bit_DASHxor2] = ACTIONS(1694), + [anon_sym_bit_DASHor2] = ACTIONS(1694), + [anon_sym_DOT_DOT2] = ACTIONS(1694), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1696), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1696), + [sym__entry_separator] = ACTIONS(1696), + [anon_sym_COLON2] = ACTIONS(1694), + [anon_sym_DOT2] = ACTIONS(1694), + [anon_sym_err_GT] = ACTIONS(1694), + [anon_sym_out_GT] = ACTIONS(1694), + [anon_sym_e_GT] = ACTIONS(1694), + [anon_sym_o_GT] = ACTIONS(1694), + [anon_sym_err_PLUSout_GT] = ACTIONS(1694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1694), + [anon_sym_o_PLUSe_GT] = ACTIONS(1694), + [anon_sym_e_PLUSo_GT] = ACTIONS(1694), + [anon_sym_err_GT_GT] = ACTIONS(1694), + [anon_sym_out_GT_GT] = ACTIONS(1694), + [anon_sym_e_GT_GT] = ACTIONS(1694), + [anon_sym_o_GT_GT] = ACTIONS(1694), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1694), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1694), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1694), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1694), [anon_sym_POUND] = ACTIONS(103), }, [STATE(366)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4934), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3650), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(4247), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5267), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3855), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(366), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(367)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5014), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3728), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(367), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1700), + [anon_sym_PLUS_EQ] = ACTIONS(1700), + [anon_sym_DASH_EQ] = ACTIONS(1700), + [anon_sym_STAR_EQ] = ACTIONS(1700), + [anon_sym_SLASH_EQ] = ACTIONS(1700), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1700), + [sym__newline] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_err_GT_PIPE] = ACTIONS(1700), + [anon_sym_out_GT_PIPE] = ACTIONS(1700), + [anon_sym_e_GT_PIPE] = ACTIONS(1700), + [anon_sym_o_GT_PIPE] = ACTIONS(1700), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1700), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1700), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1700), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1700), + [anon_sym_GT2] = ACTIONS(1700), + [anon_sym_DASH2] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_STAR2] = ACTIONS(1700), + [anon_sym_and2] = ACTIONS(1700), + [anon_sym_xor2] = ACTIONS(1700), + [anon_sym_or2] = ACTIONS(1700), + [anon_sym_not_DASHin2] = ACTIONS(1700), + [anon_sym_has2] = ACTIONS(1700), + [anon_sym_not_DASHhas2] = ACTIONS(1700), + [anon_sym_starts_DASHwith2] = ACTIONS(1700), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1700), + [anon_sym_ends_DASHwith2] = ACTIONS(1700), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1700), + [anon_sym_EQ_EQ2] = ACTIONS(1700), + [anon_sym_BANG_EQ2] = ACTIONS(1700), + [anon_sym_LT2] = ACTIONS(1700), + [anon_sym_LT_EQ2] = ACTIONS(1700), + [anon_sym_GT_EQ2] = ACTIONS(1700), + [anon_sym_EQ_TILDE2] = ACTIONS(1700), + [anon_sym_BANG_TILDE2] = ACTIONS(1700), + [anon_sym_like2] = ACTIONS(1700), + [anon_sym_not_DASHlike2] = ACTIONS(1700), + [anon_sym_STAR_STAR2] = ACTIONS(1700), + [anon_sym_PLUS_PLUS2] = ACTIONS(1700), + [anon_sym_SLASH2] = ACTIONS(1700), + [anon_sym_mod2] = ACTIONS(1700), + [anon_sym_SLASH_SLASH2] = ACTIONS(1700), + [anon_sym_PLUS2] = ACTIONS(1700), + [anon_sym_bit_DASHshl2] = ACTIONS(1700), + [anon_sym_bit_DASHshr2] = ACTIONS(1700), + [anon_sym_bit_DASHand2] = ACTIONS(1700), + [anon_sym_bit_DASHxor2] = ACTIONS(1700), + [anon_sym_bit_DASHor2] = ACTIONS(1700), + [anon_sym_DOT_DOT2] = ACTIONS(1700), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1702), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1702), + [sym__entry_separator] = ACTIONS(1702), + [anon_sym_COLON2] = ACTIONS(1700), + [anon_sym_QMARK2] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_DOT2] = ACTIONS(1700), + [anon_sym_err_GT] = ACTIONS(1700), + [anon_sym_out_GT] = ACTIONS(1700), + [anon_sym_e_GT] = ACTIONS(1700), + [anon_sym_o_GT] = ACTIONS(1700), + [anon_sym_err_PLUSout_GT] = ACTIONS(1700), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1700), + [anon_sym_o_PLUSe_GT] = ACTIONS(1700), + [anon_sym_e_PLUSo_GT] = ACTIONS(1700), + [anon_sym_err_GT_GT] = ACTIONS(1700), + [anon_sym_out_GT_GT] = ACTIONS(1700), + [anon_sym_e_GT_GT] = ACTIONS(1700), + [anon_sym_o_GT_GT] = ACTIONS(1700), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1700), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1700), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1700), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(368)] = { [sym_comment] = STATE(368), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1556), - [anon_sym_DASH_EQ] = ACTIONS(1556), - [anon_sym_STAR_EQ] = ACTIONS(1556), - [anon_sym_SLASH_EQ] = ACTIONS(1556), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_RBRACK] = ACTIONS(1556), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1556), - [anon_sym_xor2] = ACTIONS(1556), - [anon_sym_or2] = ACTIONS(1556), - [anon_sym_not_DASHin2] = ACTIONS(1556), - [anon_sym_has2] = ACTIONS(1556), - [anon_sym_not_DASHhas2] = ACTIONS(1556), - [anon_sym_starts_DASHwith2] = ACTIONS(1556), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1556), - [anon_sym_ends_DASHwith2] = ACTIONS(1556), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1556), - [anon_sym_EQ_EQ2] = ACTIONS(1556), - [anon_sym_BANG_EQ2] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1556), - [anon_sym_GT_EQ2] = ACTIONS(1556), - [anon_sym_EQ_TILDE2] = ACTIONS(1556), - [anon_sym_BANG_TILDE2] = ACTIONS(1556), - [anon_sym_like2] = ACTIONS(1556), - [anon_sym_not_DASHlike2] = ACTIONS(1556), - [anon_sym_STAR_STAR2] = ACTIONS(1556), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1556), - [anon_sym_SLASH_SLASH2] = ACTIONS(1556), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1556), - [anon_sym_bit_DASHshr2] = ACTIONS(1556), - [anon_sym_bit_DASHand2] = ACTIONS(1556), - [anon_sym_bit_DASHxor2] = ACTIONS(1556), - [anon_sym_bit_DASHor2] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [sym__entry_separator] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), + [anon_sym_EQ] = ACTIONS(1668), + [anon_sym_PLUS_EQ] = ACTIONS(1668), + [anon_sym_DASH_EQ] = ACTIONS(1668), + [anon_sym_STAR_EQ] = ACTIONS(1668), + [anon_sym_SLASH_EQ] = ACTIONS(1668), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1668), + [anon_sym_in] = ACTIONS(1668), + [sym__newline] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_err_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_GT_PIPE] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), + [anon_sym_GT2] = ACTIONS(1668), + [anon_sym_DASH2] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_STAR2] = ACTIONS(1668), + [anon_sym_and2] = ACTIONS(1668), + [anon_sym_xor2] = ACTIONS(1668), + [anon_sym_or2] = ACTIONS(1668), + [anon_sym_not_DASHin2] = ACTIONS(1668), + [anon_sym_has2] = ACTIONS(1668), + [anon_sym_not_DASHhas2] = ACTIONS(1668), + [anon_sym_starts_DASHwith2] = ACTIONS(1668), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1668), + [anon_sym_ends_DASHwith2] = ACTIONS(1668), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1668), + [anon_sym_EQ_EQ2] = ACTIONS(1668), + [anon_sym_BANG_EQ2] = ACTIONS(1668), + [anon_sym_LT2] = ACTIONS(1668), + [anon_sym_LT_EQ2] = ACTIONS(1668), + [anon_sym_GT_EQ2] = ACTIONS(1668), + [anon_sym_EQ_TILDE2] = ACTIONS(1668), + [anon_sym_BANG_TILDE2] = ACTIONS(1668), + [anon_sym_like2] = ACTIONS(1668), + [anon_sym_not_DASHlike2] = ACTIONS(1668), + [anon_sym_STAR_STAR2] = ACTIONS(1668), + [anon_sym_PLUS_PLUS2] = ACTIONS(1668), + [anon_sym_SLASH2] = ACTIONS(1668), + [anon_sym_mod2] = ACTIONS(1668), + [anon_sym_SLASH_SLASH2] = ACTIONS(1668), + [anon_sym_PLUS2] = ACTIONS(1668), + [anon_sym_bit_DASHshl2] = ACTIONS(1668), + [anon_sym_bit_DASHshr2] = ACTIONS(1668), + [anon_sym_bit_DASHand2] = ACTIONS(1668), + [anon_sym_bit_DASHxor2] = ACTIONS(1668), + [anon_sym_bit_DASHor2] = ACTIONS(1668), + [anon_sym_DOT_DOT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1670), + [sym__entry_separator] = ACTIONS(1670), + [anon_sym_COLON2] = ACTIONS(1668), + [anon_sym_QMARK2] = ACTIONS(1668), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_DOT2] = ACTIONS(1668), + [anon_sym_err_GT] = ACTIONS(1668), + [anon_sym_out_GT] = ACTIONS(1668), + [anon_sym_e_GT] = ACTIONS(1668), + [anon_sym_o_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT] = ACTIONS(1668), + [anon_sym_err_GT_GT] = ACTIONS(1668), + [anon_sym_out_GT_GT] = ACTIONS(1668), + [anon_sym_e_GT_GT] = ACTIONS(1668), + [anon_sym_o_GT_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), [anon_sym_POUND] = ACTIONS(103), }, [STATE(369)] = { [sym_comment] = STATE(369), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1672), + [anon_sym_DASH_EQ] = ACTIONS(1672), + [anon_sym_STAR_EQ] = ACTIONS(1672), + [anon_sym_SLASH_EQ] = ACTIONS(1672), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [sym__newline] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_err_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_GT_PIPE] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), + [anon_sym_GT2] = ACTIONS(1672), + [anon_sym_DASH2] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_STAR2] = ACTIONS(1672), + [anon_sym_and2] = ACTIONS(1672), + [anon_sym_xor2] = ACTIONS(1672), + [anon_sym_or2] = ACTIONS(1672), + [anon_sym_not_DASHin2] = ACTIONS(1672), + [anon_sym_has2] = ACTIONS(1672), + [anon_sym_not_DASHhas2] = ACTIONS(1672), + [anon_sym_starts_DASHwith2] = ACTIONS(1672), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1672), + [anon_sym_ends_DASHwith2] = ACTIONS(1672), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1672), + [anon_sym_EQ_EQ2] = ACTIONS(1672), + [anon_sym_BANG_EQ2] = ACTIONS(1672), + [anon_sym_LT2] = ACTIONS(1672), + [anon_sym_LT_EQ2] = ACTIONS(1672), + [anon_sym_GT_EQ2] = ACTIONS(1672), + [anon_sym_EQ_TILDE2] = ACTIONS(1672), + [anon_sym_BANG_TILDE2] = ACTIONS(1672), + [anon_sym_like2] = ACTIONS(1672), + [anon_sym_not_DASHlike2] = ACTIONS(1672), + [anon_sym_STAR_STAR2] = ACTIONS(1672), + [anon_sym_PLUS_PLUS2] = ACTIONS(1672), + [anon_sym_SLASH2] = ACTIONS(1672), + [anon_sym_mod2] = ACTIONS(1672), + [anon_sym_SLASH_SLASH2] = ACTIONS(1672), + [anon_sym_PLUS2] = ACTIONS(1672), + [anon_sym_bit_DASHshl2] = ACTIONS(1672), + [anon_sym_bit_DASHshr2] = ACTIONS(1672), + [anon_sym_bit_DASHand2] = ACTIONS(1672), + [anon_sym_bit_DASHxor2] = ACTIONS(1672), + [anon_sym_bit_DASHor2] = ACTIONS(1672), + [anon_sym_DOT_DOT2] = ACTIONS(1672), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1674), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1674), + [sym__entry_separator] = ACTIONS(1674), + [anon_sym_COLON2] = ACTIONS(1672), + [anon_sym_QMARK2] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_DOT2] = ACTIONS(1672), + [anon_sym_err_GT] = ACTIONS(1672), + [anon_sym_out_GT] = ACTIONS(1672), + [anon_sym_e_GT] = ACTIONS(1672), + [anon_sym_o_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT] = ACTIONS(1672), + [anon_sym_err_GT_GT] = ACTIONS(1672), + [anon_sym_out_GT_GT] = ACTIONS(1672), + [anon_sym_e_GT_GT] = ACTIONS(1672), + [anon_sym_o_GT_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(370)] = { - [sym_cell_path] = STATE(453), - [sym_path] = STATE(417), + [aux_sym__repeat_newline] = STATE(4247), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5409), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3859), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(370), - [aux_sym__where_predicate_lhs_repeat1] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(1434), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_PLUS_EQ] = ACTIONS(1434), - [anon_sym_DASH_EQ] = ACTIONS(1434), - [anon_sym_STAR_EQ] = ACTIONS(1434), - [anon_sym_SLASH_EQ] = ACTIONS(1434), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1432), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1432), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1562), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(371)] = { - [sym__match_pattern_expression] = STATE(4290), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4583), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3774), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(371), - [aux_sym__types_body_repeat1] = STATE(2117), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1424), - [aux_sym_list_body_repeat1] = STATE(630), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1568), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1676), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [sym__newline] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_err_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_GT_PIPE] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1676), + [anon_sym_GT2] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_STAR2] = ACTIONS(1676), + [anon_sym_and2] = ACTIONS(1676), + [anon_sym_xor2] = ACTIONS(1676), + [anon_sym_or2] = ACTIONS(1676), + [anon_sym_not_DASHin2] = ACTIONS(1676), + [anon_sym_has2] = ACTIONS(1676), + [anon_sym_not_DASHhas2] = ACTIONS(1676), + [anon_sym_starts_DASHwith2] = ACTIONS(1676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1676), + [anon_sym_ends_DASHwith2] = ACTIONS(1676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1676), + [anon_sym_EQ_EQ2] = ACTIONS(1676), + [anon_sym_BANG_EQ2] = ACTIONS(1676), + [anon_sym_LT2] = ACTIONS(1676), + [anon_sym_LT_EQ2] = ACTIONS(1676), + [anon_sym_GT_EQ2] = ACTIONS(1676), + [anon_sym_EQ_TILDE2] = ACTIONS(1676), + [anon_sym_BANG_TILDE2] = ACTIONS(1676), + [anon_sym_like2] = ACTIONS(1676), + [anon_sym_not_DASHlike2] = ACTIONS(1676), + [anon_sym_STAR_STAR2] = ACTIONS(1676), + [anon_sym_PLUS_PLUS2] = ACTIONS(1676), + [anon_sym_SLASH2] = ACTIONS(1676), + [anon_sym_mod2] = ACTIONS(1676), + [anon_sym_SLASH_SLASH2] = ACTIONS(1676), + [anon_sym_PLUS2] = ACTIONS(1676), + [anon_sym_bit_DASHshl2] = ACTIONS(1676), + [anon_sym_bit_DASHshr2] = ACTIONS(1676), + [anon_sym_bit_DASHand2] = ACTIONS(1676), + [anon_sym_bit_DASHxor2] = ACTIONS(1676), + [anon_sym_bit_DASHor2] = ACTIONS(1676), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [sym__entry_separator] = ACTIONS(1678), + [anon_sym_COLON2] = ACTIONS(1676), + [anon_sym_QMARK2] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_DOT2] = ACTIONS(1676), + [anon_sym_err_GT] = ACTIONS(1676), + [anon_sym_out_GT] = ACTIONS(1676), + [anon_sym_e_GT] = ACTIONS(1676), + [anon_sym_o_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT] = ACTIONS(1676), + [anon_sym_err_GT_GT] = ACTIONS(1676), + [anon_sym_out_GT_GT] = ACTIONS(1676), + [anon_sym_e_GT_GT] = ACTIONS(1676), + [anon_sym_o_GT_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(372)] = { [sym_comment] = STATE(372), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1570), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1680), + [anon_sym_PLUS_EQ] = ACTIONS(1680), + [anon_sym_DASH_EQ] = ACTIONS(1680), + [anon_sym_STAR_EQ] = ACTIONS(1680), + [anon_sym_SLASH_EQ] = ACTIONS(1680), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [sym__newline] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_err_GT_PIPE] = ACTIONS(1680), + [anon_sym_out_GT_PIPE] = ACTIONS(1680), + [anon_sym_e_GT_PIPE] = ACTIONS(1680), + [anon_sym_o_GT_PIPE] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), + [anon_sym_GT2] = ACTIONS(1680), + [anon_sym_DASH2] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_STAR2] = ACTIONS(1680), + [anon_sym_and2] = ACTIONS(1680), + [anon_sym_xor2] = ACTIONS(1680), + [anon_sym_or2] = ACTIONS(1680), + [anon_sym_not_DASHin2] = ACTIONS(1680), + [anon_sym_has2] = ACTIONS(1680), + [anon_sym_not_DASHhas2] = ACTIONS(1680), + [anon_sym_starts_DASHwith2] = ACTIONS(1680), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1680), + [anon_sym_ends_DASHwith2] = ACTIONS(1680), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1680), + [anon_sym_EQ_EQ2] = ACTIONS(1680), + [anon_sym_BANG_EQ2] = ACTIONS(1680), + [anon_sym_LT2] = ACTIONS(1680), + [anon_sym_LT_EQ2] = ACTIONS(1680), + [anon_sym_GT_EQ2] = ACTIONS(1680), + [anon_sym_EQ_TILDE2] = ACTIONS(1680), + [anon_sym_BANG_TILDE2] = ACTIONS(1680), + [anon_sym_like2] = ACTIONS(1680), + [anon_sym_not_DASHlike2] = ACTIONS(1680), + [anon_sym_STAR_STAR2] = ACTIONS(1680), + [anon_sym_PLUS_PLUS2] = ACTIONS(1680), + [anon_sym_SLASH2] = ACTIONS(1680), + [anon_sym_mod2] = ACTIONS(1680), + [anon_sym_SLASH_SLASH2] = ACTIONS(1680), + [anon_sym_PLUS2] = ACTIONS(1680), + [anon_sym_bit_DASHshl2] = ACTIONS(1680), + [anon_sym_bit_DASHshr2] = ACTIONS(1680), + [anon_sym_bit_DASHand2] = ACTIONS(1680), + [anon_sym_bit_DASHxor2] = ACTIONS(1680), + [anon_sym_bit_DASHor2] = ACTIONS(1680), + [anon_sym_DOT_DOT2] = ACTIONS(1680), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), + [sym__entry_separator] = ACTIONS(1682), + [anon_sym_COLON2] = ACTIONS(1680), + [anon_sym_QMARK2] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_DOT2] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1680), + [anon_sym_out_GT] = ACTIONS(1680), + [anon_sym_e_GT] = ACTIONS(1680), + [anon_sym_o_GT] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT] = ACTIONS(1680), + [anon_sym_err_GT_GT] = ACTIONS(1680), + [anon_sym_out_GT_GT] = ACTIONS(1680), + [anon_sym_e_GT_GT] = ACTIONS(1680), + [anon_sym_o_GT_GT] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(373)] = { [sym_comment] = STATE(373), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1438), - [anon_sym_DASH_EQ] = ACTIONS(1438), - [anon_sym_STAR_EQ] = ACTIONS(1438), - [anon_sym_SLASH_EQ] = ACTIONS(1438), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1438), - [anon_sym_in] = ACTIONS(1438), - [sym__newline] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_err_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_GT_PIPE] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1438), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1438), - [anon_sym_xor2] = ACTIONS(1438), - [anon_sym_or2] = ACTIONS(1438), - [anon_sym_not_DASHin2] = ACTIONS(1438), - [anon_sym_has2] = ACTIONS(1438), - [anon_sym_not_DASHhas2] = ACTIONS(1438), - [anon_sym_starts_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1438), - [anon_sym_ends_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1438), - [anon_sym_EQ_EQ2] = ACTIONS(1438), - [anon_sym_BANG_EQ2] = ACTIONS(1438), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1438), - [anon_sym_GT_EQ2] = ACTIONS(1438), - [anon_sym_EQ_TILDE2] = ACTIONS(1438), - [anon_sym_BANG_TILDE2] = ACTIONS(1438), - [anon_sym_like2] = ACTIONS(1438), - [anon_sym_not_DASHlike2] = ACTIONS(1438), - [anon_sym_STAR_STAR2] = ACTIONS(1438), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1438), - [anon_sym_SLASH_SLASH2] = ACTIONS(1438), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1438), - [anon_sym_bit_DASHshr2] = ACTIONS(1438), - [anon_sym_bit_DASHand2] = ACTIONS(1438), - [anon_sym_bit_DASHxor2] = ACTIONS(1438), - [anon_sym_bit_DASHor2] = ACTIONS(1438), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [sym__entry_separator] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1438), - [anon_sym_out_GT_GT] = ACTIONS(1438), - [anon_sym_e_GT_GT] = ACTIONS(1438), - [anon_sym_o_GT_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1686), + [anon_sym_PLUS_EQ] = ACTIONS(1686), + [anon_sym_DASH_EQ] = ACTIONS(1686), + [anon_sym_STAR_EQ] = ACTIONS(1686), + [anon_sym_SLASH_EQ] = ACTIONS(1686), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1686), + [anon_sym_in] = ACTIONS(1686), + [sym__newline] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1686), + [anon_sym_err_GT_PIPE] = ACTIONS(1686), + [anon_sym_out_GT_PIPE] = ACTIONS(1686), + [anon_sym_e_GT_PIPE] = ACTIONS(1686), + [anon_sym_o_GT_PIPE] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1686), + [anon_sym_GT2] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_STAR2] = ACTIONS(1686), + [anon_sym_and2] = ACTIONS(1686), + [anon_sym_xor2] = ACTIONS(1686), + [anon_sym_or2] = ACTIONS(1686), + [anon_sym_not_DASHin2] = ACTIONS(1686), + [anon_sym_has2] = ACTIONS(1686), + [anon_sym_not_DASHhas2] = ACTIONS(1686), + [anon_sym_starts_DASHwith2] = ACTIONS(1686), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1686), + [anon_sym_ends_DASHwith2] = ACTIONS(1686), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1686), + [anon_sym_EQ_EQ2] = ACTIONS(1686), + [anon_sym_BANG_EQ2] = ACTIONS(1686), + [anon_sym_LT2] = ACTIONS(1686), + [anon_sym_LT_EQ2] = ACTIONS(1686), + [anon_sym_GT_EQ2] = ACTIONS(1686), + [anon_sym_EQ_TILDE2] = ACTIONS(1686), + [anon_sym_BANG_TILDE2] = ACTIONS(1686), + [anon_sym_like2] = ACTIONS(1686), + [anon_sym_not_DASHlike2] = ACTIONS(1686), + [anon_sym_STAR_STAR2] = ACTIONS(1686), + [anon_sym_PLUS_PLUS2] = ACTIONS(1686), + [anon_sym_SLASH2] = ACTIONS(1686), + [anon_sym_mod2] = ACTIONS(1686), + [anon_sym_SLASH_SLASH2] = ACTIONS(1686), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_bit_DASHshl2] = ACTIONS(1686), + [anon_sym_bit_DASHshr2] = ACTIONS(1686), + [anon_sym_bit_DASHand2] = ACTIONS(1686), + [anon_sym_bit_DASHxor2] = ACTIONS(1686), + [anon_sym_bit_DASHor2] = ACTIONS(1686), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [sym__entry_separator] = ACTIONS(1688), + [anon_sym_COLON2] = ACTIONS(1686), + [anon_sym_QMARK2] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_DOT2] = ACTIONS(1686), + [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(1686), + [anon_sym_out_GT_GT] = ACTIONS(1686), + [anon_sym_e_GT_GT] = ACTIONS(1686), + [anon_sym_o_GT_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1686), [anon_sym_POUND] = ACTIONS(103), }, [STATE(374)] = { - [sym__path_suffix] = STATE(432), + [aux_sym__repeat_newline] = STATE(4247), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5001), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3865), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(375)] = { + [aux_sym__repeat_newline] = STATE(4247), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5024), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3870), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(376)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4944), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(4247), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5258), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3918), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(376), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1710), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(377)] = { - [sym__expr_parenthesized_immediate] = STATE(692), - [sym__immediate_decimal] = STATE(675), - [sym_val_variable] = STATE(692), + [aux_sym__repeat_newline] = STATE(4247), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4563), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5273), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym__table_head] = STATE(3919), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(377), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1590), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(378)] = { - [sym__expr_parenthesized_immediate] = STATE(698), - [sym__immediate_decimal] = STATE(705), - [sym_val_variable] = STATE(698), + [sym_path] = STATE(354), [sym_comment] = STATE(378), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1600), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__where_predicate_lhs_repeat1] = STATE(350), + [anon_sym_EQ] = ACTIONS(1651), + [anon_sym_PLUS_EQ] = ACTIONS(1651), + [anon_sym_DASH_EQ] = ACTIONS(1651), + [anon_sym_STAR_EQ] = ACTIONS(1651), + [anon_sym_SLASH_EQ] = ACTIONS(1651), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1651), + [anon_sym_in] = ACTIONS(1651), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_GT2] = ACTIONS(1651), + [anon_sym_DASH2] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_STAR2] = ACTIONS(1651), + [anon_sym_and2] = ACTIONS(1651), + [anon_sym_xor2] = ACTIONS(1651), + [anon_sym_or2] = ACTIONS(1651), + [anon_sym_not_DASHin2] = ACTIONS(1651), + [anon_sym_has2] = ACTIONS(1651), + [anon_sym_not_DASHhas2] = ACTIONS(1651), + [anon_sym_starts_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), + [anon_sym_ends_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), + [anon_sym_EQ_EQ2] = ACTIONS(1651), + [anon_sym_BANG_EQ2] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1651), + [anon_sym_LT_EQ2] = ACTIONS(1651), + [anon_sym_GT_EQ2] = ACTIONS(1651), + [anon_sym_EQ_TILDE2] = ACTIONS(1651), + [anon_sym_BANG_TILDE2] = ACTIONS(1651), + [anon_sym_like2] = ACTIONS(1651), + [anon_sym_not_DASHlike2] = ACTIONS(1651), + [anon_sym_STAR_STAR2] = ACTIONS(1651), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1651), + [anon_sym_mod2] = ACTIONS(1651), + [anon_sym_SLASH_SLASH2] = ACTIONS(1651), + [anon_sym_PLUS2] = ACTIONS(1651), + [anon_sym_bit_DASHshl2] = ACTIONS(1651), + [anon_sym_bit_DASHshr2] = ACTIONS(1651), + [anon_sym_bit_DASHand2] = ACTIONS(1651), + [anon_sym_bit_DASHxor2] = ACTIONS(1651), + [anon_sym_bit_DASHor2] = ACTIONS(1651), + [anon_sym_DOT_DOT2] = ACTIONS(1651), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1653), + [sym__entry_separator] = ACTIONS(1653), + [anon_sym_COLON2] = ACTIONS(1651), + [anon_sym_DOT2] = ACTIONS(1592), + [anon_sym_err_GT] = ACTIONS(1651), + [anon_sym_out_GT] = ACTIONS(1651), + [anon_sym_e_GT] = ACTIONS(1651), + [anon_sym_o_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT] = ACTIONS(1651), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(379)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4870), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(379), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1700), + [anon_sym_PLUS_EQ] = ACTIONS(1702), + [anon_sym_DASH_EQ] = ACTIONS(1702), + [anon_sym_STAR_EQ] = ACTIONS(1702), + [anon_sym_SLASH_EQ] = ACTIONS(1702), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1702), + [anon_sym_in] = ACTIONS(1702), + [sym__newline] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_err_GT_PIPE] = ACTIONS(1702), + [anon_sym_out_GT_PIPE] = ACTIONS(1702), + [anon_sym_e_GT_PIPE] = ACTIONS(1702), + [anon_sym_o_GT_PIPE] = ACTIONS(1702), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1702), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1702), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1702), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1702), + [anon_sym_GT2] = ACTIONS(1700), + [anon_sym_DASH2] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_STAR2] = ACTIONS(1700), + [anon_sym_and2] = ACTIONS(1702), + [anon_sym_xor2] = ACTIONS(1702), + [anon_sym_or2] = ACTIONS(1702), + [anon_sym_not_DASHin2] = ACTIONS(1702), + [anon_sym_has2] = ACTIONS(1702), + [anon_sym_not_DASHhas2] = ACTIONS(1702), + [anon_sym_starts_DASHwith2] = ACTIONS(1702), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1702), + [anon_sym_ends_DASHwith2] = ACTIONS(1702), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1702), + [anon_sym_EQ_EQ2] = ACTIONS(1702), + [anon_sym_BANG_EQ2] = ACTIONS(1702), + [anon_sym_LT2] = ACTIONS(1700), + [anon_sym_LT_EQ2] = ACTIONS(1702), + [anon_sym_GT_EQ2] = ACTIONS(1702), + [anon_sym_EQ_TILDE2] = ACTIONS(1702), + [anon_sym_BANG_TILDE2] = ACTIONS(1702), + [anon_sym_like2] = ACTIONS(1702), + [anon_sym_not_DASHlike2] = ACTIONS(1702), + [anon_sym_STAR_STAR2] = ACTIONS(1702), + [anon_sym_PLUS_PLUS2] = ACTIONS(1700), + [anon_sym_SLASH2] = ACTIONS(1700), + [anon_sym_mod2] = ACTIONS(1702), + [anon_sym_SLASH_SLASH2] = ACTIONS(1702), + [anon_sym_PLUS2] = ACTIONS(1700), + [anon_sym_bit_DASHshl2] = ACTIONS(1702), + [anon_sym_bit_DASHshr2] = ACTIONS(1702), + [anon_sym_bit_DASHand2] = ACTIONS(1702), + [anon_sym_bit_DASHxor2] = ACTIONS(1702), + [anon_sym_bit_DASHor2] = ACTIONS(1702), + [anon_sym_DOT_DOT2] = ACTIONS(1700), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1702), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1702), + [anon_sym_COLON2] = ACTIONS(1702), + [anon_sym_QMARK2] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_DOT2] = ACTIONS(1700), + [anon_sym_err_GT] = ACTIONS(1700), + [anon_sym_out_GT] = ACTIONS(1700), + [anon_sym_e_GT] = ACTIONS(1700), + [anon_sym_o_GT] = ACTIONS(1700), + [anon_sym_err_PLUSout_GT] = ACTIONS(1700), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1700), + [anon_sym_o_PLUSe_GT] = ACTIONS(1700), + [anon_sym_e_PLUSo_GT] = ACTIONS(1700), + [anon_sym_err_GT_GT] = ACTIONS(1702), + [anon_sym_out_GT_GT] = ACTIONS(1702), + [anon_sym_e_GT_GT] = ACTIONS(1702), + [anon_sym_o_GT_GT] = ACTIONS(1702), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1702), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1702), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1702), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(380)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5080), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(380), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1714), + [anon_sym_PLUS_EQ] = ACTIONS(1714), + [anon_sym_DASH_EQ] = ACTIONS(1714), + [anon_sym_STAR_EQ] = ACTIONS(1714), + [anon_sym_SLASH_EQ] = ACTIONS(1714), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1714), + [sym__newline] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_err_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_GT_PIPE] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1714), + [anon_sym_RBRACK] = ACTIONS(1714), + [anon_sym_GT2] = ACTIONS(1714), + [anon_sym_DASH2] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1714), + [anon_sym_STAR2] = ACTIONS(1714), + [anon_sym_and2] = ACTIONS(1714), + [anon_sym_xor2] = ACTIONS(1714), + [anon_sym_or2] = ACTIONS(1714), + [anon_sym_not_DASHin2] = ACTIONS(1714), + [anon_sym_has2] = ACTIONS(1714), + [anon_sym_not_DASHhas2] = ACTIONS(1714), + [anon_sym_starts_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1714), + [anon_sym_ends_DASHwith2] = ACTIONS(1714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1714), + [anon_sym_EQ_EQ2] = ACTIONS(1714), + [anon_sym_BANG_EQ2] = ACTIONS(1714), + [anon_sym_LT2] = ACTIONS(1714), + [anon_sym_LT_EQ2] = ACTIONS(1714), + [anon_sym_GT_EQ2] = ACTIONS(1714), + [anon_sym_EQ_TILDE2] = ACTIONS(1714), + [anon_sym_BANG_TILDE2] = ACTIONS(1714), + [anon_sym_like2] = ACTIONS(1714), + [anon_sym_not_DASHlike2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(1714), + [anon_sym_PLUS_PLUS2] = ACTIONS(1714), + [anon_sym_SLASH2] = ACTIONS(1714), + [anon_sym_mod2] = ACTIONS(1714), + [anon_sym_SLASH_SLASH2] = ACTIONS(1714), + [anon_sym_PLUS2] = ACTIONS(1714), + [anon_sym_bit_DASHshl2] = ACTIONS(1714), + [anon_sym_bit_DASHshr2] = ACTIONS(1714), + [anon_sym_bit_DASHand2] = ACTIONS(1714), + [anon_sym_bit_DASHxor2] = ACTIONS(1714), + [anon_sym_bit_DASHor2] = ACTIONS(1714), + [anon_sym_DOT_DOT2] = ACTIONS(1714), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1716), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1716), + [sym__entry_separator] = ACTIONS(1716), + [anon_sym_COLON2] = ACTIONS(1714), + [anon_sym_err_GT] = ACTIONS(1714), + [anon_sym_out_GT] = ACTIONS(1714), + [anon_sym_e_GT] = ACTIONS(1714), + [anon_sym_o_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT] = ACTIONS(1714), + [anon_sym_err_GT_GT] = ACTIONS(1714), + [anon_sym_out_GT_GT] = ACTIONS(1714), + [anon_sym_e_GT_GT] = ACTIONS(1714), + [anon_sym_o_GT_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(381)] = { - [sym_path] = STATE(417), [sym_comment] = STATE(381), - [aux_sym__where_predicate_lhs_repeat1] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_PLUS_EQ] = ACTIONS(1460), - [anon_sym_DASH_EQ] = ACTIONS(1460), - [anon_sym_STAR_EQ] = ACTIONS(1460), - [anon_sym_SLASH_EQ] = ACTIONS(1460), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1460), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1458), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1458), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1562), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_PLUS_EQ] = ACTIONS(1608), + [anon_sym_DASH_EQ] = ACTIONS(1608), + [anon_sym_STAR_EQ] = ACTIONS(1608), + [anon_sym_SLASH_EQ] = ACTIONS(1608), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1608), + [anon_sym_in] = ACTIONS(1608), + [sym__newline] = ACTIONS(1608), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_err_GT_PIPE] = ACTIONS(1608), + [anon_sym_out_GT_PIPE] = ACTIONS(1608), + [anon_sym_e_GT_PIPE] = ACTIONS(1608), + [anon_sym_o_GT_PIPE] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1608), + [anon_sym_GT2] = ACTIONS(1608), + [anon_sym_DASH2] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_STAR2] = ACTIONS(1608), + [anon_sym_and2] = ACTIONS(1608), + [anon_sym_xor2] = ACTIONS(1608), + [anon_sym_or2] = ACTIONS(1608), + [anon_sym_not_DASHin2] = ACTIONS(1608), + [anon_sym_has2] = ACTIONS(1608), + [anon_sym_not_DASHhas2] = ACTIONS(1608), + [anon_sym_starts_DASHwith2] = ACTIONS(1608), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1608), + [anon_sym_ends_DASHwith2] = ACTIONS(1608), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1608), + [anon_sym_EQ_EQ2] = ACTIONS(1608), + [anon_sym_BANG_EQ2] = ACTIONS(1608), + [anon_sym_LT2] = ACTIONS(1608), + [anon_sym_LT_EQ2] = ACTIONS(1608), + [anon_sym_GT_EQ2] = ACTIONS(1608), + [anon_sym_EQ_TILDE2] = ACTIONS(1608), + [anon_sym_BANG_TILDE2] = ACTIONS(1608), + [anon_sym_like2] = ACTIONS(1608), + [anon_sym_not_DASHlike2] = ACTIONS(1608), + [anon_sym_STAR_STAR2] = ACTIONS(1608), + [anon_sym_PLUS_PLUS2] = ACTIONS(1608), + [anon_sym_SLASH2] = ACTIONS(1608), + [anon_sym_mod2] = ACTIONS(1608), + [anon_sym_SLASH_SLASH2] = ACTIONS(1608), + [anon_sym_PLUS2] = ACTIONS(1608), + [anon_sym_bit_DASHshl2] = ACTIONS(1608), + [anon_sym_bit_DASHshr2] = ACTIONS(1608), + [anon_sym_bit_DASHand2] = ACTIONS(1608), + [anon_sym_bit_DASHxor2] = ACTIONS(1608), + [anon_sym_bit_DASHor2] = ACTIONS(1608), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [sym__entry_separator] = ACTIONS(1610), + [anon_sym_COLON2] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_DOT2] = ACTIONS(1608), + [anon_sym_err_GT] = ACTIONS(1608), + [anon_sym_out_GT] = ACTIONS(1608), + [anon_sym_e_GT] = ACTIONS(1608), + [anon_sym_o_GT] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT] = ACTIONS(1608), + [anon_sym_err_GT_GT] = ACTIONS(1608), + [anon_sym_out_GT_GT] = ACTIONS(1608), + [anon_sym_e_GT_GT] = ACTIONS(1608), + [anon_sym_o_GT_GT] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(382)] = { - [sym_path] = STATE(417), [sym_comment] = STATE(382), - [aux_sym__where_predicate_lhs_repeat1] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(1526), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_PLUS_EQ] = ACTIONS(1526), - [anon_sym_DASH_EQ] = ACTIONS(1526), - [anon_sym_STAR_EQ] = ACTIONS(1526), - [anon_sym_SLASH_EQ] = ACTIONS(1526), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1604), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_PLUS_EQ] = ACTIONS(1610), + [anon_sym_DASH_EQ] = ACTIONS(1610), + [anon_sym_STAR_EQ] = ACTIONS(1610), + [anon_sym_SLASH_EQ] = ACTIONS(1610), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1610), + [anon_sym_in] = ACTIONS(1610), + [sym__newline] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_err_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_GT_PIPE] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(1610), + [anon_sym_GT2] = ACTIONS(1608), + [anon_sym_DASH2] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_STAR2] = ACTIONS(1608), + [anon_sym_and2] = ACTIONS(1610), + [anon_sym_xor2] = ACTIONS(1610), + [anon_sym_or2] = ACTIONS(1610), + [anon_sym_not_DASHin2] = ACTIONS(1610), + [anon_sym_has2] = ACTIONS(1610), + [anon_sym_not_DASHhas2] = ACTIONS(1610), + [anon_sym_starts_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1610), + [anon_sym_ends_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1610), + [anon_sym_EQ_EQ2] = ACTIONS(1610), + [anon_sym_BANG_EQ2] = ACTIONS(1610), + [anon_sym_LT2] = ACTIONS(1608), + [anon_sym_LT_EQ2] = ACTIONS(1610), + [anon_sym_GT_EQ2] = ACTIONS(1610), + [anon_sym_EQ_TILDE2] = ACTIONS(1610), + [anon_sym_BANG_TILDE2] = ACTIONS(1610), + [anon_sym_like2] = ACTIONS(1610), + [anon_sym_not_DASHlike2] = ACTIONS(1610), + [anon_sym_STAR_STAR2] = ACTIONS(1610), + [anon_sym_PLUS_PLUS2] = ACTIONS(1608), + [anon_sym_SLASH2] = ACTIONS(1608), + [anon_sym_mod2] = ACTIONS(1610), + [anon_sym_SLASH_SLASH2] = ACTIONS(1610), + [anon_sym_PLUS2] = ACTIONS(1608), + [anon_sym_bit_DASHshl2] = ACTIONS(1610), + [anon_sym_bit_DASHshr2] = ACTIONS(1610), + [anon_sym_bit_DASHand2] = ACTIONS(1610), + [anon_sym_bit_DASHxor2] = ACTIONS(1610), + [anon_sym_bit_DASHor2] = ACTIONS(1610), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_COLON2] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_DOT2] = ACTIONS(1608), + [anon_sym_err_GT] = ACTIONS(1608), + [anon_sym_out_GT] = ACTIONS(1608), + [anon_sym_e_GT] = ACTIONS(1608), + [anon_sym_o_GT] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT] = ACTIONS(1608), + [anon_sym_err_GT_GT] = ACTIONS(1610), + [anon_sym_out_GT_GT] = ACTIONS(1610), + [anon_sym_e_GT_GT] = ACTIONS(1610), + [anon_sym_o_GT_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), [anon_sym_POUND] = ACTIONS(3), }, [STATE(383)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5091), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [sym_cell_path] = STATE(447), + [sym_path] = STATE(435), [sym_comment] = STATE(383), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__where_predicate_lhs_repeat1] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(1590), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_PLUS_EQ] = ACTIONS(1590), + [anon_sym_DASH_EQ] = ACTIONS(1590), + [anon_sym_STAR_EQ] = ACTIONS(1590), + [anon_sym_SLASH_EQ] = ACTIONS(1590), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1590), + [anon_sym_xor2] = ACTIONS(1590), + [anon_sym_or2] = ACTIONS(1590), + [anon_sym_not_DASHin2] = ACTIONS(1590), + [anon_sym_has2] = ACTIONS(1590), + [anon_sym_not_DASHhas2] = ACTIONS(1590), + [anon_sym_starts_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1590), + [anon_sym_ends_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1590), + [anon_sym_EQ_EQ2] = ACTIONS(1590), + [anon_sym_BANG_EQ2] = ACTIONS(1590), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1590), + [anon_sym_GT_EQ2] = ACTIONS(1590), + [anon_sym_EQ_TILDE2] = ACTIONS(1590), + [anon_sym_BANG_TILDE2] = ACTIONS(1590), + [anon_sym_like2] = ACTIONS(1590), + [anon_sym_not_DASHlike2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1590), + [anon_sym_PLUS_PLUS2] = ACTIONS(1588), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1590), + [anon_sym_SLASH_SLASH2] = ACTIONS(1590), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1590), + [anon_sym_bit_DASHshr2] = ACTIONS(1590), + [anon_sym_bit_DASHand2] = ACTIONS(1590), + [anon_sym_bit_DASHxor2] = ACTIONS(1590), + [anon_sym_bit_DASHor2] = ACTIONS(1590), + [anon_sym_DOT_DOT2] = ACTIONS(1588), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1590), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1590), + [anon_sym_DOT2] = ACTIONS(1720), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(384)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4809), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [sym__match_pattern_expression] = STATE(4452), + [sym__match_pattern_value] = STATE(4756), + [sym__match_pattern_list] = STATE(4760), + [sym__match_pattern_record] = STATE(4761), + [sym_expr_parenthesized] = STATE(4005), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4722), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4723), + [sym_val_bool] = STATE(4083), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4008), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4723), + [sym__val_number_decimal] = STATE(3590), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4723), + [sym_val_filesize] = STATE(4723), + [sym_val_binary] = STATE(4723), + [sym_val_string] = STATE(4723), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4624), + [sym__spread_list] = STATE(4907), + [sym_val_entry] = STATE(4582), + [sym_val_record] = STATE(4624), + [sym_val_table] = STATE(4723), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(3981), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(384), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [aux_sym__types_body_repeat1] = STATE(2351), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1645), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1532), + [aux_sym_cmd_identifier_token3] = ACTIONS(1534), + [aux_sym_cmd_identifier_token4] = ACTIONS(1534), + [aux_sym_cmd_identifier_token5] = ACTIONS(1534), + [sym__newline] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_DOT_DOT] = ACTIONS(1726), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT] = ACTIONS(1552), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(385)] = { [sym_comment] = STATE(385), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_PLUS_EQ] = ACTIONS(1610), + [anon_sym_DASH_EQ] = ACTIONS(1610), + [anon_sym_STAR_EQ] = ACTIONS(1610), + [anon_sym_SLASH_EQ] = ACTIONS(1610), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1610), + [anon_sym_in] = ACTIONS(1610), + [sym__newline] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_err_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_GT_PIPE] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(1610), + [anon_sym_GT2] = ACTIONS(1608), + [anon_sym_DASH2] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_STAR2] = ACTIONS(1608), + [anon_sym_and2] = ACTIONS(1610), + [anon_sym_xor2] = ACTIONS(1610), + [anon_sym_or2] = ACTIONS(1610), + [anon_sym_not_DASHin2] = ACTIONS(1610), + [anon_sym_has2] = ACTIONS(1610), + [anon_sym_not_DASHhas2] = ACTIONS(1610), + [anon_sym_starts_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1610), + [anon_sym_ends_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1610), + [anon_sym_EQ_EQ2] = ACTIONS(1610), + [anon_sym_BANG_EQ2] = ACTIONS(1610), + [anon_sym_LT2] = ACTIONS(1608), + [anon_sym_LT_EQ2] = ACTIONS(1610), + [anon_sym_GT_EQ2] = ACTIONS(1610), + [anon_sym_EQ_TILDE2] = ACTIONS(1610), + [anon_sym_BANG_TILDE2] = ACTIONS(1610), + [anon_sym_like2] = ACTIONS(1610), + [anon_sym_not_DASHlike2] = ACTIONS(1610), + [anon_sym_STAR_STAR2] = ACTIONS(1610), + [anon_sym_PLUS_PLUS2] = ACTIONS(1608), + [anon_sym_SLASH2] = ACTIONS(1608), + [anon_sym_mod2] = ACTIONS(1610), + [anon_sym_SLASH_SLASH2] = ACTIONS(1610), + [anon_sym_PLUS2] = ACTIONS(1608), + [anon_sym_bit_DASHshl2] = ACTIONS(1610), + [anon_sym_bit_DASHshr2] = ACTIONS(1610), + [anon_sym_bit_DASHand2] = ACTIONS(1610), + [anon_sym_bit_DASHxor2] = ACTIONS(1610), + [anon_sym_bit_DASHor2] = ACTIONS(1610), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_COLON2] = ACTIONS(1610), + [anon_sym_QMARK2] = ACTIONS(1728), + [anon_sym_DOT2] = ACTIONS(1608), + [anon_sym_err_GT] = ACTIONS(1608), + [anon_sym_out_GT] = ACTIONS(1608), + [anon_sym_e_GT] = ACTIONS(1608), + [anon_sym_o_GT] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT] = ACTIONS(1608), + [anon_sym_err_GT_GT] = ACTIONS(1610), + [anon_sym_out_GT_GT] = ACTIONS(1610), + [anon_sym_e_GT_GT] = ACTIONS(1610), + [anon_sym_o_GT_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), [anon_sym_POUND] = ACTIONS(3), }, [STATE(386)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4980), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [sym__path_suffix] = STATE(426), [sym_comment] = STATE(386), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(387)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4826), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(387), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(388)] = { - [sym_comment] = STATE(388), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_COLON2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(389)] = { - [sym__expr_parenthesized_immediate] = STATE(698), - [sym__immediate_decimal] = STATE(645), - [sym_val_variable] = STATE(698), - [sym_comment] = STATE(389), + [ts_builtin_sym_end] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1594), + [anon_sym_PLUS_EQ] = ACTIONS(1596), + [anon_sym_DASH_EQ] = ACTIONS(1596), + [anon_sym_STAR_EQ] = ACTIONS(1596), + [anon_sym_SLASH_EQ] = ACTIONS(1596), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1596), [anon_sym_in] = ACTIONS(1596), [sym__newline] = ACTIONS(1596), [anon_sym_SEMI] = ACTIONS(1596), @@ -77853,12 +81372,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), + [anon_sym_GT2] = ACTIONS(1594), + [anon_sym_DASH2] = ACTIONS(1594), + [anon_sym_STAR2] = ACTIONS(1594), [anon_sym_and2] = ACTIONS(1596), [anon_sym_xor2] = ACTIONS(1596), [anon_sym_or2] = ACTIONS(1596), @@ -77871,38 +81387,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), [anon_sym_EQ_EQ2] = ACTIONS(1596), [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1594), [anon_sym_LT_EQ2] = ACTIONS(1596), [anon_sym_GT_EQ2] = ACTIONS(1596), [anon_sym_EQ_TILDE2] = ACTIONS(1596), [anon_sym_BANG_TILDE2] = ACTIONS(1596), [anon_sym_like2] = ACTIONS(1596), [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), + [anon_sym_PLUS_PLUS2] = ACTIONS(1594), + [anon_sym_SLASH2] = ACTIONS(1594), [anon_sym_mod2] = ACTIONS(1596), [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1594), [anon_sym_bit_DASHshl2] = ACTIONS(1596), [anon_sym_bit_DASHshr2] = ACTIONS(1596), [anon_sym_bit_DASHand2] = ACTIONS(1596), [anon_sym_bit_DASHxor2] = ACTIONS(1596), [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1613), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1594), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1596), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1596), + [anon_sym_QMARK2] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_DOT2] = ACTIONS(1594), + [anon_sym_err_GT] = ACTIONS(1594), + [anon_sym_out_GT] = ACTIONS(1594), + [anon_sym_e_GT] = ACTIONS(1594), + [anon_sym_o_GT] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT] = ACTIONS(1594), [anon_sym_err_GT_GT] = ACTIONS(1596), [anon_sym_out_GT_GT] = ACTIONS(1596), [anon_sym_e_GT_GT] = ACTIONS(1596), @@ -77911,2174 +81427,2499 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(387)] = { + [sym__expr_parenthesized_immediate] = STATE(687), + [sym__immediate_decimal] = STATE(688), + [sym_val_variable] = STATE(687), + [sym_comment] = STATE(387), + [anon_sym_in] = ACTIONS(1734), + [sym__newline] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_err_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_GT_PIPE] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1738), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_STAR2] = ACTIONS(1738), + [anon_sym_and2] = ACTIONS(1734), + [anon_sym_xor2] = ACTIONS(1734), + [anon_sym_or2] = ACTIONS(1734), + [anon_sym_not_DASHin2] = ACTIONS(1734), + [anon_sym_has2] = ACTIONS(1734), + [anon_sym_not_DASHhas2] = ACTIONS(1734), + [anon_sym_starts_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1734), + [anon_sym_ends_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1734), + [anon_sym_EQ_EQ2] = ACTIONS(1734), + [anon_sym_BANG_EQ2] = ACTIONS(1734), + [anon_sym_LT2] = ACTIONS(1738), + [anon_sym_LT_EQ2] = ACTIONS(1734), + [anon_sym_GT_EQ2] = ACTIONS(1734), + [anon_sym_EQ_TILDE2] = ACTIONS(1734), + [anon_sym_BANG_TILDE2] = ACTIONS(1734), + [anon_sym_like2] = ACTIONS(1734), + [anon_sym_not_DASHlike2] = ACTIONS(1734), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_STAR_STAR2] = ACTIONS(1734), + [anon_sym_PLUS_PLUS2] = ACTIONS(1734), + [anon_sym_SLASH2] = ACTIONS(1738), + [anon_sym_mod2] = ACTIONS(1734), + [anon_sym_SLASH_SLASH2] = ACTIONS(1734), + [anon_sym_PLUS2] = ACTIONS(1738), + [anon_sym_bit_DASHshl2] = ACTIONS(1734), + [anon_sym_bit_DASHshr2] = ACTIONS(1734), + [anon_sym_bit_DASHand2] = ACTIONS(1734), + [anon_sym_bit_DASHxor2] = ACTIONS(1734), + [anon_sym_bit_DASHor2] = ACTIONS(1734), + [anon_sym_DOT] = ACTIONS(1742), + [aux_sym__immediate_decimal_token1] = ACTIONS(1744), + [aux_sym__immediate_decimal_token2] = ACTIONS(1744), + [aux_sym__immediate_decimal_token3] = ACTIONS(1746), + [aux_sym__immediate_decimal_token4] = ACTIONS(1746), + [anon_sym_err_GT] = ACTIONS(1738), + [anon_sym_out_GT] = ACTIONS(1738), + [anon_sym_e_GT] = ACTIONS(1738), + [anon_sym_o_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT] = ACTIONS(1738), + [anon_sym_err_GT_GT] = ACTIONS(1734), + [anon_sym_out_GT_GT] = ACTIONS(1734), + [anon_sym_e_GT_GT] = ACTIONS(1734), + [anon_sym_o_GT_GT] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1734), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(388)] = { + [sym_comment] = STATE(388), + [aux_sym__types_body_repeat2] = STATE(1712), + [anon_sym_EQ] = ACTIONS(1748), + [anon_sym_PLUS_EQ] = ACTIONS(1748), + [anon_sym_DASH_EQ] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1748), + [anon_sym_SLASH_EQ] = ACTIONS(1748), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1748), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_STAR2] = ACTIONS(1750), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1750), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1750), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1750), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT_DOT2] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), + [sym__entry_separator] = ACTIONS(1758), + [anon_sym_COLON2] = ACTIONS(1760), + [anon_sym_err_GT] = ACTIONS(1750), + [anon_sym_out_GT] = ACTIONS(1750), + [anon_sym_e_GT] = ACTIONS(1750), + [anon_sym_o_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT] = ACTIONS(1750), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(389)] = { + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4624), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5193), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), + [sym_comment] = STATE(389), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), + }, [STATE(390)] = { + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4624), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5042), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(390), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(391)] = { + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4624), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5303), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(392)] = { + [sym__expr_parenthesized_immediate] = STATE(687), + [sym__immediate_decimal] = STATE(523), + [sym_val_variable] = STATE(687), [sym_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1545), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1545), - [anon_sym_DASH_EQ] = ACTIONS(1545), - [anon_sym_STAR_EQ] = ACTIONS(1545), - [anon_sym_SLASH_EQ] = ACTIONS(1545), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1734), + [sym__newline] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_err_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_GT_PIPE] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1738), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_STAR2] = ACTIONS(1738), + [anon_sym_and2] = ACTIONS(1734), + [anon_sym_xor2] = ACTIONS(1734), + [anon_sym_or2] = ACTIONS(1734), + [anon_sym_not_DASHin2] = ACTIONS(1734), + [anon_sym_has2] = ACTIONS(1734), + [anon_sym_not_DASHhas2] = ACTIONS(1734), + [anon_sym_starts_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1734), + [anon_sym_ends_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1734), + [anon_sym_EQ_EQ2] = ACTIONS(1734), + [anon_sym_BANG_EQ2] = ACTIONS(1734), + [anon_sym_LT2] = ACTIONS(1738), + [anon_sym_LT_EQ2] = ACTIONS(1734), + [anon_sym_GT_EQ2] = ACTIONS(1734), + [anon_sym_EQ_TILDE2] = ACTIONS(1734), + [anon_sym_BANG_TILDE2] = ACTIONS(1734), + [anon_sym_like2] = ACTIONS(1734), + [anon_sym_not_DASHlike2] = ACTIONS(1734), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_STAR_STAR2] = ACTIONS(1734), + [anon_sym_PLUS_PLUS2] = ACTIONS(1734), + [anon_sym_SLASH2] = ACTIONS(1738), + [anon_sym_mod2] = ACTIONS(1734), + [anon_sym_SLASH_SLASH2] = ACTIONS(1734), + [anon_sym_PLUS2] = ACTIONS(1738), + [anon_sym_bit_DASHshl2] = ACTIONS(1734), + [anon_sym_bit_DASHshr2] = ACTIONS(1734), + [anon_sym_bit_DASHand2] = ACTIONS(1734), + [anon_sym_bit_DASHxor2] = ACTIONS(1734), + [anon_sym_bit_DASHor2] = ACTIONS(1734), + [anon_sym_DOT] = ACTIONS(1772), + [aux_sym__immediate_decimal_token1] = ACTIONS(1744), + [aux_sym__immediate_decimal_token2] = ACTIONS(1744), + [aux_sym__immediate_decimal_token3] = ACTIONS(1746), + [aux_sym__immediate_decimal_token4] = ACTIONS(1746), + [anon_sym_err_GT] = ACTIONS(1738), + [anon_sym_out_GT] = ACTIONS(1738), + [anon_sym_e_GT] = ACTIONS(1738), + [anon_sym_o_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT] = ACTIONS(1738), + [anon_sym_err_GT_GT] = ACTIONS(1734), + [anon_sym_out_GT_GT] = ACTIONS(1734), + [anon_sym_e_GT_GT] = ACTIONS(1734), + [anon_sym_o_GT_GT] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1734), + [sym__unquoted_pattern] = ACTIONS(1774), [anon_sym_POUND] = ACTIONS(3), }, [STATE(393)] = { + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4624), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5087), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_STAR_EQ] = ACTIONS(1468), - [anon_sym_SLASH_EQ] = ACTIONS(1468), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(394)] = { + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4624), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5024), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_STAR_EQ] = ACTIONS(1472), - [anon_sym_SLASH_EQ] = ACTIONS(1472), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(395)] = { [sym_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1514), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [anon_sym_EQ] = ACTIONS(1690), + [anon_sym_PLUS_EQ] = ACTIONS(1692), + [anon_sym_DASH_EQ] = ACTIONS(1692), + [anon_sym_STAR_EQ] = ACTIONS(1692), + [anon_sym_SLASH_EQ] = ACTIONS(1692), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1692), + [anon_sym_in] = ACTIONS(1692), + [sym__newline] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_err_GT_PIPE] = ACTIONS(1692), + [anon_sym_out_GT_PIPE] = ACTIONS(1692), + [anon_sym_e_GT_PIPE] = ACTIONS(1692), + [anon_sym_o_GT_PIPE] = ACTIONS(1692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1692), + [anon_sym_RPAREN] = ACTIONS(1692), + [anon_sym_GT2] = ACTIONS(1690), + [anon_sym_DASH2] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_STAR2] = ACTIONS(1690), + [anon_sym_and2] = ACTIONS(1692), + [anon_sym_xor2] = ACTIONS(1692), + [anon_sym_or2] = ACTIONS(1692), + [anon_sym_not_DASHin2] = ACTIONS(1692), + [anon_sym_has2] = ACTIONS(1692), + [anon_sym_not_DASHhas2] = ACTIONS(1692), + [anon_sym_starts_DASHwith2] = ACTIONS(1692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1692), + [anon_sym_ends_DASHwith2] = ACTIONS(1692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1692), + [anon_sym_EQ_EQ2] = ACTIONS(1692), + [anon_sym_BANG_EQ2] = ACTIONS(1692), + [anon_sym_LT2] = ACTIONS(1690), + [anon_sym_LT_EQ2] = ACTIONS(1692), + [anon_sym_GT_EQ2] = ACTIONS(1692), + [anon_sym_EQ_TILDE2] = ACTIONS(1692), + [anon_sym_BANG_TILDE2] = ACTIONS(1692), + [anon_sym_like2] = ACTIONS(1692), + [anon_sym_not_DASHlike2] = ACTIONS(1692), + [anon_sym_STAR_STAR2] = ACTIONS(1692), + [anon_sym_PLUS_PLUS2] = ACTIONS(1690), + [anon_sym_SLASH2] = ACTIONS(1690), + [anon_sym_mod2] = ACTIONS(1692), + [anon_sym_SLASH_SLASH2] = ACTIONS(1692), + [anon_sym_PLUS2] = ACTIONS(1690), + [anon_sym_bit_DASHshl2] = ACTIONS(1692), + [anon_sym_bit_DASHshr2] = ACTIONS(1692), + [anon_sym_bit_DASHand2] = ACTIONS(1692), + [anon_sym_bit_DASHxor2] = ACTIONS(1692), + [anon_sym_bit_DASHor2] = ACTIONS(1692), + [anon_sym_DOT_DOT2] = ACTIONS(1690), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1692), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1692), + [anon_sym_COLON2] = ACTIONS(1692), + [anon_sym_DOT2] = ACTIONS(1690), + [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(1692), + [anon_sym_out_GT_GT] = ACTIONS(1692), + [anon_sym_e_GT_GT] = ACTIONS(1692), + [anon_sym_o_GT_GT] = ACTIONS(1692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(396)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5056), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(396), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1702), + [anon_sym_EQ] = ACTIONS(1700), + [anon_sym_PLUS_EQ] = ACTIONS(1702), + [anon_sym_DASH_EQ] = ACTIONS(1702), + [anon_sym_STAR_EQ] = ACTIONS(1702), + [anon_sym_SLASH_EQ] = ACTIONS(1702), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1702), + [anon_sym_in] = ACTIONS(1702), + [sym__newline] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_err_GT_PIPE] = ACTIONS(1702), + [anon_sym_out_GT_PIPE] = ACTIONS(1702), + [anon_sym_e_GT_PIPE] = ACTIONS(1702), + [anon_sym_o_GT_PIPE] = ACTIONS(1702), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1702), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1702), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1702), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1702), + [anon_sym_GT2] = ACTIONS(1700), + [anon_sym_DASH2] = ACTIONS(1700), + [anon_sym_STAR2] = ACTIONS(1700), + [anon_sym_and2] = ACTIONS(1702), + [anon_sym_xor2] = ACTIONS(1702), + [anon_sym_or2] = ACTIONS(1702), + [anon_sym_not_DASHin2] = ACTIONS(1702), + [anon_sym_has2] = ACTIONS(1702), + [anon_sym_not_DASHhas2] = ACTIONS(1702), + [anon_sym_starts_DASHwith2] = ACTIONS(1702), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1702), + [anon_sym_ends_DASHwith2] = ACTIONS(1702), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1702), + [anon_sym_EQ_EQ2] = ACTIONS(1702), + [anon_sym_BANG_EQ2] = ACTIONS(1702), + [anon_sym_LT2] = ACTIONS(1700), + [anon_sym_LT_EQ2] = ACTIONS(1702), + [anon_sym_GT_EQ2] = ACTIONS(1702), + [anon_sym_EQ_TILDE2] = ACTIONS(1702), + [anon_sym_BANG_TILDE2] = ACTIONS(1702), + [anon_sym_like2] = ACTIONS(1702), + [anon_sym_not_DASHlike2] = ACTIONS(1702), + [anon_sym_STAR_STAR2] = ACTIONS(1702), + [anon_sym_PLUS_PLUS2] = ACTIONS(1700), + [anon_sym_SLASH2] = ACTIONS(1700), + [anon_sym_mod2] = ACTIONS(1702), + [anon_sym_SLASH_SLASH2] = ACTIONS(1702), + [anon_sym_PLUS2] = ACTIONS(1700), + [anon_sym_bit_DASHshl2] = ACTIONS(1702), + [anon_sym_bit_DASHshr2] = ACTIONS(1702), + [anon_sym_bit_DASHand2] = ACTIONS(1702), + [anon_sym_bit_DASHxor2] = ACTIONS(1702), + [anon_sym_bit_DASHor2] = ACTIONS(1702), + [anon_sym_DOT_DOT2] = ACTIONS(1700), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1702), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1702), + [anon_sym_QMARK2] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_DOT2] = ACTIONS(1700), + [anon_sym_err_GT] = ACTIONS(1700), + [anon_sym_out_GT] = ACTIONS(1700), + [anon_sym_e_GT] = ACTIONS(1700), + [anon_sym_o_GT] = ACTIONS(1700), + [anon_sym_err_PLUSout_GT] = ACTIONS(1700), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1700), + [anon_sym_o_PLUSe_GT] = ACTIONS(1700), + [anon_sym_e_PLUSo_GT] = ACTIONS(1700), + [anon_sym_err_GT_GT] = ACTIONS(1702), + [anon_sym_out_GT_GT] = ACTIONS(1702), + [anon_sym_e_GT_GT] = ACTIONS(1702), + [anon_sym_o_GT_GT] = ACTIONS(1702), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1702), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1702), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1702), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(397)] = { + [sym_path] = STATE(435), [sym_comment] = STATE(397), - [aux_sym__types_body_repeat2] = STATE(1475), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1617), - [anon_sym_DASH_EQ] = ACTIONS(1617), - [anon_sym_STAR_EQ] = ACTIONS(1617), - [anon_sym_SLASH_EQ] = ACTIONS(1617), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1617), - [anon_sym_in] = ACTIONS(1619), - [sym__newline] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_err_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_GT_PIPE] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1619), - [anon_sym_xor2] = ACTIONS(1619), - [anon_sym_or2] = ACTIONS(1619), - [anon_sym_not_DASHin2] = ACTIONS(1619), - [anon_sym_has2] = ACTIONS(1619), - [anon_sym_not_DASHhas2] = ACTIONS(1619), - [anon_sym_starts_DASHwith2] = ACTIONS(1619), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1619), - [anon_sym_ends_DASHwith2] = ACTIONS(1619), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1619), - [anon_sym_EQ_EQ2] = ACTIONS(1619), - [anon_sym_BANG_EQ2] = ACTIONS(1619), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1619), - [anon_sym_GT_EQ2] = ACTIONS(1619), - [anon_sym_EQ_TILDE2] = ACTIONS(1619), - [anon_sym_BANG_TILDE2] = ACTIONS(1619), - [anon_sym_like2] = ACTIONS(1619), - [anon_sym_not_DASHlike2] = ACTIONS(1619), - [anon_sym_STAR_STAR2] = ACTIONS(1619), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1619), - [anon_sym_SLASH_SLASH2] = ACTIONS(1619), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1619), - [anon_sym_bit_DASHshr2] = ACTIONS(1619), - [anon_sym_bit_DASHand2] = ACTIONS(1619), - [anon_sym_bit_DASHxor2] = ACTIONS(1619), - [anon_sym_bit_DASHor2] = ACTIONS(1619), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [sym__entry_separator] = ACTIONS(1627), - [anon_sym_COLON2] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1619), - [anon_sym_out_GT_GT] = ACTIONS(1619), - [anon_sym_e_GT_GT] = ACTIONS(1619), - [anon_sym_o_GT_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym__where_predicate_lhs_repeat1] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(1653), + [anon_sym_EQ] = ACTIONS(1651), + [anon_sym_PLUS_EQ] = ACTIONS(1653), + [anon_sym_DASH_EQ] = ACTIONS(1653), + [anon_sym_STAR_EQ] = ACTIONS(1653), + [anon_sym_SLASH_EQ] = ACTIONS(1653), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1651), + [anon_sym_DASH2] = ACTIONS(1651), + [anon_sym_STAR2] = ACTIONS(1651), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_has2] = ACTIONS(1653), + [anon_sym_not_DASHhas2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1651), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_like2] = ACTIONS(1653), + [anon_sym_not_DASHlike2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1651), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1651), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(1651), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1653), + [anon_sym_DOT2] = ACTIONS(1720), + [anon_sym_err_GT] = ACTIONS(1651), + [anon_sym_out_GT] = ACTIONS(1651), + [anon_sym_e_GT] = ACTIONS(1651), + [anon_sym_o_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT] = ACTIONS(1651), + [anon_sym_err_GT_GT] = ACTIONS(1653), + [anon_sym_out_GT_GT] = ACTIONS(1653), + [anon_sym_e_GT_GT] = ACTIONS(1653), + [anon_sym_o_GT_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(398)] = { - [sym__expr_parenthesized_immediate] = STATE(742), - [sym__immediate_decimal] = STATE(959), - [sym_val_variable] = STATE(742), [sym_comment] = STATE(398), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1637), - [aux_sym__immediate_decimal_token4] = ACTIONS(1637), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [sym__unquoted_pattern] = ACTIONS(1639), + [ts_builtin_sym_end] = ACTIONS(1670), + [anon_sym_EQ] = ACTIONS(1668), + [anon_sym_PLUS_EQ] = ACTIONS(1670), + [anon_sym_DASH_EQ] = ACTIONS(1670), + [anon_sym_STAR_EQ] = ACTIONS(1670), + [anon_sym_SLASH_EQ] = ACTIONS(1670), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1670), + [anon_sym_in] = ACTIONS(1670), + [sym__newline] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_err_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_GT_PIPE] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1670), + [anon_sym_GT2] = ACTIONS(1668), + [anon_sym_DASH2] = ACTIONS(1668), + [anon_sym_STAR2] = ACTIONS(1668), + [anon_sym_and2] = ACTIONS(1670), + [anon_sym_xor2] = ACTIONS(1670), + [anon_sym_or2] = ACTIONS(1670), + [anon_sym_not_DASHin2] = ACTIONS(1670), + [anon_sym_has2] = ACTIONS(1670), + [anon_sym_not_DASHhas2] = ACTIONS(1670), + [anon_sym_starts_DASHwith2] = ACTIONS(1670), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1670), + [anon_sym_ends_DASHwith2] = ACTIONS(1670), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1670), + [anon_sym_EQ_EQ2] = ACTIONS(1670), + [anon_sym_BANG_EQ2] = ACTIONS(1670), + [anon_sym_LT2] = ACTIONS(1668), + [anon_sym_LT_EQ2] = ACTIONS(1670), + [anon_sym_GT_EQ2] = ACTIONS(1670), + [anon_sym_EQ_TILDE2] = ACTIONS(1670), + [anon_sym_BANG_TILDE2] = ACTIONS(1670), + [anon_sym_like2] = ACTIONS(1670), + [anon_sym_not_DASHlike2] = ACTIONS(1670), + [anon_sym_STAR_STAR2] = ACTIONS(1670), + [anon_sym_PLUS_PLUS2] = ACTIONS(1668), + [anon_sym_SLASH2] = ACTIONS(1668), + [anon_sym_mod2] = ACTIONS(1670), + [anon_sym_SLASH_SLASH2] = ACTIONS(1670), + [anon_sym_PLUS2] = ACTIONS(1668), + [anon_sym_bit_DASHshl2] = ACTIONS(1670), + [anon_sym_bit_DASHshr2] = ACTIONS(1670), + [anon_sym_bit_DASHand2] = ACTIONS(1670), + [anon_sym_bit_DASHxor2] = ACTIONS(1670), + [anon_sym_bit_DASHor2] = ACTIONS(1670), + [anon_sym_DOT_DOT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1670), + [anon_sym_QMARK2] = ACTIONS(1670), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_DOT2] = ACTIONS(1668), + [anon_sym_err_GT] = ACTIONS(1668), + [anon_sym_out_GT] = ACTIONS(1668), + [anon_sym_e_GT] = ACTIONS(1668), + [anon_sym_o_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT] = ACTIONS(1668), + [anon_sym_err_GT_GT] = ACTIONS(1670), + [anon_sym_out_GT_GT] = ACTIONS(1670), + [anon_sym_e_GT_GT] = ACTIONS(1670), + [anon_sym_o_GT_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1670), [anon_sym_POUND] = ACTIONS(3), }, [STATE(399)] = { - [sym_cell_path] = STATE(466), - [sym_path] = STATE(441), [sym_comment] = STATE(399), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_COLON2] = ACTIONS(1641), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [ts_builtin_sym_end] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1680), + [anon_sym_PLUS_EQ] = ACTIONS(1682), + [anon_sym_DASH_EQ] = ACTIONS(1682), + [anon_sym_STAR_EQ] = ACTIONS(1682), + [anon_sym_SLASH_EQ] = ACTIONS(1682), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [sym__newline] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_err_GT_PIPE] = ACTIONS(1682), + [anon_sym_out_GT_PIPE] = ACTIONS(1682), + [anon_sym_e_GT_PIPE] = ACTIONS(1682), + [anon_sym_o_GT_PIPE] = ACTIONS(1682), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), + [anon_sym_GT2] = ACTIONS(1680), + [anon_sym_DASH2] = ACTIONS(1680), + [anon_sym_STAR2] = ACTIONS(1680), + [anon_sym_and2] = ACTIONS(1682), + [anon_sym_xor2] = ACTIONS(1682), + [anon_sym_or2] = ACTIONS(1682), + [anon_sym_not_DASHin2] = ACTIONS(1682), + [anon_sym_has2] = ACTIONS(1682), + [anon_sym_not_DASHhas2] = ACTIONS(1682), + [anon_sym_starts_DASHwith2] = ACTIONS(1682), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1682), + [anon_sym_ends_DASHwith2] = ACTIONS(1682), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1682), + [anon_sym_EQ_EQ2] = ACTIONS(1682), + [anon_sym_BANG_EQ2] = ACTIONS(1682), + [anon_sym_LT2] = ACTIONS(1680), + [anon_sym_LT_EQ2] = ACTIONS(1682), + [anon_sym_GT_EQ2] = ACTIONS(1682), + [anon_sym_EQ_TILDE2] = ACTIONS(1682), + [anon_sym_BANG_TILDE2] = ACTIONS(1682), + [anon_sym_like2] = ACTIONS(1682), + [anon_sym_not_DASHlike2] = ACTIONS(1682), + [anon_sym_STAR_STAR2] = ACTIONS(1682), + [anon_sym_PLUS_PLUS2] = ACTIONS(1680), + [anon_sym_SLASH2] = ACTIONS(1680), + [anon_sym_mod2] = ACTIONS(1682), + [anon_sym_SLASH_SLASH2] = ACTIONS(1682), + [anon_sym_PLUS2] = ACTIONS(1680), + [anon_sym_bit_DASHshl2] = ACTIONS(1682), + [anon_sym_bit_DASHshr2] = ACTIONS(1682), + [anon_sym_bit_DASHand2] = ACTIONS(1682), + [anon_sym_bit_DASHxor2] = ACTIONS(1682), + [anon_sym_bit_DASHor2] = ACTIONS(1682), + [anon_sym_DOT_DOT2] = ACTIONS(1680), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), + [anon_sym_QMARK2] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_DOT2] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1680), + [anon_sym_out_GT] = ACTIONS(1680), + [anon_sym_e_GT] = ACTIONS(1680), + [anon_sym_o_GT] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT] = ACTIONS(1680), + [anon_sym_err_GT_GT] = ACTIONS(1682), + [anon_sym_out_GT_GT] = ACTIONS(1682), + [anon_sym_e_GT_GT] = ACTIONS(1682), + [anon_sym_o_GT_GT] = ACTIONS(1682), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), [anon_sym_POUND] = ACTIONS(3), }, [STATE(400)] = { - [sym__expr_parenthesized_immediate] = STATE(721), - [sym__immediate_decimal] = STATE(722), - [sym_val_variable] = STATE(721), [sym_comment] = STATE(400), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [ts_builtin_sym_end] = ACTIONS(1674), + [anon_sym_EQ] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1674), + [anon_sym_DASH_EQ] = ACTIONS(1674), + [anon_sym_STAR_EQ] = ACTIONS(1674), + [anon_sym_SLASH_EQ] = ACTIONS(1674), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1674), + [anon_sym_in] = ACTIONS(1674), + [sym__newline] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_err_GT_PIPE] = ACTIONS(1674), + [anon_sym_out_GT_PIPE] = ACTIONS(1674), + [anon_sym_e_GT_PIPE] = ACTIONS(1674), + [anon_sym_o_GT_PIPE] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1674), + [anon_sym_GT2] = ACTIONS(1672), + [anon_sym_DASH2] = ACTIONS(1672), + [anon_sym_STAR2] = ACTIONS(1672), + [anon_sym_and2] = ACTIONS(1674), + [anon_sym_xor2] = ACTIONS(1674), + [anon_sym_or2] = ACTIONS(1674), + [anon_sym_not_DASHin2] = ACTIONS(1674), + [anon_sym_has2] = ACTIONS(1674), + [anon_sym_not_DASHhas2] = ACTIONS(1674), + [anon_sym_starts_DASHwith2] = ACTIONS(1674), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1674), + [anon_sym_ends_DASHwith2] = ACTIONS(1674), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1674), + [anon_sym_EQ_EQ2] = ACTIONS(1674), + [anon_sym_BANG_EQ2] = ACTIONS(1674), + [anon_sym_LT2] = ACTIONS(1672), + [anon_sym_LT_EQ2] = ACTIONS(1674), + [anon_sym_GT_EQ2] = ACTIONS(1674), + [anon_sym_EQ_TILDE2] = ACTIONS(1674), + [anon_sym_BANG_TILDE2] = ACTIONS(1674), + [anon_sym_like2] = ACTIONS(1674), + [anon_sym_not_DASHlike2] = ACTIONS(1674), + [anon_sym_STAR_STAR2] = ACTIONS(1674), + [anon_sym_PLUS_PLUS2] = ACTIONS(1672), + [anon_sym_SLASH2] = ACTIONS(1672), + [anon_sym_mod2] = ACTIONS(1674), + [anon_sym_SLASH_SLASH2] = ACTIONS(1674), + [anon_sym_PLUS2] = ACTIONS(1672), + [anon_sym_bit_DASHshl2] = ACTIONS(1674), + [anon_sym_bit_DASHshr2] = ACTIONS(1674), + [anon_sym_bit_DASHand2] = ACTIONS(1674), + [anon_sym_bit_DASHxor2] = ACTIONS(1674), + [anon_sym_bit_DASHor2] = ACTIONS(1674), + [anon_sym_DOT_DOT2] = ACTIONS(1672), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1674), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1674), + [anon_sym_QMARK2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_DOT2] = ACTIONS(1672), + [anon_sym_err_GT] = ACTIONS(1672), + [anon_sym_out_GT] = ACTIONS(1672), + [anon_sym_e_GT] = ACTIONS(1672), + [anon_sym_o_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT] = ACTIONS(1672), + [anon_sym_err_GT_GT] = ACTIONS(1674), + [anon_sym_out_GT_GT] = ACTIONS(1674), + [anon_sym_e_GT_GT] = ACTIONS(1674), + [anon_sym_o_GT_GT] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1674), [anon_sym_POUND] = ACTIONS(3), }, [STATE(401)] = { - [sym__expr_parenthesized_immediate] = STATE(929), - [sym__immediate_decimal] = STATE(673), - [sym_val_variable] = STATE(929), [sym_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1653), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), + [ts_builtin_sym_end] = ACTIONS(1678), + [anon_sym_EQ] = ACTIONS(1676), + [anon_sym_PLUS_EQ] = ACTIONS(1678), + [anon_sym_DASH_EQ] = ACTIONS(1678), + [anon_sym_STAR_EQ] = ACTIONS(1678), + [anon_sym_SLASH_EQ] = ACTIONS(1678), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1678), + [anon_sym_in] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1676), + [anon_sym_STAR2] = ACTIONS(1676), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1676), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_like2] = ACTIONS(1678), + [anon_sym_not_DASHlike2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1676), + [anon_sym_SLASH2] = ACTIONS(1676), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1676), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_QMARK2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_DOT2] = ACTIONS(1676), + [anon_sym_err_GT] = ACTIONS(1676), + [anon_sym_out_GT] = ACTIONS(1676), + [anon_sym_e_GT] = ACTIONS(1676), + [anon_sym_o_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT] = ACTIONS(1676), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), [anon_sym_POUND] = ACTIONS(3), }, [STATE(402)] = { [sym_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1659), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1657), + [anon_sym_PLUS_EQ] = ACTIONS(1659), + [anon_sym_DASH_EQ] = ACTIONS(1659), + [anon_sym_STAR_EQ] = ACTIONS(1659), + [anon_sym_SLASH_EQ] = ACTIONS(1659), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [sym__newline] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_err_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_GT_PIPE] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1659), + [anon_sym_GT2] = ACTIONS(1657), + [anon_sym_DASH2] = ACTIONS(1657), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_STAR2] = ACTIONS(1657), + [anon_sym_and2] = ACTIONS(1659), + [anon_sym_xor2] = ACTIONS(1659), + [anon_sym_or2] = ACTIONS(1659), + [anon_sym_not_DASHin2] = ACTIONS(1659), + [anon_sym_has2] = ACTIONS(1659), + [anon_sym_not_DASHhas2] = ACTIONS(1659), + [anon_sym_starts_DASHwith2] = ACTIONS(1659), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1659), + [anon_sym_ends_DASHwith2] = ACTIONS(1659), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1659), + [anon_sym_EQ_EQ2] = ACTIONS(1659), + [anon_sym_BANG_EQ2] = ACTIONS(1659), + [anon_sym_LT2] = ACTIONS(1657), + [anon_sym_LT_EQ2] = ACTIONS(1659), + [anon_sym_GT_EQ2] = ACTIONS(1659), + [anon_sym_EQ_TILDE2] = ACTIONS(1659), + [anon_sym_BANG_TILDE2] = ACTIONS(1659), + [anon_sym_like2] = ACTIONS(1659), + [anon_sym_not_DASHlike2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1659), + [anon_sym_PLUS_PLUS2] = ACTIONS(1657), + [anon_sym_SLASH2] = ACTIONS(1657), + [anon_sym_mod2] = ACTIONS(1659), + [anon_sym_SLASH_SLASH2] = ACTIONS(1659), + [anon_sym_PLUS2] = ACTIONS(1657), + [anon_sym_bit_DASHshl2] = ACTIONS(1659), + [anon_sym_bit_DASHshr2] = ACTIONS(1659), + [anon_sym_bit_DASHand2] = ACTIONS(1659), + [anon_sym_bit_DASHxor2] = ACTIONS(1659), + [anon_sym_bit_DASHor2] = ACTIONS(1659), + [anon_sym_DOT_DOT2] = ACTIONS(1657), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1659), + [anon_sym_COLON2] = ACTIONS(1659), + [anon_sym_DOT2] = ACTIONS(1657), + [anon_sym_err_GT] = ACTIONS(1657), + [anon_sym_out_GT] = ACTIONS(1657), + [anon_sym_e_GT] = ACTIONS(1657), + [anon_sym_o_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT] = ACTIONS(1657), + [anon_sym_err_GT_GT] = ACTIONS(1659), + [anon_sym_out_GT_GT] = ACTIONS(1659), + [anon_sym_e_GT_GT] = ACTIONS(1659), + [anon_sym_o_GT_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(3), }, [STATE(403)] = { - [sym__expr_parenthesized_immediate] = STATE(723), - [sym__immediate_decimal] = STATE(896), - [sym_val_variable] = STATE(723), [sym_comment] = STATE(403), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1688), + [anon_sym_EQ] = ACTIONS(1686), + [anon_sym_PLUS_EQ] = ACTIONS(1688), + [anon_sym_DASH_EQ] = ACTIONS(1688), + [anon_sym_STAR_EQ] = ACTIONS(1688), + [anon_sym_SLASH_EQ] = ACTIONS(1688), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1688), + [anon_sym_in] = 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_GT2] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_STAR2] = ACTIONS(1686), + [anon_sym_and2] = ACTIONS(1688), + [anon_sym_xor2] = ACTIONS(1688), + [anon_sym_or2] = ACTIONS(1688), + [anon_sym_not_DASHin2] = ACTIONS(1688), + [anon_sym_has2] = ACTIONS(1688), + [anon_sym_not_DASHhas2] = ACTIONS(1688), + [anon_sym_starts_DASHwith2] = ACTIONS(1688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1688), + [anon_sym_ends_DASHwith2] = ACTIONS(1688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1688), + [anon_sym_EQ_EQ2] = ACTIONS(1688), + [anon_sym_BANG_EQ2] = ACTIONS(1688), + [anon_sym_LT2] = ACTIONS(1686), + [anon_sym_LT_EQ2] = ACTIONS(1688), + [anon_sym_GT_EQ2] = ACTIONS(1688), + [anon_sym_EQ_TILDE2] = ACTIONS(1688), + [anon_sym_BANG_TILDE2] = ACTIONS(1688), + [anon_sym_like2] = ACTIONS(1688), + [anon_sym_not_DASHlike2] = ACTIONS(1688), + [anon_sym_STAR_STAR2] = ACTIONS(1688), + [anon_sym_PLUS_PLUS2] = ACTIONS(1686), + [anon_sym_SLASH2] = ACTIONS(1686), + [anon_sym_mod2] = ACTIONS(1688), + [anon_sym_SLASH_SLASH2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_bit_DASHshl2] = ACTIONS(1688), + [anon_sym_bit_DASHshr2] = ACTIONS(1688), + [anon_sym_bit_DASHand2] = ACTIONS(1688), + [anon_sym_bit_DASHxor2] = ACTIONS(1688), + [anon_sym_bit_DASHor2] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_QMARK2] = ACTIONS(1688), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_DOT2] = ACTIONS(1686), + [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(3), }, [STATE(404)] = { + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4624), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5212), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(405)] = { + [sym_path] = STATE(435), [sym_comment] = STATE(405), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [aux_sym__where_predicate_lhs_repeat1] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(1644), + [anon_sym_EQ] = ACTIONS(1642), + [anon_sym_PLUS_EQ] = ACTIONS(1644), + [anon_sym_DASH_EQ] = ACTIONS(1644), + [anon_sym_STAR_EQ] = ACTIONS(1644), + [anon_sym_SLASH_EQ] = ACTIONS(1644), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1644), + [anon_sym_in] = ACTIONS(1644), + [sym__newline] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_err_GT_PIPE] = ACTIONS(1644), + [anon_sym_out_GT_PIPE] = ACTIONS(1644), + [anon_sym_e_GT_PIPE] = ACTIONS(1644), + [anon_sym_o_GT_PIPE] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1644), + [anon_sym_GT2] = ACTIONS(1642), + [anon_sym_DASH2] = ACTIONS(1642), + [anon_sym_STAR2] = ACTIONS(1642), + [anon_sym_and2] = ACTIONS(1644), + [anon_sym_xor2] = ACTIONS(1644), + [anon_sym_or2] = ACTIONS(1644), + [anon_sym_not_DASHin2] = ACTIONS(1644), + [anon_sym_has2] = ACTIONS(1644), + [anon_sym_not_DASHhas2] = ACTIONS(1644), + [anon_sym_starts_DASHwith2] = ACTIONS(1644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1644), + [anon_sym_ends_DASHwith2] = ACTIONS(1644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1644), + [anon_sym_EQ_EQ2] = ACTIONS(1644), + [anon_sym_BANG_EQ2] = ACTIONS(1644), + [anon_sym_LT2] = ACTIONS(1642), + [anon_sym_LT_EQ2] = ACTIONS(1644), + [anon_sym_GT_EQ2] = ACTIONS(1644), + [anon_sym_EQ_TILDE2] = ACTIONS(1644), + [anon_sym_BANG_TILDE2] = ACTIONS(1644), + [anon_sym_like2] = ACTIONS(1644), + [anon_sym_not_DASHlike2] = ACTIONS(1644), + [anon_sym_STAR_STAR2] = ACTIONS(1644), + [anon_sym_PLUS_PLUS2] = ACTIONS(1642), + [anon_sym_SLASH2] = ACTIONS(1642), + [anon_sym_mod2] = ACTIONS(1644), + [anon_sym_SLASH_SLASH2] = ACTIONS(1644), + [anon_sym_PLUS2] = ACTIONS(1642), + [anon_sym_bit_DASHshl2] = ACTIONS(1644), + [anon_sym_bit_DASHshr2] = ACTIONS(1644), + [anon_sym_bit_DASHand2] = ACTIONS(1644), + [anon_sym_bit_DASHxor2] = ACTIONS(1644), + [anon_sym_bit_DASHor2] = ACTIONS(1644), + [anon_sym_DOT_DOT2] = ACTIONS(1642), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1644), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1644), + [anon_sym_DOT2] = ACTIONS(1778), + [anon_sym_err_GT] = ACTIONS(1642), + [anon_sym_out_GT] = ACTIONS(1642), + [anon_sym_e_GT] = ACTIONS(1642), + [anon_sym_o_GT] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT] = ACTIONS(1642), + [anon_sym_err_GT_GT] = ACTIONS(1644), + [anon_sym_out_GT_GT] = ACTIONS(1644), + [anon_sym_e_GT_GT] = ACTIONS(1644), + [anon_sym_o_GT_GT] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(406)] = { - [sym__path_suffix] = STATE(437), [sym_comment] = STATE(406), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1448), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1663), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1696), + [sym__newline] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_err_GT_PIPE] = ACTIONS(1696), + [anon_sym_out_GT_PIPE] = ACTIONS(1696), + [anon_sym_e_GT_PIPE] = ACTIONS(1696), + [anon_sym_o_GT_PIPE] = ACTIONS(1696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_GT2] = ACTIONS(1694), + [anon_sym_DASH2] = ACTIONS(1694), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_STAR2] = ACTIONS(1694), + [anon_sym_and2] = ACTIONS(1696), + [anon_sym_xor2] = ACTIONS(1696), + [anon_sym_or2] = ACTIONS(1696), + [anon_sym_not_DASHin2] = ACTIONS(1696), + [anon_sym_has2] = ACTIONS(1696), + [anon_sym_not_DASHhas2] = ACTIONS(1696), + [anon_sym_starts_DASHwith2] = ACTIONS(1696), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1696), + [anon_sym_ends_DASHwith2] = ACTIONS(1696), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1696), + [anon_sym_EQ_EQ2] = ACTIONS(1696), + [anon_sym_BANG_EQ2] = ACTIONS(1696), + [anon_sym_LT2] = ACTIONS(1694), + [anon_sym_LT_EQ2] = ACTIONS(1696), + [anon_sym_GT_EQ2] = ACTIONS(1696), + [anon_sym_EQ_TILDE2] = ACTIONS(1696), + [anon_sym_BANG_TILDE2] = ACTIONS(1696), + [anon_sym_like2] = ACTIONS(1696), + [anon_sym_not_DASHlike2] = ACTIONS(1696), + [anon_sym_STAR_STAR2] = ACTIONS(1696), + [anon_sym_PLUS_PLUS2] = ACTIONS(1694), + [anon_sym_SLASH2] = ACTIONS(1694), + [anon_sym_mod2] = ACTIONS(1696), + [anon_sym_SLASH_SLASH2] = ACTIONS(1696), + [anon_sym_PLUS2] = ACTIONS(1694), + [anon_sym_bit_DASHshl2] = ACTIONS(1696), + [anon_sym_bit_DASHshr2] = ACTIONS(1696), + [anon_sym_bit_DASHand2] = ACTIONS(1696), + [anon_sym_bit_DASHxor2] = ACTIONS(1696), + [anon_sym_bit_DASHor2] = ACTIONS(1696), + [anon_sym_DOT_DOT2] = ACTIONS(1694), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1696), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1696), + [anon_sym_COLON2] = ACTIONS(1696), + [anon_sym_DOT2] = ACTIONS(1694), + [anon_sym_err_GT] = ACTIONS(1694), + [anon_sym_out_GT] = ACTIONS(1694), + [anon_sym_e_GT] = ACTIONS(1694), + [anon_sym_o_GT] = ACTIONS(1694), + [anon_sym_err_PLUSout_GT] = ACTIONS(1694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1694), + [anon_sym_o_PLUSe_GT] = ACTIONS(1694), + [anon_sym_e_PLUSo_GT] = ACTIONS(1694), + [anon_sym_err_GT_GT] = ACTIONS(1696), + [anon_sym_out_GT_GT] = ACTIONS(1696), + [anon_sym_e_GT_GT] = ACTIONS(1696), + [anon_sym_o_GT_GT] = ACTIONS(1696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1696), [anon_sym_POUND] = ACTIONS(3), }, [STATE(407)] = { - [sym__expr_parenthesized_immediate] = STATE(723), - [sym__immediate_decimal] = STATE(954), - [sym_val_variable] = STATE(723), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4624), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5273), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(407), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1637), - [aux_sym__immediate_decimal_token4] = ACTIONS(1637), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(408)] = { - [sym__expr_parenthesized_immediate] = STATE(736), - [sym__immediate_decimal] = STATE(737), - [sym_val_variable] = STATE(736), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4624), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5044), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(408), - [anon_sym_in] = ACTIONS(1667), - [sym__newline] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_err_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_GT_PIPE] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_has2] = ACTIONS(1667), - [anon_sym_not_DASHhas2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1667), - [anon_sym_GT_EQ2] = ACTIONS(1667), - [anon_sym_EQ_TILDE2] = ACTIONS(1667), - [anon_sym_BANG_TILDE2] = ACTIONS(1667), - [anon_sym_like2] = ACTIONS(1667), - [anon_sym_not_DASHlike2] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1667), - [anon_sym_bit_DASHshr2] = ACTIONS(1667), - [anon_sym_bit_DASHand2] = ACTIONS(1667), - [anon_sym_bit_DASHxor2] = ACTIONS(1667), - [anon_sym_bit_DASHor2] = ACTIONS(1667), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1667), - [anon_sym_out_GT_GT] = ACTIONS(1667), - [anon_sym_e_GT_GT] = ACTIONS(1667), - [anon_sym_o_GT_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(409)] = { - [sym__expr_parenthesized_immediate] = STATE(738), - [sym__immediate_decimal] = STATE(739), - [sym_val_variable] = STATE(738), + [sym__expr_parenthesized_immediate] = STATE(721), + [sym__immediate_decimal] = STATE(704), + [sym_val_variable] = STATE(721), [sym_comment] = STATE(409), - [anon_sym_in] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_has2] = ACTIONS(1671), - [anon_sym_not_DASHhas2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_like2] = ACTIONS(1671), - [anon_sym_not_DASHlike2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1783), + [sym__newline] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_err_GT_PIPE] = ACTIONS(1783), + [anon_sym_out_GT_PIPE] = ACTIONS(1783), + [anon_sym_e_GT_PIPE] = ACTIONS(1783), + [anon_sym_o_GT_PIPE] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1783), + [anon_sym_RPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_STAR2] = ACTIONS(1785), + [anon_sym_and2] = ACTIONS(1783), + [anon_sym_xor2] = ACTIONS(1783), + [anon_sym_or2] = ACTIONS(1783), + [anon_sym_not_DASHin2] = ACTIONS(1783), + [anon_sym_has2] = ACTIONS(1783), + [anon_sym_not_DASHhas2] = ACTIONS(1783), + [anon_sym_starts_DASHwith2] = ACTIONS(1783), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1783), + [anon_sym_ends_DASHwith2] = ACTIONS(1783), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1783), + [anon_sym_EQ_EQ2] = ACTIONS(1783), + [anon_sym_BANG_EQ2] = ACTIONS(1783), + [anon_sym_LT2] = ACTIONS(1785), + [anon_sym_LT_EQ2] = ACTIONS(1783), + [anon_sym_GT_EQ2] = ACTIONS(1783), + [anon_sym_EQ_TILDE2] = ACTIONS(1783), + [anon_sym_BANG_TILDE2] = ACTIONS(1783), + [anon_sym_like2] = ACTIONS(1783), + [anon_sym_not_DASHlike2] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_STAR_STAR2] = ACTIONS(1783), + [anon_sym_PLUS_PLUS2] = ACTIONS(1783), + [anon_sym_SLASH2] = ACTIONS(1785), + [anon_sym_mod2] = ACTIONS(1783), + [anon_sym_SLASH_SLASH2] = ACTIONS(1783), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_bit_DASHshl2] = ACTIONS(1783), + [anon_sym_bit_DASHshr2] = ACTIONS(1783), + [anon_sym_bit_DASHand2] = ACTIONS(1783), + [anon_sym_bit_DASHxor2] = ACTIONS(1783), + [anon_sym_bit_DASHor2] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(1787), + [aux_sym__immediate_decimal_token1] = ACTIONS(1744), + [aux_sym__immediate_decimal_token2] = ACTIONS(1744), + [aux_sym__immediate_decimal_token3] = ACTIONS(1746), + [aux_sym__immediate_decimal_token4] = ACTIONS(1746), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1783), + [anon_sym_out_GT_GT] = ACTIONS(1783), + [anon_sym_e_GT_GT] = ACTIONS(1783), + [anon_sym_o_GT_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1783), [anon_sym_POUND] = ACTIONS(3), }, [STATE(410)] = { - [sym__expr_parenthesized_immediate] = STATE(740), - [sym__immediate_decimal] = STATE(741), - [sym_val_variable] = STATE(740), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4624), + [sym__spread_list] = STATE(4907), + [sym_list_body] = STATE(5426), + [sym_val_entry] = STATE(4566), + [sym_val_record] = STATE(4624), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(410), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(479), + [aux_sym_parameter_repeat2] = STATE(4317), + [aux_sym_list_body_repeat1] = STATE(607), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(411)] = { - [sym__expr_parenthesized_immediate] = STATE(742), - [sym__immediate_decimal] = STATE(925), - [sym_val_variable] = STATE(742), + [sym__expr_parenthesized_immediate] = STATE(953), + [sym__immediate_decimal] = STATE(702), + [sym_val_variable] = STATE(953), [sym_comment] = STATE(411), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [ts_builtin_sym_end] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [sym__newline] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_err_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_GT_PIPE] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1791), + [anon_sym_GT2] = ACTIONS(1738), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1738), + [anon_sym_and2] = ACTIONS(1734), + [anon_sym_xor2] = ACTIONS(1734), + [anon_sym_or2] = ACTIONS(1734), + [anon_sym_not_DASHin2] = ACTIONS(1734), + [anon_sym_has2] = ACTIONS(1734), + [anon_sym_not_DASHhas2] = ACTIONS(1734), + [anon_sym_starts_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1734), + [anon_sym_ends_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1734), + [anon_sym_EQ_EQ2] = ACTIONS(1734), + [anon_sym_BANG_EQ2] = ACTIONS(1734), + [anon_sym_LT2] = ACTIONS(1738), + [anon_sym_LT_EQ2] = ACTIONS(1734), + [anon_sym_GT_EQ2] = ACTIONS(1734), + [anon_sym_EQ_TILDE2] = ACTIONS(1734), + [anon_sym_BANG_TILDE2] = ACTIONS(1734), + [anon_sym_like2] = ACTIONS(1734), + [anon_sym_not_DASHlike2] = ACTIONS(1734), + [anon_sym_LPAREN2] = ACTIONS(1793), + [anon_sym_STAR_STAR2] = ACTIONS(1734), + [anon_sym_PLUS_PLUS2] = ACTIONS(1734), + [anon_sym_SLASH2] = ACTIONS(1738), + [anon_sym_mod2] = ACTIONS(1734), + [anon_sym_SLASH_SLASH2] = ACTIONS(1734), + [anon_sym_PLUS2] = ACTIONS(1738), + [anon_sym_bit_DASHshl2] = ACTIONS(1734), + [anon_sym_bit_DASHshr2] = ACTIONS(1734), + [anon_sym_bit_DASHand2] = ACTIONS(1734), + [anon_sym_bit_DASHxor2] = ACTIONS(1734), + [anon_sym_bit_DASHor2] = ACTIONS(1734), + [anon_sym_DOT] = ACTIONS(1795), + [aux_sym__immediate_decimal_token1] = ACTIONS(1797), + [aux_sym__immediate_decimal_token2] = ACTIONS(1797), + [aux_sym__immediate_decimal_token3] = ACTIONS(1799), + [aux_sym__immediate_decimal_token4] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1738), + [anon_sym_out_GT] = ACTIONS(1738), + [anon_sym_e_GT] = ACTIONS(1738), + [anon_sym_o_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT] = ACTIONS(1738), + [anon_sym_err_GT_GT] = ACTIONS(1734), + [anon_sym_out_GT_GT] = ACTIONS(1734), + [anon_sym_e_GT_GT] = ACTIONS(1734), + [anon_sym_o_GT_GT] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1734), + [sym__unquoted_pattern] = ACTIONS(1774), [anon_sym_POUND] = ACTIONS(3), }, [STATE(412)] = { - [sym_cell_path] = STATE(465), - [sym_path] = STATE(441), + [sym__expr_parenthesized_immediate] = STATE(749), + [sym__immediate_decimal] = STATE(936), + [sym_val_variable] = STATE(749), [sym_comment] = STATE(412), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1679), - [sym__newline] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_err_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_GT_PIPE] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_EQ_GT] = ACTIONS(1679), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1679), - [anon_sym_xor2] = ACTIONS(1679), - [anon_sym_or2] = ACTIONS(1679), - [anon_sym_not_DASHin2] = ACTIONS(1679), - [anon_sym_has2] = ACTIONS(1679), - [anon_sym_not_DASHhas2] = ACTIONS(1679), - [anon_sym_starts_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1679), - [anon_sym_ends_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1679), - [anon_sym_EQ_EQ2] = ACTIONS(1679), - [anon_sym_BANG_EQ2] = ACTIONS(1679), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1679), - [anon_sym_GT_EQ2] = ACTIONS(1679), - [anon_sym_EQ_TILDE2] = ACTIONS(1679), - [anon_sym_BANG_TILDE2] = ACTIONS(1679), - [anon_sym_like2] = ACTIONS(1679), - [anon_sym_not_DASHlike2] = ACTIONS(1679), - [anon_sym_STAR_STAR2] = ACTIONS(1679), - [anon_sym_PLUS_PLUS2] = ACTIONS(1679), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1679), - [anon_sym_SLASH_SLASH2] = ACTIONS(1679), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1679), - [anon_sym_bit_DASHshr2] = ACTIONS(1679), - [anon_sym_bit_DASHand2] = ACTIONS(1679), - [anon_sym_bit_DASHxor2] = ACTIONS(1679), - [anon_sym_bit_DASHor2] = ACTIONS(1679), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1679), - [anon_sym_COLON2] = ACTIONS(1679), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1679), - [anon_sym_out_GT_GT] = ACTIONS(1679), - [anon_sym_e_GT_GT] = ACTIONS(1679), - [anon_sym_o_GT_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), + [anon_sym_in] = ACTIONS(1801), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1803), + [anon_sym_DASH2] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_STAR2] = ACTIONS(1803), + [anon_sym_and2] = ACTIONS(1801), + [anon_sym_xor2] = ACTIONS(1801), + [anon_sym_or2] = ACTIONS(1801), + [anon_sym_not_DASHin2] = ACTIONS(1801), + [anon_sym_has2] = ACTIONS(1801), + [anon_sym_not_DASHhas2] = ACTIONS(1801), + [anon_sym_starts_DASHwith2] = ACTIONS(1801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1801), + [anon_sym_ends_DASHwith2] = ACTIONS(1801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1801), + [anon_sym_EQ_EQ2] = ACTIONS(1801), + [anon_sym_BANG_EQ2] = ACTIONS(1801), + [anon_sym_LT2] = ACTIONS(1803), + [anon_sym_LT_EQ2] = ACTIONS(1801), + [anon_sym_GT_EQ2] = ACTIONS(1801), + [anon_sym_EQ_TILDE2] = ACTIONS(1801), + [anon_sym_BANG_TILDE2] = ACTIONS(1801), + [anon_sym_like2] = ACTIONS(1801), + [anon_sym_not_DASHlike2] = ACTIONS(1801), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_STAR_STAR2] = ACTIONS(1801), + [anon_sym_PLUS_PLUS2] = ACTIONS(1801), + [anon_sym_SLASH2] = ACTIONS(1803), + [anon_sym_mod2] = ACTIONS(1801), + [anon_sym_SLASH_SLASH2] = ACTIONS(1801), + [anon_sym_PLUS2] = ACTIONS(1803), + [anon_sym_bit_DASHshl2] = ACTIONS(1801), + [anon_sym_bit_DASHshr2] = ACTIONS(1801), + [anon_sym_bit_DASHand2] = ACTIONS(1801), + [anon_sym_bit_DASHxor2] = ACTIONS(1801), + [anon_sym_bit_DASHor2] = ACTIONS(1801), + [aux_sym__immediate_decimal_token1] = ACTIONS(1805), + [aux_sym__immediate_decimal_token2] = ACTIONS(1805), + [aux_sym__immediate_decimal_token3] = ACTIONS(1746), + [aux_sym__immediate_decimal_token4] = ACTIONS(1746), + [anon_sym_err_GT] = ACTIONS(1803), + [anon_sym_out_GT] = ACTIONS(1803), + [anon_sym_e_GT] = ACTIONS(1803), + [anon_sym_o_GT] = ACTIONS(1803), + [anon_sym_err_PLUSout_GT] = ACTIONS(1803), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1803), + [anon_sym_o_PLUSe_GT] = ACTIONS(1803), + [anon_sym_e_PLUSo_GT] = ACTIONS(1803), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), [anon_sym_POUND] = ACTIONS(3), }, [STATE(413)] = { + [sym_cell_path] = STATE(481), + [sym_path] = STATE(463), [sym_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [aux_sym__where_predicate_lhs_repeat1] = STATE(441), + [anon_sym_in] = ACTIONS(1807), + [sym__newline] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1807), + [anon_sym_err_GT_PIPE] = ACTIONS(1807), + [anon_sym_out_GT_PIPE] = ACTIONS(1807), + [anon_sym_e_GT_PIPE] = ACTIONS(1807), + [anon_sym_o_GT_PIPE] = ACTIONS(1807), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1807), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1807), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1807), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1807), + [anon_sym_RPAREN] = ACTIONS(1807), + [anon_sym_GT2] = ACTIONS(1809), + [anon_sym_DASH2] = ACTIONS(1807), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_EQ_GT] = ACTIONS(1807), + [anon_sym_STAR2] = ACTIONS(1809), + [anon_sym_and2] = ACTIONS(1807), + [anon_sym_xor2] = ACTIONS(1807), + [anon_sym_or2] = ACTIONS(1807), + [anon_sym_not_DASHin2] = ACTIONS(1807), + [anon_sym_has2] = ACTIONS(1807), + [anon_sym_not_DASHhas2] = ACTIONS(1807), + [anon_sym_starts_DASHwith2] = ACTIONS(1807), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1807), + [anon_sym_ends_DASHwith2] = ACTIONS(1807), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1807), + [anon_sym_EQ_EQ2] = ACTIONS(1807), + [anon_sym_BANG_EQ2] = ACTIONS(1807), + [anon_sym_LT2] = ACTIONS(1809), + [anon_sym_LT_EQ2] = ACTIONS(1807), + [anon_sym_GT_EQ2] = ACTIONS(1807), + [anon_sym_EQ_TILDE2] = ACTIONS(1807), + [anon_sym_BANG_TILDE2] = ACTIONS(1807), + [anon_sym_like2] = ACTIONS(1807), + [anon_sym_not_DASHlike2] = ACTIONS(1807), + [anon_sym_STAR_STAR2] = ACTIONS(1807), + [anon_sym_PLUS_PLUS2] = ACTIONS(1807), + [anon_sym_SLASH2] = ACTIONS(1809), + [anon_sym_mod2] = ACTIONS(1807), + [anon_sym_SLASH_SLASH2] = ACTIONS(1807), + [anon_sym_PLUS2] = ACTIONS(1809), + [anon_sym_bit_DASHshl2] = ACTIONS(1807), + [anon_sym_bit_DASHshr2] = ACTIONS(1807), + [anon_sym_bit_DASHand2] = ACTIONS(1807), + [anon_sym_bit_DASHxor2] = ACTIONS(1807), + [anon_sym_bit_DASHor2] = ACTIONS(1807), + [anon_sym_DOT_DOT2] = ACTIONS(1809), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1807), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1807), + [anon_sym_COLON2] = ACTIONS(1807), + [anon_sym_DOT2] = ACTIONS(1811), + [anon_sym_err_GT] = ACTIONS(1809), + [anon_sym_out_GT] = ACTIONS(1809), + [anon_sym_e_GT] = ACTIONS(1809), + [anon_sym_o_GT] = ACTIONS(1809), + [anon_sym_err_PLUSout_GT] = ACTIONS(1809), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1809), + [anon_sym_o_PLUSe_GT] = ACTIONS(1809), + [anon_sym_e_PLUSo_GT] = ACTIONS(1809), + [anon_sym_err_GT_GT] = ACTIONS(1807), + [anon_sym_out_GT_GT] = ACTIONS(1807), + [anon_sym_e_GT_GT] = ACTIONS(1807), + [anon_sym_o_GT_GT] = ACTIONS(1807), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1807), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1807), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1807), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1807), [anon_sym_POUND] = ACTIONS(3), }, [STATE(414)] = { - [sym_cell_path] = STATE(492), - [sym_path] = STATE(441), [sym_comment] = STATE(414), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_EQ_GT] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1434), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), + [ts_builtin_sym_end] = ACTIONS(1610), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_PLUS_EQ] = ACTIONS(1610), + [anon_sym_DASH_EQ] = ACTIONS(1610), + [anon_sym_STAR_EQ] = ACTIONS(1610), + [anon_sym_SLASH_EQ] = ACTIONS(1610), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1610), + [anon_sym_in] = ACTIONS(1610), + [sym__newline] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_err_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_GT_PIPE] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), + [anon_sym_GT2] = ACTIONS(1608), + [anon_sym_DASH2] = ACTIONS(1608), + [anon_sym_STAR2] = ACTIONS(1608), + [anon_sym_and2] = ACTIONS(1610), + [anon_sym_xor2] = ACTIONS(1610), + [anon_sym_or2] = ACTIONS(1610), + [anon_sym_not_DASHin2] = ACTIONS(1610), + [anon_sym_has2] = ACTIONS(1610), + [anon_sym_not_DASHhas2] = ACTIONS(1610), + [anon_sym_starts_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1610), + [anon_sym_ends_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1610), + [anon_sym_EQ_EQ2] = ACTIONS(1610), + [anon_sym_BANG_EQ2] = ACTIONS(1610), + [anon_sym_LT2] = ACTIONS(1608), + [anon_sym_LT_EQ2] = ACTIONS(1610), + [anon_sym_GT_EQ2] = ACTIONS(1610), + [anon_sym_EQ_TILDE2] = ACTIONS(1610), + [anon_sym_BANG_TILDE2] = ACTIONS(1610), + [anon_sym_like2] = ACTIONS(1610), + [anon_sym_not_DASHlike2] = ACTIONS(1610), + [anon_sym_STAR_STAR2] = ACTIONS(1610), + [anon_sym_PLUS_PLUS2] = ACTIONS(1608), + [anon_sym_SLASH2] = ACTIONS(1608), + [anon_sym_mod2] = ACTIONS(1610), + [anon_sym_SLASH_SLASH2] = ACTIONS(1610), + [anon_sym_PLUS2] = ACTIONS(1608), + [anon_sym_bit_DASHshl2] = ACTIONS(1610), + [anon_sym_bit_DASHshr2] = ACTIONS(1610), + [anon_sym_bit_DASHand2] = ACTIONS(1610), + [anon_sym_bit_DASHxor2] = ACTIONS(1610), + [anon_sym_bit_DASHor2] = ACTIONS(1610), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_QMARK2] = ACTIONS(1813), + [anon_sym_DOT2] = ACTIONS(1608), + [anon_sym_err_GT] = ACTIONS(1608), + [anon_sym_out_GT] = ACTIONS(1608), + [anon_sym_e_GT] = ACTIONS(1608), + [anon_sym_o_GT] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT] = ACTIONS(1608), + [anon_sym_err_GT_GT] = ACTIONS(1610), + [anon_sym_out_GT_GT] = ACTIONS(1610), + [anon_sym_e_GT_GT] = ACTIONS(1610), + [anon_sym_o_GT_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), [anon_sym_POUND] = ACTIONS(3), }, [STATE(415)] = { + [sym__expr_parenthesized_immediate] = STATE(731), + [sym__immediate_decimal] = STATE(944), + [sym_val_variable] = STATE(731), [sym_comment] = STATE(415), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_EQ_GT] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1480), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), + [anon_sym_in] = ACTIONS(1734), + [sym__newline] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_err_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_GT_PIPE] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1738), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_STAR2] = ACTIONS(1738), + [anon_sym_and2] = ACTIONS(1734), + [anon_sym_xor2] = ACTIONS(1734), + [anon_sym_or2] = ACTIONS(1734), + [anon_sym_not_DASHin2] = ACTIONS(1734), + [anon_sym_has2] = ACTIONS(1734), + [anon_sym_not_DASHhas2] = ACTIONS(1734), + [anon_sym_starts_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1734), + [anon_sym_ends_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1734), + [anon_sym_EQ_EQ2] = ACTIONS(1734), + [anon_sym_BANG_EQ2] = ACTIONS(1734), + [anon_sym_LT2] = ACTIONS(1738), + [anon_sym_LT_EQ2] = ACTIONS(1734), + [anon_sym_GT_EQ2] = ACTIONS(1734), + [anon_sym_EQ_TILDE2] = ACTIONS(1734), + [anon_sym_BANG_TILDE2] = ACTIONS(1734), + [anon_sym_like2] = ACTIONS(1734), + [anon_sym_not_DASHlike2] = ACTIONS(1734), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_STAR_STAR2] = ACTIONS(1734), + [anon_sym_PLUS_PLUS2] = ACTIONS(1734), + [anon_sym_SLASH2] = ACTIONS(1738), + [anon_sym_mod2] = ACTIONS(1734), + [anon_sym_SLASH_SLASH2] = ACTIONS(1734), + [anon_sym_PLUS2] = ACTIONS(1738), + [anon_sym_bit_DASHshl2] = ACTIONS(1734), + [anon_sym_bit_DASHshr2] = ACTIONS(1734), + [anon_sym_bit_DASHand2] = ACTIONS(1734), + [anon_sym_bit_DASHxor2] = ACTIONS(1734), + [anon_sym_bit_DASHor2] = ACTIONS(1734), + [aux_sym__immediate_decimal_token1] = ACTIONS(1815), + [aux_sym__immediate_decimal_token2] = ACTIONS(1815), + [aux_sym__immediate_decimal_token3] = ACTIONS(1817), + [aux_sym__immediate_decimal_token4] = ACTIONS(1817), + [anon_sym_err_GT] = ACTIONS(1738), + [anon_sym_out_GT] = ACTIONS(1738), + [anon_sym_e_GT] = ACTIONS(1738), + [anon_sym_o_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT] = ACTIONS(1738), + [anon_sym_err_GT_GT] = ACTIONS(1734), + [anon_sym_out_GT_GT] = ACTIONS(1734), + [anon_sym_e_GT_GT] = ACTIONS(1734), + [anon_sym_o_GT_GT] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1734), + [sym__unquoted_pattern] = ACTIONS(1774), [anon_sym_POUND] = ACTIONS(3), }, [STATE(416)] = { - [sym__expr_parenthesized_immediate] = STATE(1343), - [sym__immediate_decimal] = STATE(1090), - [sym_val_variable] = STATE(1343), + [sym__expr_parenthesized_immediate] = STATE(749), + [sym__immediate_decimal] = STATE(946), + [sym_val_variable] = STATE(749), [sym_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1685), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [sym__unquoted_pattern] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1801), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1803), + [anon_sym_DASH2] = ACTIONS(1803), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_STAR2] = ACTIONS(1803), + [anon_sym_and2] = ACTIONS(1801), + [anon_sym_xor2] = ACTIONS(1801), + [anon_sym_or2] = ACTIONS(1801), + [anon_sym_not_DASHin2] = ACTIONS(1801), + [anon_sym_has2] = ACTIONS(1801), + [anon_sym_not_DASHhas2] = ACTIONS(1801), + [anon_sym_starts_DASHwith2] = ACTIONS(1801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1801), + [anon_sym_ends_DASHwith2] = ACTIONS(1801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1801), + [anon_sym_EQ_EQ2] = ACTIONS(1801), + [anon_sym_BANG_EQ2] = ACTIONS(1801), + [anon_sym_LT2] = ACTIONS(1803), + [anon_sym_LT_EQ2] = ACTIONS(1801), + [anon_sym_GT_EQ2] = ACTIONS(1801), + [anon_sym_EQ_TILDE2] = ACTIONS(1801), + [anon_sym_BANG_TILDE2] = ACTIONS(1801), + [anon_sym_like2] = ACTIONS(1801), + [anon_sym_not_DASHlike2] = ACTIONS(1801), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_STAR_STAR2] = ACTIONS(1801), + [anon_sym_PLUS_PLUS2] = ACTIONS(1801), + [anon_sym_SLASH2] = ACTIONS(1803), + [anon_sym_mod2] = ACTIONS(1801), + [anon_sym_SLASH_SLASH2] = ACTIONS(1801), + [anon_sym_PLUS2] = ACTIONS(1803), + [anon_sym_bit_DASHshl2] = ACTIONS(1801), + [anon_sym_bit_DASHshr2] = ACTIONS(1801), + [anon_sym_bit_DASHand2] = ACTIONS(1801), + [anon_sym_bit_DASHxor2] = ACTIONS(1801), + [anon_sym_bit_DASHor2] = ACTIONS(1801), + [aux_sym__immediate_decimal_token1] = ACTIONS(1815), + [aux_sym__immediate_decimal_token2] = ACTIONS(1815), + [aux_sym__immediate_decimal_token3] = ACTIONS(1817), + [aux_sym__immediate_decimal_token4] = ACTIONS(1817), + [anon_sym_err_GT] = ACTIONS(1803), + [anon_sym_out_GT] = ACTIONS(1803), + [anon_sym_e_GT] = ACTIONS(1803), + [anon_sym_o_GT] = ACTIONS(1803), + [anon_sym_err_PLUSout_GT] = ACTIONS(1803), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1803), + [anon_sym_o_PLUSe_GT] = ACTIONS(1803), + [anon_sym_e_PLUSo_GT] = ACTIONS(1803), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [sym__unquoted_pattern] = ACTIONS(1819), [anon_sym_POUND] = ACTIONS(3), }, [STATE(417)] = { + [sym_cell_path] = STATE(484), + [sym_path] = STATE(463), [sym_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [aux_sym__where_predicate_lhs_repeat1] = STATE(441), + [anon_sym_in] = ACTIONS(1821), + [sym__newline] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1821), + [anon_sym_err_GT_PIPE] = ACTIONS(1821), + [anon_sym_out_GT_PIPE] = ACTIONS(1821), + [anon_sym_e_GT_PIPE] = ACTIONS(1821), + [anon_sym_o_GT_PIPE] = ACTIONS(1821), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1821), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1821), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1821), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1821), + [anon_sym_RPAREN] = ACTIONS(1821), + [anon_sym_GT2] = ACTIONS(1823), + [anon_sym_DASH2] = ACTIONS(1821), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_EQ_GT] = ACTIONS(1821), + [anon_sym_STAR2] = ACTIONS(1823), + [anon_sym_and2] = ACTIONS(1821), + [anon_sym_xor2] = ACTIONS(1821), + [anon_sym_or2] = ACTIONS(1821), + [anon_sym_not_DASHin2] = ACTIONS(1821), + [anon_sym_has2] = ACTIONS(1821), + [anon_sym_not_DASHhas2] = ACTIONS(1821), + [anon_sym_starts_DASHwith2] = ACTIONS(1821), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1821), + [anon_sym_ends_DASHwith2] = ACTIONS(1821), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1821), + [anon_sym_EQ_EQ2] = ACTIONS(1821), + [anon_sym_BANG_EQ2] = ACTIONS(1821), + [anon_sym_LT2] = ACTIONS(1823), + [anon_sym_LT_EQ2] = ACTIONS(1821), + [anon_sym_GT_EQ2] = ACTIONS(1821), + [anon_sym_EQ_TILDE2] = ACTIONS(1821), + [anon_sym_BANG_TILDE2] = ACTIONS(1821), + [anon_sym_like2] = ACTIONS(1821), + [anon_sym_not_DASHlike2] = ACTIONS(1821), + [anon_sym_STAR_STAR2] = ACTIONS(1821), + [anon_sym_PLUS_PLUS2] = ACTIONS(1821), + [anon_sym_SLASH2] = ACTIONS(1823), + [anon_sym_mod2] = ACTIONS(1821), + [anon_sym_SLASH_SLASH2] = ACTIONS(1821), + [anon_sym_PLUS2] = ACTIONS(1823), + [anon_sym_bit_DASHshl2] = ACTIONS(1821), + [anon_sym_bit_DASHshr2] = ACTIONS(1821), + [anon_sym_bit_DASHand2] = ACTIONS(1821), + [anon_sym_bit_DASHxor2] = ACTIONS(1821), + [anon_sym_bit_DASHor2] = ACTIONS(1821), + [anon_sym_DOT_DOT2] = ACTIONS(1823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1821), + [anon_sym_COLON2] = ACTIONS(1821), + [anon_sym_DOT2] = ACTIONS(1811), + [anon_sym_err_GT] = ACTIONS(1823), + [anon_sym_out_GT] = ACTIONS(1823), + [anon_sym_e_GT] = ACTIONS(1823), + [anon_sym_o_GT] = ACTIONS(1823), + [anon_sym_err_PLUSout_GT] = ACTIONS(1823), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1823), + [anon_sym_o_PLUSe_GT] = ACTIONS(1823), + [anon_sym_e_PLUSo_GT] = ACTIONS(1823), + [anon_sym_err_GT_GT] = ACTIONS(1821), + [anon_sym_out_GT_GT] = ACTIONS(1821), + [anon_sym_e_GT_GT] = ACTIONS(1821), + [anon_sym_o_GT_GT] = ACTIONS(1821), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1821), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1821), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1821), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1821), [anon_sym_POUND] = ACTIONS(3), }, [STATE(418)] = { - [sym__expr_parenthesized_immediate] = STATE(1311), - [sym__immediate_decimal] = STATE(1068), - [sym_val_variable] = STATE(1311), [sym_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1610), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_PLUS_EQ] = ACTIONS(1610), + [anon_sym_DASH_EQ] = ACTIONS(1610), + [anon_sym_STAR_EQ] = ACTIONS(1610), + [anon_sym_SLASH_EQ] = ACTIONS(1610), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1610), + [anon_sym_in] = ACTIONS(1610), + [sym__newline] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_err_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_GT_PIPE] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), + [anon_sym_GT2] = ACTIONS(1608), + [anon_sym_DASH2] = ACTIONS(1608), + [anon_sym_STAR2] = ACTIONS(1608), + [anon_sym_and2] = ACTIONS(1610), + [anon_sym_xor2] = ACTIONS(1610), + [anon_sym_or2] = ACTIONS(1610), + [anon_sym_not_DASHin2] = ACTIONS(1610), + [anon_sym_has2] = ACTIONS(1610), + [anon_sym_not_DASHhas2] = ACTIONS(1610), + [anon_sym_starts_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1610), + [anon_sym_ends_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1610), + [anon_sym_EQ_EQ2] = ACTIONS(1610), + [anon_sym_BANG_EQ2] = ACTIONS(1610), + [anon_sym_LT2] = ACTIONS(1608), + [anon_sym_LT_EQ2] = ACTIONS(1610), + [anon_sym_GT_EQ2] = ACTIONS(1610), + [anon_sym_EQ_TILDE2] = ACTIONS(1610), + [anon_sym_BANG_TILDE2] = ACTIONS(1610), + [anon_sym_like2] = ACTIONS(1610), + [anon_sym_not_DASHlike2] = ACTIONS(1610), + [anon_sym_STAR_STAR2] = ACTIONS(1610), + [anon_sym_PLUS_PLUS2] = ACTIONS(1608), + [anon_sym_SLASH2] = ACTIONS(1608), + [anon_sym_mod2] = ACTIONS(1610), + [anon_sym_SLASH_SLASH2] = ACTIONS(1610), + [anon_sym_PLUS2] = ACTIONS(1608), + [anon_sym_bit_DASHshl2] = ACTIONS(1610), + [anon_sym_bit_DASHshr2] = ACTIONS(1610), + [anon_sym_bit_DASHand2] = ACTIONS(1610), + [anon_sym_bit_DASHxor2] = ACTIONS(1610), + [anon_sym_bit_DASHor2] = ACTIONS(1610), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_DOT2] = ACTIONS(1608), + [anon_sym_err_GT] = ACTIONS(1608), + [anon_sym_out_GT] = ACTIONS(1608), + [anon_sym_e_GT] = ACTIONS(1608), + [anon_sym_o_GT] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT] = ACTIONS(1608), + [anon_sym_err_GT_GT] = ACTIONS(1610), + [anon_sym_out_GT_GT] = ACTIONS(1610), + [anon_sym_e_GT_GT] = ACTIONS(1610), + [anon_sym_o_GT_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(419)] = { + [sym__path_suffix] = STATE(465), + [sym_comment] = STATE(419), [anon_sym_in] = ACTIONS(1596), [sym__newline] = ACTIONS(1596), [anon_sym_SEMI] = ACTIONS(1596), @@ -80091,10 +83932,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1596), + [anon_sym_GT2] = ACTIONS(1594), + [anon_sym_DASH2] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_EQ_GT] = ACTIONS(1596), + [anon_sym_STAR2] = ACTIONS(1594), [anon_sym_and2] = ACTIONS(1596), [anon_sym_xor2] = ACTIONS(1596), [anon_sym_or2] = ACTIONS(1596), @@ -80107,37 +83951,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), [anon_sym_EQ_EQ2] = ACTIONS(1596), [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1594), [anon_sym_LT_EQ2] = ACTIONS(1596), [anon_sym_GT_EQ2] = ACTIONS(1596), [anon_sym_EQ_TILDE2] = ACTIONS(1596), [anon_sym_BANG_TILDE2] = ACTIONS(1596), [anon_sym_like2] = ACTIONS(1596), [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), [anon_sym_STAR_STAR2] = ACTIONS(1596), [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), + [anon_sym_SLASH2] = ACTIONS(1594), [anon_sym_mod2] = ACTIONS(1596), [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1594), [anon_sym_bit_DASHshl2] = ACTIONS(1596), [anon_sym_bit_DASHshr2] = ACTIONS(1596), [anon_sym_bit_DASHand2] = ACTIONS(1596), [anon_sym_bit_DASHxor2] = ACTIONS(1596), [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1685), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1594), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1596), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1596), + [anon_sym_COLON2] = ACTIONS(1596), + [anon_sym_QMARK2] = ACTIONS(1827), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_DOT2] = ACTIONS(1594), + [anon_sym_err_GT] = ACTIONS(1594), + [anon_sym_out_GT] = ACTIONS(1594), + [anon_sym_e_GT] = ACTIONS(1594), + [anon_sym_o_GT] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT] = ACTIONS(1594), [anon_sym_err_GT_GT] = ACTIONS(1596), [anon_sym_out_GT_GT] = ACTIONS(1596), [anon_sym_e_GT_GT] = ACTIONS(1596), @@ -80146,2747 +83992,3664 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(419)] = { - [sym__expr_parenthesized_immediate] = STATE(918), - [sym__immediate_decimal] = STATE(920), - [sym_val_variable] = STATE(918), - [sym_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1687), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), [anon_sym_POUND] = ACTIONS(3), }, [STATE(420)] = { - [sym_path] = STATE(441), + [sym__expr_parenthesized_immediate] = STATE(729), + [sym__immediate_decimal] = STATE(730), + [sym_val_variable] = STATE(729), [sym_comment] = STATE(420), - [aux_sym__where_predicate_lhs_repeat1] = STATE(420), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_EQ_GT] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1526), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1689), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), + [anon_sym_in] = ACTIONS(1783), + [sym__newline] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_err_GT_PIPE] = ACTIONS(1783), + [anon_sym_out_GT_PIPE] = ACTIONS(1783), + [anon_sym_e_GT_PIPE] = ACTIONS(1783), + [anon_sym_o_GT_PIPE] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1783), + [anon_sym_RPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_STAR2] = ACTIONS(1785), + [anon_sym_and2] = ACTIONS(1783), + [anon_sym_xor2] = ACTIONS(1783), + [anon_sym_or2] = ACTIONS(1783), + [anon_sym_not_DASHin2] = ACTIONS(1783), + [anon_sym_has2] = ACTIONS(1783), + [anon_sym_not_DASHhas2] = ACTIONS(1783), + [anon_sym_starts_DASHwith2] = ACTIONS(1783), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1783), + [anon_sym_ends_DASHwith2] = ACTIONS(1783), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1783), + [anon_sym_EQ_EQ2] = ACTIONS(1783), + [anon_sym_BANG_EQ2] = ACTIONS(1783), + [anon_sym_LT2] = ACTIONS(1785), + [anon_sym_LT_EQ2] = ACTIONS(1783), + [anon_sym_GT_EQ2] = ACTIONS(1783), + [anon_sym_EQ_TILDE2] = ACTIONS(1783), + [anon_sym_BANG_TILDE2] = ACTIONS(1783), + [anon_sym_like2] = ACTIONS(1783), + [anon_sym_not_DASHlike2] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_STAR_STAR2] = ACTIONS(1783), + [anon_sym_PLUS_PLUS2] = ACTIONS(1783), + [anon_sym_SLASH2] = ACTIONS(1785), + [anon_sym_mod2] = ACTIONS(1783), + [anon_sym_SLASH_SLASH2] = ACTIONS(1783), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_bit_DASHshl2] = ACTIONS(1783), + [anon_sym_bit_DASHshr2] = ACTIONS(1783), + [anon_sym_bit_DASHand2] = ACTIONS(1783), + [anon_sym_bit_DASHxor2] = ACTIONS(1783), + [anon_sym_bit_DASHor2] = ACTIONS(1783), + [aux_sym__immediate_decimal_token1] = ACTIONS(1805), + [aux_sym__immediate_decimal_token2] = ACTIONS(1805), + [aux_sym__immediate_decimal_token3] = ACTIONS(1746), + [aux_sym__immediate_decimal_token4] = ACTIONS(1746), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1783), + [anon_sym_out_GT_GT] = ACTIONS(1783), + [anon_sym_e_GT_GT] = ACTIONS(1783), + [anon_sym_o_GT_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1783), [anon_sym_POUND] = ACTIONS(3), }, [STATE(421)] = { [sym_comment] = STATE(421), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1692), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1694), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(1714), + [anon_sym_PLUS_EQ] = ACTIONS(1716), + [anon_sym_DASH_EQ] = ACTIONS(1716), + [anon_sym_STAR_EQ] = ACTIONS(1716), + [anon_sym_SLASH_EQ] = ACTIONS(1716), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1716), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1714), + [anon_sym_DASH2] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_STAR2] = ACTIONS(1714), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1714), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1714), + [anon_sym_SLASH2] = ACTIONS(1714), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1714), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_DOT_DOT2] = ACTIONS(1714), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1716), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1716), + [anon_sym_COLON2] = ACTIONS(1716), + [anon_sym_err_GT] = ACTIONS(1714), + [anon_sym_out_GT] = ACTIONS(1714), + [anon_sym_e_GT] = ACTIONS(1714), + [anon_sym_o_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT] = ACTIONS(1714), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), [anon_sym_POUND] = ACTIONS(3), }, [STATE(422)] = { + [sym__expr_parenthesized_immediate] = STATE(731), + [sym__immediate_decimal] = STATE(963), + [sym_val_variable] = STATE(731), [sym_comment] = STATE(422), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1696), - [aux_sym__immediate_decimal_token5] = ACTIONS(1698), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), + [anon_sym_in] = ACTIONS(1734), + [sym__newline] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_err_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_GT_PIPE] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1738), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_STAR2] = ACTIONS(1738), + [anon_sym_and2] = ACTIONS(1734), + [anon_sym_xor2] = ACTIONS(1734), + [anon_sym_or2] = ACTIONS(1734), + [anon_sym_not_DASHin2] = ACTIONS(1734), + [anon_sym_has2] = ACTIONS(1734), + [anon_sym_not_DASHhas2] = ACTIONS(1734), + [anon_sym_starts_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1734), + [anon_sym_ends_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1734), + [anon_sym_EQ_EQ2] = ACTIONS(1734), + [anon_sym_BANG_EQ2] = ACTIONS(1734), + [anon_sym_LT2] = ACTIONS(1738), + [anon_sym_LT_EQ2] = ACTIONS(1734), + [anon_sym_GT_EQ2] = ACTIONS(1734), + [anon_sym_EQ_TILDE2] = ACTIONS(1734), + [anon_sym_BANG_TILDE2] = ACTIONS(1734), + [anon_sym_like2] = ACTIONS(1734), + [anon_sym_not_DASHlike2] = ACTIONS(1734), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_STAR_STAR2] = ACTIONS(1734), + [anon_sym_PLUS_PLUS2] = ACTIONS(1734), + [anon_sym_SLASH2] = ACTIONS(1738), + [anon_sym_mod2] = ACTIONS(1734), + [anon_sym_SLASH_SLASH2] = ACTIONS(1734), + [anon_sym_PLUS2] = ACTIONS(1738), + [anon_sym_bit_DASHshl2] = ACTIONS(1734), + [anon_sym_bit_DASHshr2] = ACTIONS(1734), + [anon_sym_bit_DASHand2] = ACTIONS(1734), + [anon_sym_bit_DASHxor2] = ACTIONS(1734), + [anon_sym_bit_DASHor2] = ACTIONS(1734), + [aux_sym__immediate_decimal_token1] = ACTIONS(1805), + [aux_sym__immediate_decimal_token2] = ACTIONS(1805), + [aux_sym__immediate_decimal_token3] = ACTIONS(1746), + [aux_sym__immediate_decimal_token4] = ACTIONS(1746), + [anon_sym_err_GT] = ACTIONS(1738), + [anon_sym_out_GT] = ACTIONS(1738), + [anon_sym_e_GT] = ACTIONS(1738), + [anon_sym_o_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT] = ACTIONS(1738), + [anon_sym_err_GT_GT] = ACTIONS(1734), + [anon_sym_out_GT_GT] = ACTIONS(1734), + [anon_sym_e_GT_GT] = ACTIONS(1734), + [anon_sym_o_GT_GT] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(423)] = { - [sym_path] = STATE(441), + [sym__expr_parenthesized_immediate] = STATE(743), + [sym__immediate_decimal] = STATE(744), + [sym_val_variable] = STATE(743), [sym_comment] = STATE(423), - [aux_sym__where_predicate_lhs_repeat1] = STATE(420), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_EQ_GT] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1460), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_COLON2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), + [anon_sym_in] = ACTIONS(1831), + [sym__newline] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1831), + [anon_sym_err_GT_PIPE] = ACTIONS(1831), + [anon_sym_out_GT_PIPE] = ACTIONS(1831), + [anon_sym_e_GT_PIPE] = ACTIONS(1831), + [anon_sym_o_GT_PIPE] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1833), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_STAR2] = ACTIONS(1833), + [anon_sym_and2] = ACTIONS(1831), + [anon_sym_xor2] = ACTIONS(1831), + [anon_sym_or2] = ACTIONS(1831), + [anon_sym_not_DASHin2] = ACTIONS(1831), + [anon_sym_has2] = ACTIONS(1831), + [anon_sym_not_DASHhas2] = ACTIONS(1831), + [anon_sym_starts_DASHwith2] = ACTIONS(1831), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1831), + [anon_sym_ends_DASHwith2] = ACTIONS(1831), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1831), + [anon_sym_EQ_EQ2] = ACTIONS(1831), + [anon_sym_BANG_EQ2] = ACTIONS(1831), + [anon_sym_LT2] = ACTIONS(1833), + [anon_sym_LT_EQ2] = ACTIONS(1831), + [anon_sym_GT_EQ2] = ACTIONS(1831), + [anon_sym_EQ_TILDE2] = ACTIONS(1831), + [anon_sym_BANG_TILDE2] = ACTIONS(1831), + [anon_sym_like2] = ACTIONS(1831), + [anon_sym_not_DASHlike2] = ACTIONS(1831), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_STAR_STAR2] = ACTIONS(1831), + [anon_sym_PLUS_PLUS2] = ACTIONS(1831), + [anon_sym_SLASH2] = ACTIONS(1833), + [anon_sym_mod2] = ACTIONS(1831), + [anon_sym_SLASH_SLASH2] = ACTIONS(1831), + [anon_sym_PLUS2] = ACTIONS(1833), + [anon_sym_bit_DASHshl2] = ACTIONS(1831), + [anon_sym_bit_DASHshr2] = ACTIONS(1831), + [anon_sym_bit_DASHand2] = ACTIONS(1831), + [anon_sym_bit_DASHxor2] = ACTIONS(1831), + [anon_sym_bit_DASHor2] = ACTIONS(1831), + [aux_sym__immediate_decimal_token1] = ACTIONS(1805), + [aux_sym__immediate_decimal_token2] = ACTIONS(1805), + [aux_sym__immediate_decimal_token3] = ACTIONS(1746), + [aux_sym__immediate_decimal_token4] = ACTIONS(1746), + [anon_sym_err_GT] = ACTIONS(1833), + [anon_sym_out_GT] = ACTIONS(1833), + [anon_sym_e_GT] = ACTIONS(1833), + [anon_sym_o_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT] = ACTIONS(1833), + [anon_sym_err_GT_GT] = ACTIONS(1831), + [anon_sym_out_GT_GT] = ACTIONS(1831), + [anon_sym_e_GT_GT] = ACTIONS(1831), + [anon_sym_o_GT_GT] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1831), [anon_sym_POUND] = ACTIONS(3), }, [STATE(424)] = { + [sym__expr_parenthesized_immediate] = STATE(745), + [sym__immediate_decimal] = STATE(746), + [sym_val_variable] = STATE(745), [sym_comment] = STATE(424), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_EQ_GT] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1545), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1835), + [sym__newline] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_err_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_GT_PIPE] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1835), + [anon_sym_RPAREN] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1837), + [anon_sym_DASH2] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_STAR2] = ACTIONS(1837), + [anon_sym_and2] = ACTIONS(1835), + [anon_sym_xor2] = ACTIONS(1835), + [anon_sym_or2] = ACTIONS(1835), + [anon_sym_not_DASHin2] = ACTIONS(1835), + [anon_sym_has2] = ACTIONS(1835), + [anon_sym_not_DASHhas2] = ACTIONS(1835), + [anon_sym_starts_DASHwith2] = ACTIONS(1835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1835), + [anon_sym_ends_DASHwith2] = ACTIONS(1835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1835), + [anon_sym_EQ_EQ2] = ACTIONS(1835), + [anon_sym_BANG_EQ2] = ACTIONS(1835), + [anon_sym_LT2] = ACTIONS(1837), + [anon_sym_LT_EQ2] = ACTIONS(1835), + [anon_sym_GT_EQ2] = ACTIONS(1835), + [anon_sym_EQ_TILDE2] = ACTIONS(1835), + [anon_sym_BANG_TILDE2] = ACTIONS(1835), + [anon_sym_like2] = ACTIONS(1835), + [anon_sym_not_DASHlike2] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_STAR_STAR2] = ACTIONS(1835), + [anon_sym_PLUS_PLUS2] = ACTIONS(1835), + [anon_sym_SLASH2] = ACTIONS(1837), + [anon_sym_mod2] = ACTIONS(1835), + [anon_sym_SLASH_SLASH2] = ACTIONS(1835), + [anon_sym_PLUS2] = ACTIONS(1837), + [anon_sym_bit_DASHshl2] = ACTIONS(1835), + [anon_sym_bit_DASHshr2] = ACTIONS(1835), + [anon_sym_bit_DASHand2] = ACTIONS(1835), + [anon_sym_bit_DASHxor2] = ACTIONS(1835), + [anon_sym_bit_DASHor2] = ACTIONS(1835), + [aux_sym__immediate_decimal_token1] = ACTIONS(1805), + [aux_sym__immediate_decimal_token2] = ACTIONS(1805), + [aux_sym__immediate_decimal_token3] = ACTIONS(1746), + [aux_sym__immediate_decimal_token4] = ACTIONS(1746), + [anon_sym_err_GT] = ACTIONS(1837), + [anon_sym_out_GT] = ACTIONS(1837), + [anon_sym_e_GT] = ACTIONS(1837), + [anon_sym_o_GT] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT] = ACTIONS(1837), + [anon_sym_err_GT_GT] = ACTIONS(1835), + [anon_sym_out_GT_GT] = ACTIONS(1835), + [anon_sym_e_GT_GT] = ACTIONS(1835), + [anon_sym_o_GT_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1835), [anon_sym_POUND] = ACTIONS(3), }, [STATE(425)] = { + [sym__expr_parenthesized_immediate] = STATE(747), + [sym__immediate_decimal] = STATE(748), + [sym_val_variable] = STATE(747), [sym_comment] = STATE(425), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1700), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_in] = ACTIONS(1839), + [sym__newline] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_PIPE] = ACTIONS(1839), + [anon_sym_err_GT_PIPE] = ACTIONS(1839), + [anon_sym_out_GT_PIPE] = ACTIONS(1839), + [anon_sym_e_GT_PIPE] = ACTIONS(1839), + [anon_sym_o_GT_PIPE] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1839), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1841), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_STAR2] = ACTIONS(1841), + [anon_sym_and2] = ACTIONS(1839), + [anon_sym_xor2] = ACTIONS(1839), + [anon_sym_or2] = ACTIONS(1839), + [anon_sym_not_DASHin2] = ACTIONS(1839), + [anon_sym_has2] = ACTIONS(1839), + [anon_sym_not_DASHhas2] = ACTIONS(1839), + [anon_sym_starts_DASHwith2] = ACTIONS(1839), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1839), + [anon_sym_ends_DASHwith2] = ACTIONS(1839), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1839), + [anon_sym_EQ_EQ2] = ACTIONS(1839), + [anon_sym_BANG_EQ2] = ACTIONS(1839), + [anon_sym_LT2] = ACTIONS(1841), + [anon_sym_LT_EQ2] = ACTIONS(1839), + [anon_sym_GT_EQ2] = ACTIONS(1839), + [anon_sym_EQ_TILDE2] = ACTIONS(1839), + [anon_sym_BANG_TILDE2] = ACTIONS(1839), + [anon_sym_like2] = ACTIONS(1839), + [anon_sym_not_DASHlike2] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(1740), + [anon_sym_STAR_STAR2] = ACTIONS(1839), + [anon_sym_PLUS_PLUS2] = ACTIONS(1839), + [anon_sym_SLASH2] = ACTIONS(1841), + [anon_sym_mod2] = ACTIONS(1839), + [anon_sym_SLASH_SLASH2] = ACTIONS(1839), + [anon_sym_PLUS2] = ACTIONS(1841), + [anon_sym_bit_DASHshl2] = ACTIONS(1839), + [anon_sym_bit_DASHshr2] = ACTIONS(1839), + [anon_sym_bit_DASHand2] = ACTIONS(1839), + [anon_sym_bit_DASHxor2] = ACTIONS(1839), + [anon_sym_bit_DASHor2] = ACTIONS(1839), + [aux_sym__immediate_decimal_token1] = ACTIONS(1805), + [aux_sym__immediate_decimal_token2] = ACTIONS(1805), + [aux_sym__immediate_decimal_token3] = ACTIONS(1746), + [aux_sym__immediate_decimal_token4] = ACTIONS(1746), + [anon_sym_err_GT] = ACTIONS(1841), + [anon_sym_out_GT] = ACTIONS(1841), + [anon_sym_e_GT] = ACTIONS(1841), + [anon_sym_o_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT] = ACTIONS(1841), + [anon_sym_err_GT_GT] = ACTIONS(1839), + [anon_sym_out_GT_GT] = ACTIONS(1839), + [anon_sym_e_GT_GT] = ACTIONS(1839), + [anon_sym_o_GT_GT] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1839), [anon_sym_POUND] = ACTIONS(3), }, [STATE(426)] = { [sym_comment] = STATE(426), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_EQ_GT] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), + [ts_builtin_sym_end] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1690), + [anon_sym_PLUS_EQ] = ACTIONS(1692), + [anon_sym_DASH_EQ] = ACTIONS(1692), + [anon_sym_STAR_EQ] = ACTIONS(1692), + [anon_sym_SLASH_EQ] = ACTIONS(1692), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1692), + [anon_sym_in] = ACTIONS(1692), + [sym__newline] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_err_GT_PIPE] = ACTIONS(1692), + [anon_sym_out_GT_PIPE] = ACTIONS(1692), + [anon_sym_e_GT_PIPE] = ACTIONS(1692), + [anon_sym_o_GT_PIPE] = ACTIONS(1692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1692), + [anon_sym_GT2] = ACTIONS(1690), + [anon_sym_DASH2] = ACTIONS(1690), + [anon_sym_STAR2] = ACTIONS(1690), + [anon_sym_and2] = ACTIONS(1692), + [anon_sym_xor2] = ACTIONS(1692), + [anon_sym_or2] = ACTIONS(1692), + [anon_sym_not_DASHin2] = ACTIONS(1692), + [anon_sym_has2] = ACTIONS(1692), + [anon_sym_not_DASHhas2] = ACTIONS(1692), + [anon_sym_starts_DASHwith2] = ACTIONS(1692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1692), + [anon_sym_ends_DASHwith2] = ACTIONS(1692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1692), + [anon_sym_EQ_EQ2] = ACTIONS(1692), + [anon_sym_BANG_EQ2] = ACTIONS(1692), + [anon_sym_LT2] = ACTIONS(1690), + [anon_sym_LT_EQ2] = ACTIONS(1692), + [anon_sym_GT_EQ2] = ACTIONS(1692), + [anon_sym_EQ_TILDE2] = ACTIONS(1692), + [anon_sym_BANG_TILDE2] = ACTIONS(1692), + [anon_sym_like2] = ACTIONS(1692), + [anon_sym_not_DASHlike2] = ACTIONS(1692), + [anon_sym_STAR_STAR2] = ACTIONS(1692), + [anon_sym_PLUS_PLUS2] = ACTIONS(1690), + [anon_sym_SLASH2] = ACTIONS(1690), + [anon_sym_mod2] = ACTIONS(1692), + [anon_sym_SLASH_SLASH2] = ACTIONS(1692), + [anon_sym_PLUS2] = ACTIONS(1690), + [anon_sym_bit_DASHshl2] = ACTIONS(1692), + [anon_sym_bit_DASHshr2] = ACTIONS(1692), + [anon_sym_bit_DASHand2] = ACTIONS(1692), + [anon_sym_bit_DASHxor2] = ACTIONS(1692), + [anon_sym_bit_DASHor2] = ACTIONS(1692), + [anon_sym_DOT_DOT2] = ACTIONS(1690), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1692), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1692), + [anon_sym_DOT2] = ACTIONS(1690), + [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(1692), + [anon_sym_out_GT_GT] = ACTIONS(1692), + [anon_sym_e_GT_GT] = ACTIONS(1692), + [anon_sym_o_GT_GT] = ACTIONS(1692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(427)] = { [sym_comment] = STATE(427), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_EQ_GT] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1472), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1688), + [anon_sym_GT2] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_EQ_GT] = ACTIONS(1688), + [anon_sym_STAR2] = ACTIONS(1686), + [anon_sym_and2] = ACTIONS(1688), + [anon_sym_xor2] = ACTIONS(1688), + [anon_sym_or2] = ACTIONS(1688), + [anon_sym_not_DASHin2] = ACTIONS(1688), + [anon_sym_has2] = ACTIONS(1688), + [anon_sym_not_DASHhas2] = ACTIONS(1688), + [anon_sym_starts_DASHwith2] = ACTIONS(1688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1688), + [anon_sym_ends_DASHwith2] = ACTIONS(1688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1688), + [anon_sym_EQ_EQ2] = ACTIONS(1688), + [anon_sym_BANG_EQ2] = ACTIONS(1688), + [anon_sym_LT2] = ACTIONS(1686), + [anon_sym_LT_EQ2] = ACTIONS(1688), + [anon_sym_GT_EQ2] = ACTIONS(1688), + [anon_sym_EQ_TILDE2] = ACTIONS(1688), + [anon_sym_BANG_TILDE2] = ACTIONS(1688), + [anon_sym_like2] = ACTIONS(1688), + [anon_sym_not_DASHlike2] = ACTIONS(1688), + [anon_sym_STAR_STAR2] = ACTIONS(1688), + [anon_sym_PLUS_PLUS2] = ACTIONS(1688), + [anon_sym_SLASH2] = ACTIONS(1686), + [anon_sym_mod2] = ACTIONS(1688), + [anon_sym_SLASH_SLASH2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_bit_DASHshl2] = ACTIONS(1688), + [anon_sym_bit_DASHshr2] = ACTIONS(1688), + [anon_sym_bit_DASHand2] = ACTIONS(1688), + [anon_sym_bit_DASHxor2] = ACTIONS(1688), + [anon_sym_bit_DASHor2] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_COLON2] = ACTIONS(1688), + [anon_sym_QMARK2] = ACTIONS(1688), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_DOT2] = ACTIONS(1686), + [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(3), }, [STATE(428)] = { + [sym__expr_parenthesized_immediate] = STATE(953), + [sym__immediate_decimal] = STATE(954), + [sym_val_variable] = STATE(953), [sym_comment] = STATE(428), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_EQ_GT] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1476), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_COLON2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [sym__newline] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_err_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_GT_PIPE] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1791), + [anon_sym_GT2] = ACTIONS(1738), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1738), + [anon_sym_and2] = ACTIONS(1734), + [anon_sym_xor2] = ACTIONS(1734), + [anon_sym_or2] = ACTIONS(1734), + [anon_sym_not_DASHin2] = ACTIONS(1734), + [anon_sym_has2] = ACTIONS(1734), + [anon_sym_not_DASHhas2] = ACTIONS(1734), + [anon_sym_starts_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1734), + [anon_sym_ends_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1734), + [anon_sym_EQ_EQ2] = ACTIONS(1734), + [anon_sym_BANG_EQ2] = ACTIONS(1734), + [anon_sym_LT2] = ACTIONS(1738), + [anon_sym_LT_EQ2] = ACTIONS(1734), + [anon_sym_GT_EQ2] = ACTIONS(1734), + [anon_sym_EQ_TILDE2] = ACTIONS(1734), + [anon_sym_BANG_TILDE2] = ACTIONS(1734), + [anon_sym_like2] = ACTIONS(1734), + [anon_sym_not_DASHlike2] = ACTIONS(1734), + [anon_sym_LPAREN2] = ACTIONS(1793), + [anon_sym_STAR_STAR2] = ACTIONS(1734), + [anon_sym_PLUS_PLUS2] = ACTIONS(1734), + [anon_sym_SLASH2] = ACTIONS(1738), + [anon_sym_mod2] = ACTIONS(1734), + [anon_sym_SLASH_SLASH2] = ACTIONS(1734), + [anon_sym_PLUS2] = ACTIONS(1738), + [anon_sym_bit_DASHshl2] = ACTIONS(1734), + [anon_sym_bit_DASHshr2] = ACTIONS(1734), + [anon_sym_bit_DASHand2] = ACTIONS(1734), + [anon_sym_bit_DASHxor2] = ACTIONS(1734), + [anon_sym_bit_DASHor2] = ACTIONS(1734), + [anon_sym_DOT] = ACTIONS(1843), + [aux_sym__immediate_decimal_token1] = ACTIONS(1797), + [aux_sym__immediate_decimal_token2] = ACTIONS(1797), + [aux_sym__immediate_decimal_token3] = ACTIONS(1799), + [aux_sym__immediate_decimal_token4] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1738), + [anon_sym_out_GT] = ACTIONS(1738), + [anon_sym_e_GT] = ACTIONS(1738), + [anon_sym_o_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT] = ACTIONS(1738), + [anon_sym_err_GT_GT] = ACTIONS(1734), + [anon_sym_out_GT_GT] = ACTIONS(1734), + [anon_sym_e_GT_GT] = ACTIONS(1734), + [anon_sym_o_GT_GT] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(429)] = { [sym_comment] = STATE(429), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_EQ_GT] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1516), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_COLON2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [anon_sym_in] = ACTIONS(1682), + [sym__newline] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_err_GT_PIPE] = ACTIONS(1682), + [anon_sym_out_GT_PIPE] = ACTIONS(1682), + [anon_sym_e_GT_PIPE] = ACTIONS(1682), + [anon_sym_o_GT_PIPE] = ACTIONS(1682), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1682), + [anon_sym_GT2] = ACTIONS(1680), + [anon_sym_DASH2] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_EQ_GT] = ACTIONS(1682), + [anon_sym_STAR2] = ACTIONS(1680), + [anon_sym_and2] = ACTIONS(1682), + [anon_sym_xor2] = ACTIONS(1682), + [anon_sym_or2] = ACTIONS(1682), + [anon_sym_not_DASHin2] = ACTIONS(1682), + [anon_sym_has2] = ACTIONS(1682), + [anon_sym_not_DASHhas2] = ACTIONS(1682), + [anon_sym_starts_DASHwith2] = ACTIONS(1682), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1682), + [anon_sym_ends_DASHwith2] = ACTIONS(1682), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1682), + [anon_sym_EQ_EQ2] = ACTIONS(1682), + [anon_sym_BANG_EQ2] = ACTIONS(1682), + [anon_sym_LT2] = ACTIONS(1680), + [anon_sym_LT_EQ2] = ACTIONS(1682), + [anon_sym_GT_EQ2] = ACTIONS(1682), + [anon_sym_EQ_TILDE2] = ACTIONS(1682), + [anon_sym_BANG_TILDE2] = ACTIONS(1682), + [anon_sym_like2] = ACTIONS(1682), + [anon_sym_not_DASHlike2] = ACTIONS(1682), + [anon_sym_STAR_STAR2] = ACTIONS(1682), + [anon_sym_PLUS_PLUS2] = ACTIONS(1682), + [anon_sym_SLASH2] = ACTIONS(1680), + [anon_sym_mod2] = ACTIONS(1682), + [anon_sym_SLASH_SLASH2] = ACTIONS(1682), + [anon_sym_PLUS2] = ACTIONS(1680), + [anon_sym_bit_DASHshl2] = ACTIONS(1682), + [anon_sym_bit_DASHshr2] = ACTIONS(1682), + [anon_sym_bit_DASHand2] = ACTIONS(1682), + [anon_sym_bit_DASHxor2] = ACTIONS(1682), + [anon_sym_bit_DASHor2] = ACTIONS(1682), + [anon_sym_DOT_DOT2] = ACTIONS(1680), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), + [anon_sym_COLON2] = ACTIONS(1682), + [anon_sym_QMARK2] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_DOT2] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1680), + [anon_sym_out_GT] = ACTIONS(1680), + [anon_sym_e_GT] = ACTIONS(1680), + [anon_sym_o_GT] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT] = ACTIONS(1680), + [anon_sym_err_GT_GT] = ACTIONS(1682), + [anon_sym_out_GT_GT] = ACTIONS(1682), + [anon_sym_e_GT_GT] = ACTIONS(1682), + [anon_sym_o_GT_GT] = ACTIONS(1682), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), [anon_sym_POUND] = ACTIONS(3), }, [STATE(430)] = { - [sym__expr_parenthesized_immediate] = STATE(929), - [sym__immediate_decimal] = STATE(934), - [sym_val_variable] = STATE(929), + [sym__expr_parenthesized_immediate] = STATE(1331), + [sym__immediate_decimal] = STATE(1005), + [sym_val_variable] = STATE(1331), [sym_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1702), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [sym__newline] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_err_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_GT_PIPE] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1791), + [anon_sym_GT2] = ACTIONS(1738), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1738), + [anon_sym_and2] = ACTIONS(1734), + [anon_sym_xor2] = ACTIONS(1734), + [anon_sym_or2] = ACTIONS(1734), + [anon_sym_not_DASHin2] = ACTIONS(1734), + [anon_sym_has2] = ACTIONS(1734), + [anon_sym_not_DASHhas2] = ACTIONS(1734), + [anon_sym_starts_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1734), + [anon_sym_ends_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1734), + [anon_sym_EQ_EQ2] = ACTIONS(1734), + [anon_sym_BANG_EQ2] = ACTIONS(1734), + [anon_sym_LT2] = ACTIONS(1738), + [anon_sym_LT_EQ2] = ACTIONS(1734), + [anon_sym_GT_EQ2] = ACTIONS(1734), + [anon_sym_EQ_TILDE2] = ACTIONS(1734), + [anon_sym_BANG_TILDE2] = ACTIONS(1734), + [anon_sym_like2] = ACTIONS(1734), + [anon_sym_not_DASHlike2] = ACTIONS(1734), + [anon_sym_LPAREN2] = ACTIONS(1793), + [anon_sym_STAR_STAR2] = ACTIONS(1734), + [anon_sym_PLUS_PLUS2] = ACTIONS(1734), + [anon_sym_SLASH2] = ACTIONS(1738), + [anon_sym_mod2] = ACTIONS(1734), + [anon_sym_SLASH_SLASH2] = ACTIONS(1734), + [anon_sym_PLUS2] = ACTIONS(1738), + [anon_sym_bit_DASHshl2] = ACTIONS(1734), + [anon_sym_bit_DASHshr2] = ACTIONS(1734), + [anon_sym_bit_DASHand2] = ACTIONS(1734), + [anon_sym_bit_DASHxor2] = ACTIONS(1734), + [anon_sym_bit_DASHor2] = ACTIONS(1734), + [aux_sym__immediate_decimal_token1] = ACTIONS(1845), + [aux_sym__immediate_decimal_token2] = ACTIONS(1845), + [aux_sym__immediate_decimal_token3] = ACTIONS(1847), + [aux_sym__immediate_decimal_token4] = ACTIONS(1847), + [anon_sym_err_GT] = ACTIONS(1738), + [anon_sym_out_GT] = ACTIONS(1738), + [anon_sym_e_GT] = ACTIONS(1738), + [anon_sym_o_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT] = ACTIONS(1738), + [anon_sym_err_GT_GT] = ACTIONS(1734), + [anon_sym_out_GT_GT] = ACTIONS(1734), + [anon_sym_e_GT_GT] = ACTIONS(1734), + [anon_sym_o_GT_GT] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1734), + [sym__unquoted_pattern] = ACTIONS(1774), [anon_sym_POUND] = ACTIONS(3), }, [STATE(431)] = { + [sym_path] = STATE(463), [sym_comment] = STATE(431), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1704), - [anon_sym_DASH_EQ] = ACTIONS(1704), - [anon_sym_STAR_EQ] = ACTIONS(1704), - [anon_sym_SLASH_EQ] = ACTIONS(1704), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1704), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [aux_sym__where_predicate_lhs_repeat1] = STATE(431), + [anon_sym_in] = ACTIONS(1644), + [sym__newline] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_err_GT_PIPE] = ACTIONS(1644), + [anon_sym_out_GT_PIPE] = ACTIONS(1644), + [anon_sym_e_GT_PIPE] = ACTIONS(1644), + [anon_sym_o_GT_PIPE] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_GT2] = ACTIONS(1642), + [anon_sym_DASH2] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_EQ_GT] = ACTIONS(1644), + [anon_sym_STAR2] = ACTIONS(1642), + [anon_sym_and2] = ACTIONS(1644), + [anon_sym_xor2] = ACTIONS(1644), + [anon_sym_or2] = ACTIONS(1644), + [anon_sym_not_DASHin2] = ACTIONS(1644), + [anon_sym_has2] = ACTIONS(1644), + [anon_sym_not_DASHhas2] = ACTIONS(1644), + [anon_sym_starts_DASHwith2] = ACTIONS(1644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1644), + [anon_sym_ends_DASHwith2] = ACTIONS(1644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1644), + [anon_sym_EQ_EQ2] = ACTIONS(1644), + [anon_sym_BANG_EQ2] = ACTIONS(1644), + [anon_sym_LT2] = ACTIONS(1642), + [anon_sym_LT_EQ2] = ACTIONS(1644), + [anon_sym_GT_EQ2] = ACTIONS(1644), + [anon_sym_EQ_TILDE2] = ACTIONS(1644), + [anon_sym_BANG_TILDE2] = ACTIONS(1644), + [anon_sym_like2] = ACTIONS(1644), + [anon_sym_not_DASHlike2] = ACTIONS(1644), + [anon_sym_STAR_STAR2] = ACTIONS(1644), + [anon_sym_PLUS_PLUS2] = ACTIONS(1644), + [anon_sym_SLASH2] = ACTIONS(1642), + [anon_sym_mod2] = ACTIONS(1644), + [anon_sym_SLASH_SLASH2] = ACTIONS(1644), + [anon_sym_PLUS2] = ACTIONS(1642), + [anon_sym_bit_DASHshl2] = ACTIONS(1644), + [anon_sym_bit_DASHshr2] = ACTIONS(1644), + [anon_sym_bit_DASHand2] = ACTIONS(1644), + [anon_sym_bit_DASHxor2] = ACTIONS(1644), + [anon_sym_bit_DASHor2] = ACTIONS(1644), + [anon_sym_DOT_DOT2] = ACTIONS(1642), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1644), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1644), + [anon_sym_COLON2] = ACTIONS(1644), + [anon_sym_DOT2] = ACTIONS(1849), + [anon_sym_err_GT] = ACTIONS(1642), + [anon_sym_out_GT] = ACTIONS(1642), + [anon_sym_e_GT] = ACTIONS(1642), + [anon_sym_o_GT] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT] = ACTIONS(1642), + [anon_sym_err_GT_GT] = ACTIONS(1644), + [anon_sym_out_GT_GT] = ACTIONS(1644), + [anon_sym_e_GT_GT] = ACTIONS(1644), + [anon_sym_o_GT_GT] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(432)] = { [sym_comment] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(1522), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1696), + [sym__newline] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_err_GT_PIPE] = ACTIONS(1696), + [anon_sym_out_GT_PIPE] = ACTIONS(1696), + [anon_sym_e_GT_PIPE] = ACTIONS(1696), + [anon_sym_o_GT_PIPE] = ACTIONS(1696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1696), + [anon_sym_GT2] = ACTIONS(1694), + [anon_sym_DASH2] = ACTIONS(1694), + [anon_sym_STAR2] = ACTIONS(1694), + [anon_sym_and2] = ACTIONS(1696), + [anon_sym_xor2] = ACTIONS(1696), + [anon_sym_or2] = ACTIONS(1696), + [anon_sym_not_DASHin2] = ACTIONS(1696), + [anon_sym_has2] = ACTIONS(1696), + [anon_sym_not_DASHhas2] = ACTIONS(1696), + [anon_sym_starts_DASHwith2] = ACTIONS(1696), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1696), + [anon_sym_ends_DASHwith2] = ACTIONS(1696), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1696), + [anon_sym_EQ_EQ2] = ACTIONS(1696), + [anon_sym_BANG_EQ2] = ACTIONS(1696), + [anon_sym_LT2] = ACTIONS(1694), + [anon_sym_LT_EQ2] = ACTIONS(1696), + [anon_sym_GT_EQ2] = ACTIONS(1696), + [anon_sym_EQ_TILDE2] = ACTIONS(1696), + [anon_sym_BANG_TILDE2] = ACTIONS(1696), + [anon_sym_like2] = ACTIONS(1696), + [anon_sym_not_DASHlike2] = ACTIONS(1696), + [anon_sym_STAR_STAR2] = ACTIONS(1696), + [anon_sym_PLUS_PLUS2] = ACTIONS(1694), + [anon_sym_SLASH2] = ACTIONS(1694), + [anon_sym_mod2] = ACTIONS(1696), + [anon_sym_SLASH_SLASH2] = ACTIONS(1696), + [anon_sym_PLUS2] = ACTIONS(1694), + [anon_sym_bit_DASHshl2] = ACTIONS(1696), + [anon_sym_bit_DASHshr2] = ACTIONS(1696), + [anon_sym_bit_DASHand2] = ACTIONS(1696), + [anon_sym_bit_DASHxor2] = ACTIONS(1696), + [anon_sym_bit_DASHor2] = ACTIONS(1696), + [anon_sym_DOT_DOT2] = ACTIONS(1694), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1696), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1696), + [anon_sym_DOT2] = ACTIONS(1694), + [anon_sym_err_GT] = ACTIONS(1694), + [anon_sym_out_GT] = ACTIONS(1694), + [anon_sym_e_GT] = ACTIONS(1694), + [anon_sym_o_GT] = ACTIONS(1694), + [anon_sym_err_PLUSout_GT] = ACTIONS(1694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1694), + [anon_sym_o_PLUSe_GT] = ACTIONS(1694), + [anon_sym_e_PLUSo_GT] = ACTIONS(1694), + [anon_sym_err_GT_GT] = ACTIONS(1696), + [anon_sym_out_GT_GT] = ACTIONS(1696), + [anon_sym_e_GT_GT] = ACTIONS(1696), + [anon_sym_o_GT_GT] = ACTIONS(1696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1696), [anon_sym_POUND] = ACTIONS(3), }, [STATE(433)] = { [sym_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1710), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1712), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), + [anon_sym_in] = ACTIONS(1702), + [sym__newline] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_err_GT_PIPE] = ACTIONS(1702), + [anon_sym_out_GT_PIPE] = ACTIONS(1702), + [anon_sym_e_GT_PIPE] = ACTIONS(1702), + [anon_sym_o_GT_PIPE] = ACTIONS(1702), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1702), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1702), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1702), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1702), + [anon_sym_GT2] = ACTIONS(1700), + [anon_sym_DASH2] = ACTIONS(1702), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_EQ_GT] = ACTIONS(1702), + [anon_sym_STAR2] = ACTIONS(1700), + [anon_sym_and2] = ACTIONS(1702), + [anon_sym_xor2] = ACTIONS(1702), + [anon_sym_or2] = ACTIONS(1702), + [anon_sym_not_DASHin2] = ACTIONS(1702), + [anon_sym_has2] = ACTIONS(1702), + [anon_sym_not_DASHhas2] = ACTIONS(1702), + [anon_sym_starts_DASHwith2] = ACTIONS(1702), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1702), + [anon_sym_ends_DASHwith2] = ACTIONS(1702), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1702), + [anon_sym_EQ_EQ2] = ACTIONS(1702), + [anon_sym_BANG_EQ2] = ACTIONS(1702), + [anon_sym_LT2] = ACTIONS(1700), + [anon_sym_LT_EQ2] = ACTIONS(1702), + [anon_sym_GT_EQ2] = ACTIONS(1702), + [anon_sym_EQ_TILDE2] = ACTIONS(1702), + [anon_sym_BANG_TILDE2] = ACTIONS(1702), + [anon_sym_like2] = ACTIONS(1702), + [anon_sym_not_DASHlike2] = ACTIONS(1702), + [anon_sym_STAR_STAR2] = ACTIONS(1702), + [anon_sym_PLUS_PLUS2] = ACTIONS(1702), + [anon_sym_SLASH2] = ACTIONS(1700), + [anon_sym_mod2] = ACTIONS(1702), + [anon_sym_SLASH_SLASH2] = ACTIONS(1702), + [anon_sym_PLUS2] = ACTIONS(1700), + [anon_sym_bit_DASHshl2] = ACTIONS(1702), + [anon_sym_bit_DASHshr2] = ACTIONS(1702), + [anon_sym_bit_DASHand2] = ACTIONS(1702), + [anon_sym_bit_DASHxor2] = ACTIONS(1702), + [anon_sym_bit_DASHor2] = ACTIONS(1702), + [anon_sym_DOT_DOT2] = ACTIONS(1700), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1702), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1702), + [anon_sym_COLON2] = ACTIONS(1702), + [anon_sym_QMARK2] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_DOT2] = ACTIONS(1700), + [anon_sym_err_GT] = ACTIONS(1700), + [anon_sym_out_GT] = ACTIONS(1700), + [anon_sym_e_GT] = ACTIONS(1700), + [anon_sym_o_GT] = ACTIONS(1700), + [anon_sym_err_PLUSout_GT] = ACTIONS(1700), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1700), + [anon_sym_o_PLUSe_GT] = ACTIONS(1700), + [anon_sym_e_PLUSo_GT] = ACTIONS(1700), + [anon_sym_err_GT_GT] = ACTIONS(1702), + [anon_sym_out_GT_GT] = ACTIONS(1702), + [anon_sym_e_GT_GT] = ACTIONS(1702), + [anon_sym_o_GT_GT] = ACTIONS(1702), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1702), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1702), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1702), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1702), [anon_sym_POUND] = ACTIONS(3), }, [STATE(434)] = { + [sym_cell_path] = STATE(495), + [sym_path] = STATE(463), [sym_comment] = STATE(434), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_PLUS_EQ] = ACTIONS(1716), - [anon_sym_DASH_EQ] = ACTIONS(1716), - [anon_sym_STAR_EQ] = ACTIONS(1716), - [anon_sym_SLASH_EQ] = ACTIONS(1716), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [aux_sym__where_predicate_lhs_repeat1] = STATE(441), + [anon_sym_in] = ACTIONS(1590), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_EQ_GT] = ACTIONS(1590), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1590), + [anon_sym_xor2] = ACTIONS(1590), + [anon_sym_or2] = ACTIONS(1590), + [anon_sym_not_DASHin2] = ACTIONS(1590), + [anon_sym_has2] = ACTIONS(1590), + [anon_sym_not_DASHhas2] = ACTIONS(1590), + [anon_sym_starts_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1590), + [anon_sym_ends_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1590), + [anon_sym_EQ_EQ2] = ACTIONS(1590), + [anon_sym_BANG_EQ2] = ACTIONS(1590), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1590), + [anon_sym_GT_EQ2] = ACTIONS(1590), + [anon_sym_EQ_TILDE2] = ACTIONS(1590), + [anon_sym_BANG_TILDE2] = ACTIONS(1590), + [anon_sym_like2] = ACTIONS(1590), + [anon_sym_not_DASHlike2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1590), + [anon_sym_PLUS_PLUS2] = ACTIONS(1590), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1590), + [anon_sym_SLASH_SLASH2] = ACTIONS(1590), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1590), + [anon_sym_bit_DASHshr2] = ACTIONS(1590), + [anon_sym_bit_DASHand2] = ACTIONS(1590), + [anon_sym_bit_DASHxor2] = ACTIONS(1590), + [anon_sym_bit_DASHor2] = ACTIONS(1590), + [anon_sym_DOT_DOT2] = ACTIONS(1588), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1590), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1590), + [anon_sym_DOT2] = ACTIONS(1811), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), [anon_sym_POUND] = ACTIONS(3), }, [STATE(435)] = { [sym_comment] = STATE(435), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1718), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), + [ts_builtin_sym_end] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1657), + [anon_sym_PLUS_EQ] = ACTIONS(1659), + [anon_sym_DASH_EQ] = ACTIONS(1659), + [anon_sym_STAR_EQ] = ACTIONS(1659), + [anon_sym_SLASH_EQ] = ACTIONS(1659), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [sym__newline] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_err_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_GT_PIPE] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1659), + [anon_sym_GT2] = ACTIONS(1657), + [anon_sym_DASH2] = ACTIONS(1657), + [anon_sym_STAR2] = ACTIONS(1657), + [anon_sym_and2] = ACTIONS(1659), + [anon_sym_xor2] = ACTIONS(1659), + [anon_sym_or2] = ACTIONS(1659), + [anon_sym_not_DASHin2] = ACTIONS(1659), + [anon_sym_has2] = ACTIONS(1659), + [anon_sym_not_DASHhas2] = ACTIONS(1659), + [anon_sym_starts_DASHwith2] = ACTIONS(1659), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1659), + [anon_sym_ends_DASHwith2] = ACTIONS(1659), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1659), + [anon_sym_EQ_EQ2] = ACTIONS(1659), + [anon_sym_BANG_EQ2] = ACTIONS(1659), + [anon_sym_LT2] = ACTIONS(1657), + [anon_sym_LT_EQ2] = ACTIONS(1659), + [anon_sym_GT_EQ2] = ACTIONS(1659), + [anon_sym_EQ_TILDE2] = ACTIONS(1659), + [anon_sym_BANG_TILDE2] = ACTIONS(1659), + [anon_sym_like2] = ACTIONS(1659), + [anon_sym_not_DASHlike2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1659), + [anon_sym_PLUS_PLUS2] = ACTIONS(1657), + [anon_sym_SLASH2] = ACTIONS(1657), + [anon_sym_mod2] = ACTIONS(1659), + [anon_sym_SLASH_SLASH2] = ACTIONS(1659), + [anon_sym_PLUS2] = ACTIONS(1657), + [anon_sym_bit_DASHshl2] = ACTIONS(1659), + [anon_sym_bit_DASHshr2] = ACTIONS(1659), + [anon_sym_bit_DASHand2] = ACTIONS(1659), + [anon_sym_bit_DASHxor2] = ACTIONS(1659), + [anon_sym_bit_DASHor2] = ACTIONS(1659), + [anon_sym_DOT_DOT2] = ACTIONS(1657), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1659), + [anon_sym_DOT2] = ACTIONS(1657), + [anon_sym_err_GT] = ACTIONS(1657), + [anon_sym_out_GT] = ACTIONS(1657), + [anon_sym_e_GT] = ACTIONS(1657), + [anon_sym_o_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT] = ACTIONS(1657), + [anon_sym_err_GT_GT] = ACTIONS(1659), + [anon_sym_out_GT_GT] = ACTIONS(1659), + [anon_sym_e_GT_GT] = ACTIONS(1659), + [anon_sym_o_GT_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(3), }, [STATE(436)] = { [sym_comment] = STATE(436), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1694), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), + [anon_sym_in] = ACTIONS(1670), + [sym__newline] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_err_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_GT_PIPE] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1670), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_GT2] = ACTIONS(1668), + [anon_sym_DASH2] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_EQ_GT] = ACTIONS(1670), + [anon_sym_STAR2] = ACTIONS(1668), + [anon_sym_and2] = ACTIONS(1670), + [anon_sym_xor2] = ACTIONS(1670), + [anon_sym_or2] = ACTIONS(1670), + [anon_sym_not_DASHin2] = ACTIONS(1670), + [anon_sym_has2] = ACTIONS(1670), + [anon_sym_not_DASHhas2] = ACTIONS(1670), + [anon_sym_starts_DASHwith2] = ACTIONS(1670), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1670), + [anon_sym_ends_DASHwith2] = ACTIONS(1670), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1670), + [anon_sym_EQ_EQ2] = ACTIONS(1670), + [anon_sym_BANG_EQ2] = ACTIONS(1670), + [anon_sym_LT2] = ACTIONS(1668), + [anon_sym_LT_EQ2] = ACTIONS(1670), + [anon_sym_GT_EQ2] = ACTIONS(1670), + [anon_sym_EQ_TILDE2] = ACTIONS(1670), + [anon_sym_BANG_TILDE2] = ACTIONS(1670), + [anon_sym_like2] = ACTIONS(1670), + [anon_sym_not_DASHlike2] = ACTIONS(1670), + [anon_sym_STAR_STAR2] = ACTIONS(1670), + [anon_sym_PLUS_PLUS2] = ACTIONS(1670), + [anon_sym_SLASH2] = ACTIONS(1668), + [anon_sym_mod2] = ACTIONS(1670), + [anon_sym_SLASH_SLASH2] = ACTIONS(1670), + [anon_sym_PLUS2] = ACTIONS(1668), + [anon_sym_bit_DASHshl2] = ACTIONS(1670), + [anon_sym_bit_DASHshr2] = ACTIONS(1670), + [anon_sym_bit_DASHand2] = ACTIONS(1670), + [anon_sym_bit_DASHxor2] = ACTIONS(1670), + [anon_sym_bit_DASHor2] = ACTIONS(1670), + [anon_sym_DOT_DOT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1670), + [anon_sym_COLON2] = ACTIONS(1670), + [anon_sym_QMARK2] = ACTIONS(1670), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_DOT2] = ACTIONS(1668), + [anon_sym_err_GT] = ACTIONS(1668), + [anon_sym_out_GT] = ACTIONS(1668), + [anon_sym_e_GT] = ACTIONS(1668), + [anon_sym_o_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT] = ACTIONS(1668), + [anon_sym_err_GT_GT] = ACTIONS(1670), + [anon_sym_out_GT_GT] = ACTIONS(1670), + [anon_sym_e_GT_GT] = ACTIONS(1670), + [anon_sym_o_GT_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1670), [anon_sym_POUND] = ACTIONS(3), }, [STATE(437)] = { [sym_comment] = STATE(437), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_EQ_GT] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1522), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_COLON2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1610), + [anon_sym_in] = ACTIONS(1610), + [sym__newline] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_err_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_GT_PIPE] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(1610), + [anon_sym_GT2] = ACTIONS(1608), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_EQ_GT] = ACTIONS(1610), + [anon_sym_STAR2] = ACTIONS(1608), + [anon_sym_and2] = ACTIONS(1610), + [anon_sym_xor2] = ACTIONS(1610), + [anon_sym_or2] = ACTIONS(1610), + [anon_sym_not_DASHin2] = ACTIONS(1610), + [anon_sym_has2] = ACTIONS(1610), + [anon_sym_not_DASHhas2] = ACTIONS(1610), + [anon_sym_starts_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1610), + [anon_sym_ends_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1610), + [anon_sym_EQ_EQ2] = ACTIONS(1610), + [anon_sym_BANG_EQ2] = ACTIONS(1610), + [anon_sym_LT2] = ACTIONS(1608), + [anon_sym_LT_EQ2] = ACTIONS(1610), + [anon_sym_GT_EQ2] = ACTIONS(1610), + [anon_sym_EQ_TILDE2] = ACTIONS(1610), + [anon_sym_BANG_TILDE2] = ACTIONS(1610), + [anon_sym_like2] = ACTIONS(1610), + [anon_sym_not_DASHlike2] = ACTIONS(1610), + [anon_sym_STAR_STAR2] = ACTIONS(1610), + [anon_sym_PLUS_PLUS2] = ACTIONS(1610), + [anon_sym_SLASH2] = ACTIONS(1608), + [anon_sym_mod2] = ACTIONS(1610), + [anon_sym_SLASH_SLASH2] = ACTIONS(1610), + [anon_sym_PLUS2] = ACTIONS(1608), + [anon_sym_bit_DASHshl2] = ACTIONS(1610), + [anon_sym_bit_DASHshr2] = ACTIONS(1610), + [anon_sym_bit_DASHand2] = ACTIONS(1610), + [anon_sym_bit_DASHxor2] = ACTIONS(1610), + [anon_sym_bit_DASHor2] = ACTIONS(1610), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_COLON2] = ACTIONS(1610), + [anon_sym_QMARK2] = ACTIONS(1852), + [anon_sym_DOT2] = ACTIONS(1608), + [anon_sym_err_GT] = ACTIONS(1608), + [anon_sym_out_GT] = ACTIONS(1608), + [anon_sym_e_GT] = ACTIONS(1608), + [anon_sym_o_GT] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT] = ACTIONS(1608), + [anon_sym_err_GT_GT] = ACTIONS(1610), + [anon_sym_out_GT_GT] = ACTIONS(1610), + [anon_sym_e_GT_GT] = ACTIONS(1610), + [anon_sym_o_GT_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), [anon_sym_POUND] = ACTIONS(3), }, [STATE(438)] = { [sym_comment] = STATE(438), - [anon_sym_EQ] = ACTIONS(1720), - [anon_sym_PLUS_EQ] = ACTIONS(1722), - [anon_sym_DASH_EQ] = ACTIONS(1722), - [anon_sym_STAR_EQ] = ACTIONS(1722), - [anon_sym_SLASH_EQ] = ACTIONS(1722), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_EQ_GT] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1676), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1676), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_like2] = ACTIONS(1678), + [anon_sym_not_DASHlike2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1676), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1676), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_COLON2] = ACTIONS(1678), + [anon_sym_QMARK2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_DOT2] = ACTIONS(1676), + [anon_sym_err_GT] = ACTIONS(1676), + [anon_sym_out_GT] = ACTIONS(1676), + [anon_sym_e_GT] = ACTIONS(1676), + [anon_sym_o_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT] = ACTIONS(1676), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), [anon_sym_POUND] = ACTIONS(3), }, [STATE(439)] = { [sym_comment] = STATE(439), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1704), - [anon_sym_DASH_EQ] = ACTIONS(1704), - [anon_sym_STAR_EQ] = ACTIONS(1704), - [anon_sym_SLASH_EQ] = ACTIONS(1704), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1704), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(1674), + [sym__newline] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_err_GT_PIPE] = ACTIONS(1674), + [anon_sym_out_GT_PIPE] = ACTIONS(1674), + [anon_sym_e_GT_PIPE] = ACTIONS(1674), + [anon_sym_o_GT_PIPE] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_GT2] = ACTIONS(1672), + [anon_sym_DASH2] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_EQ_GT] = ACTIONS(1674), + [anon_sym_STAR2] = ACTIONS(1672), + [anon_sym_and2] = ACTIONS(1674), + [anon_sym_xor2] = ACTIONS(1674), + [anon_sym_or2] = ACTIONS(1674), + [anon_sym_not_DASHin2] = ACTIONS(1674), + [anon_sym_has2] = ACTIONS(1674), + [anon_sym_not_DASHhas2] = ACTIONS(1674), + [anon_sym_starts_DASHwith2] = ACTIONS(1674), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1674), + [anon_sym_ends_DASHwith2] = ACTIONS(1674), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1674), + [anon_sym_EQ_EQ2] = ACTIONS(1674), + [anon_sym_BANG_EQ2] = ACTIONS(1674), + [anon_sym_LT2] = ACTIONS(1672), + [anon_sym_LT_EQ2] = ACTIONS(1674), + [anon_sym_GT_EQ2] = ACTIONS(1674), + [anon_sym_EQ_TILDE2] = ACTIONS(1674), + [anon_sym_BANG_TILDE2] = ACTIONS(1674), + [anon_sym_like2] = ACTIONS(1674), + [anon_sym_not_DASHlike2] = ACTIONS(1674), + [anon_sym_STAR_STAR2] = ACTIONS(1674), + [anon_sym_PLUS_PLUS2] = ACTIONS(1674), + [anon_sym_SLASH2] = ACTIONS(1672), + [anon_sym_mod2] = ACTIONS(1674), + [anon_sym_SLASH_SLASH2] = ACTIONS(1674), + [anon_sym_PLUS2] = ACTIONS(1672), + [anon_sym_bit_DASHshl2] = ACTIONS(1674), + [anon_sym_bit_DASHshr2] = ACTIONS(1674), + [anon_sym_bit_DASHand2] = ACTIONS(1674), + [anon_sym_bit_DASHxor2] = ACTIONS(1674), + [anon_sym_bit_DASHor2] = ACTIONS(1674), + [anon_sym_DOT_DOT2] = ACTIONS(1672), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1674), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1674), + [anon_sym_COLON2] = ACTIONS(1674), + [anon_sym_QMARK2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_DOT2] = ACTIONS(1672), + [anon_sym_err_GT] = ACTIONS(1672), + [anon_sym_out_GT] = ACTIONS(1672), + [anon_sym_e_GT] = ACTIONS(1672), + [anon_sym_o_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT] = ACTIONS(1672), + [anon_sym_err_GT_GT] = ACTIONS(1674), + [anon_sym_out_GT_GT] = ACTIONS(1674), + [anon_sym_e_GT_GT] = ACTIONS(1674), + [anon_sym_o_GT_GT] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1674), [anon_sym_POUND] = ACTIONS(3), }, [STATE(440)] = { [sym_comment] = STATE(440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1748), + [anon_sym_PLUS_EQ] = ACTIONS(1854), + [anon_sym_DASH_EQ] = ACTIONS(1854), + [anon_sym_STAR_EQ] = ACTIONS(1854), + [anon_sym_SLASH_EQ] = ACTIONS(1854), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1854), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_STAR2] = ACTIONS(1750), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1750), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1750), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1750), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), + [anon_sym_COLON2] = ACTIONS(1858), + [anon_sym_err_GT] = ACTIONS(1750), + [anon_sym_out_GT] = ACTIONS(1750), + [anon_sym_e_GT] = ACTIONS(1750), + [anon_sym_o_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT] = ACTIONS(1750), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(3), }, [STATE(441)] = { + [sym_path] = STATE(463), [sym_comment] = STATE(441), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_EQ_GT] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [aux_sym__where_predicate_lhs_repeat1] = STATE(431), + [anon_sym_in] = ACTIONS(1653), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_RPAREN] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1651), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_EQ_GT] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1651), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_has2] = ACTIONS(1653), + [anon_sym_not_DASHhas2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1651), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_like2] = ACTIONS(1653), + [anon_sym_not_DASHlike2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1651), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1651), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(1651), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1653), + [anon_sym_COLON2] = ACTIONS(1653), + [anon_sym_DOT2] = ACTIONS(1811), + [anon_sym_err_GT] = ACTIONS(1651), + [anon_sym_out_GT] = ACTIONS(1651), + [anon_sym_e_GT] = ACTIONS(1651), + [anon_sym_o_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT] = ACTIONS(1651), + [anon_sym_err_GT_GT] = ACTIONS(1653), + [anon_sym_out_GT_GT] = ACTIONS(1653), + [anon_sym_e_GT_GT] = ACTIONS(1653), + [anon_sym_o_GT_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(3), }, [STATE(442)] = { + [sym__expr_parenthesized_immediate] = STATE(928), + [sym__immediate_decimal] = STATE(930), + [sym_val_variable] = STATE(928), [sym_comment] = STATE(442), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(1730), - [aux_sym__immediate_decimal_token5] = ACTIONS(1732), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [ts_builtin_sym_end] = ACTIONS(1783), + [anon_sym_in] = ACTIONS(1783), + [sym__newline] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_err_GT_PIPE] = ACTIONS(1783), + [anon_sym_out_GT_PIPE] = ACTIONS(1783), + [anon_sym_e_GT_PIPE] = ACTIONS(1783), + [anon_sym_o_GT_PIPE] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1791), + [anon_sym_GT2] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_STAR2] = ACTIONS(1785), + [anon_sym_and2] = ACTIONS(1783), + [anon_sym_xor2] = ACTIONS(1783), + [anon_sym_or2] = ACTIONS(1783), + [anon_sym_not_DASHin2] = ACTIONS(1783), + [anon_sym_has2] = ACTIONS(1783), + [anon_sym_not_DASHhas2] = ACTIONS(1783), + [anon_sym_starts_DASHwith2] = ACTIONS(1783), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1783), + [anon_sym_ends_DASHwith2] = ACTIONS(1783), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1783), + [anon_sym_EQ_EQ2] = ACTIONS(1783), + [anon_sym_BANG_EQ2] = ACTIONS(1783), + [anon_sym_LT2] = ACTIONS(1785), + [anon_sym_LT_EQ2] = ACTIONS(1783), + [anon_sym_GT_EQ2] = ACTIONS(1783), + [anon_sym_EQ_TILDE2] = ACTIONS(1783), + [anon_sym_BANG_TILDE2] = ACTIONS(1783), + [anon_sym_like2] = ACTIONS(1783), + [anon_sym_not_DASHlike2] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1793), + [anon_sym_STAR_STAR2] = ACTIONS(1783), + [anon_sym_PLUS_PLUS2] = ACTIONS(1783), + [anon_sym_SLASH2] = ACTIONS(1785), + [anon_sym_mod2] = ACTIONS(1783), + [anon_sym_SLASH_SLASH2] = ACTIONS(1783), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_bit_DASHshl2] = ACTIONS(1783), + [anon_sym_bit_DASHshr2] = ACTIONS(1783), + [anon_sym_bit_DASHand2] = ACTIONS(1783), + [anon_sym_bit_DASHxor2] = ACTIONS(1783), + [anon_sym_bit_DASHor2] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(1860), + [aux_sym__immediate_decimal_token1] = ACTIONS(1797), + [aux_sym__immediate_decimal_token2] = ACTIONS(1797), + [aux_sym__immediate_decimal_token3] = ACTIONS(1799), + [aux_sym__immediate_decimal_token4] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1783), + [anon_sym_out_GT_GT] = ACTIONS(1783), + [anon_sym_e_GT_GT] = ACTIONS(1783), + [anon_sym_o_GT_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1783), [anon_sym_POUND] = ACTIONS(3), }, [STATE(443)] = { - [sym__expr_parenthesized_immediate] = STATE(1269), - [sym__immediate_decimal] = STATE(1271), - [sym_val_variable] = STATE(1269), + [sym__expr_parenthesized_immediate] = STATE(1293), + [sym__immediate_decimal] = STATE(1008), + [sym_val_variable] = STATE(1293), [sym_comment] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [ts_builtin_sym_end] = ACTIONS(1801), + [anon_sym_in] = ACTIONS(1801), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1791), + [anon_sym_GT2] = ACTIONS(1803), + [anon_sym_DASH2] = ACTIONS(1803), + [anon_sym_STAR2] = ACTIONS(1803), + [anon_sym_and2] = ACTIONS(1801), + [anon_sym_xor2] = ACTIONS(1801), + [anon_sym_or2] = ACTIONS(1801), + [anon_sym_not_DASHin2] = ACTIONS(1801), + [anon_sym_has2] = ACTIONS(1801), + [anon_sym_not_DASHhas2] = ACTIONS(1801), + [anon_sym_starts_DASHwith2] = ACTIONS(1801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1801), + [anon_sym_ends_DASHwith2] = ACTIONS(1801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1801), + [anon_sym_EQ_EQ2] = ACTIONS(1801), + [anon_sym_BANG_EQ2] = ACTIONS(1801), + [anon_sym_LT2] = ACTIONS(1803), + [anon_sym_LT_EQ2] = ACTIONS(1801), + [anon_sym_GT_EQ2] = ACTIONS(1801), + [anon_sym_EQ_TILDE2] = ACTIONS(1801), + [anon_sym_BANG_TILDE2] = ACTIONS(1801), + [anon_sym_like2] = ACTIONS(1801), + [anon_sym_not_DASHlike2] = ACTIONS(1801), + [anon_sym_LPAREN2] = ACTIONS(1793), + [anon_sym_STAR_STAR2] = ACTIONS(1801), + [anon_sym_PLUS_PLUS2] = ACTIONS(1801), + [anon_sym_SLASH2] = ACTIONS(1803), + [anon_sym_mod2] = ACTIONS(1801), + [anon_sym_SLASH_SLASH2] = ACTIONS(1801), + [anon_sym_PLUS2] = ACTIONS(1803), + [anon_sym_bit_DASHshl2] = ACTIONS(1801), + [anon_sym_bit_DASHshr2] = ACTIONS(1801), + [anon_sym_bit_DASHand2] = ACTIONS(1801), + [anon_sym_bit_DASHxor2] = ACTIONS(1801), + [anon_sym_bit_DASHor2] = ACTIONS(1801), + [aux_sym__immediate_decimal_token1] = ACTIONS(1845), + [aux_sym__immediate_decimal_token2] = ACTIONS(1845), + [aux_sym__immediate_decimal_token3] = ACTIONS(1847), + [aux_sym__immediate_decimal_token4] = ACTIONS(1847), + [anon_sym_err_GT] = ACTIONS(1803), + [anon_sym_out_GT] = ACTIONS(1803), + [anon_sym_e_GT] = ACTIONS(1803), + [anon_sym_o_GT] = ACTIONS(1803), + [anon_sym_err_PLUSout_GT] = ACTIONS(1803), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1803), + [anon_sym_o_PLUSe_GT] = ACTIONS(1803), + [anon_sym_e_PLUSo_GT] = ACTIONS(1803), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [sym__unquoted_pattern] = ACTIONS(1819), [anon_sym_POUND] = ACTIONS(3), }, [STATE(444)] = { [sym_comment] = STATE(444), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(1740), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(769), + [sym__newline] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_err_GT_PIPE] = ACTIONS(769), + [anon_sym_out_GT_PIPE] = ACTIONS(769), + [anon_sym_e_GT_PIPE] = ACTIONS(769), + [anon_sym_o_GT_PIPE] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(769), + [anon_sym_xor2] = ACTIONS(769), + [anon_sym_or2] = ACTIONS(769), + [anon_sym_not_DASHin2] = ACTIONS(769), + [anon_sym_has2] = ACTIONS(769), + [anon_sym_not_DASHhas2] = ACTIONS(769), + [anon_sym_starts_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(769), + [anon_sym_ends_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(769), + [anon_sym_EQ_EQ2] = ACTIONS(769), + [anon_sym_BANG_EQ2] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(769), + [anon_sym_GT_EQ2] = ACTIONS(769), + [anon_sym_EQ_TILDE2] = ACTIONS(769), + [anon_sym_BANG_TILDE2] = ACTIONS(769), + [anon_sym_like2] = ACTIONS(769), + [anon_sym_not_DASHlike2] = ACTIONS(769), + [anon_sym_LPAREN2] = ACTIONS(769), + [anon_sym_STAR_STAR2] = ACTIONS(769), + [anon_sym_PLUS_PLUS2] = ACTIONS(769), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(769), + [anon_sym_SLASH_SLASH2] = ACTIONS(769), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(769), + [anon_sym_bit_DASHshr2] = ACTIONS(769), + [anon_sym_bit_DASHand2] = ACTIONS(769), + [anon_sym_bit_DASHxor2] = ACTIONS(769), + [anon_sym_bit_DASHor2] = ACTIONS(769), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(1862), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1864), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(769), + [anon_sym_out_GT_GT] = ACTIONS(769), + [anon_sym_e_GT_GT] = ACTIONS(769), + [anon_sym_o_GT_GT] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(769), + [sym__unquoted_pattern] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(3), }, [STATE(445)] = { [sym_comment] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_PLUS_EQ] = ACTIONS(1746), - [anon_sym_DASH_EQ] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1746), - [anon_sym_SLASH_EQ] = ACTIONS(1746), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(761), + [sym__newline] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(761), + [anon_sym_err_GT_PIPE] = ACTIONS(761), + [anon_sym_out_GT_PIPE] = ACTIONS(761), + [anon_sym_e_GT_PIPE] = ACTIONS(761), + [anon_sym_o_GT_PIPE] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(761), + [anon_sym_RPAREN] = ACTIONS(761), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(761), + [anon_sym_xor2] = ACTIONS(761), + [anon_sym_or2] = ACTIONS(761), + [anon_sym_not_DASHin2] = ACTIONS(761), + [anon_sym_has2] = ACTIONS(761), + [anon_sym_not_DASHhas2] = ACTIONS(761), + [anon_sym_starts_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(761), + [anon_sym_ends_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(761), + [anon_sym_EQ_EQ2] = ACTIONS(761), + [anon_sym_BANG_EQ2] = ACTIONS(761), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(761), + [anon_sym_GT_EQ2] = ACTIONS(761), + [anon_sym_EQ_TILDE2] = ACTIONS(761), + [anon_sym_BANG_TILDE2] = ACTIONS(761), + [anon_sym_like2] = ACTIONS(761), + [anon_sym_not_DASHlike2] = ACTIONS(761), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_STAR_STAR2] = ACTIONS(761), + [anon_sym_PLUS_PLUS2] = ACTIONS(761), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(761), + [anon_sym_SLASH_SLASH2] = ACTIONS(761), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(761), + [anon_sym_bit_DASHshr2] = ACTIONS(761), + [anon_sym_bit_DASHand2] = ACTIONS(761), + [anon_sym_bit_DASHxor2] = ACTIONS(761), + [anon_sym_bit_DASHor2] = ACTIONS(761), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(1866), + [aux_sym__immediate_decimal_token5] = ACTIONS(1868), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(761), + [anon_sym_out_GT_GT] = ACTIONS(761), + [anon_sym_e_GT_GT] = ACTIONS(761), + [anon_sym_o_GT_GT] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(761), + [sym__unquoted_pattern] = ACTIONS(759), [anon_sym_POUND] = ACTIONS(3), }, [STATE(446)] = { - [sym__expr_parenthesized_immediate] = STATE(4739), + [sym__expr_parenthesized_immediate] = STATE(1287), + [sym__immediate_decimal] = STATE(1288), + [sym_val_variable] = STATE(1287), [sym_comment] = STATE(446), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(1754), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), - [sym_filesize_unit] = ACTIONS(1758), - [sym_duration_unit] = ACTIONS(1760), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1762), + [ts_builtin_sym_end] = ACTIONS(1831), + [anon_sym_in] = ACTIONS(1831), + [sym__newline] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1831), + [anon_sym_err_GT_PIPE] = ACTIONS(1831), + [anon_sym_out_GT_PIPE] = ACTIONS(1831), + [anon_sym_e_GT_PIPE] = ACTIONS(1831), + [anon_sym_o_GT_PIPE] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1831), + [anon_sym_DOLLAR] = ACTIONS(1791), + [anon_sym_GT2] = ACTIONS(1833), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_STAR2] = ACTIONS(1833), + [anon_sym_and2] = ACTIONS(1831), + [anon_sym_xor2] = ACTIONS(1831), + [anon_sym_or2] = ACTIONS(1831), + [anon_sym_not_DASHin2] = ACTIONS(1831), + [anon_sym_has2] = ACTIONS(1831), + [anon_sym_not_DASHhas2] = ACTIONS(1831), + [anon_sym_starts_DASHwith2] = ACTIONS(1831), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1831), + [anon_sym_ends_DASHwith2] = ACTIONS(1831), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1831), + [anon_sym_EQ_EQ2] = ACTIONS(1831), + [anon_sym_BANG_EQ2] = ACTIONS(1831), + [anon_sym_LT2] = ACTIONS(1833), + [anon_sym_LT_EQ2] = ACTIONS(1831), + [anon_sym_GT_EQ2] = ACTIONS(1831), + [anon_sym_EQ_TILDE2] = ACTIONS(1831), + [anon_sym_BANG_TILDE2] = ACTIONS(1831), + [anon_sym_like2] = ACTIONS(1831), + [anon_sym_not_DASHlike2] = ACTIONS(1831), + [anon_sym_LPAREN2] = ACTIONS(1793), + [anon_sym_STAR_STAR2] = ACTIONS(1831), + [anon_sym_PLUS_PLUS2] = ACTIONS(1831), + [anon_sym_SLASH2] = ACTIONS(1833), + [anon_sym_mod2] = ACTIONS(1831), + [anon_sym_SLASH_SLASH2] = ACTIONS(1831), + [anon_sym_PLUS2] = ACTIONS(1833), + [anon_sym_bit_DASHshl2] = ACTIONS(1831), + [anon_sym_bit_DASHshr2] = ACTIONS(1831), + [anon_sym_bit_DASHand2] = ACTIONS(1831), + [anon_sym_bit_DASHxor2] = ACTIONS(1831), + [anon_sym_bit_DASHor2] = ACTIONS(1831), + [aux_sym__immediate_decimal_token1] = ACTIONS(1870), + [aux_sym__immediate_decimal_token2] = ACTIONS(1870), + [aux_sym__immediate_decimal_token3] = ACTIONS(1799), + [aux_sym__immediate_decimal_token4] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1833), + [anon_sym_out_GT] = ACTIONS(1833), + [anon_sym_e_GT] = ACTIONS(1833), + [anon_sym_o_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT] = ACTIONS(1833), + [anon_sym_err_GT_GT] = ACTIONS(1831), + [anon_sym_out_GT_GT] = ACTIONS(1831), + [anon_sym_e_GT_GT] = ACTIONS(1831), + [anon_sym_o_GT_GT] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1831), [anon_sym_POUND] = ACTIONS(3), }, [STATE(447)] = { [sym_comment] = STATE(447), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_EQ_GT] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1537), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [ts_builtin_sym_end] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1714), + [anon_sym_PLUS_EQ] = ACTIONS(1716), + [anon_sym_DASH_EQ] = ACTIONS(1716), + [anon_sym_STAR_EQ] = ACTIONS(1716), + [anon_sym_SLASH_EQ] = ACTIONS(1716), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1716), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1714), + [anon_sym_DASH2] = ACTIONS(1714), + [anon_sym_STAR2] = ACTIONS(1714), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1714), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1714), + [anon_sym_SLASH2] = ACTIONS(1714), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1714), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_DOT_DOT2] = ACTIONS(1714), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1716), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1716), + [anon_sym_err_GT] = ACTIONS(1714), + [anon_sym_out_GT] = ACTIONS(1714), + [anon_sym_e_GT] = ACTIONS(1714), + [anon_sym_o_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT] = ACTIONS(1714), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), [anon_sym_POUND] = ACTIONS(3), }, [STATE(448)] = { - [sym__expr_parenthesized_immediate] = STATE(1336), - [sym__immediate_decimal] = STATE(1337), - [sym_val_variable] = STATE(1336), [sym_comment] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [sym__newline] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_err_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_GT_PIPE] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_has2] = ACTIONS(1667), - [anon_sym_not_DASHhas2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1667), - [anon_sym_GT_EQ2] = ACTIONS(1667), - [anon_sym_EQ_TILDE2] = ACTIONS(1667), - [anon_sym_BANG_TILDE2] = ACTIONS(1667), - [anon_sym_like2] = ACTIONS(1667), - [anon_sym_not_DASHlike2] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1667), - [anon_sym_bit_DASHshr2] = ACTIONS(1667), - [anon_sym_bit_DASHand2] = ACTIONS(1667), - [anon_sym_bit_DASHxor2] = ACTIONS(1667), - [anon_sym_bit_DASHor2] = ACTIONS(1667), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1667), - [anon_sym_out_GT_GT] = ACTIONS(1667), - [anon_sym_e_GT_GT] = ACTIONS(1667), - [anon_sym_o_GT_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), + [ts_builtin_sym_end] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [sym__newline] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_err_GT_PIPE] = ACTIONS(769), + [anon_sym_out_GT_PIPE] = ACTIONS(769), + [anon_sym_e_GT_PIPE] = ACTIONS(769), + [anon_sym_o_GT_PIPE] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(769), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(769), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(769), + [anon_sym_xor2] = ACTIONS(769), + [anon_sym_or2] = ACTIONS(769), + [anon_sym_not_DASHin2] = ACTIONS(769), + [anon_sym_has2] = ACTIONS(769), + [anon_sym_not_DASHhas2] = ACTIONS(769), + [anon_sym_starts_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(769), + [anon_sym_ends_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(769), + [anon_sym_EQ_EQ2] = ACTIONS(769), + [anon_sym_BANG_EQ2] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(769), + [anon_sym_GT_EQ2] = ACTIONS(769), + [anon_sym_EQ_TILDE2] = ACTIONS(769), + [anon_sym_BANG_TILDE2] = ACTIONS(769), + [anon_sym_like2] = ACTIONS(769), + [anon_sym_not_DASHlike2] = ACTIONS(769), + [anon_sym_LPAREN2] = ACTIONS(769), + [anon_sym_STAR_STAR2] = ACTIONS(769), + [anon_sym_PLUS_PLUS2] = ACTIONS(769), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(769), + [anon_sym_SLASH_SLASH2] = ACTIONS(769), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(769), + [anon_sym_bit_DASHshr2] = ACTIONS(769), + [anon_sym_bit_DASHand2] = ACTIONS(769), + [anon_sym_bit_DASHxor2] = ACTIONS(769), + [anon_sym_bit_DASHor2] = ACTIONS(769), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1874), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(769), + [anon_sym_out_GT_GT] = ACTIONS(769), + [anon_sym_e_GT_GT] = ACTIONS(769), + [anon_sym_o_GT_GT] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(769), + [sym__unquoted_pattern] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(3), }, [STATE(449)] = { - [sym__expr_parenthesized_immediate] = STATE(1339), - [sym__immediate_decimal] = STATE(1340), - [sym_val_variable] = STATE(1339), [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_has2] = ACTIONS(1671), - [anon_sym_not_DASHhas2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_like2] = ACTIONS(1671), - [anon_sym_not_DASHlike2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(761), + [anon_sym_in] = ACTIONS(761), + [sym__newline] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(761), + [anon_sym_err_GT_PIPE] = ACTIONS(761), + [anon_sym_out_GT_PIPE] = ACTIONS(761), + [anon_sym_e_GT_PIPE] = ACTIONS(761), + [anon_sym_o_GT_PIPE] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(761), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(761), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(761), + [anon_sym_xor2] = ACTIONS(761), + [anon_sym_or2] = ACTIONS(761), + [anon_sym_not_DASHin2] = ACTIONS(761), + [anon_sym_has2] = ACTIONS(761), + [anon_sym_not_DASHhas2] = ACTIONS(761), + [anon_sym_starts_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(761), + [anon_sym_ends_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(761), + [anon_sym_EQ_EQ2] = ACTIONS(761), + [anon_sym_BANG_EQ2] = ACTIONS(761), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(761), + [anon_sym_GT_EQ2] = ACTIONS(761), + [anon_sym_EQ_TILDE2] = ACTIONS(761), + [anon_sym_BANG_TILDE2] = ACTIONS(761), + [anon_sym_like2] = ACTIONS(761), + [anon_sym_not_DASHlike2] = ACTIONS(761), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_STAR_STAR2] = ACTIONS(761), + [anon_sym_PLUS_PLUS2] = ACTIONS(761), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(761), + [anon_sym_SLASH_SLASH2] = ACTIONS(761), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(761), + [anon_sym_bit_DASHshr2] = ACTIONS(761), + [anon_sym_bit_DASHand2] = ACTIONS(761), + [anon_sym_bit_DASHxor2] = ACTIONS(761), + [anon_sym_bit_DASHor2] = ACTIONS(761), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(1876), + [aux_sym__immediate_decimal_token5] = ACTIONS(1878), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(761), + [anon_sym_out_GT_GT] = ACTIONS(761), + [anon_sym_e_GT_GT] = ACTIONS(761), + [anon_sym_o_GT_GT] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(761), + [sym__unquoted_pattern] = ACTIONS(759), [anon_sym_POUND] = ACTIONS(3), }, [STATE(450)] = { - [sym__expr_parenthesized_immediate] = STATE(1341), - [sym__immediate_decimal] = STATE(1342), - [sym_val_variable] = STATE(1341), + [sym__expr_parenthesized_immediate] = STATE(1331), + [sym__immediate_decimal] = STATE(1335), + [sym_val_variable] = STATE(1331), [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [ts_builtin_sym_end] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [sym__newline] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_err_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_GT_PIPE] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1791), + [anon_sym_GT2] = ACTIONS(1738), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1738), + [anon_sym_and2] = ACTIONS(1734), + [anon_sym_xor2] = ACTIONS(1734), + [anon_sym_or2] = ACTIONS(1734), + [anon_sym_not_DASHin2] = ACTIONS(1734), + [anon_sym_has2] = ACTIONS(1734), + [anon_sym_not_DASHhas2] = ACTIONS(1734), + [anon_sym_starts_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1734), + [anon_sym_ends_DASHwith2] = ACTIONS(1734), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1734), + [anon_sym_EQ_EQ2] = ACTIONS(1734), + [anon_sym_BANG_EQ2] = ACTIONS(1734), + [anon_sym_LT2] = ACTIONS(1738), + [anon_sym_LT_EQ2] = ACTIONS(1734), + [anon_sym_GT_EQ2] = ACTIONS(1734), + [anon_sym_EQ_TILDE2] = ACTIONS(1734), + [anon_sym_BANG_TILDE2] = ACTIONS(1734), + [anon_sym_like2] = ACTIONS(1734), + [anon_sym_not_DASHlike2] = ACTIONS(1734), + [anon_sym_LPAREN2] = ACTIONS(1793), + [anon_sym_STAR_STAR2] = ACTIONS(1734), + [anon_sym_PLUS_PLUS2] = ACTIONS(1734), + [anon_sym_SLASH2] = ACTIONS(1738), + [anon_sym_mod2] = ACTIONS(1734), + [anon_sym_SLASH_SLASH2] = ACTIONS(1734), + [anon_sym_PLUS2] = ACTIONS(1738), + [anon_sym_bit_DASHshl2] = ACTIONS(1734), + [anon_sym_bit_DASHshr2] = ACTIONS(1734), + [anon_sym_bit_DASHand2] = ACTIONS(1734), + [anon_sym_bit_DASHxor2] = ACTIONS(1734), + [anon_sym_bit_DASHor2] = ACTIONS(1734), + [aux_sym__immediate_decimal_token1] = ACTIONS(1870), + [aux_sym__immediate_decimal_token2] = ACTIONS(1870), + [aux_sym__immediate_decimal_token3] = ACTIONS(1799), + [aux_sym__immediate_decimal_token4] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1738), + [anon_sym_out_GT] = ACTIONS(1738), + [anon_sym_e_GT] = ACTIONS(1738), + [anon_sym_o_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT] = ACTIONS(1738), + [anon_sym_err_GT_GT] = ACTIONS(1734), + [anon_sym_out_GT_GT] = ACTIONS(1734), + [anon_sym_e_GT_GT] = ACTIONS(1734), + [anon_sym_o_GT_GT] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1734), [anon_sym_POUND] = ACTIONS(3), }, [STATE(451)] = { - [sym__expr_parenthesized_immediate] = STATE(1343), - [sym__immediate_decimal] = STATE(1344), - [sym_val_variable] = STATE(1343), [sym_comment] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(769), + [sym__newline] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_err_GT_PIPE] = ACTIONS(769), + [anon_sym_out_GT_PIPE] = ACTIONS(769), + [anon_sym_e_GT_PIPE] = ACTIONS(769), + [anon_sym_o_GT_PIPE] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(769), + [anon_sym_xor2] = ACTIONS(769), + [anon_sym_or2] = ACTIONS(769), + [anon_sym_not_DASHin2] = ACTIONS(769), + [anon_sym_has2] = ACTIONS(769), + [anon_sym_not_DASHhas2] = ACTIONS(769), + [anon_sym_starts_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(769), + [anon_sym_ends_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(769), + [anon_sym_EQ_EQ2] = ACTIONS(769), + [anon_sym_BANG_EQ2] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(769), + [anon_sym_GT_EQ2] = ACTIONS(769), + [anon_sym_EQ_TILDE2] = ACTIONS(769), + [anon_sym_BANG_TILDE2] = ACTIONS(769), + [anon_sym_like2] = ACTIONS(769), + [anon_sym_not_DASHlike2] = ACTIONS(769), + [anon_sym_LPAREN2] = ACTIONS(769), + [anon_sym_STAR_STAR2] = ACTIONS(769), + [anon_sym_PLUS_PLUS2] = ACTIONS(769), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(769), + [anon_sym_SLASH_SLASH2] = ACTIONS(769), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(769), + [anon_sym_bit_DASHshr2] = ACTIONS(769), + [anon_sym_bit_DASHand2] = ACTIONS(769), + [anon_sym_bit_DASHxor2] = ACTIONS(769), + [anon_sym_bit_DASHor2] = ACTIONS(769), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1864), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(769), + [anon_sym_out_GT_GT] = ACTIONS(769), + [anon_sym_e_GT_GT] = ACTIONS(769), + [anon_sym_o_GT_GT] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(769), + [sym__unquoted_pattern] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(3), }, [STATE(452)] = { - [sym__expr_parenthesized_immediate] = STATE(1311), - [sym__immediate_decimal] = STATE(1318), - [sym_val_variable] = STATE(1311), [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), + [anon_sym_in] = ACTIONS(777), + [sym__newline] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_err_GT_PIPE] = ACTIONS(777), + [anon_sym_out_GT_PIPE] = ACTIONS(777), + [anon_sym_e_GT_PIPE] = ACTIONS(777), + [anon_sym_o_GT_PIPE] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(777), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(777), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(777), + [anon_sym_xor2] = ACTIONS(777), + [anon_sym_or2] = ACTIONS(777), + [anon_sym_not_DASHin2] = ACTIONS(777), + [anon_sym_has2] = ACTIONS(777), + [anon_sym_not_DASHhas2] = ACTIONS(777), + [anon_sym_starts_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(777), + [anon_sym_ends_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(777), + [anon_sym_EQ_EQ2] = ACTIONS(777), + [anon_sym_BANG_EQ2] = ACTIONS(777), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(777), + [anon_sym_GT_EQ2] = ACTIONS(777), + [anon_sym_EQ_TILDE2] = ACTIONS(777), + [anon_sym_BANG_TILDE2] = ACTIONS(777), + [anon_sym_like2] = ACTIONS(777), + [anon_sym_not_DASHlike2] = ACTIONS(777), + [anon_sym_LPAREN2] = ACTIONS(777), + [anon_sym_STAR_STAR2] = ACTIONS(777), + [anon_sym_PLUS_PLUS2] = ACTIONS(777), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(777), + [anon_sym_SLASH_SLASH2] = ACTIONS(777), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(777), + [anon_sym_bit_DASHshr2] = ACTIONS(777), + [anon_sym_bit_DASHand2] = ACTIONS(777), + [anon_sym_bit_DASHxor2] = ACTIONS(777), + [anon_sym_bit_DASHor2] = ACTIONS(777), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1880), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(777), + [anon_sym_out_GT_GT] = ACTIONS(777), + [anon_sym_e_GT_GT] = ACTIONS(777), + [anon_sym_o_GT_GT] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(777), + [sym__unquoted_pattern] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(3), }, [STATE(453)] = { [sym_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1882), + [sym__newline] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_err_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_GT_PIPE] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_GT2] = ACTIONS(1884), + [anon_sym_DASH2] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_STAR2] = ACTIONS(1884), + [anon_sym_and2] = ACTIONS(1882), + [anon_sym_xor2] = ACTIONS(1882), + [anon_sym_or2] = ACTIONS(1882), + [anon_sym_not_DASHin2] = ACTIONS(1882), + [anon_sym_has2] = ACTIONS(1882), + [anon_sym_not_DASHhas2] = ACTIONS(1882), + [anon_sym_starts_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), + [anon_sym_ends_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), + [anon_sym_EQ_EQ2] = ACTIONS(1882), + [anon_sym_BANG_EQ2] = ACTIONS(1882), + [anon_sym_LT2] = ACTIONS(1884), + [anon_sym_LT_EQ2] = ACTIONS(1882), + [anon_sym_GT_EQ2] = ACTIONS(1882), + [anon_sym_EQ_TILDE2] = ACTIONS(1882), + [anon_sym_BANG_TILDE2] = ACTIONS(1882), + [anon_sym_like2] = ACTIONS(1882), + [anon_sym_not_DASHlike2] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(1882), + [anon_sym_STAR_STAR2] = ACTIONS(1882), + [anon_sym_PLUS_PLUS2] = ACTIONS(1882), + [anon_sym_SLASH2] = ACTIONS(1884), + [anon_sym_mod2] = ACTIONS(1882), + [anon_sym_SLASH_SLASH2] = ACTIONS(1882), + [anon_sym_PLUS2] = ACTIONS(1884), + [anon_sym_bit_DASHshl2] = ACTIONS(1882), + [anon_sym_bit_DASHshr2] = ACTIONS(1882), + [anon_sym_bit_DASHand2] = ACTIONS(1882), + [anon_sym_bit_DASHxor2] = ACTIONS(1882), + [anon_sym_bit_DASHor2] = ACTIONS(1882), + [anon_sym_DOT_DOT2] = ACTIONS(1884), + [anon_sym_DOT] = ACTIONS(1886), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1882), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1882), + [aux_sym__immediate_decimal_token5] = ACTIONS(1888), + [anon_sym_err_GT] = ACTIONS(1884), + [anon_sym_out_GT] = ACTIONS(1884), + [anon_sym_e_GT] = ACTIONS(1884), + [anon_sym_o_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT] = ACTIONS(1884), + [anon_sym_err_GT_GT] = ACTIONS(1882), + [anon_sym_out_GT_GT] = ACTIONS(1882), + [anon_sym_e_GT_GT] = ACTIONS(1882), + [anon_sym_o_GT_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [sym__unquoted_pattern] = ACTIONS(1884), [anon_sym_POUND] = ACTIONS(3), }, [STATE(454)] = { + [sym__expr_parenthesized_immediate] = STATE(1289), + [sym__immediate_decimal] = STATE(1290), + [sym_val_variable] = STATE(1289), [sym_comment] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1764), - [aux_sym__immediate_decimal_token5] = ACTIONS(1766), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), + [ts_builtin_sym_end] = ACTIONS(1835), + [anon_sym_in] = ACTIONS(1835), + [sym__newline] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_err_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_GT_PIPE] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1791), + [anon_sym_GT2] = ACTIONS(1837), + [anon_sym_DASH2] = ACTIONS(1837), + [anon_sym_STAR2] = ACTIONS(1837), + [anon_sym_and2] = ACTIONS(1835), + [anon_sym_xor2] = ACTIONS(1835), + [anon_sym_or2] = ACTIONS(1835), + [anon_sym_not_DASHin2] = ACTIONS(1835), + [anon_sym_has2] = ACTIONS(1835), + [anon_sym_not_DASHhas2] = ACTIONS(1835), + [anon_sym_starts_DASHwith2] = ACTIONS(1835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1835), + [anon_sym_ends_DASHwith2] = ACTIONS(1835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1835), + [anon_sym_EQ_EQ2] = ACTIONS(1835), + [anon_sym_BANG_EQ2] = ACTIONS(1835), + [anon_sym_LT2] = ACTIONS(1837), + [anon_sym_LT_EQ2] = ACTIONS(1835), + [anon_sym_GT_EQ2] = ACTIONS(1835), + [anon_sym_EQ_TILDE2] = ACTIONS(1835), + [anon_sym_BANG_TILDE2] = ACTIONS(1835), + [anon_sym_like2] = ACTIONS(1835), + [anon_sym_not_DASHlike2] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(1793), + [anon_sym_STAR_STAR2] = ACTIONS(1835), + [anon_sym_PLUS_PLUS2] = ACTIONS(1835), + [anon_sym_SLASH2] = ACTIONS(1837), + [anon_sym_mod2] = ACTIONS(1835), + [anon_sym_SLASH_SLASH2] = ACTIONS(1835), + [anon_sym_PLUS2] = ACTIONS(1837), + [anon_sym_bit_DASHshl2] = ACTIONS(1835), + [anon_sym_bit_DASHshr2] = ACTIONS(1835), + [anon_sym_bit_DASHand2] = ACTIONS(1835), + [anon_sym_bit_DASHxor2] = ACTIONS(1835), + [anon_sym_bit_DASHor2] = ACTIONS(1835), + [aux_sym__immediate_decimal_token1] = ACTIONS(1870), + [aux_sym__immediate_decimal_token2] = ACTIONS(1870), + [aux_sym__immediate_decimal_token3] = ACTIONS(1799), + [aux_sym__immediate_decimal_token4] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1837), + [anon_sym_out_GT] = ACTIONS(1837), + [anon_sym_e_GT] = ACTIONS(1837), + [anon_sym_o_GT] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT] = ACTIONS(1837), + [anon_sym_err_GT_GT] = ACTIONS(1835), + [anon_sym_out_GT_GT] = ACTIONS(1835), + [anon_sym_e_GT_GT] = ACTIONS(1835), + [anon_sym_o_GT_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1835), [anon_sym_POUND] = ACTIONS(3), }, [STATE(455)] = { - [sym_cmd_identifier] = STATE(4308), - [sym__match_pattern_record_body] = STATE(5085), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4048), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4971), [sym_comment] = STATE(455), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), + [anon_sym_if] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1696), + [sym__newline] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_err_GT_PIPE] = ACTIONS(1696), + [anon_sym_out_GT_PIPE] = ACTIONS(1696), + [anon_sym_e_GT_PIPE] = ACTIONS(1696), + [anon_sym_o_GT_PIPE] = ACTIONS(1696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_GT2] = ACTIONS(1694), + [anon_sym_DASH2] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_EQ_GT] = ACTIONS(1696), + [anon_sym_STAR2] = ACTIONS(1694), + [anon_sym_and2] = ACTIONS(1696), + [anon_sym_xor2] = ACTIONS(1696), + [anon_sym_or2] = ACTIONS(1696), + [anon_sym_not_DASHin2] = ACTIONS(1696), + [anon_sym_has2] = ACTIONS(1696), + [anon_sym_not_DASHhas2] = ACTIONS(1696), + [anon_sym_starts_DASHwith2] = ACTIONS(1696), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1696), + [anon_sym_ends_DASHwith2] = ACTIONS(1696), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1696), + [anon_sym_EQ_EQ2] = ACTIONS(1696), + [anon_sym_BANG_EQ2] = ACTIONS(1696), + [anon_sym_LT2] = ACTIONS(1694), + [anon_sym_LT_EQ2] = ACTIONS(1696), + [anon_sym_GT_EQ2] = ACTIONS(1696), + [anon_sym_EQ_TILDE2] = ACTIONS(1696), + [anon_sym_BANG_TILDE2] = ACTIONS(1696), + [anon_sym_like2] = ACTIONS(1696), + [anon_sym_not_DASHlike2] = ACTIONS(1696), + [anon_sym_STAR_STAR2] = ACTIONS(1696), + [anon_sym_PLUS_PLUS2] = ACTIONS(1696), + [anon_sym_SLASH2] = ACTIONS(1694), + [anon_sym_mod2] = ACTIONS(1696), + [anon_sym_SLASH_SLASH2] = ACTIONS(1696), + [anon_sym_PLUS2] = ACTIONS(1694), + [anon_sym_bit_DASHshl2] = ACTIONS(1696), + [anon_sym_bit_DASHshr2] = ACTIONS(1696), + [anon_sym_bit_DASHand2] = ACTIONS(1696), + [anon_sym_bit_DASHxor2] = ACTIONS(1696), + [anon_sym_bit_DASHor2] = ACTIONS(1696), + [anon_sym_DOT_DOT2] = ACTIONS(1694), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1696), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1696), + [anon_sym_COLON2] = ACTIONS(1696), + [anon_sym_DOT2] = ACTIONS(1694), + [anon_sym_err_GT] = ACTIONS(1694), + [anon_sym_out_GT] = ACTIONS(1694), + [anon_sym_e_GT] = ACTIONS(1694), + [anon_sym_o_GT] = ACTIONS(1694), + [anon_sym_err_PLUSout_GT] = ACTIONS(1694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1694), + [anon_sym_o_PLUSe_GT] = ACTIONS(1694), + [anon_sym_e_PLUSo_GT] = ACTIONS(1694), + [anon_sym_err_GT_GT] = ACTIONS(1696), + [anon_sym_out_GT_GT] = ACTIONS(1696), + [anon_sym_e_GT_GT] = ACTIONS(1696), + [anon_sym_o_GT_GT] = ACTIONS(1696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1696), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(456)] = { + [sym__expr_parenthesized_immediate] = STATE(4976), + [sym_comment] = STATE(456), + [anon_sym_in] = ACTIONS(904), + [sym__newline] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_PIPE] = ACTIONS(904), + [anon_sym_err_GT_PIPE] = ACTIONS(904), + [anon_sym_out_GT_PIPE] = ACTIONS(904), + [anon_sym_e_GT_PIPE] = ACTIONS(904), + [anon_sym_o_GT_PIPE] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(904), + [anon_sym_RPAREN] = ACTIONS(904), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(904), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(904), + [anon_sym_xor2] = ACTIONS(904), + [anon_sym_or2] = ACTIONS(904), + [anon_sym_not_DASHin2] = ACTIONS(904), + [anon_sym_has2] = ACTIONS(904), + [anon_sym_not_DASHhas2] = ACTIONS(904), + [anon_sym_starts_DASHwith2] = ACTIONS(904), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(904), + [anon_sym_ends_DASHwith2] = ACTIONS(904), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(904), + [anon_sym_EQ_EQ2] = ACTIONS(904), + [anon_sym_BANG_EQ2] = ACTIONS(904), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(904), + [anon_sym_GT_EQ2] = ACTIONS(904), + [anon_sym_EQ_TILDE2] = ACTIONS(904), + [anon_sym_BANG_TILDE2] = ACTIONS(904), + [anon_sym_like2] = ACTIONS(904), + [anon_sym_not_DASHlike2] = ACTIONS(904), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(904), + [anon_sym_PLUS_PLUS2] = ACTIONS(904), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(904), + [anon_sym_SLASH_SLASH2] = ACTIONS(904), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(904), + [anon_sym_bit_DASHshr2] = ACTIONS(904), + [anon_sym_bit_DASHand2] = ACTIONS(904), + [anon_sym_bit_DASHxor2] = ACTIONS(904), + [anon_sym_bit_DASHor2] = ACTIONS(904), + [anon_sym_DOT_DOT2] = ACTIONS(1892), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1894), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1894), + [sym_filesize_unit] = ACTIONS(1896), + [sym_duration_unit] = ACTIONS(1898), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [anon_sym_err_GT_GT] = ACTIONS(904), + [anon_sym_out_GT_GT] = ACTIONS(904), + [anon_sym_e_GT_GT] = ACTIONS(904), + [anon_sym_o_GT_GT] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(904), + [sym__unquoted_pattern] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(457)] = { + [sym__expr_parenthesized_immediate] = STATE(1291), + [sym__immediate_decimal] = STATE(1292), + [sym_val_variable] = STATE(1291), + [sym_comment] = STATE(457), + [ts_builtin_sym_end] = ACTIONS(1839), + [anon_sym_in] = ACTIONS(1839), + [sym__newline] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_PIPE] = ACTIONS(1839), + [anon_sym_err_GT_PIPE] = ACTIONS(1839), + [anon_sym_out_GT_PIPE] = ACTIONS(1839), + [anon_sym_e_GT_PIPE] = ACTIONS(1839), + [anon_sym_o_GT_PIPE] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1839), + [anon_sym_DOLLAR] = ACTIONS(1791), + [anon_sym_GT2] = ACTIONS(1841), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_STAR2] = ACTIONS(1841), + [anon_sym_and2] = ACTIONS(1839), + [anon_sym_xor2] = ACTIONS(1839), + [anon_sym_or2] = ACTIONS(1839), + [anon_sym_not_DASHin2] = ACTIONS(1839), + [anon_sym_has2] = ACTIONS(1839), + [anon_sym_not_DASHhas2] = ACTIONS(1839), + [anon_sym_starts_DASHwith2] = ACTIONS(1839), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1839), + [anon_sym_ends_DASHwith2] = ACTIONS(1839), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1839), + [anon_sym_EQ_EQ2] = ACTIONS(1839), + [anon_sym_BANG_EQ2] = ACTIONS(1839), + [anon_sym_LT2] = ACTIONS(1841), + [anon_sym_LT_EQ2] = ACTIONS(1839), + [anon_sym_GT_EQ2] = ACTIONS(1839), + [anon_sym_EQ_TILDE2] = ACTIONS(1839), + [anon_sym_BANG_TILDE2] = ACTIONS(1839), + [anon_sym_like2] = ACTIONS(1839), + [anon_sym_not_DASHlike2] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(1793), + [anon_sym_STAR_STAR2] = ACTIONS(1839), + [anon_sym_PLUS_PLUS2] = ACTIONS(1839), + [anon_sym_SLASH2] = ACTIONS(1841), + [anon_sym_mod2] = ACTIONS(1839), + [anon_sym_SLASH_SLASH2] = ACTIONS(1839), + [anon_sym_PLUS2] = ACTIONS(1841), + [anon_sym_bit_DASHshl2] = ACTIONS(1839), + [anon_sym_bit_DASHshr2] = ACTIONS(1839), + [anon_sym_bit_DASHand2] = ACTIONS(1839), + [anon_sym_bit_DASHxor2] = ACTIONS(1839), + [anon_sym_bit_DASHor2] = ACTIONS(1839), + [aux_sym__immediate_decimal_token1] = ACTIONS(1870), + [aux_sym__immediate_decimal_token2] = ACTIONS(1870), + [aux_sym__immediate_decimal_token3] = ACTIONS(1799), + [aux_sym__immediate_decimal_token4] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1841), + [anon_sym_out_GT] = ACTIONS(1841), + [anon_sym_e_GT] = ACTIONS(1841), + [anon_sym_o_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT] = ACTIONS(1841), + [anon_sym_err_GT_GT] = ACTIONS(1839), + [anon_sym_out_GT_GT] = ACTIONS(1839), + [anon_sym_e_GT_GT] = ACTIONS(1839), + [anon_sym_o_GT_GT] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(458)] = { + [sym__expr_parenthesized_immediate] = STATE(1293), + [sym__immediate_decimal] = STATE(1282), + [sym_val_variable] = STATE(1293), + [sym_comment] = STATE(458), + [ts_builtin_sym_end] = ACTIONS(1801), + [anon_sym_in] = ACTIONS(1801), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1791), + [anon_sym_GT2] = ACTIONS(1803), + [anon_sym_DASH2] = ACTIONS(1803), + [anon_sym_STAR2] = ACTIONS(1803), + [anon_sym_and2] = ACTIONS(1801), + [anon_sym_xor2] = ACTIONS(1801), + [anon_sym_or2] = ACTIONS(1801), + [anon_sym_not_DASHin2] = ACTIONS(1801), + [anon_sym_has2] = ACTIONS(1801), + [anon_sym_not_DASHhas2] = ACTIONS(1801), + [anon_sym_starts_DASHwith2] = ACTIONS(1801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1801), + [anon_sym_ends_DASHwith2] = ACTIONS(1801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1801), + [anon_sym_EQ_EQ2] = ACTIONS(1801), + [anon_sym_BANG_EQ2] = ACTIONS(1801), + [anon_sym_LT2] = ACTIONS(1803), + [anon_sym_LT_EQ2] = ACTIONS(1801), + [anon_sym_GT_EQ2] = ACTIONS(1801), + [anon_sym_EQ_TILDE2] = ACTIONS(1801), + [anon_sym_BANG_TILDE2] = ACTIONS(1801), + [anon_sym_like2] = ACTIONS(1801), + [anon_sym_not_DASHlike2] = ACTIONS(1801), + [anon_sym_LPAREN2] = ACTIONS(1793), + [anon_sym_STAR_STAR2] = ACTIONS(1801), + [anon_sym_PLUS_PLUS2] = ACTIONS(1801), + [anon_sym_SLASH2] = ACTIONS(1803), + [anon_sym_mod2] = ACTIONS(1801), + [anon_sym_SLASH_SLASH2] = ACTIONS(1801), + [anon_sym_PLUS2] = ACTIONS(1803), + [anon_sym_bit_DASHshl2] = ACTIONS(1801), + [anon_sym_bit_DASHshr2] = ACTIONS(1801), + [anon_sym_bit_DASHand2] = ACTIONS(1801), + [anon_sym_bit_DASHxor2] = ACTIONS(1801), + [anon_sym_bit_DASHor2] = ACTIONS(1801), + [aux_sym__immediate_decimal_token1] = ACTIONS(1870), + [aux_sym__immediate_decimal_token2] = ACTIONS(1870), + [aux_sym__immediate_decimal_token3] = ACTIONS(1799), + [aux_sym__immediate_decimal_token4] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1803), + [anon_sym_out_GT] = ACTIONS(1803), + [anon_sym_e_GT] = ACTIONS(1803), + [anon_sym_o_GT] = ACTIONS(1803), + [anon_sym_err_PLUSout_GT] = ACTIONS(1803), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1803), + [anon_sym_o_PLUSe_GT] = ACTIONS(1803), + [anon_sym_e_PLUSo_GT] = ACTIONS(1803), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(459)] = { + [sym_comment] = STATE(459), + [ts_builtin_sym_end] = ACTIONS(1856), + [anon_sym_EQ] = ACTIONS(1902), + [anon_sym_PLUS_EQ] = ACTIONS(1904), + [anon_sym_DASH_EQ] = ACTIONS(1904), + [anon_sym_STAR_EQ] = ACTIONS(1904), + [anon_sym_SLASH_EQ] = ACTIONS(1904), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1904), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1750), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1750), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1750), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1750), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1906), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1908), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1908), + [anon_sym_err_GT] = ACTIONS(1750), + [anon_sym_out_GT] = ACTIONS(1750), + [anon_sym_e_GT] = ACTIONS(1750), + [anon_sym_o_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT] = ACTIONS(1750), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(460)] = { + [sym_comment] = STATE(460), + [anon_sym_EQ] = ACTIONS(1910), + [anon_sym_PLUS_EQ] = ACTIONS(1912), + [anon_sym_DASH_EQ] = ACTIONS(1912), + [anon_sym_STAR_EQ] = ACTIONS(1912), + [anon_sym_SLASH_EQ] = ACTIONS(1912), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1750), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1750), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1750), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1750), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(1750), + [anon_sym_out_GT] = ACTIONS(1750), + [anon_sym_e_GT] = ACTIONS(1750), + [anon_sym_o_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT] = ACTIONS(1750), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(461)] = { + [sym_comment] = STATE(461), + [anon_sym_in] = ACTIONS(1610), + [sym__newline] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_err_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_GT_PIPE] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(1610), + [anon_sym_GT2] = ACTIONS(1608), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_EQ_GT] = ACTIONS(1610), + [anon_sym_STAR2] = ACTIONS(1608), + [anon_sym_and2] = ACTIONS(1610), + [anon_sym_xor2] = ACTIONS(1610), + [anon_sym_or2] = ACTIONS(1610), + [anon_sym_not_DASHin2] = ACTIONS(1610), + [anon_sym_has2] = ACTIONS(1610), + [anon_sym_not_DASHhas2] = ACTIONS(1610), + [anon_sym_starts_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1610), + [anon_sym_ends_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1610), + [anon_sym_EQ_EQ2] = ACTIONS(1610), + [anon_sym_BANG_EQ2] = ACTIONS(1610), + [anon_sym_LT2] = ACTIONS(1608), + [anon_sym_LT_EQ2] = ACTIONS(1610), + [anon_sym_GT_EQ2] = ACTIONS(1610), + [anon_sym_EQ_TILDE2] = ACTIONS(1610), + [anon_sym_BANG_TILDE2] = ACTIONS(1610), + [anon_sym_like2] = ACTIONS(1610), + [anon_sym_not_DASHlike2] = ACTIONS(1610), + [anon_sym_STAR_STAR2] = ACTIONS(1610), + [anon_sym_PLUS_PLUS2] = ACTIONS(1610), + [anon_sym_SLASH2] = ACTIONS(1608), + [anon_sym_mod2] = ACTIONS(1610), + [anon_sym_SLASH_SLASH2] = ACTIONS(1610), + [anon_sym_PLUS2] = ACTIONS(1608), + [anon_sym_bit_DASHshl2] = ACTIONS(1610), + [anon_sym_bit_DASHshr2] = ACTIONS(1610), + [anon_sym_bit_DASHand2] = ACTIONS(1610), + [anon_sym_bit_DASHxor2] = ACTIONS(1610), + [anon_sym_bit_DASHor2] = ACTIONS(1610), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_COLON2] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_DOT2] = ACTIONS(1608), + [anon_sym_err_GT] = ACTIONS(1608), + [anon_sym_out_GT] = ACTIONS(1608), + [anon_sym_e_GT] = ACTIONS(1608), + [anon_sym_o_GT] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT] = ACTIONS(1608), + [anon_sym_err_GT_GT] = ACTIONS(1610), + [anon_sym_out_GT_GT] = ACTIONS(1610), + [anon_sym_e_GT_GT] = ACTIONS(1610), + [anon_sym_o_GT_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(462)] = { + [sym_comment] = STATE(462), + [anon_sym_EQ] = ACTIONS(1748), + [anon_sym_PLUS_EQ] = ACTIONS(1854), + [anon_sym_DASH_EQ] = ACTIONS(1854), + [anon_sym_STAR_EQ] = ACTIONS(1854), + [anon_sym_SLASH_EQ] = ACTIONS(1854), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1854), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_STAR2] = ACTIONS(1750), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1750), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1750), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1750), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(1750), + [anon_sym_out_GT] = ACTIONS(1750), + [anon_sym_e_GT] = ACTIONS(1750), + [anon_sym_o_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT] = ACTIONS(1750), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(463)] = { + [sym_comment] = STATE(463), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [sym__newline] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_err_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_GT_PIPE] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1659), + [anon_sym_GT2] = ACTIONS(1657), + [anon_sym_DASH2] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_EQ_GT] = ACTIONS(1659), + [anon_sym_STAR2] = ACTIONS(1657), + [anon_sym_and2] = ACTIONS(1659), + [anon_sym_xor2] = ACTIONS(1659), + [anon_sym_or2] = ACTIONS(1659), + [anon_sym_not_DASHin2] = ACTIONS(1659), + [anon_sym_has2] = ACTIONS(1659), + [anon_sym_not_DASHhas2] = ACTIONS(1659), + [anon_sym_starts_DASHwith2] = ACTIONS(1659), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1659), + [anon_sym_ends_DASHwith2] = ACTIONS(1659), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1659), + [anon_sym_EQ_EQ2] = ACTIONS(1659), + [anon_sym_BANG_EQ2] = ACTIONS(1659), + [anon_sym_LT2] = ACTIONS(1657), + [anon_sym_LT_EQ2] = ACTIONS(1659), + [anon_sym_GT_EQ2] = ACTIONS(1659), + [anon_sym_EQ_TILDE2] = ACTIONS(1659), + [anon_sym_BANG_TILDE2] = ACTIONS(1659), + [anon_sym_like2] = ACTIONS(1659), + [anon_sym_not_DASHlike2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1659), + [anon_sym_PLUS_PLUS2] = ACTIONS(1659), + [anon_sym_SLASH2] = ACTIONS(1657), + [anon_sym_mod2] = ACTIONS(1659), + [anon_sym_SLASH_SLASH2] = ACTIONS(1659), + [anon_sym_PLUS2] = ACTIONS(1657), + [anon_sym_bit_DASHshl2] = ACTIONS(1659), + [anon_sym_bit_DASHshr2] = ACTIONS(1659), + [anon_sym_bit_DASHand2] = ACTIONS(1659), + [anon_sym_bit_DASHxor2] = ACTIONS(1659), + [anon_sym_bit_DASHor2] = ACTIONS(1659), + [anon_sym_DOT_DOT2] = ACTIONS(1657), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1659), + [anon_sym_COLON2] = ACTIONS(1659), + [anon_sym_DOT2] = ACTIONS(1657), + [anon_sym_err_GT] = ACTIONS(1657), + [anon_sym_out_GT] = ACTIONS(1657), + [anon_sym_e_GT] = ACTIONS(1657), + [anon_sym_o_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT] = ACTIONS(1657), + [anon_sym_err_GT_GT] = ACTIONS(1659), + [anon_sym_out_GT_GT] = ACTIONS(1659), + [anon_sym_e_GT_GT] = ACTIONS(1659), + [anon_sym_o_GT_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(464)] = { + [sym_comment] = STATE(464), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_PLUS_EQ] = ACTIONS(1918), + [anon_sym_DASH_EQ] = ACTIONS(1918), + [anon_sym_STAR_EQ] = ACTIONS(1918), + [anon_sym_SLASH_EQ] = ACTIONS(1918), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1918), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1750), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1750), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1750), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1750), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(1750), + [anon_sym_out_GT] = ACTIONS(1750), + [anon_sym_e_GT] = ACTIONS(1750), + [anon_sym_o_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT] = ACTIONS(1750), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(465)] = { + [sym_comment] = STATE(465), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_in] = ACTIONS(1692), + [sym__newline] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_err_GT_PIPE] = ACTIONS(1692), + [anon_sym_out_GT_PIPE] = ACTIONS(1692), + [anon_sym_e_GT_PIPE] = ACTIONS(1692), + [anon_sym_o_GT_PIPE] = ACTIONS(1692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1692), + [anon_sym_RPAREN] = ACTIONS(1692), + [anon_sym_GT2] = ACTIONS(1690), + [anon_sym_DASH2] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_EQ_GT] = ACTIONS(1692), + [anon_sym_STAR2] = ACTIONS(1690), + [anon_sym_and2] = ACTIONS(1692), + [anon_sym_xor2] = ACTIONS(1692), + [anon_sym_or2] = ACTIONS(1692), + [anon_sym_not_DASHin2] = ACTIONS(1692), + [anon_sym_has2] = ACTIONS(1692), + [anon_sym_not_DASHhas2] = ACTIONS(1692), + [anon_sym_starts_DASHwith2] = ACTIONS(1692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1692), + [anon_sym_ends_DASHwith2] = ACTIONS(1692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1692), + [anon_sym_EQ_EQ2] = ACTIONS(1692), + [anon_sym_BANG_EQ2] = ACTIONS(1692), + [anon_sym_LT2] = ACTIONS(1690), + [anon_sym_LT_EQ2] = ACTIONS(1692), + [anon_sym_GT_EQ2] = ACTIONS(1692), + [anon_sym_EQ_TILDE2] = ACTIONS(1692), + [anon_sym_BANG_TILDE2] = ACTIONS(1692), + [anon_sym_like2] = ACTIONS(1692), + [anon_sym_not_DASHlike2] = ACTIONS(1692), + [anon_sym_STAR_STAR2] = ACTIONS(1692), + [anon_sym_PLUS_PLUS2] = ACTIONS(1692), + [anon_sym_SLASH2] = ACTIONS(1690), + [anon_sym_mod2] = ACTIONS(1692), + [anon_sym_SLASH_SLASH2] = ACTIONS(1692), + [anon_sym_PLUS2] = ACTIONS(1690), + [anon_sym_bit_DASHshl2] = ACTIONS(1692), + [anon_sym_bit_DASHshr2] = ACTIONS(1692), + [anon_sym_bit_DASHand2] = ACTIONS(1692), + [anon_sym_bit_DASHxor2] = ACTIONS(1692), + [anon_sym_bit_DASHor2] = ACTIONS(1692), + [anon_sym_DOT_DOT2] = ACTIONS(1690), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1692), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1692), + [anon_sym_COLON2] = ACTIONS(1692), + [anon_sym_DOT2] = ACTIONS(1690), + [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(1692), + [anon_sym_out_GT_GT] = ACTIONS(1692), + [anon_sym_e_GT_GT] = ACTIONS(1692), + [anon_sym_o_GT_GT] = ACTIONS(1692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1692), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(466)] = { + [sym__expr_parenthesized_immediate] = STATE(1342), + [sym__immediate_decimal] = STATE(1307), + [sym_val_variable] = STATE(1342), + [sym_comment] = STATE(466), + [ts_builtin_sym_end] = ACTIONS(1783), + [anon_sym_in] = ACTIONS(1783), + [sym__newline] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_err_GT_PIPE] = ACTIONS(1783), + [anon_sym_out_GT_PIPE] = ACTIONS(1783), + [anon_sym_e_GT_PIPE] = ACTIONS(1783), + [anon_sym_o_GT_PIPE] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1791), + [anon_sym_GT2] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_STAR2] = ACTIONS(1785), + [anon_sym_and2] = ACTIONS(1783), + [anon_sym_xor2] = ACTIONS(1783), + [anon_sym_or2] = ACTIONS(1783), + [anon_sym_not_DASHin2] = ACTIONS(1783), + [anon_sym_has2] = ACTIONS(1783), + [anon_sym_not_DASHhas2] = ACTIONS(1783), + [anon_sym_starts_DASHwith2] = ACTIONS(1783), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1783), + [anon_sym_ends_DASHwith2] = ACTIONS(1783), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1783), + [anon_sym_EQ_EQ2] = ACTIONS(1783), + [anon_sym_BANG_EQ2] = ACTIONS(1783), + [anon_sym_LT2] = ACTIONS(1785), + [anon_sym_LT_EQ2] = ACTIONS(1783), + [anon_sym_GT_EQ2] = ACTIONS(1783), + [anon_sym_EQ_TILDE2] = ACTIONS(1783), + [anon_sym_BANG_TILDE2] = ACTIONS(1783), + [anon_sym_like2] = ACTIONS(1783), + [anon_sym_not_DASHlike2] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1793), + [anon_sym_STAR_STAR2] = ACTIONS(1783), + [anon_sym_PLUS_PLUS2] = ACTIONS(1783), + [anon_sym_SLASH2] = ACTIONS(1785), + [anon_sym_mod2] = ACTIONS(1783), + [anon_sym_SLASH_SLASH2] = ACTIONS(1783), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_bit_DASHshl2] = ACTIONS(1783), + [anon_sym_bit_DASHshr2] = ACTIONS(1783), + [anon_sym_bit_DASHand2] = ACTIONS(1783), + [anon_sym_bit_DASHxor2] = ACTIONS(1783), + [anon_sym_bit_DASHor2] = ACTIONS(1783), + [aux_sym__immediate_decimal_token1] = ACTIONS(1870), + [aux_sym__immediate_decimal_token2] = ACTIONS(1870), + [aux_sym__immediate_decimal_token3] = ACTIONS(1799), + [aux_sym__immediate_decimal_token4] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1783), + [anon_sym_out_GT_GT] = ACTIONS(1783), + [anon_sym_e_GT_GT] = ACTIONS(1783), + [anon_sym_o_GT_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(467)] = { + [sym_comment] = STATE(467), + [anon_sym_in] = ACTIONS(1920), + [sym__newline] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_err_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_GT_PIPE] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1920), + [anon_sym_RPAREN] = ACTIONS(1920), + [anon_sym_GT2] = ACTIONS(1922), + [anon_sym_DASH2] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_STAR2] = ACTIONS(1922), + [anon_sym_and2] = ACTIONS(1920), + [anon_sym_xor2] = ACTIONS(1920), + [anon_sym_or2] = ACTIONS(1920), + [anon_sym_not_DASHin2] = ACTIONS(1920), + [anon_sym_has2] = ACTIONS(1920), + [anon_sym_not_DASHhas2] = ACTIONS(1920), + [anon_sym_starts_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1920), + [anon_sym_ends_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1920), + [anon_sym_EQ_EQ2] = ACTIONS(1920), + [anon_sym_BANG_EQ2] = ACTIONS(1920), + [anon_sym_LT2] = ACTIONS(1922), + [anon_sym_LT_EQ2] = ACTIONS(1920), + [anon_sym_GT_EQ2] = ACTIONS(1920), + [anon_sym_EQ_TILDE2] = ACTIONS(1920), + [anon_sym_BANG_TILDE2] = ACTIONS(1920), + [anon_sym_like2] = ACTIONS(1920), + [anon_sym_not_DASHlike2] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1920), + [anon_sym_STAR_STAR2] = ACTIONS(1920), + [anon_sym_PLUS_PLUS2] = ACTIONS(1920), + [anon_sym_SLASH2] = ACTIONS(1922), + [anon_sym_mod2] = ACTIONS(1920), + [anon_sym_SLASH_SLASH2] = ACTIONS(1920), + [anon_sym_PLUS2] = ACTIONS(1922), + [anon_sym_bit_DASHshl2] = ACTIONS(1920), + [anon_sym_bit_DASHshr2] = ACTIONS(1920), + [anon_sym_bit_DASHand2] = ACTIONS(1920), + [anon_sym_bit_DASHxor2] = ACTIONS(1920), + [anon_sym_bit_DASHor2] = ACTIONS(1920), + [anon_sym_DOT_DOT2] = ACTIONS(1922), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1920), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1920), + [aux_sym__immediate_decimal_token1] = ACTIONS(1924), + [aux_sym__immediate_decimal_token5] = ACTIONS(1926), + [anon_sym_err_GT] = ACTIONS(1922), + [anon_sym_out_GT] = ACTIONS(1922), + [anon_sym_e_GT] = ACTIONS(1922), + [anon_sym_o_GT] = ACTIONS(1922), + [anon_sym_err_PLUSout_GT] = ACTIONS(1922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1922), + [anon_sym_o_PLUSe_GT] = ACTIONS(1922), + [anon_sym_e_PLUSo_GT] = ACTIONS(1922), + [anon_sym_err_GT_GT] = ACTIONS(1920), + [anon_sym_out_GT_GT] = ACTIONS(1920), + [anon_sym_e_GT_GT] = ACTIONS(1920), + [anon_sym_o_GT_GT] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1920), + [sym__unquoted_pattern] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(468)] = { + [sym_cmd_identifier] = STATE(4348), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(5295), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5300), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_comment] = STATE(468), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -82907,60 +87670,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [sym__newline] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1938), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1952), }, - [STATE(456)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4796), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(456), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(469)] = { + [sym_comment] = STATE(469), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_in] = ACTIONS(777), + [sym__newline] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_err_GT_PIPE] = ACTIONS(777), + [anon_sym_out_GT_PIPE] = ACTIONS(777), + [anon_sym_e_GT_PIPE] = ACTIONS(777), + [anon_sym_o_GT_PIPE] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(777), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(777), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(777), + [anon_sym_xor2] = ACTIONS(777), + [anon_sym_or2] = ACTIONS(777), + [anon_sym_not_DASHin2] = ACTIONS(777), + [anon_sym_has2] = ACTIONS(777), + [anon_sym_not_DASHhas2] = ACTIONS(777), + [anon_sym_starts_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(777), + [anon_sym_ends_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(777), + [anon_sym_EQ_EQ2] = ACTIONS(777), + [anon_sym_BANG_EQ2] = ACTIONS(777), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(777), + [anon_sym_GT_EQ2] = ACTIONS(777), + [anon_sym_EQ_TILDE2] = ACTIONS(777), + [anon_sym_BANG_TILDE2] = ACTIONS(777), + [anon_sym_like2] = ACTIONS(777), + [anon_sym_not_DASHlike2] = ACTIONS(777), + [anon_sym_LPAREN2] = ACTIONS(777), + [anon_sym_STAR_STAR2] = ACTIONS(777), + [anon_sym_PLUS_PLUS2] = ACTIONS(777), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(777), + [anon_sym_SLASH_SLASH2] = ACTIONS(777), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(777), + [anon_sym_bit_DASHshr2] = ACTIONS(777), + [anon_sym_bit_DASHand2] = ACTIONS(777), + [anon_sym_bit_DASHxor2] = ACTIONS(777), + [anon_sym_bit_DASHor2] = ACTIONS(777), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(1954), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(777), + [anon_sym_out_GT_GT] = ACTIONS(777), + [anon_sym_e_GT_GT] = ACTIONS(777), + [anon_sym_o_GT_GT] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(777), + [sym__unquoted_pattern] = ACTIONS(775), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(470)] = { + [sym_comment] = STATE(470), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [anon_sym_DOT_DOT2] = ACTIONS(1958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1956), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1956), + [aux_sym__immediate_decimal_token5] = ACTIONS(1960), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [sym__unquoted_pattern] = ACTIONS(1958), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(471)] = { + [sym_cmd_identifier] = STATE(4348), + [sym__match_pattern_record_body] = STATE(5150), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(4242), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_entry] = STATE(4702), + [sym__record_key] = STATE(5094), + [sym_comment] = STATE(471), + [aux_sym__types_body_repeat1] = STATE(528), + [aux_sym__match_pattern_record_body_repeat1] = STATE(794), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -82981,60 +87892,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [sym__newline] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1962), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1964), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1952), }, - [STATE(457)] = { - [sym_cmd_identifier] = STATE(4308), - [sym__match_pattern_record_body] = STATE(4816), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4048), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(457), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), + [STATE(472)] = { + [sym_cmd_identifier] = STATE(4348), + [sym__match_pattern_record_body] = STATE(5226), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(4242), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_entry] = STATE(4702), + [sym__record_key] = STATE(5094), + [sym_comment] = STATE(472), + [aux_sym__types_body_repeat1] = STATE(528), + [aux_sym__match_pattern_record_body_repeat1] = STATE(794), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83055,60 +87966,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [sym__newline] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1962), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1966), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1952), }, - [STATE(458)] = { - [sym_cmd_identifier] = STATE(4308), - [sym__match_pattern_record_body] = STATE(5190), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4048), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(458), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), + [STATE(473)] = { + [sym_cmd_identifier] = STATE(4348), + [sym__match_pattern_record_body] = STATE(5032), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(4242), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_entry] = STATE(4702), + [sym__record_key] = STATE(5094), + [sym_comment] = STATE(473), + [aux_sym__types_body_repeat1] = STATE(528), + [aux_sym__match_pattern_record_body_repeat1] = STATE(794), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83129,134 +88040,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [sym__newline] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1962), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1968), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1952), }, - [STATE(459)] = { - [sym_comment] = STATE(459), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(1806), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [STATE(474)] = { + [sym_comment] = STATE(474), + [ts_builtin_sym_end] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [sym__newline] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_err_GT_PIPE] = ACTIONS(769), + [anon_sym_out_GT_PIPE] = ACTIONS(769), + [anon_sym_e_GT_PIPE] = ACTIONS(769), + [anon_sym_o_GT_PIPE] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(769), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(769), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(769), + [anon_sym_xor2] = ACTIONS(769), + [anon_sym_or2] = ACTIONS(769), + [anon_sym_not_DASHin2] = ACTIONS(769), + [anon_sym_has2] = ACTIONS(769), + [anon_sym_not_DASHhas2] = ACTIONS(769), + [anon_sym_starts_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(769), + [anon_sym_ends_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(769), + [anon_sym_EQ_EQ2] = ACTIONS(769), + [anon_sym_BANG_EQ2] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(769), + [anon_sym_GT_EQ2] = ACTIONS(769), + [anon_sym_EQ_TILDE2] = ACTIONS(769), + [anon_sym_BANG_TILDE2] = ACTIONS(769), + [anon_sym_like2] = ACTIONS(769), + [anon_sym_not_DASHlike2] = ACTIONS(769), + [anon_sym_LPAREN2] = ACTIONS(769), + [anon_sym_STAR_STAR2] = ACTIONS(769), + [anon_sym_PLUS_PLUS2] = ACTIONS(769), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(769), + [anon_sym_SLASH_SLASH2] = ACTIONS(769), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(769), + [anon_sym_bit_DASHshr2] = ACTIONS(769), + [anon_sym_bit_DASHand2] = ACTIONS(769), + [anon_sym_bit_DASHxor2] = ACTIONS(769), + [anon_sym_bit_DASHor2] = ACTIONS(769), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1874), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(769), + [anon_sym_out_GT_GT] = ACTIONS(769), + [anon_sym_e_GT_GT] = ACTIONS(769), + [anon_sym_o_GT_GT] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(769), + [sym__unquoted_pattern] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(460)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(460), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(475)] = { + [sym_cmd_identifier] = STATE(4348), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(5295), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5005), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_comment] = STATE(475), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83277,60 +88188,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [sym__newline] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_RBRACE] = ACTIONS(1970), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1952), }, - [STATE(461)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5191), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(461), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(476)] = { + [sym_cmd_identifier] = STATE(4348), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(5295), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5287), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_comment] = STATE(476), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83351,504 +88262,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [sym__newline] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1972), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(462)] = { - [sym_comment] = STATE(462), - [anon_sym_in] = ACTIONS(851), - [sym__newline] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_err_GT_PIPE] = ACTIONS(851), - [anon_sym_out_GT_PIPE] = ACTIONS(851), - [anon_sym_e_GT_PIPE] = ACTIONS(851), - [anon_sym_o_GT_PIPE] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(851), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(851), - [anon_sym_RBRACE] = ACTIONS(851), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(851), - [anon_sym_xor2] = ACTIONS(851), - [anon_sym_or2] = ACTIONS(851), - [anon_sym_not_DASHin2] = ACTIONS(851), - [anon_sym_has2] = ACTIONS(851), - [anon_sym_not_DASHhas2] = ACTIONS(851), - [anon_sym_starts_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(851), - [anon_sym_ends_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(851), - [anon_sym_EQ_EQ2] = ACTIONS(851), - [anon_sym_BANG_EQ2] = ACTIONS(851), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(851), - [anon_sym_GT_EQ2] = ACTIONS(851), - [anon_sym_EQ_TILDE2] = ACTIONS(851), - [anon_sym_BANG_TILDE2] = ACTIONS(851), - [anon_sym_like2] = ACTIONS(851), - [anon_sym_not_DASHlike2] = ACTIONS(851), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_STAR_STAR2] = ACTIONS(851), - [anon_sym_PLUS_PLUS2] = ACTIONS(851), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(851), - [anon_sym_SLASH_SLASH2] = ACTIONS(851), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(851), - [anon_sym_bit_DASHshr2] = ACTIONS(851), - [anon_sym_bit_DASHand2] = ACTIONS(851), - [anon_sym_bit_DASHxor2] = ACTIONS(851), - [anon_sym_bit_DASHor2] = ACTIONS(851), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(851), - [anon_sym_out_GT_GT] = ACTIONS(851), - [anon_sym_e_GT_GT] = ACTIONS(851), - [anon_sym_o_GT_GT] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(851), - [sym__unquoted_pattern] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(463)] = { - [sym__expr_parenthesized_immediate] = STATE(4775), - [sym_comment] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(1812), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1814), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1814), - [sym_filesize_unit] = ACTIONS(1816), - [sym_duration_unit] = ACTIONS(1818), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(464)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4583), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(464), - [aux_sym__types_body_repeat1] = STATE(2117), - [aux_sym_list_body_repeat1] = STATE(630), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(465)] = { - [sym_comment] = STATE(465), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_COLON2] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(466)] = { - [sym_comment] = STATE(466), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_err_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_GT_PIPE] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), - [anon_sym_RPAREN] = ACTIONS(1822), - [anon_sym_GT2] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_EQ_GT] = ACTIONS(1822), - [anon_sym_STAR2] = ACTIONS(1824), - [anon_sym_and2] = ACTIONS(1822), - [anon_sym_xor2] = ACTIONS(1822), - [anon_sym_or2] = ACTIONS(1822), - [anon_sym_not_DASHin2] = ACTIONS(1822), - [anon_sym_has2] = ACTIONS(1822), - [anon_sym_not_DASHhas2] = ACTIONS(1822), - [anon_sym_starts_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1822), - [anon_sym_ends_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1822), - [anon_sym_EQ_EQ2] = ACTIONS(1822), - [anon_sym_BANG_EQ2] = ACTIONS(1822), - [anon_sym_LT2] = ACTIONS(1824), - [anon_sym_LT_EQ2] = ACTIONS(1822), - [anon_sym_GT_EQ2] = ACTIONS(1822), - [anon_sym_EQ_TILDE2] = ACTIONS(1822), - [anon_sym_BANG_TILDE2] = ACTIONS(1822), - [anon_sym_like2] = ACTIONS(1822), - [anon_sym_not_DASHlike2] = ACTIONS(1822), - [anon_sym_STAR_STAR2] = ACTIONS(1822), - [anon_sym_PLUS_PLUS2] = ACTIONS(1822), - [anon_sym_SLASH2] = ACTIONS(1824), - [anon_sym_mod2] = ACTIONS(1822), - [anon_sym_SLASH_SLASH2] = ACTIONS(1822), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_bit_DASHshl2] = ACTIONS(1822), - [anon_sym_bit_DASHshr2] = ACTIONS(1822), - [anon_sym_bit_DASHand2] = ACTIONS(1822), - [anon_sym_bit_DASHxor2] = ACTIONS(1822), - [anon_sym_bit_DASHor2] = ACTIONS(1822), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), - [anon_sym_COLON2] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(467)] = { - [sym_comment] = STATE(467), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1952), }, - [STATE(468)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5015), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(468), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(477)] = { + [sym_cmd_identifier] = STATE(4348), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(5295), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5420), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_comment] = STATE(477), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83869,504 +88336,578 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [sym__newline] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1974), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1952), }, - [STATE(469)] = { - [sym_comment] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1712), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), + [STATE(478)] = { + [sym_comment] = STATE(478), + [anon_sym_in] = ACTIONS(1882), + [sym__newline] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_err_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_GT_PIPE] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_GT2] = ACTIONS(1884), + [anon_sym_DASH2] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_STAR2] = ACTIONS(1884), + [anon_sym_and2] = ACTIONS(1882), + [anon_sym_xor2] = ACTIONS(1882), + [anon_sym_or2] = ACTIONS(1882), + [anon_sym_not_DASHin2] = ACTIONS(1882), + [anon_sym_has2] = ACTIONS(1882), + [anon_sym_not_DASHhas2] = ACTIONS(1882), + [anon_sym_starts_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), + [anon_sym_ends_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), + [anon_sym_EQ_EQ2] = ACTIONS(1882), + [anon_sym_BANG_EQ2] = ACTIONS(1882), + [anon_sym_LT2] = ACTIONS(1884), + [anon_sym_LT_EQ2] = ACTIONS(1882), + [anon_sym_GT_EQ2] = ACTIONS(1882), + [anon_sym_EQ_TILDE2] = ACTIONS(1882), + [anon_sym_BANG_TILDE2] = ACTIONS(1882), + [anon_sym_like2] = ACTIONS(1882), + [anon_sym_not_DASHlike2] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(1882), + [anon_sym_STAR_STAR2] = ACTIONS(1882), + [anon_sym_PLUS_PLUS2] = ACTIONS(1882), + [anon_sym_SLASH2] = ACTIONS(1884), + [anon_sym_mod2] = ACTIONS(1882), + [anon_sym_SLASH_SLASH2] = ACTIONS(1882), + [anon_sym_PLUS2] = ACTIONS(1884), + [anon_sym_bit_DASHshl2] = ACTIONS(1882), + [anon_sym_bit_DASHshr2] = ACTIONS(1882), + [anon_sym_bit_DASHand2] = ACTIONS(1882), + [anon_sym_bit_DASHxor2] = ACTIONS(1882), + [anon_sym_bit_DASHor2] = ACTIONS(1882), + [anon_sym_DOT_DOT2] = ACTIONS(1884), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1882), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1882), + [aux_sym__immediate_decimal_token5] = ACTIONS(1888), + [anon_sym_err_GT] = ACTIONS(1884), + [anon_sym_out_GT] = ACTIONS(1884), + [anon_sym_e_GT] = ACTIONS(1884), + [anon_sym_o_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT] = ACTIONS(1884), + [anon_sym_err_GT_GT] = ACTIONS(1882), + [anon_sym_out_GT_GT] = ACTIONS(1882), + [anon_sym_e_GT_GT] = ACTIONS(1882), + [anon_sym_o_GT_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [sym__unquoted_pattern] = ACTIONS(1884), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(470)] = { - [sym_comment] = STATE(470), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [STATE(479)] = { + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4624), + [sym__spread_list] = STATE(4907), + [sym_val_entry] = STATE(4582), + [sym_val_record] = STATE(4624), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), + [sym_comment] = STATE(479), + [aux_sym__types_body_repeat1] = STATE(2351), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [sym__newline] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), + }, + [STATE(480)] = { + [sym__expr_parenthesized_immediate] = STATE(4958), + [sym_comment] = STATE(480), + [ts_builtin_sym_end] = ACTIONS(904), + [anon_sym_in] = ACTIONS(904), + [sym__newline] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_PIPE] = ACTIONS(904), + [anon_sym_err_GT_PIPE] = ACTIONS(904), + [anon_sym_out_GT_PIPE] = ACTIONS(904), + [anon_sym_e_GT_PIPE] = ACTIONS(904), + [anon_sym_o_GT_PIPE] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(904), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(904), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(904), + [anon_sym_xor2] = ACTIONS(904), + [anon_sym_or2] = ACTIONS(904), + [anon_sym_not_DASHin2] = ACTIONS(904), + [anon_sym_has2] = ACTIONS(904), + [anon_sym_not_DASHhas2] = ACTIONS(904), + [anon_sym_starts_DASHwith2] = ACTIONS(904), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(904), + [anon_sym_ends_DASHwith2] = ACTIONS(904), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(904), + [anon_sym_EQ_EQ2] = ACTIONS(904), + [anon_sym_BANG_EQ2] = ACTIONS(904), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(904), + [anon_sym_GT_EQ2] = ACTIONS(904), + [anon_sym_EQ_TILDE2] = ACTIONS(904), + [anon_sym_BANG_TILDE2] = ACTIONS(904), + [anon_sym_like2] = ACTIONS(904), + [anon_sym_not_DASHlike2] = ACTIONS(904), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(904), + [anon_sym_PLUS_PLUS2] = ACTIONS(904), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(904), + [anon_sym_SLASH_SLASH2] = ACTIONS(904), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(904), + [anon_sym_bit_DASHshr2] = ACTIONS(904), + [anon_sym_bit_DASHand2] = ACTIONS(904), + [anon_sym_bit_DASHxor2] = ACTIONS(904), + [anon_sym_bit_DASHor2] = ACTIONS(904), + [anon_sym_DOT_DOT2] = ACTIONS(1976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1978), + [sym_filesize_unit] = ACTIONS(1980), + [sym_duration_unit] = ACTIONS(1982), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [anon_sym_err_GT_GT] = ACTIONS(904), + [anon_sym_out_GT_GT] = ACTIONS(904), + [anon_sym_e_GT_GT] = ACTIONS(904), + [anon_sym_o_GT_GT] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(904), + [sym__unquoted_pattern] = ACTIONS(1984), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(471)] = { - [sym_comment] = STATE(471), - [anon_sym_EQ] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1830), - [anon_sym_DASH_EQ] = ACTIONS(1830), - [anon_sym_STAR_EQ] = ACTIONS(1830), - [anon_sym_SLASH_EQ] = ACTIONS(1830), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1830), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [STATE(481)] = { + [sym_comment] = STATE(481), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_in] = ACTIONS(1821), + [sym__newline] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1821), + [anon_sym_err_GT_PIPE] = ACTIONS(1821), + [anon_sym_out_GT_PIPE] = ACTIONS(1821), + [anon_sym_e_GT_PIPE] = ACTIONS(1821), + [anon_sym_o_GT_PIPE] = ACTIONS(1821), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1821), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1821), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1821), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1821), + [anon_sym_RPAREN] = ACTIONS(1821), + [anon_sym_GT2] = ACTIONS(1823), + [anon_sym_DASH2] = ACTIONS(1821), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_EQ_GT] = ACTIONS(1821), + [anon_sym_STAR2] = ACTIONS(1823), + [anon_sym_and2] = ACTIONS(1821), + [anon_sym_xor2] = ACTIONS(1821), + [anon_sym_or2] = ACTIONS(1821), + [anon_sym_not_DASHin2] = ACTIONS(1821), + [anon_sym_has2] = ACTIONS(1821), + [anon_sym_not_DASHhas2] = ACTIONS(1821), + [anon_sym_starts_DASHwith2] = ACTIONS(1821), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1821), + [anon_sym_ends_DASHwith2] = ACTIONS(1821), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1821), + [anon_sym_EQ_EQ2] = ACTIONS(1821), + [anon_sym_BANG_EQ2] = ACTIONS(1821), + [anon_sym_LT2] = ACTIONS(1823), + [anon_sym_LT_EQ2] = ACTIONS(1821), + [anon_sym_GT_EQ2] = ACTIONS(1821), + [anon_sym_EQ_TILDE2] = ACTIONS(1821), + [anon_sym_BANG_TILDE2] = ACTIONS(1821), + [anon_sym_like2] = ACTIONS(1821), + [anon_sym_not_DASHlike2] = ACTIONS(1821), + [anon_sym_STAR_STAR2] = ACTIONS(1821), + [anon_sym_PLUS_PLUS2] = ACTIONS(1821), + [anon_sym_SLASH2] = ACTIONS(1823), + [anon_sym_mod2] = ACTIONS(1821), + [anon_sym_SLASH_SLASH2] = ACTIONS(1821), + [anon_sym_PLUS2] = ACTIONS(1823), + [anon_sym_bit_DASHshl2] = ACTIONS(1821), + [anon_sym_bit_DASHshr2] = ACTIONS(1821), + [anon_sym_bit_DASHand2] = ACTIONS(1821), + [anon_sym_bit_DASHxor2] = ACTIONS(1821), + [anon_sym_bit_DASHor2] = ACTIONS(1821), + [anon_sym_DOT_DOT2] = ACTIONS(1823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1821), + [anon_sym_COLON2] = ACTIONS(1821), + [anon_sym_err_GT] = ACTIONS(1823), + [anon_sym_out_GT] = ACTIONS(1823), + [anon_sym_e_GT] = ACTIONS(1823), + [anon_sym_o_GT] = ACTIONS(1823), + [anon_sym_err_PLUSout_GT] = ACTIONS(1823), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1823), + [anon_sym_o_PLUSe_GT] = ACTIONS(1823), + [anon_sym_e_PLUSo_GT] = ACTIONS(1823), + [anon_sym_err_GT_GT] = ACTIONS(1821), + [anon_sym_out_GT_GT] = ACTIONS(1821), + [anon_sym_e_GT_GT] = ACTIONS(1821), + [anon_sym_o_GT_GT] = ACTIONS(1821), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1821), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1821), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1821), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1821), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(472)] = { - [sym_comment] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1832), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), + [STATE(482)] = { + [sym_comment] = STATE(482), + [anon_sym_in] = ACTIONS(761), + [sym__newline] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(761), + [anon_sym_err_GT_PIPE] = ACTIONS(761), + [anon_sym_out_GT_PIPE] = ACTIONS(761), + [anon_sym_e_GT_PIPE] = ACTIONS(761), + [anon_sym_o_GT_PIPE] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(761), + [anon_sym_RPAREN] = ACTIONS(761), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(761), + [anon_sym_xor2] = ACTIONS(761), + [anon_sym_or2] = ACTIONS(761), + [anon_sym_not_DASHin2] = ACTIONS(761), + [anon_sym_has2] = ACTIONS(761), + [anon_sym_not_DASHhas2] = ACTIONS(761), + [anon_sym_starts_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(761), + [anon_sym_ends_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(761), + [anon_sym_EQ_EQ2] = ACTIONS(761), + [anon_sym_BANG_EQ2] = ACTIONS(761), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(761), + [anon_sym_GT_EQ2] = ACTIONS(761), + [anon_sym_EQ_TILDE2] = ACTIONS(761), + [anon_sym_BANG_TILDE2] = ACTIONS(761), + [anon_sym_like2] = ACTIONS(761), + [anon_sym_not_DASHlike2] = ACTIONS(761), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_STAR_STAR2] = ACTIONS(761), + [anon_sym_PLUS_PLUS2] = ACTIONS(761), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(761), + [anon_sym_SLASH_SLASH2] = ACTIONS(761), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(761), + [anon_sym_bit_DASHshr2] = ACTIONS(761), + [anon_sym_bit_DASHand2] = ACTIONS(761), + [anon_sym_bit_DASHxor2] = ACTIONS(761), + [anon_sym_bit_DASHor2] = ACTIONS(761), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(761), + [anon_sym_out_GT_GT] = ACTIONS(761), + [anon_sym_e_GT_GT] = ACTIONS(761), + [anon_sym_o_GT_GT] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(761), + [sym__unquoted_pattern] = ACTIONS(759), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(473)] = { - [sym_comment] = STATE(473), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), + [STATE(483)] = { + [sym_comment] = STATE(483), + [anon_sym_EQ] = ACTIONS(1986), + [anon_sym_PLUS_EQ] = ACTIONS(1988), + [anon_sym_DASH_EQ] = ACTIONS(1988), + [anon_sym_STAR_EQ] = ACTIONS(1988), + [anon_sym_SLASH_EQ] = ACTIONS(1988), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1988), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1750), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1750), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1750), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1750), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(1750), + [anon_sym_out_GT] = ACTIONS(1750), + [anon_sym_e_GT] = ACTIONS(1750), + [anon_sym_o_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT] = ACTIONS(1750), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(474)] = { - [sym_comment] = STATE(474), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_STAR_EQ] = ACTIONS(1836), - [anon_sym_SLASH_EQ] = ACTIONS(1836), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1836), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [STATE(484)] = { + [sym_comment] = STATE(484), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_in] = ACTIONS(1990), + [sym__newline] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_err_GT_PIPE] = ACTIONS(1990), + [anon_sym_out_GT_PIPE] = ACTIONS(1990), + [anon_sym_e_GT_PIPE] = ACTIONS(1990), + [anon_sym_o_GT_PIPE] = ACTIONS(1990), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1990), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1990), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1990), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(1990), + [anon_sym_GT2] = ACTIONS(1992), + [anon_sym_DASH2] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_EQ_GT] = ACTIONS(1990), + [anon_sym_STAR2] = ACTIONS(1992), + [anon_sym_and2] = ACTIONS(1990), + [anon_sym_xor2] = ACTIONS(1990), + [anon_sym_or2] = ACTIONS(1990), + [anon_sym_not_DASHin2] = ACTIONS(1990), + [anon_sym_has2] = ACTIONS(1990), + [anon_sym_not_DASHhas2] = ACTIONS(1990), + [anon_sym_starts_DASHwith2] = ACTIONS(1990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1990), + [anon_sym_ends_DASHwith2] = ACTIONS(1990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1990), + [anon_sym_EQ_EQ2] = ACTIONS(1990), + [anon_sym_BANG_EQ2] = ACTIONS(1990), + [anon_sym_LT2] = ACTIONS(1992), + [anon_sym_LT_EQ2] = ACTIONS(1990), + [anon_sym_GT_EQ2] = ACTIONS(1990), + [anon_sym_EQ_TILDE2] = ACTIONS(1990), + [anon_sym_BANG_TILDE2] = ACTIONS(1990), + [anon_sym_like2] = ACTIONS(1990), + [anon_sym_not_DASHlike2] = ACTIONS(1990), + [anon_sym_STAR_STAR2] = ACTIONS(1990), + [anon_sym_PLUS_PLUS2] = ACTIONS(1990), + [anon_sym_SLASH2] = ACTIONS(1992), + [anon_sym_mod2] = ACTIONS(1990), + [anon_sym_SLASH_SLASH2] = ACTIONS(1990), + [anon_sym_PLUS2] = ACTIONS(1992), + [anon_sym_bit_DASHshl2] = ACTIONS(1990), + [anon_sym_bit_DASHshr2] = ACTIONS(1990), + [anon_sym_bit_DASHand2] = ACTIONS(1990), + [anon_sym_bit_DASHxor2] = ACTIONS(1990), + [anon_sym_bit_DASHor2] = ACTIONS(1990), + [anon_sym_DOT_DOT2] = ACTIONS(1992), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1990), + [anon_sym_COLON2] = ACTIONS(1990), + [anon_sym_err_GT] = ACTIONS(1992), + [anon_sym_out_GT] = ACTIONS(1992), + [anon_sym_e_GT] = ACTIONS(1992), + [anon_sym_o_GT] = ACTIONS(1992), + [anon_sym_err_PLUSout_GT] = ACTIONS(1992), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1992), + [anon_sym_o_PLUSe_GT] = ACTIONS(1992), + [anon_sym_e_PLUSo_GT] = ACTIONS(1992), + [anon_sym_err_GT_GT] = ACTIONS(1990), + [anon_sym_out_GT_GT] = ACTIONS(1990), + [anon_sym_e_GT_GT] = ACTIONS(1990), + [anon_sym_o_GT_GT] = ACTIONS(1990), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1990), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1990), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1990), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1990), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(475)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5053), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(475), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(485)] = { + [sym_cmd_identifier] = STATE(4348), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(5295), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_body] = STATE(5270), + [sym_record_entry] = STATE(4611), + [sym__record_key] = STATE(5094), + [sym_comment] = STATE(485), + [aux_sym__types_body_repeat1] = STATE(664), + [aux_sym_record_body_repeat1] = STATE(795), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -84387,1574 +88928,1867 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [sym__newline] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1994), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(476)] = { - [sym_comment] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(477)] = { - [sym_comment] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(1840), - [aux_sym__immediate_decimal_token5] = ACTIONS(1842), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(478)] = { - [sym_cell_path] = STATE(935), - [sym_path] = STATE(783), - [sym_comment] = STATE(478), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(479)] = { - [sym_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(480)] = { - [sym_comment] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1480), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(481)] = { - [sym_comment] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(1846), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(482)] = { - [sym_comment] = STATE(482), - [ts_builtin_sym_end] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1476), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(483)] = { - [sym_comment] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1516), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(484)] = { - [sym_cell_path] = STATE(923), - [sym_path] = STATE(441), - [sym_comment] = STATE(484), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1850), - [sym__newline] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_err_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_GT_PIPE] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1850), - [anon_sym_RPAREN] = ACTIONS(1850), - [anon_sym_GT2] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(1850), - [anon_sym_STAR2] = ACTIONS(1853), - [anon_sym_and2] = ACTIONS(1850), - [anon_sym_xor2] = ACTIONS(1850), - [anon_sym_or2] = ACTIONS(1850), - [anon_sym_not_DASHin2] = ACTIONS(1850), - [anon_sym_has2] = ACTIONS(1850), - [anon_sym_not_DASHhas2] = ACTIONS(1850), - [anon_sym_starts_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1850), - [anon_sym_ends_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1850), - [anon_sym_EQ_EQ2] = ACTIONS(1850), - [anon_sym_BANG_EQ2] = ACTIONS(1850), - [anon_sym_LT2] = ACTIONS(1853), - [anon_sym_LT_EQ2] = ACTIONS(1850), - [anon_sym_GT_EQ2] = ACTIONS(1850), - [anon_sym_EQ_TILDE2] = ACTIONS(1850), - [anon_sym_BANG_TILDE2] = ACTIONS(1850), - [anon_sym_like2] = ACTIONS(1850), - [anon_sym_not_DASHlike2] = ACTIONS(1850), - [anon_sym_STAR_STAR2] = ACTIONS(1850), - [anon_sym_PLUS_PLUS2] = ACTIONS(1850), - [anon_sym_SLASH2] = ACTIONS(1853), - [anon_sym_mod2] = ACTIONS(1850), - [anon_sym_SLASH_SLASH2] = ACTIONS(1850), - [anon_sym_PLUS2] = ACTIONS(1853), - [anon_sym_bit_DASHshl2] = ACTIONS(1850), - [anon_sym_bit_DASHshr2] = ACTIONS(1850), - [anon_sym_bit_DASHand2] = ACTIONS(1850), - [anon_sym_bit_DASHxor2] = ACTIONS(1850), - [anon_sym_bit_DASHor2] = ACTIONS(1850), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1853), - [anon_sym_out_GT] = ACTIONS(1853), - [anon_sym_e_GT] = ACTIONS(1853), - [anon_sym_o_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT] = ACTIONS(1853), - [anon_sym_err_GT_GT] = ACTIONS(1850), - [anon_sym_out_GT_GT] = ACTIONS(1850), - [anon_sym_e_GT_GT] = ACTIONS(1850), - [anon_sym_o_GT_GT] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(485)] = { - [sym_cell_path] = STATE(936), - [sym_path] = STATE(441), - [sym_comment] = STATE(485), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1858), - [sym__newline] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_RPAREN] = ACTIONS(1858), - [anon_sym_GT2] = ACTIONS(1860), - [anon_sym_DASH2] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_EQ_GT] = ACTIONS(1858), - [anon_sym_STAR2] = ACTIONS(1860), - [anon_sym_and2] = ACTIONS(1858), - [anon_sym_xor2] = ACTIONS(1858), - [anon_sym_or2] = ACTIONS(1858), - [anon_sym_not_DASHin2] = ACTIONS(1858), - [anon_sym_has2] = ACTIONS(1858), - [anon_sym_not_DASHhas2] = ACTIONS(1858), - [anon_sym_starts_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), - [anon_sym_ends_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), - [anon_sym_EQ_EQ2] = ACTIONS(1858), - [anon_sym_BANG_EQ2] = ACTIONS(1858), - [anon_sym_LT2] = ACTIONS(1860), - [anon_sym_LT_EQ2] = ACTIONS(1858), - [anon_sym_GT_EQ2] = ACTIONS(1858), - [anon_sym_EQ_TILDE2] = ACTIONS(1858), - [anon_sym_BANG_TILDE2] = ACTIONS(1858), - [anon_sym_like2] = ACTIONS(1858), - [anon_sym_not_DASHlike2] = ACTIONS(1858), - [anon_sym_STAR_STAR2] = ACTIONS(1858), - [anon_sym_PLUS_PLUS2] = ACTIONS(1858), - [anon_sym_SLASH2] = ACTIONS(1860), - [anon_sym_mod2] = ACTIONS(1858), - [anon_sym_SLASH_SLASH2] = ACTIONS(1858), - [anon_sym_PLUS2] = ACTIONS(1860), - [anon_sym_bit_DASHshl2] = ACTIONS(1858), - [anon_sym_bit_DASHshr2] = ACTIONS(1858), - [anon_sym_bit_DASHand2] = ACTIONS(1858), - [anon_sym_bit_DASHxor2] = ACTIONS(1858), - [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1860), - [anon_sym_out_GT] = ACTIONS(1860), - [anon_sym_e_GT] = ACTIONS(1860), - [anon_sym_o_GT] = ACTIONS(1860), - [anon_sym_err_PLUSout_GT] = ACTIONS(1860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), - [anon_sym_o_PLUSe_GT] = ACTIONS(1860), - [anon_sym_e_PLUSo_GT] = ACTIONS(1860), - [anon_sym_err_GT_GT] = ACTIONS(1858), - [anon_sym_out_GT_GT] = ACTIONS(1858), - [anon_sym_e_GT_GT] = ACTIONS(1858), - [anon_sym_o_GT_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1952), }, [STATE(486)] = { - [sym_cell_path] = STATE(724), - [sym_path] = STATE(441), [sym_comment] = STATE(486), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1862), - [sym__newline] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_err_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_GT_PIPE] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1862), - [anon_sym_GT2] = ACTIONS(1864), - [anon_sym_DASH2] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_EQ_GT] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1864), - [anon_sym_and2] = ACTIONS(1862), - [anon_sym_xor2] = ACTIONS(1862), - [anon_sym_or2] = ACTIONS(1862), - [anon_sym_not_DASHin2] = ACTIONS(1862), - [anon_sym_has2] = ACTIONS(1862), - [anon_sym_not_DASHhas2] = ACTIONS(1862), - [anon_sym_starts_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), - [anon_sym_ends_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), - [anon_sym_EQ_EQ2] = ACTIONS(1862), - [anon_sym_BANG_EQ2] = ACTIONS(1862), - [anon_sym_LT2] = ACTIONS(1864), - [anon_sym_LT_EQ2] = ACTIONS(1862), - [anon_sym_GT_EQ2] = ACTIONS(1862), - [anon_sym_EQ_TILDE2] = ACTIONS(1862), - [anon_sym_BANG_TILDE2] = ACTIONS(1862), - [anon_sym_like2] = ACTIONS(1862), - [anon_sym_not_DASHlike2] = ACTIONS(1862), - [anon_sym_STAR_STAR2] = ACTIONS(1862), - [anon_sym_PLUS_PLUS2] = ACTIONS(1862), - [anon_sym_SLASH2] = ACTIONS(1864), - [anon_sym_mod2] = ACTIONS(1862), - [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1864), - [anon_sym_bit_DASHshl2] = ACTIONS(1862), - [anon_sym_bit_DASHshr2] = ACTIONS(1862), - [anon_sym_bit_DASHand2] = ACTIONS(1862), - [anon_sym_bit_DASHxor2] = ACTIONS(1862), - [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1864), - [anon_sym_out_GT] = ACTIONS(1864), - [anon_sym_e_GT] = ACTIONS(1864), - [anon_sym_o_GT] = ACTIONS(1864), - [anon_sym_err_PLUSout_GT] = ACTIONS(1864), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), - [anon_sym_o_PLUSe_GT] = ACTIONS(1864), - [anon_sym_e_PLUSo_GT] = ACTIONS(1864), - [anon_sym_err_GT_GT] = ACTIONS(1862), - [anon_sym_out_GT_GT] = ACTIONS(1862), - [anon_sym_e_GT_GT] = ACTIONS(1862), - [anon_sym_o_GT_GT] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), + [anon_sym_in] = ACTIONS(777), + [sym__newline] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_err_GT_PIPE] = ACTIONS(777), + [anon_sym_out_GT_PIPE] = ACTIONS(777), + [anon_sym_e_GT_PIPE] = ACTIONS(777), + [anon_sym_o_GT_PIPE] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(777), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(777), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(777), + [anon_sym_xor2] = ACTIONS(777), + [anon_sym_or2] = ACTIONS(777), + [anon_sym_not_DASHin2] = ACTIONS(777), + [anon_sym_has2] = ACTIONS(777), + [anon_sym_not_DASHhas2] = ACTIONS(777), + [anon_sym_starts_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(777), + [anon_sym_ends_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(777), + [anon_sym_EQ_EQ2] = ACTIONS(777), + [anon_sym_BANG_EQ2] = ACTIONS(777), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(777), + [anon_sym_GT_EQ2] = ACTIONS(777), + [anon_sym_EQ_TILDE2] = ACTIONS(777), + [anon_sym_BANG_TILDE2] = ACTIONS(777), + [anon_sym_like2] = ACTIONS(777), + [anon_sym_not_DASHlike2] = ACTIONS(777), + [anon_sym_LPAREN2] = ACTIONS(777), + [anon_sym_STAR_STAR2] = ACTIONS(777), + [anon_sym_PLUS_PLUS2] = ACTIONS(777), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(777), + [anon_sym_SLASH_SLASH2] = ACTIONS(777), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(777), + [anon_sym_bit_DASHshr2] = ACTIONS(777), + [anon_sym_bit_DASHand2] = ACTIONS(777), + [anon_sym_bit_DASHxor2] = ACTIONS(777), + [anon_sym_bit_DASHor2] = ACTIONS(777), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(777), + [anon_sym_out_GT_GT] = ACTIONS(777), + [anon_sym_e_GT_GT] = ACTIONS(777), + [anon_sym_o_GT_GT] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(777), + [sym__unquoted_pattern] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(3), }, [STATE(487)] = { [sym_comment] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1545), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(896), + [sym__newline] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(896), + [anon_sym_err_GT_PIPE] = ACTIONS(896), + [anon_sym_out_GT_PIPE] = ACTIONS(896), + [anon_sym_e_GT_PIPE] = ACTIONS(896), + [anon_sym_o_GT_PIPE] = ACTIONS(896), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(896), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(896), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(896), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(896), + [anon_sym_RPAREN] = ACTIONS(896), + [anon_sym_GT2] = ACTIONS(894), + [anon_sym_DASH2] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_STAR2] = ACTIONS(894), + [anon_sym_and2] = ACTIONS(896), + [anon_sym_xor2] = ACTIONS(896), + [anon_sym_or2] = ACTIONS(896), + [anon_sym_not_DASHin2] = ACTIONS(896), + [anon_sym_has2] = ACTIONS(896), + [anon_sym_not_DASHhas2] = ACTIONS(896), + [anon_sym_starts_DASHwith2] = ACTIONS(896), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(896), + [anon_sym_ends_DASHwith2] = ACTIONS(896), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(896), + [anon_sym_EQ_EQ2] = ACTIONS(896), + [anon_sym_BANG_EQ2] = ACTIONS(896), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ2] = ACTIONS(896), + [anon_sym_GT_EQ2] = ACTIONS(896), + [anon_sym_EQ_TILDE2] = ACTIONS(896), + [anon_sym_BANG_TILDE2] = ACTIONS(896), + [anon_sym_like2] = ACTIONS(896), + [anon_sym_not_DASHlike2] = ACTIONS(896), + [anon_sym_LPAREN2] = ACTIONS(896), + [anon_sym_STAR_STAR2] = ACTIONS(896), + [anon_sym_PLUS_PLUS2] = ACTIONS(896), + [anon_sym_SLASH2] = ACTIONS(894), + [anon_sym_mod2] = ACTIONS(896), + [anon_sym_SLASH_SLASH2] = ACTIONS(896), + [anon_sym_PLUS2] = ACTIONS(894), + [anon_sym_bit_DASHshl2] = ACTIONS(896), + [anon_sym_bit_DASHshr2] = ACTIONS(896), + [anon_sym_bit_DASHand2] = ACTIONS(896), + [anon_sym_bit_DASHxor2] = ACTIONS(896), + [anon_sym_bit_DASHor2] = ACTIONS(896), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(896), + [anon_sym_err_GT] = ACTIONS(894), + [anon_sym_out_GT] = ACTIONS(894), + [anon_sym_e_GT] = ACTIONS(894), + [anon_sym_o_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT] = ACTIONS(894), + [anon_sym_err_GT_GT] = ACTIONS(896), + [anon_sym_out_GT_GT] = ACTIONS(896), + [anon_sym_e_GT_GT] = ACTIONS(896), + [anon_sym_o_GT_GT] = ACTIONS(896), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(896), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(896), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(896), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(896), + [sym__unquoted_pattern] = ACTIONS(894), [anon_sym_POUND] = ACTIONS(3), }, [STATE(488)] = { [sym_comment] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1472), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), + [anon_sym_EQ] = ACTIONS(1996), + [anon_sym_PLUS_EQ] = ACTIONS(1998), + [anon_sym_DASH_EQ] = ACTIONS(1998), + [anon_sym_STAR_EQ] = ACTIONS(1998), + [anon_sym_SLASH_EQ] = ACTIONS(1998), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1998), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1750), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1750), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1750), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1750), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(1750), + [anon_sym_out_GT] = ACTIONS(1750), + [anon_sym_e_GT] = ACTIONS(1750), + [anon_sym_o_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT] = ACTIONS(1750), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(3), }, [STATE(489)] = { - [sym_cell_path] = STATE(899), - [sym_path] = STATE(441), [sym_comment] = STATE(489), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_EQ_GT] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_in] = ACTIONS(2000), + [sym__newline] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_err_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_GT_PIPE] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2000), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_GT2] = ACTIONS(2002), + [anon_sym_DASH2] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_EQ_GT] = ACTIONS(2000), + [anon_sym_STAR2] = ACTIONS(2002), + [anon_sym_and2] = ACTIONS(2000), + [anon_sym_xor2] = ACTIONS(2000), + [anon_sym_or2] = ACTIONS(2000), + [anon_sym_not_DASHin2] = ACTIONS(2000), + [anon_sym_has2] = ACTIONS(2000), + [anon_sym_not_DASHhas2] = ACTIONS(2000), + [anon_sym_starts_DASHwith2] = ACTIONS(2000), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2000), + [anon_sym_ends_DASHwith2] = ACTIONS(2000), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2000), + [anon_sym_EQ_EQ2] = ACTIONS(2000), + [anon_sym_BANG_EQ2] = ACTIONS(2000), + [anon_sym_LT2] = ACTIONS(2002), + [anon_sym_LT_EQ2] = ACTIONS(2000), + [anon_sym_GT_EQ2] = ACTIONS(2000), + [anon_sym_EQ_TILDE2] = ACTIONS(2000), + [anon_sym_BANG_TILDE2] = ACTIONS(2000), + [anon_sym_like2] = ACTIONS(2000), + [anon_sym_not_DASHlike2] = ACTIONS(2000), + [anon_sym_STAR_STAR2] = ACTIONS(2000), + [anon_sym_PLUS_PLUS2] = ACTIONS(2000), + [anon_sym_SLASH2] = ACTIONS(2002), + [anon_sym_mod2] = ACTIONS(2000), + [anon_sym_SLASH_SLASH2] = ACTIONS(2000), + [anon_sym_PLUS2] = ACTIONS(2002), + [anon_sym_bit_DASHshl2] = ACTIONS(2000), + [anon_sym_bit_DASHshr2] = ACTIONS(2000), + [anon_sym_bit_DASHand2] = ACTIONS(2000), + [anon_sym_bit_DASHxor2] = ACTIONS(2000), + [anon_sym_bit_DASHor2] = ACTIONS(2000), + [anon_sym_DOT_DOT2] = ACTIONS(2002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2000), + [anon_sym_err_GT] = ACTIONS(2002), + [anon_sym_out_GT] = ACTIONS(2002), + [anon_sym_e_GT] = ACTIONS(2002), + [anon_sym_o_GT] = ACTIONS(2002), + [anon_sym_err_PLUSout_GT] = ACTIONS(2002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2002), + [anon_sym_o_PLUSe_GT] = ACTIONS(2002), + [anon_sym_e_PLUSo_GT] = ACTIONS(2002), + [anon_sym_err_GT_GT] = ACTIONS(2000), + [anon_sym_out_GT_GT] = ACTIONS(2000), + [anon_sym_e_GT_GT] = ACTIONS(2000), + [anon_sym_o_GT_GT] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2000), [anon_sym_POUND] = ACTIONS(3), }, [STATE(490)] = { [sym_comment] = STATE(490), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_DOT_DOT2] = ACTIONS(1872), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_in] = ACTIONS(777), + [sym__newline] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_err_GT_PIPE] = ACTIONS(777), + [anon_sym_out_GT_PIPE] = ACTIONS(777), + [anon_sym_e_GT_PIPE] = ACTIONS(777), + [anon_sym_o_GT_PIPE] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(777), + [anon_sym_GT2] = ACTIONS(775), + [anon_sym_DASH2] = ACTIONS(777), + [anon_sym_STAR2] = ACTIONS(775), + [anon_sym_and2] = ACTIONS(777), + [anon_sym_xor2] = ACTIONS(777), + [anon_sym_or2] = ACTIONS(777), + [anon_sym_not_DASHin2] = ACTIONS(777), + [anon_sym_has2] = ACTIONS(777), + [anon_sym_not_DASHhas2] = ACTIONS(777), + [anon_sym_starts_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(777), + [anon_sym_ends_DASHwith2] = ACTIONS(777), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(777), + [anon_sym_EQ_EQ2] = ACTIONS(777), + [anon_sym_BANG_EQ2] = ACTIONS(777), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ2] = ACTIONS(777), + [anon_sym_GT_EQ2] = ACTIONS(777), + [anon_sym_EQ_TILDE2] = ACTIONS(777), + [anon_sym_BANG_TILDE2] = ACTIONS(777), + [anon_sym_like2] = ACTIONS(777), + [anon_sym_not_DASHlike2] = ACTIONS(777), + [anon_sym_LPAREN2] = ACTIONS(777), + [anon_sym_STAR_STAR2] = ACTIONS(777), + [anon_sym_PLUS_PLUS2] = ACTIONS(777), + [anon_sym_SLASH2] = ACTIONS(775), + [anon_sym_mod2] = ACTIONS(777), + [anon_sym_SLASH_SLASH2] = ACTIONS(777), + [anon_sym_PLUS2] = ACTIONS(775), + [anon_sym_bit_DASHshl2] = ACTIONS(777), + [anon_sym_bit_DASHshr2] = ACTIONS(777), + [anon_sym_bit_DASHand2] = ACTIONS(777), + [anon_sym_bit_DASHxor2] = ACTIONS(777), + [anon_sym_bit_DASHor2] = ACTIONS(777), + [anon_sym_DOT_DOT2] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(777), + [anon_sym_DOT_DOT_LT2] = ACTIONS(777), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [anon_sym_err_GT_GT] = ACTIONS(777), + [anon_sym_out_GT_GT] = ACTIONS(777), + [anon_sym_e_GT_GT] = ACTIONS(777), + [anon_sym_o_GT_GT] = ACTIONS(777), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(777), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(777), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(777), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(777), + [sym__unquoted_pattern] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(3), }, [STATE(491)] = { [sym_comment] = STATE(491), - [anon_sym_if] = ACTIONS(1874), - [anon_sym_in] = ACTIONS(1874), - [sym__newline] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_err_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_GT_PIPE] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1874), - [anon_sym_GT2] = ACTIONS(1876), - [anon_sym_DASH2] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_EQ_GT] = ACTIONS(1874), - [anon_sym_STAR2] = ACTIONS(1876), - [anon_sym_and2] = ACTIONS(1874), - [anon_sym_xor2] = ACTIONS(1874), - [anon_sym_or2] = ACTIONS(1874), - [anon_sym_not_DASHin2] = ACTIONS(1874), - [anon_sym_has2] = ACTIONS(1874), - [anon_sym_not_DASHhas2] = ACTIONS(1874), - [anon_sym_starts_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), - [anon_sym_ends_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), - [anon_sym_EQ_EQ2] = ACTIONS(1874), - [anon_sym_BANG_EQ2] = ACTIONS(1874), - [anon_sym_LT2] = ACTIONS(1876), - [anon_sym_LT_EQ2] = ACTIONS(1874), - [anon_sym_GT_EQ2] = ACTIONS(1874), - [anon_sym_EQ_TILDE2] = ACTIONS(1874), - [anon_sym_BANG_TILDE2] = ACTIONS(1874), - [anon_sym_like2] = ACTIONS(1874), - [anon_sym_not_DASHlike2] = ACTIONS(1874), - [anon_sym_STAR_STAR2] = ACTIONS(1874), - [anon_sym_PLUS_PLUS2] = ACTIONS(1874), - [anon_sym_SLASH2] = ACTIONS(1876), - [anon_sym_mod2] = ACTIONS(1874), - [anon_sym_SLASH_SLASH2] = ACTIONS(1874), - [anon_sym_PLUS2] = ACTIONS(1876), - [anon_sym_bit_DASHshl2] = ACTIONS(1874), - [anon_sym_bit_DASHshr2] = ACTIONS(1874), - [anon_sym_bit_DASHand2] = ACTIONS(1874), - [anon_sym_bit_DASHxor2] = ACTIONS(1874), - [anon_sym_bit_DASHor2] = ACTIONS(1874), - [anon_sym_DOT_DOT2] = ACTIONS(1876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), - [anon_sym_err_GT] = ACTIONS(1876), - [anon_sym_out_GT] = ACTIONS(1876), - [anon_sym_e_GT] = ACTIONS(1876), - [anon_sym_o_GT] = ACTIONS(1876), - [anon_sym_err_PLUSout_GT] = ACTIONS(1876), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), - [anon_sym_o_PLUSe_GT] = ACTIONS(1876), - [anon_sym_e_PLUSo_GT] = ACTIONS(1876), - [anon_sym_err_GT_GT] = ACTIONS(1874), - [anon_sym_out_GT_GT] = ACTIONS(1874), - [anon_sym_e_GT_GT] = ACTIONS(1874), - [anon_sym_o_GT_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(896), + [anon_sym_in] = ACTIONS(896), + [sym__newline] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(896), + [anon_sym_err_GT_PIPE] = ACTIONS(896), + [anon_sym_out_GT_PIPE] = ACTIONS(896), + [anon_sym_e_GT_PIPE] = ACTIONS(896), + [anon_sym_o_GT_PIPE] = ACTIONS(896), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(896), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(896), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(896), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(896), + [anon_sym_GT2] = ACTIONS(894), + [anon_sym_DASH2] = ACTIONS(896), + [anon_sym_STAR2] = ACTIONS(894), + [anon_sym_and2] = ACTIONS(896), + [anon_sym_xor2] = ACTIONS(896), + [anon_sym_or2] = ACTIONS(896), + [anon_sym_not_DASHin2] = ACTIONS(896), + [anon_sym_has2] = ACTIONS(896), + [anon_sym_not_DASHhas2] = ACTIONS(896), + [anon_sym_starts_DASHwith2] = ACTIONS(896), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(896), + [anon_sym_ends_DASHwith2] = ACTIONS(896), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(896), + [anon_sym_EQ_EQ2] = ACTIONS(896), + [anon_sym_BANG_EQ2] = ACTIONS(896), + [anon_sym_LT2] = ACTIONS(894), + [anon_sym_LT_EQ2] = ACTIONS(896), + [anon_sym_GT_EQ2] = ACTIONS(896), + [anon_sym_EQ_TILDE2] = ACTIONS(896), + [anon_sym_BANG_TILDE2] = ACTIONS(896), + [anon_sym_like2] = ACTIONS(896), + [anon_sym_not_DASHlike2] = ACTIONS(896), + [anon_sym_LPAREN2] = ACTIONS(896), + [anon_sym_STAR_STAR2] = ACTIONS(896), + [anon_sym_PLUS_PLUS2] = ACTIONS(896), + [anon_sym_SLASH2] = ACTIONS(894), + [anon_sym_mod2] = ACTIONS(896), + [anon_sym_SLASH_SLASH2] = ACTIONS(896), + [anon_sym_PLUS2] = ACTIONS(894), + [anon_sym_bit_DASHshl2] = ACTIONS(896), + [anon_sym_bit_DASHshr2] = ACTIONS(896), + [anon_sym_bit_DASHand2] = ACTIONS(896), + [anon_sym_bit_DASHxor2] = ACTIONS(896), + [anon_sym_bit_DASHor2] = ACTIONS(896), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(894), + [sym_duration_unit] = ACTIONS(896), + [anon_sym_err_GT] = ACTIONS(894), + [anon_sym_out_GT] = ACTIONS(894), + [anon_sym_e_GT] = ACTIONS(894), + [anon_sym_o_GT] = ACTIONS(894), + [anon_sym_err_PLUSout_GT] = ACTIONS(894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(894), + [anon_sym_o_PLUSe_GT] = ACTIONS(894), + [anon_sym_e_PLUSo_GT] = ACTIONS(894), + [anon_sym_err_GT_GT] = ACTIONS(896), + [anon_sym_out_GT_GT] = ACTIONS(896), + [anon_sym_e_GT_GT] = ACTIONS(896), + [anon_sym_o_GT_GT] = ACTIONS(896), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(896), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(896), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(896), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(896), + [sym__unquoted_pattern] = ACTIONS(894), [anon_sym_POUND] = ACTIONS(3), }, [STATE(492)] = { [sym_comment] = STATE(492), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_EQ_GT] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1558), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [sym__newline] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2004), + [anon_sym_err_GT_PIPE] = ACTIONS(2004), + [anon_sym_out_GT_PIPE] = ACTIONS(2004), + [anon_sym_e_GT_PIPE] = ACTIONS(2004), + [anon_sym_o_GT_PIPE] = ACTIONS(2004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2004), + [anon_sym_RPAREN] = ACTIONS(2004), + [anon_sym_GT2] = ACTIONS(2006), + [anon_sym_DASH2] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2004), + [anon_sym_RBRACE] = ACTIONS(2004), + [anon_sym_EQ_GT] = ACTIONS(2004), + [anon_sym_STAR2] = ACTIONS(2006), + [anon_sym_and2] = ACTIONS(2004), + [anon_sym_xor2] = ACTIONS(2004), + [anon_sym_or2] = ACTIONS(2004), + [anon_sym_not_DASHin2] = ACTIONS(2004), + [anon_sym_has2] = ACTIONS(2004), + [anon_sym_not_DASHhas2] = ACTIONS(2004), + [anon_sym_starts_DASHwith2] = ACTIONS(2004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2004), + [anon_sym_ends_DASHwith2] = ACTIONS(2004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2004), + [anon_sym_EQ_EQ2] = ACTIONS(2004), + [anon_sym_BANG_EQ2] = ACTIONS(2004), + [anon_sym_LT2] = ACTIONS(2006), + [anon_sym_LT_EQ2] = ACTIONS(2004), + [anon_sym_GT_EQ2] = ACTIONS(2004), + [anon_sym_EQ_TILDE2] = ACTIONS(2004), + [anon_sym_BANG_TILDE2] = ACTIONS(2004), + [anon_sym_like2] = ACTIONS(2004), + [anon_sym_not_DASHlike2] = ACTIONS(2004), + [anon_sym_STAR_STAR2] = ACTIONS(2004), + [anon_sym_PLUS_PLUS2] = ACTIONS(2004), + [anon_sym_SLASH2] = ACTIONS(2006), + [anon_sym_mod2] = ACTIONS(2004), + [anon_sym_SLASH_SLASH2] = ACTIONS(2004), + [anon_sym_PLUS2] = ACTIONS(2006), + [anon_sym_bit_DASHshl2] = ACTIONS(2004), + [anon_sym_bit_DASHshr2] = ACTIONS(2004), + [anon_sym_bit_DASHand2] = ACTIONS(2004), + [anon_sym_bit_DASHxor2] = ACTIONS(2004), + [anon_sym_bit_DASHor2] = ACTIONS(2004), + [anon_sym_DOT_DOT2] = ACTIONS(2006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2004), + [anon_sym_err_GT] = ACTIONS(2006), + [anon_sym_out_GT] = ACTIONS(2006), + [anon_sym_e_GT] = ACTIONS(2006), + [anon_sym_o_GT] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT] = ACTIONS(2006), + [anon_sym_err_GT_GT] = ACTIONS(2004), + [anon_sym_out_GT_GT] = ACTIONS(2004), + [anon_sym_e_GT_GT] = ACTIONS(2004), + [anon_sym_o_GT_GT] = ACTIONS(2004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2004), [anon_sym_POUND] = ACTIONS(3), }, [STATE(493)] = { - [sym_cell_path] = STATE(735), - [sym_path] = STATE(441), [sym_comment] = STATE(493), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1878), - [sym__newline] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_err_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_GT_PIPE] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1878), - [anon_sym_GT2] = ACTIONS(1880), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_EQ_GT] = ACTIONS(1878), - [anon_sym_STAR2] = ACTIONS(1880), - [anon_sym_and2] = ACTIONS(1878), - [anon_sym_xor2] = ACTIONS(1878), - [anon_sym_or2] = ACTIONS(1878), - [anon_sym_not_DASHin2] = ACTIONS(1878), - [anon_sym_has2] = ACTIONS(1878), - [anon_sym_not_DASHhas2] = ACTIONS(1878), - [anon_sym_starts_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1878), - [anon_sym_ends_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1878), - [anon_sym_EQ_EQ2] = ACTIONS(1878), - [anon_sym_BANG_EQ2] = ACTIONS(1878), - [anon_sym_LT2] = ACTIONS(1880), - [anon_sym_LT_EQ2] = ACTIONS(1878), - [anon_sym_GT_EQ2] = ACTIONS(1878), - [anon_sym_EQ_TILDE2] = ACTIONS(1878), - [anon_sym_BANG_TILDE2] = ACTIONS(1878), - [anon_sym_like2] = ACTIONS(1878), - [anon_sym_not_DASHlike2] = ACTIONS(1878), - [anon_sym_STAR_STAR2] = ACTIONS(1878), - [anon_sym_PLUS_PLUS2] = ACTIONS(1878), - [anon_sym_SLASH2] = ACTIONS(1880), - [anon_sym_mod2] = ACTIONS(1878), - [anon_sym_SLASH_SLASH2] = ACTIONS(1878), - [anon_sym_PLUS2] = ACTIONS(1880), - [anon_sym_bit_DASHshl2] = ACTIONS(1878), - [anon_sym_bit_DASHshr2] = ACTIONS(1878), - [anon_sym_bit_DASHand2] = ACTIONS(1878), - [anon_sym_bit_DASHxor2] = ACTIONS(1878), - [anon_sym_bit_DASHor2] = ACTIONS(1878), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1880), - [anon_sym_out_GT] = ACTIONS(1880), - [anon_sym_e_GT] = ACTIONS(1880), - [anon_sym_o_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT] = ACTIONS(1880), - [anon_sym_err_GT_GT] = ACTIONS(1878), - [anon_sym_out_GT_GT] = ACTIONS(1878), - [anon_sym_e_GT_GT] = ACTIONS(1878), - [anon_sym_o_GT_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), + [anon_sym_in] = ACTIONS(1920), + [sym__newline] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_err_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_GT_PIPE] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1920), + [anon_sym_RPAREN] = ACTIONS(1920), + [anon_sym_GT2] = ACTIONS(1922), + [anon_sym_DASH2] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_STAR2] = ACTIONS(1922), + [anon_sym_and2] = ACTIONS(1920), + [anon_sym_xor2] = ACTIONS(1920), + [anon_sym_or2] = ACTIONS(1920), + [anon_sym_not_DASHin2] = ACTIONS(1920), + [anon_sym_has2] = ACTIONS(1920), + [anon_sym_not_DASHhas2] = ACTIONS(1920), + [anon_sym_starts_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1920), + [anon_sym_ends_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1920), + [anon_sym_EQ_EQ2] = ACTIONS(1920), + [anon_sym_BANG_EQ2] = ACTIONS(1920), + [anon_sym_LT2] = ACTIONS(1922), + [anon_sym_LT_EQ2] = ACTIONS(1920), + [anon_sym_GT_EQ2] = ACTIONS(1920), + [anon_sym_EQ_TILDE2] = ACTIONS(1920), + [anon_sym_BANG_TILDE2] = ACTIONS(1920), + [anon_sym_like2] = ACTIONS(1920), + [anon_sym_not_DASHlike2] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1920), + [anon_sym_STAR_STAR2] = ACTIONS(1920), + [anon_sym_PLUS_PLUS2] = ACTIONS(1920), + [anon_sym_SLASH2] = ACTIONS(1922), + [anon_sym_mod2] = ACTIONS(1920), + [anon_sym_SLASH_SLASH2] = ACTIONS(1920), + [anon_sym_PLUS2] = ACTIONS(1922), + [anon_sym_bit_DASHshl2] = ACTIONS(1920), + [anon_sym_bit_DASHshr2] = ACTIONS(1920), + [anon_sym_bit_DASHand2] = ACTIONS(1920), + [anon_sym_bit_DASHxor2] = ACTIONS(1920), + [anon_sym_bit_DASHor2] = ACTIONS(1920), + [anon_sym_DOT_DOT2] = ACTIONS(1922), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1920), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1920), + [anon_sym_err_GT] = ACTIONS(1922), + [anon_sym_out_GT] = ACTIONS(1922), + [anon_sym_e_GT] = ACTIONS(1922), + [anon_sym_o_GT] = ACTIONS(1922), + [anon_sym_err_PLUSout_GT] = ACTIONS(1922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1922), + [anon_sym_o_PLUSe_GT] = ACTIONS(1922), + [anon_sym_e_PLUSo_GT] = ACTIONS(1922), + [anon_sym_err_GT_GT] = ACTIONS(1920), + [anon_sym_out_GT_GT] = ACTIONS(1920), + [anon_sym_e_GT_GT] = ACTIONS(1920), + [anon_sym_o_GT_GT] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1920), + [sym__unquoted_pattern] = ACTIONS(1922), [anon_sym_POUND] = ACTIONS(3), }, [STATE(494)] = { - [sym_cell_path] = STATE(932), - [sym_path] = STATE(783), [sym_comment] = STATE(494), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(1679), - [sym__newline] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_err_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_GT_PIPE] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1679), - [anon_sym_xor2] = ACTIONS(1679), - [anon_sym_or2] = ACTIONS(1679), - [anon_sym_not_DASHin2] = ACTIONS(1679), - [anon_sym_has2] = ACTIONS(1679), - [anon_sym_not_DASHhas2] = ACTIONS(1679), - [anon_sym_starts_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1679), - [anon_sym_ends_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1679), - [anon_sym_EQ_EQ2] = ACTIONS(1679), - [anon_sym_BANG_EQ2] = ACTIONS(1679), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1679), - [anon_sym_GT_EQ2] = ACTIONS(1679), - [anon_sym_EQ_TILDE2] = ACTIONS(1679), - [anon_sym_BANG_TILDE2] = ACTIONS(1679), - [anon_sym_like2] = ACTIONS(1679), - [anon_sym_not_DASHlike2] = ACTIONS(1679), - [anon_sym_STAR_STAR2] = ACTIONS(1679), - [anon_sym_PLUS_PLUS2] = ACTIONS(1679), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1679), - [anon_sym_SLASH_SLASH2] = ACTIONS(1679), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1679), - [anon_sym_bit_DASHshr2] = ACTIONS(1679), - [anon_sym_bit_DASHand2] = ACTIONS(1679), - [anon_sym_bit_DASHxor2] = ACTIONS(1679), - [anon_sym_bit_DASHor2] = ACTIONS(1679), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1679), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1679), - [anon_sym_out_GT_GT] = ACTIONS(1679), - [anon_sym_e_GT_GT] = ACTIONS(1679), - [anon_sym_o_GT_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), + [ts_builtin_sym_end] = ACTIONS(1702), + [anon_sym_in] = ACTIONS(1702), + [sym__newline] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_err_GT_PIPE] = ACTIONS(1702), + [anon_sym_out_GT_PIPE] = ACTIONS(1702), + [anon_sym_e_GT_PIPE] = ACTIONS(1702), + [anon_sym_o_GT_PIPE] = ACTIONS(1702), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1702), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1702), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1702), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1702), + [anon_sym_GT2] = ACTIONS(1700), + [anon_sym_DASH2] = ACTIONS(1702), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_STAR2] = ACTIONS(1700), + [anon_sym_and2] = ACTIONS(1702), + [anon_sym_xor2] = ACTIONS(1702), + [anon_sym_or2] = ACTIONS(1702), + [anon_sym_not_DASHin2] = ACTIONS(1702), + [anon_sym_has2] = ACTIONS(1702), + [anon_sym_not_DASHhas2] = ACTIONS(1702), + [anon_sym_starts_DASHwith2] = ACTIONS(1702), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1702), + [anon_sym_ends_DASHwith2] = ACTIONS(1702), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1702), + [anon_sym_EQ_EQ2] = ACTIONS(1702), + [anon_sym_BANG_EQ2] = ACTIONS(1702), + [anon_sym_LT2] = ACTIONS(1700), + [anon_sym_LT_EQ2] = ACTIONS(1702), + [anon_sym_GT_EQ2] = ACTIONS(1702), + [anon_sym_EQ_TILDE2] = ACTIONS(1702), + [anon_sym_BANG_TILDE2] = ACTIONS(1702), + [anon_sym_like2] = ACTIONS(1702), + [anon_sym_not_DASHlike2] = ACTIONS(1702), + [anon_sym_STAR_STAR2] = ACTIONS(1702), + [anon_sym_PLUS_PLUS2] = ACTIONS(1702), + [anon_sym_SLASH2] = ACTIONS(1700), + [anon_sym_mod2] = ACTIONS(1702), + [anon_sym_SLASH_SLASH2] = ACTIONS(1702), + [anon_sym_PLUS2] = ACTIONS(1700), + [anon_sym_bit_DASHshl2] = ACTIONS(1702), + [anon_sym_bit_DASHshr2] = ACTIONS(1702), + [anon_sym_bit_DASHand2] = ACTIONS(1702), + [anon_sym_bit_DASHxor2] = ACTIONS(1702), + [anon_sym_bit_DASHor2] = ACTIONS(1702), + [anon_sym_DOT_DOT2] = ACTIONS(1700), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1702), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1702), + [anon_sym_QMARK2] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_DOT2] = ACTIONS(1700), + [anon_sym_err_GT] = ACTIONS(1700), + [anon_sym_out_GT] = ACTIONS(1700), + [anon_sym_e_GT] = ACTIONS(1700), + [anon_sym_o_GT] = ACTIONS(1700), + [anon_sym_err_PLUSout_GT] = ACTIONS(1700), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1700), + [anon_sym_o_PLUSe_GT] = ACTIONS(1700), + [anon_sym_e_PLUSo_GT] = ACTIONS(1700), + [anon_sym_err_GT_GT] = ACTIONS(1702), + [anon_sym_out_GT_GT] = ACTIONS(1702), + [anon_sym_e_GT_GT] = ACTIONS(1702), + [anon_sym_o_GT_GT] = ACTIONS(1702), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1702), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1702), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1702), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1702), [anon_sym_POUND] = ACTIONS(3), }, [STATE(495)] = { [sym_comment] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1714), + [anon_sym_DASH2] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_EQ_GT] = ACTIONS(1716), + [anon_sym_STAR2] = ACTIONS(1714), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1714), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1716), + [anon_sym_SLASH2] = ACTIONS(1714), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1714), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_DOT_DOT2] = ACTIONS(1714), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1716), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1716), + [anon_sym_COLON2] = ACTIONS(1716), + [anon_sym_err_GT] = ACTIONS(1714), + [anon_sym_out_GT] = ACTIONS(1714), + [anon_sym_e_GT] = ACTIONS(1714), + [anon_sym_o_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT] = ACTIONS(1714), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), [anon_sym_POUND] = ACTIONS(3), }, [STATE(496)] = { - [sym_cell_path] = STATE(933), - [sym_path] = STATE(783), + [sym_cell_path] = STATE(742), + [sym_path] = STATE(463), [sym_comment] = STATE(496), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1434), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), + [aux_sym__where_predicate_lhs_repeat1] = STATE(441), + [anon_sym_in] = ACTIONS(2008), + [sym__newline] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_err_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_GT_PIPE] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_GT2] = ACTIONS(2010), + [anon_sym_DASH2] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_EQ_GT] = ACTIONS(2008), + [anon_sym_STAR2] = ACTIONS(2010), + [anon_sym_and2] = ACTIONS(2008), + [anon_sym_xor2] = ACTIONS(2008), + [anon_sym_or2] = ACTIONS(2008), + [anon_sym_not_DASHin2] = ACTIONS(2008), + [anon_sym_has2] = ACTIONS(2008), + [anon_sym_not_DASHhas2] = ACTIONS(2008), + [anon_sym_starts_DASHwith2] = ACTIONS(2008), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2008), + [anon_sym_ends_DASHwith2] = ACTIONS(2008), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2008), + [anon_sym_EQ_EQ2] = ACTIONS(2008), + [anon_sym_BANG_EQ2] = ACTIONS(2008), + [anon_sym_LT2] = ACTIONS(2010), + [anon_sym_LT_EQ2] = ACTIONS(2008), + [anon_sym_GT_EQ2] = ACTIONS(2008), + [anon_sym_EQ_TILDE2] = ACTIONS(2008), + [anon_sym_BANG_TILDE2] = ACTIONS(2008), + [anon_sym_like2] = ACTIONS(2008), + [anon_sym_not_DASHlike2] = ACTIONS(2008), + [anon_sym_STAR_STAR2] = ACTIONS(2008), + [anon_sym_PLUS_PLUS2] = ACTIONS(2008), + [anon_sym_SLASH2] = ACTIONS(2010), + [anon_sym_mod2] = ACTIONS(2008), + [anon_sym_SLASH_SLASH2] = ACTIONS(2008), + [anon_sym_PLUS2] = ACTIONS(2010), + [anon_sym_bit_DASHshl2] = ACTIONS(2008), + [anon_sym_bit_DASHshr2] = ACTIONS(2008), + [anon_sym_bit_DASHand2] = ACTIONS(2008), + [anon_sym_bit_DASHxor2] = ACTIONS(2008), + [anon_sym_bit_DASHor2] = ACTIONS(2008), + [anon_sym_DOT2] = ACTIONS(2012), + [anon_sym_err_GT] = ACTIONS(2010), + [anon_sym_out_GT] = ACTIONS(2010), + [anon_sym_e_GT] = ACTIONS(2010), + [anon_sym_o_GT] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT] = ACTIONS(2010), + [anon_sym_err_GT_GT] = ACTIONS(2008), + [anon_sym_out_GT_GT] = ACTIONS(2008), + [anon_sym_e_GT_GT] = ACTIONS(2008), + [anon_sym_o_GT_GT] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2008), [anon_sym_POUND] = ACTIONS(3), }, [STATE(497)] = { - [sym_cell_path] = STATE(930), - [sym_path] = STATE(441), + [sym_cell_path] = STATE(938), + [sym_path] = STATE(775), [sym_comment] = STATE(497), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [aux_sym__where_predicate_lhs_repeat1] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(1821), + [anon_sym_in] = ACTIONS(1821), + [sym__newline] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1821), + [anon_sym_err_GT_PIPE] = ACTIONS(1821), + [anon_sym_out_GT_PIPE] = ACTIONS(1821), + [anon_sym_e_GT_PIPE] = ACTIONS(1821), + [anon_sym_o_GT_PIPE] = ACTIONS(1821), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1821), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1821), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1821), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1821), + [anon_sym_GT2] = ACTIONS(1823), + [anon_sym_DASH2] = ACTIONS(1821), + [anon_sym_STAR2] = ACTIONS(1823), + [anon_sym_and2] = ACTIONS(1821), + [anon_sym_xor2] = ACTIONS(1821), + [anon_sym_or2] = ACTIONS(1821), + [anon_sym_not_DASHin2] = ACTIONS(1821), + [anon_sym_has2] = ACTIONS(1821), + [anon_sym_not_DASHhas2] = ACTIONS(1821), + [anon_sym_starts_DASHwith2] = ACTIONS(1821), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1821), + [anon_sym_ends_DASHwith2] = ACTIONS(1821), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1821), + [anon_sym_EQ_EQ2] = ACTIONS(1821), + [anon_sym_BANG_EQ2] = ACTIONS(1821), + [anon_sym_LT2] = ACTIONS(1823), + [anon_sym_LT_EQ2] = ACTIONS(1821), + [anon_sym_GT_EQ2] = ACTIONS(1821), + [anon_sym_EQ_TILDE2] = ACTIONS(1821), + [anon_sym_BANG_TILDE2] = ACTIONS(1821), + [anon_sym_like2] = ACTIONS(1821), + [anon_sym_not_DASHlike2] = ACTIONS(1821), + [anon_sym_STAR_STAR2] = ACTIONS(1821), + [anon_sym_PLUS_PLUS2] = ACTIONS(1821), + [anon_sym_SLASH2] = ACTIONS(1823), + [anon_sym_mod2] = ACTIONS(1821), + [anon_sym_SLASH_SLASH2] = ACTIONS(1821), + [anon_sym_PLUS2] = ACTIONS(1823), + [anon_sym_bit_DASHshl2] = ACTIONS(1821), + [anon_sym_bit_DASHshr2] = ACTIONS(1821), + [anon_sym_bit_DASHand2] = ACTIONS(1821), + [anon_sym_bit_DASHxor2] = ACTIONS(1821), + [anon_sym_bit_DASHor2] = ACTIONS(1821), + [anon_sym_DOT_DOT2] = ACTIONS(1823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1821), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_err_GT] = ACTIONS(1823), + [anon_sym_out_GT] = ACTIONS(1823), + [anon_sym_e_GT] = ACTIONS(1823), + [anon_sym_o_GT] = ACTIONS(1823), + [anon_sym_err_PLUSout_GT] = ACTIONS(1823), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1823), + [anon_sym_o_PLUSe_GT] = ACTIONS(1823), + [anon_sym_e_PLUSo_GT] = ACTIONS(1823), + [anon_sym_err_GT_GT] = ACTIONS(1821), + [anon_sym_out_GT_GT] = ACTIONS(1821), + [anon_sym_e_GT_GT] = ACTIONS(1821), + [anon_sym_o_GT_GT] = ACTIONS(1821), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1821), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1821), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1821), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(498)] = { + [sym_cell_path] = STATE(967), + [sym_path] = STATE(463), + [sym_comment] = STATE(498), + [aux_sym__where_predicate_lhs_repeat1] = STATE(441), + [anon_sym_in] = ACTIONS(2016), + [sym__newline] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_err_GT_PIPE] = ACTIONS(2016), + [anon_sym_out_GT_PIPE] = ACTIONS(2016), + [anon_sym_e_GT_PIPE] = ACTIONS(2016), + [anon_sym_o_GT_PIPE] = ACTIONS(2016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2016), + [anon_sym_RPAREN] = ACTIONS(2016), + [anon_sym_GT2] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_EQ_GT] = ACTIONS(2016), + [anon_sym_STAR2] = ACTIONS(2018), + [anon_sym_and2] = ACTIONS(2016), + [anon_sym_xor2] = ACTIONS(2016), + [anon_sym_or2] = ACTIONS(2016), + [anon_sym_not_DASHin2] = ACTIONS(2016), + [anon_sym_has2] = ACTIONS(2016), + [anon_sym_not_DASHhas2] = ACTIONS(2016), + [anon_sym_starts_DASHwith2] = ACTIONS(2016), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2016), + [anon_sym_ends_DASHwith2] = ACTIONS(2016), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2016), + [anon_sym_EQ_EQ2] = ACTIONS(2016), + [anon_sym_BANG_EQ2] = ACTIONS(2016), + [anon_sym_LT2] = ACTIONS(2018), + [anon_sym_LT_EQ2] = ACTIONS(2016), + [anon_sym_GT_EQ2] = ACTIONS(2016), + [anon_sym_EQ_TILDE2] = ACTIONS(2016), + [anon_sym_BANG_TILDE2] = ACTIONS(2016), + [anon_sym_like2] = ACTIONS(2016), + [anon_sym_not_DASHlike2] = ACTIONS(2016), + [anon_sym_STAR_STAR2] = ACTIONS(2016), + [anon_sym_PLUS_PLUS2] = ACTIONS(2016), + [anon_sym_SLASH2] = ACTIONS(2018), + [anon_sym_mod2] = ACTIONS(2016), + [anon_sym_SLASH_SLASH2] = ACTIONS(2016), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_bit_DASHshl2] = ACTIONS(2016), + [anon_sym_bit_DASHshr2] = ACTIONS(2016), + [anon_sym_bit_DASHand2] = ACTIONS(2016), + [anon_sym_bit_DASHxor2] = ACTIONS(2016), + [anon_sym_bit_DASHor2] = ACTIONS(2016), + [anon_sym_DOT2] = ACTIONS(2012), + [anon_sym_err_GT] = ACTIONS(2018), + [anon_sym_out_GT] = ACTIONS(2018), + [anon_sym_e_GT] = ACTIONS(2018), + [anon_sym_o_GT] = ACTIONS(2018), + [anon_sym_err_PLUSout_GT] = ACTIONS(2018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2018), + [anon_sym_o_PLUSe_GT] = ACTIONS(2018), + [anon_sym_e_PLUSo_GT] = ACTIONS(2018), + [anon_sym_err_GT_GT] = ACTIONS(2016), + [anon_sym_out_GT_GT] = ACTIONS(2016), + [anon_sym_e_GT_GT] = ACTIONS(2016), + [anon_sym_o_GT_GT] = ACTIONS(2016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2016), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(499)] = { + [sym_comment] = STATE(499), + [ts_builtin_sym_end] = ACTIONS(1678), + [anon_sym_in] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1676), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1676), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_like2] = ACTIONS(1678), + [anon_sym_not_DASHlike2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1676), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1676), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1678), + [anon_sym_QMARK2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_DOT2] = ACTIONS(1676), + [anon_sym_err_GT] = ACTIONS(1676), + [anon_sym_out_GT] = ACTIONS(1676), + [anon_sym_e_GT] = ACTIONS(1676), + [anon_sym_o_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT] = ACTIONS(1676), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(500)] = { + [sym_comment] = STATE(500), + [ts_builtin_sym_end] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [sym__newline] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_err_GT_PIPE] = ACTIONS(1682), + [anon_sym_out_GT_PIPE] = ACTIONS(1682), + [anon_sym_e_GT_PIPE] = ACTIONS(1682), + [anon_sym_o_GT_PIPE] = ACTIONS(1682), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1682), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1682), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1682), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1682), + [anon_sym_GT2] = ACTIONS(1680), + [anon_sym_DASH2] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_STAR2] = ACTIONS(1680), + [anon_sym_and2] = ACTIONS(1682), + [anon_sym_xor2] = ACTIONS(1682), + [anon_sym_or2] = ACTIONS(1682), + [anon_sym_not_DASHin2] = ACTIONS(1682), + [anon_sym_has2] = ACTIONS(1682), + [anon_sym_not_DASHhas2] = ACTIONS(1682), + [anon_sym_starts_DASHwith2] = ACTIONS(1682), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1682), + [anon_sym_ends_DASHwith2] = ACTIONS(1682), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1682), + [anon_sym_EQ_EQ2] = ACTIONS(1682), + [anon_sym_BANG_EQ2] = ACTIONS(1682), + [anon_sym_LT2] = ACTIONS(1680), + [anon_sym_LT_EQ2] = ACTIONS(1682), + [anon_sym_GT_EQ2] = ACTIONS(1682), + [anon_sym_EQ_TILDE2] = ACTIONS(1682), + [anon_sym_BANG_TILDE2] = ACTIONS(1682), + [anon_sym_like2] = ACTIONS(1682), + [anon_sym_not_DASHlike2] = ACTIONS(1682), + [anon_sym_STAR_STAR2] = ACTIONS(1682), + [anon_sym_PLUS_PLUS2] = ACTIONS(1682), + [anon_sym_SLASH2] = ACTIONS(1680), + [anon_sym_mod2] = ACTIONS(1682), + [anon_sym_SLASH_SLASH2] = ACTIONS(1682), + [anon_sym_PLUS2] = ACTIONS(1680), + [anon_sym_bit_DASHshl2] = ACTIONS(1682), + [anon_sym_bit_DASHshr2] = ACTIONS(1682), + [anon_sym_bit_DASHand2] = ACTIONS(1682), + [anon_sym_bit_DASHxor2] = ACTIONS(1682), + [anon_sym_bit_DASHor2] = ACTIONS(1682), + [anon_sym_DOT_DOT2] = ACTIONS(1680), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1682), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1682), + [anon_sym_QMARK2] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_DOT2] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1680), + [anon_sym_out_GT] = ACTIONS(1680), + [anon_sym_e_GT] = ACTIONS(1680), + [anon_sym_o_GT] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT] = ACTIONS(1680), + [anon_sym_err_GT_GT] = ACTIONS(1682), + [anon_sym_out_GT_GT] = ACTIONS(1682), + [anon_sym_e_GT_GT] = ACTIONS(1682), + [anon_sym_o_GT_GT] = ACTIONS(1682), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1682), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1682), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1682), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(501)] = { + [sym_comment] = STATE(501), + [ts_builtin_sym_end] = ACTIONS(1688), + [anon_sym_in] = 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_GT2] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_STAR2] = ACTIONS(1686), + [anon_sym_and2] = ACTIONS(1688), + [anon_sym_xor2] = ACTIONS(1688), + [anon_sym_or2] = ACTIONS(1688), + [anon_sym_not_DASHin2] = ACTIONS(1688), + [anon_sym_has2] = ACTIONS(1688), + [anon_sym_not_DASHhas2] = ACTIONS(1688), + [anon_sym_starts_DASHwith2] = ACTIONS(1688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1688), + [anon_sym_ends_DASHwith2] = ACTIONS(1688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1688), + [anon_sym_EQ_EQ2] = ACTIONS(1688), + [anon_sym_BANG_EQ2] = ACTIONS(1688), + [anon_sym_LT2] = ACTIONS(1686), + [anon_sym_LT_EQ2] = ACTIONS(1688), + [anon_sym_GT_EQ2] = ACTIONS(1688), + [anon_sym_EQ_TILDE2] = ACTIONS(1688), + [anon_sym_BANG_TILDE2] = ACTIONS(1688), + [anon_sym_like2] = ACTIONS(1688), + [anon_sym_not_DASHlike2] = ACTIONS(1688), + [anon_sym_STAR_STAR2] = ACTIONS(1688), + [anon_sym_PLUS_PLUS2] = ACTIONS(1688), + [anon_sym_SLASH2] = ACTIONS(1686), + [anon_sym_mod2] = ACTIONS(1688), + [anon_sym_SLASH_SLASH2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_bit_DASHshl2] = ACTIONS(1688), + [anon_sym_bit_DASHshr2] = ACTIONS(1688), + [anon_sym_bit_DASHand2] = ACTIONS(1688), + [anon_sym_bit_DASHxor2] = ACTIONS(1688), + [anon_sym_bit_DASHor2] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_QMARK2] = ACTIONS(1688), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_DOT2] = ACTIONS(1686), + [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(3), + }, + [STATE(502)] = { + [sym_cell_path] = STATE(973), + [sym_path] = STATE(463), + [sym_comment] = STATE(502), + [aux_sym__where_predicate_lhs_repeat1] = STATE(441), + [anon_sym_in] = ACTIONS(2020), + [sym__newline] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_err_GT_PIPE] = ACTIONS(2020), + [anon_sym_out_GT_PIPE] = ACTIONS(2020), + [anon_sym_e_GT_PIPE] = ACTIONS(2020), + [anon_sym_o_GT_PIPE] = ACTIONS(2020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2020), + [anon_sym_RPAREN] = ACTIONS(2020), + [anon_sym_GT2] = ACTIONS(2022), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_EQ_GT] = ACTIONS(2020), + [anon_sym_STAR2] = ACTIONS(2022), + [anon_sym_and2] = ACTIONS(2020), + [anon_sym_xor2] = ACTIONS(2020), + [anon_sym_or2] = ACTIONS(2020), + [anon_sym_not_DASHin2] = ACTIONS(2020), + [anon_sym_has2] = ACTIONS(2020), + [anon_sym_not_DASHhas2] = ACTIONS(2020), + [anon_sym_starts_DASHwith2] = ACTIONS(2020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2020), + [anon_sym_ends_DASHwith2] = ACTIONS(2020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2020), + [anon_sym_EQ_EQ2] = ACTIONS(2020), + [anon_sym_BANG_EQ2] = ACTIONS(2020), + [anon_sym_LT2] = ACTIONS(2022), + [anon_sym_LT_EQ2] = ACTIONS(2020), + [anon_sym_GT_EQ2] = ACTIONS(2020), + [anon_sym_EQ_TILDE2] = ACTIONS(2020), + [anon_sym_BANG_TILDE2] = ACTIONS(2020), + [anon_sym_like2] = ACTIONS(2020), + [anon_sym_not_DASHlike2] = ACTIONS(2020), + [anon_sym_STAR_STAR2] = ACTIONS(2020), + [anon_sym_PLUS_PLUS2] = ACTIONS(2020), + [anon_sym_SLASH2] = ACTIONS(2022), + [anon_sym_mod2] = ACTIONS(2020), + [anon_sym_SLASH_SLASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_bit_DASHshl2] = ACTIONS(2020), + [anon_sym_bit_DASHshr2] = ACTIONS(2020), + [anon_sym_bit_DASHand2] = ACTIONS(2020), + [anon_sym_bit_DASHxor2] = ACTIONS(2020), + [anon_sym_bit_DASHor2] = ACTIONS(2020), + [anon_sym_DOT2] = ACTIONS(2012), + [anon_sym_err_GT] = ACTIONS(2022), + [anon_sym_out_GT] = ACTIONS(2022), + [anon_sym_e_GT] = ACTIONS(2022), + [anon_sym_o_GT] = ACTIONS(2022), + [anon_sym_err_PLUSout_GT] = ACTIONS(2022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2022), + [anon_sym_o_PLUSe_GT] = ACTIONS(2022), + [anon_sym_e_PLUSo_GT] = ACTIONS(2022), + [anon_sym_err_GT_GT] = ACTIONS(2020), + [anon_sym_out_GT_GT] = ACTIONS(2020), + [anon_sym_e_GT_GT] = ACTIONS(2020), + [anon_sym_o_GT_GT] = ACTIONS(2020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(503)] = { + [sym_cell_path] = STATE(733), + [sym_path] = STATE(463), + [sym_comment] = STATE(503), + [aux_sym__where_predicate_lhs_repeat1] = STATE(441), + [anon_sym_in] = ACTIONS(2024), + [sym__newline] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_err_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_GT_PIPE] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_GT2] = ACTIONS(2026), + [anon_sym_DASH2] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_EQ_GT] = ACTIONS(2024), + [anon_sym_STAR2] = ACTIONS(2026), + [anon_sym_and2] = ACTIONS(2024), + [anon_sym_xor2] = ACTIONS(2024), + [anon_sym_or2] = ACTIONS(2024), + [anon_sym_not_DASHin2] = ACTIONS(2024), + [anon_sym_has2] = ACTIONS(2024), + [anon_sym_not_DASHhas2] = ACTIONS(2024), + [anon_sym_starts_DASHwith2] = ACTIONS(2024), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2024), + [anon_sym_ends_DASHwith2] = ACTIONS(2024), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2024), + [anon_sym_EQ_EQ2] = ACTIONS(2024), + [anon_sym_BANG_EQ2] = ACTIONS(2024), + [anon_sym_LT2] = ACTIONS(2026), + [anon_sym_LT_EQ2] = ACTIONS(2024), + [anon_sym_GT_EQ2] = ACTIONS(2024), + [anon_sym_EQ_TILDE2] = ACTIONS(2024), + [anon_sym_BANG_TILDE2] = ACTIONS(2024), + [anon_sym_like2] = ACTIONS(2024), + [anon_sym_not_DASHlike2] = ACTIONS(2024), + [anon_sym_STAR_STAR2] = ACTIONS(2024), + [anon_sym_PLUS_PLUS2] = ACTIONS(2024), + [anon_sym_SLASH2] = ACTIONS(2026), + [anon_sym_mod2] = ACTIONS(2024), + [anon_sym_SLASH_SLASH2] = ACTIONS(2024), + [anon_sym_PLUS2] = ACTIONS(2026), + [anon_sym_bit_DASHshl2] = ACTIONS(2024), + [anon_sym_bit_DASHshr2] = ACTIONS(2024), + [anon_sym_bit_DASHand2] = ACTIONS(2024), + [anon_sym_bit_DASHxor2] = ACTIONS(2024), + [anon_sym_bit_DASHor2] = ACTIONS(2024), + [anon_sym_DOT2] = ACTIONS(2012), + [anon_sym_err_GT] = ACTIONS(2026), + [anon_sym_out_GT] = ACTIONS(2026), + [anon_sym_e_GT] = ACTIONS(2026), + [anon_sym_o_GT] = ACTIONS(2026), + [anon_sym_err_PLUSout_GT] = ACTIONS(2026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2026), + [anon_sym_o_PLUSe_GT] = ACTIONS(2026), + [anon_sym_e_PLUSo_GT] = ACTIONS(2026), + [anon_sym_err_GT_GT] = ACTIONS(2024), + [anon_sym_out_GT_GT] = ACTIONS(2024), + [anon_sym_e_GT_GT] = ACTIONS(2024), + [anon_sym_o_GT_GT] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2024), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(504)] = { + [sym_comment] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1670), + [anon_sym_in] = ACTIONS(1670), + [sym__newline] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_err_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_GT_PIPE] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1670), + [anon_sym_GT2] = ACTIONS(1668), + [anon_sym_DASH2] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_STAR2] = ACTIONS(1668), + [anon_sym_and2] = ACTIONS(1670), + [anon_sym_xor2] = ACTIONS(1670), + [anon_sym_or2] = ACTIONS(1670), + [anon_sym_not_DASHin2] = ACTIONS(1670), + [anon_sym_has2] = ACTIONS(1670), + [anon_sym_not_DASHhas2] = ACTIONS(1670), + [anon_sym_starts_DASHwith2] = ACTIONS(1670), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1670), + [anon_sym_ends_DASHwith2] = ACTIONS(1670), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1670), + [anon_sym_EQ_EQ2] = ACTIONS(1670), + [anon_sym_BANG_EQ2] = ACTIONS(1670), + [anon_sym_LT2] = ACTIONS(1668), + [anon_sym_LT_EQ2] = ACTIONS(1670), + [anon_sym_GT_EQ2] = ACTIONS(1670), + [anon_sym_EQ_TILDE2] = ACTIONS(1670), + [anon_sym_BANG_TILDE2] = ACTIONS(1670), + [anon_sym_like2] = ACTIONS(1670), + [anon_sym_not_DASHlike2] = ACTIONS(1670), + [anon_sym_STAR_STAR2] = ACTIONS(1670), + [anon_sym_PLUS_PLUS2] = ACTIONS(1670), + [anon_sym_SLASH2] = ACTIONS(1668), + [anon_sym_mod2] = ACTIONS(1670), + [anon_sym_SLASH_SLASH2] = ACTIONS(1670), + [anon_sym_PLUS2] = ACTIONS(1668), + [anon_sym_bit_DASHshl2] = ACTIONS(1670), + [anon_sym_bit_DASHshr2] = ACTIONS(1670), + [anon_sym_bit_DASHand2] = ACTIONS(1670), + [anon_sym_bit_DASHxor2] = ACTIONS(1670), + [anon_sym_bit_DASHor2] = ACTIONS(1670), + [anon_sym_DOT_DOT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1670), + [anon_sym_QMARK2] = ACTIONS(1670), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_DOT2] = ACTIONS(1668), + [anon_sym_err_GT] = ACTIONS(1668), + [anon_sym_out_GT] = ACTIONS(1668), + [anon_sym_e_GT] = ACTIONS(1668), + [anon_sym_o_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT] = ACTIONS(1668), + [anon_sym_err_GT_GT] = ACTIONS(1670), + [anon_sym_out_GT_GT] = ACTIONS(1670), + [anon_sym_e_GT_GT] = ACTIONS(1670), + [anon_sym_o_GT_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(505)] = { + [sym__path_suffix] = STATE(789), + [sym_comment] = STATE(505), + [ts_builtin_sym_end] = ACTIONS(1596), + [anon_sym_in] = ACTIONS(1596), + [sym__newline] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_err_GT_PIPE] = ACTIONS(1596), + [anon_sym_out_GT_PIPE] = ACTIONS(1596), + [anon_sym_e_GT_PIPE] = ACTIONS(1596), + [anon_sym_o_GT_PIPE] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), + [anon_sym_GT2] = ACTIONS(1594), + [anon_sym_DASH2] = ACTIONS(1596), + [anon_sym_STAR2] = ACTIONS(1594), + [anon_sym_and2] = ACTIONS(1596), + [anon_sym_xor2] = ACTIONS(1596), + [anon_sym_or2] = ACTIONS(1596), + [anon_sym_not_DASHin2] = ACTIONS(1596), + [anon_sym_has2] = ACTIONS(1596), + [anon_sym_not_DASHhas2] = ACTIONS(1596), + [anon_sym_starts_DASHwith2] = ACTIONS(1596), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), + [anon_sym_ends_DASHwith2] = ACTIONS(1596), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), + [anon_sym_EQ_EQ2] = ACTIONS(1596), + [anon_sym_BANG_EQ2] = ACTIONS(1596), + [anon_sym_LT2] = ACTIONS(1594), + [anon_sym_LT_EQ2] = ACTIONS(1596), + [anon_sym_GT_EQ2] = ACTIONS(1596), + [anon_sym_EQ_TILDE2] = ACTIONS(1596), + [anon_sym_BANG_TILDE2] = ACTIONS(1596), + [anon_sym_like2] = ACTIONS(1596), + [anon_sym_not_DASHlike2] = ACTIONS(1596), + [anon_sym_STAR_STAR2] = ACTIONS(1596), + [anon_sym_PLUS_PLUS2] = ACTIONS(1596), + [anon_sym_SLASH2] = ACTIONS(1594), + [anon_sym_mod2] = ACTIONS(1596), + [anon_sym_SLASH_SLASH2] = ACTIONS(1596), + [anon_sym_PLUS2] = ACTIONS(1594), + [anon_sym_bit_DASHshl2] = ACTIONS(1596), + [anon_sym_bit_DASHshr2] = ACTIONS(1596), + [anon_sym_bit_DASHand2] = ACTIONS(1596), + [anon_sym_bit_DASHxor2] = ACTIONS(1596), + [anon_sym_bit_DASHor2] = ACTIONS(1596), + [anon_sym_DOT_DOT2] = ACTIONS(1594), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1596), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1596), + [anon_sym_QMARK2] = ACTIONS(2028), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_DOT2] = ACTIONS(1594), + [anon_sym_err_GT] = ACTIONS(1594), + [anon_sym_out_GT] = ACTIONS(1594), + [anon_sym_e_GT] = ACTIONS(1594), + [anon_sym_o_GT] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT] = ACTIONS(1594), + [anon_sym_err_GT_GT] = ACTIONS(1596), + [anon_sym_out_GT_GT] = ACTIONS(1596), + [anon_sym_e_GT_GT] = ACTIONS(1596), + [anon_sym_o_GT_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(506)] = { + [sym_cell_path] = STATE(974), + [sym_path] = STATE(463), + [sym_comment] = STATE(506), + [aux_sym__where_predicate_lhs_repeat1] = STATE(441), + [anon_sym_in] = ACTIONS(2032), + [sym__newline] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_err_GT_PIPE] = ACTIONS(2032), + [anon_sym_out_GT_PIPE] = ACTIONS(2032), + [anon_sym_e_GT_PIPE] = ACTIONS(2032), + [anon_sym_o_GT_PIPE] = ACTIONS(2032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2032), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_GT2] = ACTIONS(2035), + [anon_sym_DASH2] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_EQ_GT] = ACTIONS(2032), + [anon_sym_STAR2] = ACTIONS(2035), + [anon_sym_and2] = ACTIONS(2032), + [anon_sym_xor2] = ACTIONS(2032), + [anon_sym_or2] = ACTIONS(2032), + [anon_sym_not_DASHin2] = ACTIONS(2032), + [anon_sym_has2] = ACTIONS(2032), + [anon_sym_not_DASHhas2] = ACTIONS(2032), + [anon_sym_starts_DASHwith2] = ACTIONS(2032), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2032), + [anon_sym_ends_DASHwith2] = ACTIONS(2032), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2032), + [anon_sym_EQ_EQ2] = ACTIONS(2032), + [anon_sym_BANG_EQ2] = ACTIONS(2032), + [anon_sym_LT2] = ACTIONS(2035), + [anon_sym_LT_EQ2] = ACTIONS(2032), + [anon_sym_GT_EQ2] = ACTIONS(2032), + [anon_sym_EQ_TILDE2] = ACTIONS(2032), + [anon_sym_BANG_TILDE2] = ACTIONS(2032), + [anon_sym_like2] = ACTIONS(2032), + [anon_sym_not_DASHlike2] = ACTIONS(2032), + [anon_sym_STAR_STAR2] = ACTIONS(2032), + [anon_sym_PLUS_PLUS2] = ACTIONS(2032), + [anon_sym_SLASH2] = ACTIONS(2035), + [anon_sym_mod2] = ACTIONS(2032), + [anon_sym_SLASH_SLASH2] = ACTIONS(2032), + [anon_sym_PLUS2] = ACTIONS(2035), + [anon_sym_bit_DASHshl2] = ACTIONS(2032), + [anon_sym_bit_DASHshr2] = ACTIONS(2032), + [anon_sym_bit_DASHand2] = ACTIONS(2032), + [anon_sym_bit_DASHxor2] = ACTIONS(2032), + [anon_sym_bit_DASHor2] = ACTIONS(2032), + [anon_sym_DOT2] = ACTIONS(2012), + [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(2032), + [anon_sym_out_GT_GT] = ACTIONS(2032), + [anon_sym_e_GT_GT] = ACTIONS(2032), + [anon_sym_o_GT_GT] = ACTIONS(2032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2032), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(507)] = { + [sym_comment] = STATE(507), + [ts_builtin_sym_end] = ACTIONS(761), + [anon_sym_in] = ACTIONS(761), + [sym__newline] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(761), + [anon_sym_err_GT_PIPE] = ACTIONS(761), + [anon_sym_out_GT_PIPE] = ACTIONS(761), + [anon_sym_e_GT_PIPE] = ACTIONS(761), + [anon_sym_o_GT_PIPE] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(761), + [anon_sym_GT2] = ACTIONS(759), + [anon_sym_DASH2] = ACTIONS(761), + [anon_sym_STAR2] = ACTIONS(759), + [anon_sym_and2] = ACTIONS(761), + [anon_sym_xor2] = ACTIONS(761), + [anon_sym_or2] = ACTIONS(761), + [anon_sym_not_DASHin2] = ACTIONS(761), + [anon_sym_has2] = ACTIONS(761), + [anon_sym_not_DASHhas2] = ACTIONS(761), + [anon_sym_starts_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(761), + [anon_sym_ends_DASHwith2] = ACTIONS(761), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(761), + [anon_sym_EQ_EQ2] = ACTIONS(761), + [anon_sym_BANG_EQ2] = ACTIONS(761), + [anon_sym_LT2] = ACTIONS(759), + [anon_sym_LT_EQ2] = ACTIONS(761), + [anon_sym_GT_EQ2] = ACTIONS(761), + [anon_sym_EQ_TILDE2] = ACTIONS(761), + [anon_sym_BANG_TILDE2] = ACTIONS(761), + [anon_sym_like2] = ACTIONS(761), + [anon_sym_not_DASHlike2] = ACTIONS(761), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_STAR_STAR2] = ACTIONS(761), + [anon_sym_PLUS_PLUS2] = ACTIONS(761), + [anon_sym_SLASH2] = ACTIONS(759), + [anon_sym_mod2] = ACTIONS(761), + [anon_sym_SLASH_SLASH2] = ACTIONS(761), + [anon_sym_PLUS2] = ACTIONS(759), + [anon_sym_bit_DASHshl2] = ACTIONS(761), + [anon_sym_bit_DASHshr2] = ACTIONS(761), + [anon_sym_bit_DASHand2] = ACTIONS(761), + [anon_sym_bit_DASHxor2] = ACTIONS(761), + [anon_sym_bit_DASHor2] = ACTIONS(761), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(759), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(761), + [anon_sym_out_GT_GT] = ACTIONS(761), + [anon_sym_e_GT_GT] = ACTIONS(761), + [anon_sym_o_GT_GT] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(761), + [sym__unquoted_pattern] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(508)] = { + [sym_comment] = STATE(508), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [anon_sym_DOT_DOT2] = ACTIONS(1958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1956), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1956), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [sym__unquoted_pattern] = ACTIONS(1958), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(509)] = { + [sym_comment] = STATE(509), + [ts_builtin_sym_end] = ACTIONS(1920), + [anon_sym_in] = ACTIONS(1920), + [sym__newline] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_err_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_GT_PIPE] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1920), + [anon_sym_GT2] = ACTIONS(1922), + [anon_sym_DASH2] = ACTIONS(1920), + [anon_sym_STAR2] = ACTIONS(1922), + [anon_sym_and2] = ACTIONS(1920), + [anon_sym_xor2] = ACTIONS(1920), + [anon_sym_or2] = ACTIONS(1920), + [anon_sym_not_DASHin2] = ACTIONS(1920), + [anon_sym_has2] = ACTIONS(1920), + [anon_sym_not_DASHhas2] = ACTIONS(1920), + [anon_sym_starts_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1920), + [anon_sym_ends_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1920), + [anon_sym_EQ_EQ2] = ACTIONS(1920), + [anon_sym_BANG_EQ2] = ACTIONS(1920), + [anon_sym_LT2] = ACTIONS(1922), + [anon_sym_LT_EQ2] = ACTIONS(1920), + [anon_sym_GT_EQ2] = ACTIONS(1920), + [anon_sym_EQ_TILDE2] = ACTIONS(1920), + [anon_sym_BANG_TILDE2] = ACTIONS(1920), + [anon_sym_like2] = ACTIONS(1920), + [anon_sym_not_DASHlike2] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1920), + [anon_sym_STAR_STAR2] = ACTIONS(1920), + [anon_sym_PLUS_PLUS2] = ACTIONS(1920), + [anon_sym_SLASH2] = ACTIONS(1922), + [anon_sym_mod2] = ACTIONS(1920), + [anon_sym_SLASH_SLASH2] = ACTIONS(1920), + [anon_sym_PLUS2] = ACTIONS(1922), + [anon_sym_bit_DASHshl2] = ACTIONS(1920), + [anon_sym_bit_DASHshr2] = ACTIONS(1920), + [anon_sym_bit_DASHand2] = ACTIONS(1920), + [anon_sym_bit_DASHxor2] = ACTIONS(1920), + [anon_sym_bit_DASHor2] = ACTIONS(1920), + [anon_sym_DOT_DOT2] = ACTIONS(1922), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1920), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1920), + [aux_sym__immediate_decimal_token1] = ACTIONS(2038), + [aux_sym__immediate_decimal_token5] = ACTIONS(2040), + [anon_sym_err_GT] = ACTIONS(1922), + [anon_sym_out_GT] = ACTIONS(1922), + [anon_sym_e_GT] = ACTIONS(1922), + [anon_sym_o_GT] = ACTIONS(1922), + [anon_sym_err_PLUSout_GT] = ACTIONS(1922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1922), + [anon_sym_o_PLUSe_GT] = ACTIONS(1922), + [anon_sym_e_PLUSo_GT] = ACTIONS(1922), + [anon_sym_err_GT_GT] = ACTIONS(1920), + [anon_sym_out_GT_GT] = ACTIONS(1920), + [anon_sym_e_GT_GT] = ACTIONS(1920), + [anon_sym_o_GT_GT] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1920), + [sym__unquoted_pattern] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(510)] = { + [sym_cmd_identifier] = STATE(4348), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(4518), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_entry] = STATE(4768), + [sym__record_key] = STATE(5094), + [sym_comment] = STATE(510), + [aux_sym__types_body_repeat1] = STATE(1720), + [aux_sym__match_pattern_record_body_repeat1] = STATE(838), + [aux_sym_record_body_repeat1] = STATE(868), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [sym__newline] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1962), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1952), + }, + [STATE(511)] = { + [sym_comment] = STATE(511), + [ts_builtin_sym_end] = ACTIONS(1882), [anon_sym_in] = ACTIONS(1882), [sym__newline] = ACTIONS(1882), [anon_sym_SEMI] = ACTIONS(1882), @@ -85967,12 +90801,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), - [anon_sym_RPAREN] = ACTIONS(1882), [anon_sym_GT2] = ACTIONS(1884), [anon_sym_DASH2] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_EQ_GT] = ACTIONS(1882), [anon_sym_STAR2] = ACTIONS(1884), [anon_sym_and2] = ACTIONS(1882), [anon_sym_xor2] = ACTIONS(1882), @@ -85993,6 +90823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1882), [anon_sym_like2] = ACTIONS(1882), [anon_sym_not_DASHlike2] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(1882), [anon_sym_STAR_STAR2] = ACTIONS(1882), [anon_sym_PLUS_PLUS2] = ACTIONS(1882), [anon_sym_SLASH2] = ACTIONS(1884), @@ -86004,7 +90835,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1882), [anon_sym_bit_DASHxor2] = ACTIONS(1882), [anon_sym_bit_DASHor2] = ACTIONS(1882), - [anon_sym_DOT2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1884), + [anon_sym_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1882), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1882), + [aux_sym__immediate_decimal_token5] = ACTIONS(2044), [anon_sym_err_GT] = ACTIONS(1884), [anon_sym_out_GT] = ACTIONS(1884), [anon_sym_e_GT] = ACTIONS(1884), @@ -86021,24085 +90856,23243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [sym__unquoted_pattern] = ACTIONS(1884), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(498)] = { - [sym_comment] = STATE(498), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_in] = ACTIONS(1886), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_GT2] = ACTIONS(1888), - [anon_sym_DASH2] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_EQ_GT] = ACTIONS(1886), - [anon_sym_STAR2] = ACTIONS(1888), - [anon_sym_and2] = ACTIONS(1886), - [anon_sym_xor2] = ACTIONS(1886), - [anon_sym_or2] = ACTIONS(1886), - [anon_sym_not_DASHin2] = ACTIONS(1886), - [anon_sym_has2] = ACTIONS(1886), - [anon_sym_not_DASHhas2] = ACTIONS(1886), - [anon_sym_starts_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1886), - [anon_sym_ends_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1886), - [anon_sym_EQ_EQ2] = ACTIONS(1886), - [anon_sym_BANG_EQ2] = ACTIONS(1886), - [anon_sym_LT2] = ACTIONS(1888), - [anon_sym_LT_EQ2] = ACTIONS(1886), - [anon_sym_GT_EQ2] = ACTIONS(1886), - [anon_sym_EQ_TILDE2] = ACTIONS(1886), - [anon_sym_BANG_TILDE2] = ACTIONS(1886), - [anon_sym_like2] = ACTIONS(1886), - [anon_sym_not_DASHlike2] = ACTIONS(1886), - [anon_sym_STAR_STAR2] = ACTIONS(1886), - [anon_sym_PLUS_PLUS2] = ACTIONS(1886), - [anon_sym_SLASH2] = ACTIONS(1888), - [anon_sym_mod2] = ACTIONS(1886), - [anon_sym_SLASH_SLASH2] = ACTIONS(1886), - [anon_sym_PLUS2] = ACTIONS(1888), - [anon_sym_bit_DASHshl2] = ACTIONS(1886), - [anon_sym_bit_DASHshr2] = ACTIONS(1886), - [anon_sym_bit_DASHand2] = ACTIONS(1886), - [anon_sym_bit_DASHxor2] = ACTIONS(1886), - [anon_sym_bit_DASHor2] = ACTIONS(1886), - [anon_sym_DOT_DOT2] = ACTIONS(1888), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1886), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1888), - [anon_sym_out_GT] = ACTIONS(1888), - [anon_sym_e_GT] = ACTIONS(1888), - [anon_sym_o_GT] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT] = ACTIONS(1888), - [anon_sym_err_GT_GT] = ACTIONS(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(499)] = { - [sym_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(851), - [sym__newline] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_err_GT_PIPE] = ACTIONS(851), - [anon_sym_out_GT_PIPE] = ACTIONS(851), - [anon_sym_e_GT_PIPE] = ACTIONS(851), - [anon_sym_o_GT_PIPE] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(851), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(851), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(851), - [anon_sym_xor2] = ACTIONS(851), - [anon_sym_or2] = ACTIONS(851), - [anon_sym_not_DASHin2] = ACTIONS(851), - [anon_sym_has2] = ACTIONS(851), - [anon_sym_not_DASHhas2] = ACTIONS(851), - [anon_sym_starts_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(851), - [anon_sym_ends_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(851), - [anon_sym_EQ_EQ2] = ACTIONS(851), - [anon_sym_BANG_EQ2] = ACTIONS(851), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(851), - [anon_sym_GT_EQ2] = ACTIONS(851), - [anon_sym_EQ_TILDE2] = ACTIONS(851), - [anon_sym_BANG_TILDE2] = ACTIONS(851), - [anon_sym_like2] = ACTIONS(851), - [anon_sym_not_DASHlike2] = ACTIONS(851), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_STAR_STAR2] = ACTIONS(851), - [anon_sym_PLUS_PLUS2] = ACTIONS(851), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(851), - [anon_sym_SLASH_SLASH2] = ACTIONS(851), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(851), - [anon_sym_bit_DASHshr2] = ACTIONS(851), - [anon_sym_bit_DASHand2] = ACTIONS(851), - [anon_sym_bit_DASHxor2] = ACTIONS(851), - [anon_sym_bit_DASHor2] = ACTIONS(851), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(851), - [anon_sym_out_GT_GT] = ACTIONS(851), - [anon_sym_e_GT_GT] = ACTIONS(851), - [anon_sym_o_GT_GT] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(851), - [sym__unquoted_pattern] = ACTIONS(849), + [STATE(512)] = { + [sym_cell_path] = STATE(913), + [sym_path] = STATE(463), + [sym_comment] = STATE(512), + [aux_sym__where_predicate_lhs_repeat1] = STATE(441), + [anon_sym_in] = ACTIONS(2046), + [sym__newline] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_PIPE] = ACTIONS(2046), + [anon_sym_err_GT_PIPE] = ACTIONS(2046), + [anon_sym_out_GT_PIPE] = ACTIONS(2046), + [anon_sym_e_GT_PIPE] = ACTIONS(2046), + [anon_sym_o_GT_PIPE] = ACTIONS(2046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2046), + [anon_sym_RPAREN] = ACTIONS(2046), + [anon_sym_GT2] = ACTIONS(2048), + [anon_sym_DASH2] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_EQ_GT] = ACTIONS(2046), + [anon_sym_STAR2] = ACTIONS(2048), + [anon_sym_and2] = ACTIONS(2046), + [anon_sym_xor2] = ACTIONS(2046), + [anon_sym_or2] = ACTIONS(2046), + [anon_sym_not_DASHin2] = ACTIONS(2046), + [anon_sym_has2] = ACTIONS(2046), + [anon_sym_not_DASHhas2] = ACTIONS(2046), + [anon_sym_starts_DASHwith2] = ACTIONS(2046), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2046), + [anon_sym_ends_DASHwith2] = ACTIONS(2046), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2046), + [anon_sym_EQ_EQ2] = ACTIONS(2046), + [anon_sym_BANG_EQ2] = ACTIONS(2046), + [anon_sym_LT2] = ACTIONS(2048), + [anon_sym_LT_EQ2] = ACTIONS(2046), + [anon_sym_GT_EQ2] = ACTIONS(2046), + [anon_sym_EQ_TILDE2] = ACTIONS(2046), + [anon_sym_BANG_TILDE2] = ACTIONS(2046), + [anon_sym_like2] = ACTIONS(2046), + [anon_sym_not_DASHlike2] = ACTIONS(2046), + [anon_sym_STAR_STAR2] = ACTIONS(2046), + [anon_sym_PLUS_PLUS2] = ACTIONS(2046), + [anon_sym_SLASH2] = ACTIONS(2048), + [anon_sym_mod2] = ACTIONS(2046), + [anon_sym_SLASH_SLASH2] = ACTIONS(2046), + [anon_sym_PLUS2] = ACTIONS(2048), + [anon_sym_bit_DASHshl2] = ACTIONS(2046), + [anon_sym_bit_DASHshr2] = ACTIONS(2046), + [anon_sym_bit_DASHand2] = ACTIONS(2046), + [anon_sym_bit_DASHxor2] = ACTIONS(2046), + [anon_sym_bit_DASHor2] = ACTIONS(2046), + [anon_sym_DOT2] = ACTIONS(2012), + [anon_sym_err_GT] = ACTIONS(2048), + [anon_sym_out_GT] = ACTIONS(2048), + [anon_sym_e_GT] = ACTIONS(2048), + [anon_sym_o_GT] = ACTIONS(2048), + [anon_sym_err_PLUSout_GT] = ACTIONS(2048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2048), + [anon_sym_o_PLUSe_GT] = ACTIONS(2048), + [anon_sym_e_PLUSo_GT] = ACTIONS(2048), + [anon_sym_err_GT_GT] = ACTIONS(2046), + [anon_sym_out_GT_GT] = ACTIONS(2046), + [anon_sym_e_GT_GT] = ACTIONS(2046), + [anon_sym_o_GT_GT] = ACTIONS(2046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2046), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(500)] = { - [sym_comment] = STATE(500), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [STATE(513)] = { + [sym_comment] = STATE(513), + [anon_sym_in] = ACTIONS(2050), + [sym__newline] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_err_GT_PIPE] = ACTIONS(2050), + [anon_sym_out_GT_PIPE] = ACTIONS(2050), + [anon_sym_e_GT_PIPE] = ACTIONS(2050), + [anon_sym_o_GT_PIPE] = ACTIONS(2050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2050), + [anon_sym_RPAREN] = ACTIONS(2050), + [anon_sym_GT2] = ACTIONS(2052), + [anon_sym_DASH2] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_RBRACE] = ACTIONS(2050), + [anon_sym_STAR2] = ACTIONS(2052), + [anon_sym_and2] = ACTIONS(2050), + [anon_sym_xor2] = ACTIONS(2050), + [anon_sym_or2] = ACTIONS(2050), + [anon_sym_not_DASHin2] = ACTIONS(2050), + [anon_sym_has2] = ACTIONS(2050), + [anon_sym_not_DASHhas2] = ACTIONS(2050), + [anon_sym_starts_DASHwith2] = ACTIONS(2050), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2050), + [anon_sym_ends_DASHwith2] = ACTIONS(2050), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2050), + [anon_sym_EQ_EQ2] = ACTIONS(2050), + [anon_sym_BANG_EQ2] = ACTIONS(2050), + [anon_sym_LT2] = ACTIONS(2052), + [anon_sym_LT_EQ2] = ACTIONS(2050), + [anon_sym_GT_EQ2] = ACTIONS(2050), + [anon_sym_EQ_TILDE2] = ACTIONS(2050), + [anon_sym_BANG_TILDE2] = ACTIONS(2050), + [anon_sym_like2] = ACTIONS(2050), + [anon_sym_not_DASHlike2] = ACTIONS(2050), + [anon_sym_LPAREN2] = ACTIONS(2050), + [anon_sym_STAR_STAR2] = ACTIONS(2050), + [anon_sym_PLUS_PLUS2] = ACTIONS(2050), + [anon_sym_SLASH2] = ACTIONS(2052), + [anon_sym_mod2] = ACTIONS(2050), + [anon_sym_SLASH_SLASH2] = ACTIONS(2050), + [anon_sym_PLUS2] = ACTIONS(2052), + [anon_sym_bit_DASHshl2] = ACTIONS(2050), + [anon_sym_bit_DASHshr2] = ACTIONS(2050), + [anon_sym_bit_DASHand2] = ACTIONS(2050), + [anon_sym_bit_DASHxor2] = ACTIONS(2050), + [anon_sym_bit_DASHor2] = ACTIONS(2050), + [anon_sym_DOT_DOT2] = ACTIONS(2052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2050), + [anon_sym_err_GT] = ACTIONS(2052), + [anon_sym_out_GT] = ACTIONS(2052), + [anon_sym_e_GT] = ACTIONS(2052), + [anon_sym_o_GT] = ACTIONS(2052), + [anon_sym_err_PLUSout_GT] = ACTIONS(2052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2052), + [anon_sym_o_PLUSe_GT] = ACTIONS(2052), + [anon_sym_e_PLUSo_GT] = ACTIONS(2052), + [anon_sym_err_GT_GT] = ACTIONS(2050), + [anon_sym_out_GT_GT] = ACTIONS(2050), + [anon_sym_e_GT_GT] = ACTIONS(2050), + [anon_sym_o_GT_GT] = ACTIONS(2050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2050), + [sym__unquoted_pattern] = ACTIONS(2052), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(501)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4298), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4450), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(501), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym__match_pattern_record_body_repeat1] = STATE(836), - [aux_sym_record_body_repeat1] = STATE(878), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [STATE(514)] = { + [sym_comment] = STATE(514), + [ts_builtin_sym_end] = ACTIONS(1674), + [anon_sym_in] = ACTIONS(1674), + [sym__newline] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_err_GT_PIPE] = ACTIONS(1674), + [anon_sym_out_GT_PIPE] = ACTIONS(1674), + [anon_sym_e_GT_PIPE] = ACTIONS(1674), + [anon_sym_o_GT_PIPE] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1674), + [anon_sym_GT2] = ACTIONS(1672), + [anon_sym_DASH2] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_STAR2] = ACTIONS(1672), + [anon_sym_and2] = ACTIONS(1674), + [anon_sym_xor2] = ACTIONS(1674), + [anon_sym_or2] = ACTIONS(1674), + [anon_sym_not_DASHin2] = ACTIONS(1674), + [anon_sym_has2] = ACTIONS(1674), + [anon_sym_not_DASHhas2] = ACTIONS(1674), + [anon_sym_starts_DASHwith2] = ACTIONS(1674), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1674), + [anon_sym_ends_DASHwith2] = ACTIONS(1674), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1674), + [anon_sym_EQ_EQ2] = ACTIONS(1674), + [anon_sym_BANG_EQ2] = ACTIONS(1674), + [anon_sym_LT2] = ACTIONS(1672), + [anon_sym_LT_EQ2] = ACTIONS(1674), + [anon_sym_GT_EQ2] = ACTIONS(1674), + [anon_sym_EQ_TILDE2] = ACTIONS(1674), + [anon_sym_BANG_TILDE2] = ACTIONS(1674), + [anon_sym_like2] = ACTIONS(1674), + [anon_sym_not_DASHlike2] = ACTIONS(1674), + [anon_sym_STAR_STAR2] = ACTIONS(1674), + [anon_sym_PLUS_PLUS2] = ACTIONS(1674), + [anon_sym_SLASH2] = ACTIONS(1672), + [anon_sym_mod2] = ACTIONS(1674), + [anon_sym_SLASH_SLASH2] = ACTIONS(1674), + [anon_sym_PLUS2] = ACTIONS(1672), + [anon_sym_bit_DASHshl2] = ACTIONS(1674), + [anon_sym_bit_DASHshr2] = ACTIONS(1674), + [anon_sym_bit_DASHand2] = ACTIONS(1674), + [anon_sym_bit_DASHxor2] = ACTIONS(1674), + [anon_sym_bit_DASHor2] = ACTIONS(1674), + [anon_sym_DOT_DOT2] = ACTIONS(1672), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1674), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1674), + [anon_sym_QMARK2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_DOT2] = ACTIONS(1672), + [anon_sym_err_GT] = ACTIONS(1672), + [anon_sym_out_GT] = ACTIONS(1672), + [anon_sym_e_GT] = ACTIONS(1672), + [anon_sym_o_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT] = ACTIONS(1672), + [anon_sym_err_GT_GT] = ACTIONS(1674), + [anon_sym_out_GT_GT] = ACTIONS(1674), + [anon_sym_e_GT_GT] = ACTIONS(1674), + [anon_sym_o_GT_GT] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1674), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(502)] = { - [sym__path_suffix] = STATE(784), - [sym_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1448), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [STATE(515)] = { + [sym_cell_path] = STATE(934), + [sym_path] = STATE(775), + [sym_comment] = STATE(515), + [aux_sym__where_predicate_lhs_repeat1] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1590), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1590), + [anon_sym_xor2] = ACTIONS(1590), + [anon_sym_or2] = ACTIONS(1590), + [anon_sym_not_DASHin2] = ACTIONS(1590), + [anon_sym_has2] = ACTIONS(1590), + [anon_sym_not_DASHhas2] = ACTIONS(1590), + [anon_sym_starts_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1590), + [anon_sym_ends_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1590), + [anon_sym_EQ_EQ2] = ACTIONS(1590), + [anon_sym_BANG_EQ2] = ACTIONS(1590), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1590), + [anon_sym_GT_EQ2] = ACTIONS(1590), + [anon_sym_EQ_TILDE2] = ACTIONS(1590), + [anon_sym_BANG_TILDE2] = ACTIONS(1590), + [anon_sym_like2] = ACTIONS(1590), + [anon_sym_not_DASHlike2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1590), + [anon_sym_PLUS_PLUS2] = ACTIONS(1590), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1590), + [anon_sym_SLASH_SLASH2] = ACTIONS(1590), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1590), + [anon_sym_bit_DASHshr2] = ACTIONS(1590), + [anon_sym_bit_DASHand2] = ACTIONS(1590), + [anon_sym_bit_DASHxor2] = ACTIONS(1590), + [anon_sym_bit_DASHor2] = ACTIONS(1590), + [anon_sym_DOT_DOT2] = ACTIONS(1588), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1590), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1590), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(503)] = { - [sym_comment] = STATE(503), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [STATE(516)] = { + [sym_cell_path] = STATE(948), + [sym_path] = STATE(775), + [sym_comment] = STATE(516), + [aux_sym__where_predicate_lhs_repeat1] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(1807), + [anon_sym_in] = ACTIONS(1807), + [sym__newline] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1807), + [anon_sym_err_GT_PIPE] = ACTIONS(1807), + [anon_sym_out_GT_PIPE] = ACTIONS(1807), + [anon_sym_e_GT_PIPE] = ACTIONS(1807), + [anon_sym_o_GT_PIPE] = ACTIONS(1807), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1807), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1807), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1807), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1807), + [anon_sym_GT2] = ACTIONS(1809), + [anon_sym_DASH2] = ACTIONS(1807), + [anon_sym_STAR2] = ACTIONS(1809), + [anon_sym_and2] = ACTIONS(1807), + [anon_sym_xor2] = ACTIONS(1807), + [anon_sym_or2] = ACTIONS(1807), + [anon_sym_not_DASHin2] = ACTIONS(1807), + [anon_sym_has2] = ACTIONS(1807), + [anon_sym_not_DASHhas2] = ACTIONS(1807), + [anon_sym_starts_DASHwith2] = ACTIONS(1807), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1807), + [anon_sym_ends_DASHwith2] = ACTIONS(1807), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1807), + [anon_sym_EQ_EQ2] = ACTIONS(1807), + [anon_sym_BANG_EQ2] = ACTIONS(1807), + [anon_sym_LT2] = ACTIONS(1809), + [anon_sym_LT_EQ2] = ACTIONS(1807), + [anon_sym_GT_EQ2] = ACTIONS(1807), + [anon_sym_EQ_TILDE2] = ACTIONS(1807), + [anon_sym_BANG_TILDE2] = ACTIONS(1807), + [anon_sym_like2] = ACTIONS(1807), + [anon_sym_not_DASHlike2] = ACTIONS(1807), + [anon_sym_STAR_STAR2] = ACTIONS(1807), + [anon_sym_PLUS_PLUS2] = ACTIONS(1807), + [anon_sym_SLASH2] = ACTIONS(1809), + [anon_sym_mod2] = ACTIONS(1807), + [anon_sym_SLASH_SLASH2] = ACTIONS(1807), + [anon_sym_PLUS2] = ACTIONS(1809), + [anon_sym_bit_DASHshl2] = ACTIONS(1807), + [anon_sym_bit_DASHshr2] = ACTIONS(1807), + [anon_sym_bit_DASHand2] = ACTIONS(1807), + [anon_sym_bit_DASHxor2] = ACTIONS(1807), + [anon_sym_bit_DASHor2] = ACTIONS(1807), + [anon_sym_DOT_DOT2] = ACTIONS(1809), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1807), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1807), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_err_GT] = ACTIONS(1809), + [anon_sym_out_GT] = ACTIONS(1809), + [anon_sym_e_GT] = ACTIONS(1809), + [anon_sym_o_GT] = ACTIONS(1809), + [anon_sym_err_PLUSout_GT] = ACTIONS(1809), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1809), + [anon_sym_o_PLUSe_GT] = ACTIONS(1809), + [anon_sym_e_PLUSo_GT] = ACTIONS(1809), + [anon_sym_err_GT_GT] = ACTIONS(1807), + [anon_sym_out_GT_GT] = ACTIONS(1807), + [anon_sym_e_GT_GT] = ACTIONS(1807), + [anon_sym_o_GT_GT] = ACTIONS(1807), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1807), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1807), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1807), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1807), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(504)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1588), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(504), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(517)] = { + [aux_sym__repeat_newline] = STATE(682), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2273), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(835), + [sym__unquoted_with_expr] = STATE(1066), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(517), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(505)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2046), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(505), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(518)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2311), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(865), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(518), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(506)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2048), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(506), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(519)] = { + [aux_sym__repeat_newline] = STATE(603), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1000), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(519), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(507)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2050), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(507), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(520)] = { + [sym_comment] = STATE(520), + [ts_builtin_sym_end] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(1882), + [sym__newline] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_err_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_GT_PIPE] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), + [anon_sym_GT2] = ACTIONS(1884), + [anon_sym_DASH2] = ACTIONS(1882), + [anon_sym_STAR2] = ACTIONS(1884), + [anon_sym_and2] = ACTIONS(1882), + [anon_sym_xor2] = ACTIONS(1882), + [anon_sym_or2] = ACTIONS(1882), + [anon_sym_not_DASHin2] = ACTIONS(1882), + [anon_sym_has2] = ACTIONS(1882), + [anon_sym_not_DASHhas2] = ACTIONS(1882), + [anon_sym_starts_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), + [anon_sym_ends_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), + [anon_sym_EQ_EQ2] = ACTIONS(1882), + [anon_sym_BANG_EQ2] = ACTIONS(1882), + [anon_sym_LT2] = ACTIONS(1884), + [anon_sym_LT_EQ2] = ACTIONS(1882), + [anon_sym_GT_EQ2] = ACTIONS(1882), + [anon_sym_EQ_TILDE2] = ACTIONS(1882), + [anon_sym_BANG_TILDE2] = ACTIONS(1882), + [anon_sym_like2] = ACTIONS(1882), + [anon_sym_not_DASHlike2] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(1882), + [anon_sym_STAR_STAR2] = ACTIONS(1882), + [anon_sym_PLUS_PLUS2] = ACTIONS(1882), + [anon_sym_SLASH2] = ACTIONS(1884), + [anon_sym_mod2] = ACTIONS(1882), + [anon_sym_SLASH_SLASH2] = ACTIONS(1882), + [anon_sym_PLUS2] = ACTIONS(1884), + [anon_sym_bit_DASHshl2] = ACTIONS(1882), + [anon_sym_bit_DASHshr2] = ACTIONS(1882), + [anon_sym_bit_DASHand2] = ACTIONS(1882), + [anon_sym_bit_DASHxor2] = ACTIONS(1882), + [anon_sym_bit_DASHor2] = ACTIONS(1882), + [anon_sym_DOT_DOT2] = ACTIONS(1884), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1882), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1882), + [aux_sym__immediate_decimal_token5] = ACTIONS(2044), + [anon_sym_err_GT] = ACTIONS(1884), + [anon_sym_out_GT] = ACTIONS(1884), + [anon_sym_e_GT] = ACTIONS(1884), + [anon_sym_o_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT] = ACTIONS(1884), + [anon_sym_err_GT_GT] = ACTIONS(1882), + [anon_sym_out_GT_GT] = ACTIONS(1882), + [anon_sym_e_GT_GT] = ACTIONS(1882), + [anon_sym_o_GT_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [sym__unquoted_pattern] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(521)] = { + [aux_sym__repeat_newline] = STATE(604), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1178), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(521), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(508)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2052), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(508), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(522)] = { + [sym_comment] = STATE(522), + [anon_sym_in] = ACTIONS(2094), + [sym__newline] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_err_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_GT_PIPE] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(2094), + [anon_sym_GT2] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_STAR2] = ACTIONS(2096), + [anon_sym_and2] = ACTIONS(2094), + [anon_sym_xor2] = ACTIONS(2094), + [anon_sym_or2] = ACTIONS(2094), + [anon_sym_not_DASHin2] = ACTIONS(2094), + [anon_sym_has2] = ACTIONS(2094), + [anon_sym_not_DASHhas2] = ACTIONS(2094), + [anon_sym_starts_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2094), + [anon_sym_ends_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2094), + [anon_sym_EQ_EQ2] = ACTIONS(2094), + [anon_sym_BANG_EQ2] = ACTIONS(2094), + [anon_sym_LT2] = ACTIONS(2096), + [anon_sym_LT_EQ2] = ACTIONS(2094), + [anon_sym_GT_EQ2] = ACTIONS(2094), + [anon_sym_EQ_TILDE2] = ACTIONS(2094), + [anon_sym_BANG_TILDE2] = ACTIONS(2094), + [anon_sym_like2] = ACTIONS(2094), + [anon_sym_not_DASHlike2] = ACTIONS(2094), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2094), + [anon_sym_PLUS_PLUS2] = ACTIONS(2094), + [anon_sym_SLASH2] = ACTIONS(2096), + [anon_sym_mod2] = ACTIONS(2094), + [anon_sym_SLASH_SLASH2] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2096), + [anon_sym_bit_DASHshl2] = ACTIONS(2094), + [anon_sym_bit_DASHshr2] = ACTIONS(2094), + [anon_sym_bit_DASHand2] = ACTIONS(2094), + [anon_sym_bit_DASHxor2] = ACTIONS(2094), + [anon_sym_bit_DASHor2] = ACTIONS(2094), + [anon_sym_DOT_DOT2] = ACTIONS(2100), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2102), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2102), + [anon_sym_err_GT] = ACTIONS(2096), + [anon_sym_out_GT] = ACTIONS(2096), + [anon_sym_e_GT] = ACTIONS(2096), + [anon_sym_o_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT] = ACTIONS(2096), + [anon_sym_err_GT_GT] = ACTIONS(2094), + [anon_sym_out_GT_GT] = ACTIONS(2094), + [anon_sym_e_GT_GT] = ACTIONS(2094), + [anon_sym_o_GT_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), + [sym__unquoted_pattern] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(523)] = { + [sym_comment] = STATE(523), + [anon_sym_in] = ACTIONS(2104), + [sym__newline] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_err_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_GT_PIPE] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2104), + [anon_sym_GT2] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_STAR2] = ACTIONS(2106), + [anon_sym_and2] = ACTIONS(2104), + [anon_sym_xor2] = ACTIONS(2104), + [anon_sym_or2] = ACTIONS(2104), + [anon_sym_not_DASHin2] = ACTIONS(2104), + [anon_sym_has2] = ACTIONS(2104), + [anon_sym_not_DASHhas2] = ACTIONS(2104), + [anon_sym_starts_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2104), + [anon_sym_ends_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2104), + [anon_sym_EQ_EQ2] = ACTIONS(2104), + [anon_sym_BANG_EQ2] = ACTIONS(2104), + [anon_sym_LT2] = ACTIONS(2106), + [anon_sym_LT_EQ2] = ACTIONS(2104), + [anon_sym_GT_EQ2] = ACTIONS(2104), + [anon_sym_EQ_TILDE2] = ACTIONS(2104), + [anon_sym_BANG_TILDE2] = ACTIONS(2104), + [anon_sym_like2] = ACTIONS(2104), + [anon_sym_not_DASHlike2] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2108), + [anon_sym_STAR_STAR2] = ACTIONS(2104), + [anon_sym_PLUS_PLUS2] = ACTIONS(2104), + [anon_sym_SLASH2] = ACTIONS(2106), + [anon_sym_mod2] = ACTIONS(2104), + [anon_sym_SLASH_SLASH2] = ACTIONS(2104), + [anon_sym_PLUS2] = ACTIONS(2106), + [anon_sym_bit_DASHshl2] = ACTIONS(2104), + [anon_sym_bit_DASHshr2] = ACTIONS(2104), + [anon_sym_bit_DASHand2] = ACTIONS(2104), + [anon_sym_bit_DASHxor2] = ACTIONS(2104), + [anon_sym_bit_DASHor2] = ACTIONS(2104), + [anon_sym_DOT_DOT2] = ACTIONS(2110), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2112), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2112), + [anon_sym_err_GT] = ACTIONS(2106), + [anon_sym_out_GT] = ACTIONS(2106), + [anon_sym_e_GT] = ACTIONS(2106), + [anon_sym_o_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_err_GT_GT] = ACTIONS(2104), + [anon_sym_out_GT_GT] = ACTIONS(2104), + [anon_sym_e_GT_GT] = ACTIONS(2104), + [anon_sym_o_GT_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), + [sym__unquoted_pattern] = ACTIONS(2114), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(524)] = { + [aux_sym__repeat_newline] = STATE(606), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1181), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(524), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(509)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2054), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(509), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(525)] = { + [sym_path] = STATE(775), + [sym_comment] = STATE(525), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1644), + [anon_sym_in] = ACTIONS(1644), + [sym__newline] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_err_GT_PIPE] = ACTIONS(1644), + [anon_sym_out_GT_PIPE] = ACTIONS(1644), + [anon_sym_e_GT_PIPE] = ACTIONS(1644), + [anon_sym_o_GT_PIPE] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1644), + [anon_sym_GT2] = ACTIONS(1642), + [anon_sym_DASH2] = ACTIONS(1644), + [anon_sym_STAR2] = ACTIONS(1642), + [anon_sym_and2] = ACTIONS(1644), + [anon_sym_xor2] = ACTIONS(1644), + [anon_sym_or2] = ACTIONS(1644), + [anon_sym_not_DASHin2] = ACTIONS(1644), + [anon_sym_has2] = ACTIONS(1644), + [anon_sym_not_DASHhas2] = ACTIONS(1644), + [anon_sym_starts_DASHwith2] = ACTIONS(1644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1644), + [anon_sym_ends_DASHwith2] = ACTIONS(1644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1644), + [anon_sym_EQ_EQ2] = ACTIONS(1644), + [anon_sym_BANG_EQ2] = ACTIONS(1644), + [anon_sym_LT2] = ACTIONS(1642), + [anon_sym_LT_EQ2] = ACTIONS(1644), + [anon_sym_GT_EQ2] = ACTIONS(1644), + [anon_sym_EQ_TILDE2] = ACTIONS(1644), + [anon_sym_BANG_TILDE2] = ACTIONS(1644), + [anon_sym_like2] = ACTIONS(1644), + [anon_sym_not_DASHlike2] = ACTIONS(1644), + [anon_sym_STAR_STAR2] = ACTIONS(1644), + [anon_sym_PLUS_PLUS2] = ACTIONS(1644), + [anon_sym_SLASH2] = ACTIONS(1642), + [anon_sym_mod2] = ACTIONS(1644), + [anon_sym_SLASH_SLASH2] = ACTIONS(1644), + [anon_sym_PLUS2] = ACTIONS(1642), + [anon_sym_bit_DASHshl2] = ACTIONS(1644), + [anon_sym_bit_DASHshr2] = ACTIONS(1644), + [anon_sym_bit_DASHand2] = ACTIONS(1644), + [anon_sym_bit_DASHxor2] = ACTIONS(1644), + [anon_sym_bit_DASHor2] = ACTIONS(1644), + [anon_sym_DOT_DOT2] = ACTIONS(1642), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1644), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1644), + [anon_sym_DOT2] = ACTIONS(2116), + [anon_sym_err_GT] = ACTIONS(1642), + [anon_sym_out_GT] = ACTIONS(1642), + [anon_sym_e_GT] = ACTIONS(1642), + [anon_sym_o_GT] = ACTIONS(1642), + [anon_sym_err_PLUSout_GT] = ACTIONS(1642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1642), + [anon_sym_o_PLUSe_GT] = ACTIONS(1642), + [anon_sym_e_PLUSo_GT] = ACTIONS(1642), + [anon_sym_err_GT_GT] = ACTIONS(1644), + [anon_sym_out_GT_GT] = ACTIONS(1644), + [anon_sym_e_GT_GT] = ACTIONS(1644), + [anon_sym_o_GT_GT] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1644), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(526)] = { + [aux_sym__repeat_newline] = STATE(684), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1187), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(784), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(526), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(510)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2056), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(510), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(527)] = { + [aux_sym__repeat_newline] = STATE(608), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1192), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(785), + [sym__unquoted_with_expr] = STATE(1025), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(527), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(511)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2058), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(511), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(512)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(512), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(513)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2060), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(513), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(514)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2062), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(514), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(515)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2064), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(515), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(516)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2066), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(516), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(517)] = { - [sym_path] = STATE(783), - [sym_comment] = STATE(517), - [aux_sym__where_predicate_lhs_repeat1] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1526), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1934), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(518)] = { - [sym_path] = STATE(783), - [sym_comment] = STATE(518), - [aux_sym__where_predicate_lhs_repeat1] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1460), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(519)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1187), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(519), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(520)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1156), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(520), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(521)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1193), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(521), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(522)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1168), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(522), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(523)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1180), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(523), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(524)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1197), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(524), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(525)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1234), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(525), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(526)] = { - [aux_sym__repeat_newline] = STATE(616), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1982), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(526), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(527)] = { - [aux_sym__repeat_newline] = STATE(598), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1226), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(527), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(528)] = { - [aux_sym__repeat_newline] = STATE(599), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1235), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_cmd_identifier] = STATE(4348), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(4518), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_entry] = STATE(4730), + [sym__record_key] = STATE(5094), [sym_comment] = STATE(528), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [aux_sym__types_body_repeat1] = STATE(1720), + [aux_sym__match_pattern_record_body_repeat1] = STATE(838), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [sym__newline] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1962), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(1952), }, [STATE(529)] = { - [aux_sym__repeat_newline] = STATE(617), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1983), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(599), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1157), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(777), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(529), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(530)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1261), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(600), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1160), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(778), + [sym__unquoted_with_expr] = STATE(1140), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(530), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(531)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1218), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(840), + [sym__unquoted_with_expr] = STATE(1001), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(531), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(532)] = { - [aux_sym__repeat_newline] = STATE(619), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1984), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1228), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(854), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(532), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(533)] = { - [aux_sym__repeat_newline] = STATE(620), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1985), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1231), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(855), + [sym__unquoted_with_expr] = STATE(1020), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(533), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(534)] = { - [aux_sym__repeat_newline] = STATE(621), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1986), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1233), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(856), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(534), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(535)] = { - [aux_sym__repeat_newline] = STATE(600), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1241), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1269), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(771), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(535), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(536)] = { - [aux_sym__repeat_newline] = STATE(622), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1987), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_path] = STATE(775), [sym_comment] = STATE(536), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1651), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1651), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_has2] = ACTIONS(1653), + [anon_sym_not_DASHhas2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1651), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_like2] = ACTIONS(1653), + [anon_sym_not_DASHlike2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1651), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1651), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(1651), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1653), + [anon_sym_DOT2] = ACTIONS(2014), + [anon_sym_err_GT] = ACTIONS(1651), + [anon_sym_out_GT] = ACTIONS(1651), + [anon_sym_e_GT] = ACTIONS(1651), + [anon_sym_o_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT] = ACTIONS(1651), + [anon_sym_err_GT_GT] = ACTIONS(1653), + [anon_sym_out_GT_GT] = ACTIONS(1653), + [anon_sym_e_GT_GT] = ACTIONS(1653), + [anon_sym_o_GT_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(537)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1235), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(857), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(537), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(537)] = { - [aux_sym__repeat_newline] = STATE(623), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1988), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(537), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(538)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1238), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(858), + [sym__unquoted_with_expr] = STATE(1029), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(538), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(538)] = { - [aux_sym__repeat_newline] = STATE(624), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1989), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(538), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(539)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1240), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(859), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(539), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(539)] = { - [aux_sym__repeat_newline] = STATE(626), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(539), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(540)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1270), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(540), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(540)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(540), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1955), - [sym__newline] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_GT2] = ACTIONS(1960), - [anon_sym_DASH2] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_STAR2] = ACTIONS(1960), - [anon_sym_and2] = ACTIONS(1955), - [anon_sym_xor2] = ACTIONS(1955), - [anon_sym_or2] = ACTIONS(1955), - [anon_sym_not_DASHin2] = ACTIONS(1955), - [anon_sym_has2] = ACTIONS(1955), - [anon_sym_not_DASHhas2] = ACTIONS(1955), - [anon_sym_starts_DASHwith2] = ACTIONS(1955), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1955), - [anon_sym_ends_DASHwith2] = ACTIONS(1955), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1955), - [anon_sym_EQ_EQ2] = ACTIONS(1955), - [anon_sym_BANG_EQ2] = ACTIONS(1955), - [anon_sym_LT2] = ACTIONS(1960), - [anon_sym_LT_EQ2] = ACTIONS(1955), - [anon_sym_GT_EQ2] = ACTIONS(1955), - [anon_sym_EQ_TILDE2] = ACTIONS(1955), - [anon_sym_BANG_TILDE2] = ACTIONS(1955), - [anon_sym_like2] = ACTIONS(1955), - [anon_sym_not_DASHlike2] = ACTIONS(1955), - [anon_sym_STAR_STAR2] = ACTIONS(1955), - [anon_sym_PLUS_PLUS2] = ACTIONS(1955), - [anon_sym_SLASH2] = ACTIONS(1960), - [anon_sym_mod2] = ACTIONS(1955), - [anon_sym_SLASH_SLASH2] = ACTIONS(1955), - [anon_sym_PLUS2] = ACTIONS(1960), - [anon_sym_bit_DASHshl2] = ACTIONS(1955), - [anon_sym_bit_DASHshr2] = ACTIONS(1955), - [anon_sym_bit_DASHand2] = ACTIONS(1955), - [anon_sym_bit_DASHxor2] = ACTIONS(1955), - [anon_sym_bit_DASHor2] = ACTIONS(1955), - [anon_sym_err_GT] = ACTIONS(1960), - [anon_sym_out_GT] = ACTIONS(1960), - [anon_sym_e_GT] = ACTIONS(1960), - [anon_sym_o_GT] = ACTIONS(1960), - [anon_sym_err_PLUSout_GT] = ACTIONS(1960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), - [anon_sym_o_PLUSe_GT] = ACTIONS(1960), - [anon_sym_e_PLUSo_GT] = ACTIONS(1960), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(541)] = { [aux_sym__repeat_newline] = STATE(556), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1564), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1886), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(771), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(541), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(542)] = { [aux_sym__repeat_newline] = STATE(557), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1565), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1891), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(772), + [sym__unquoted_with_expr] = STATE(1086), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(542), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(543)] = { [aux_sym__repeat_newline] = STATE(558), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1566), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1892), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(773), + [sym__unquoted_with_expr] = STATE(1088), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(543), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(544)] = { [aux_sym__repeat_newline] = STATE(559), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1567), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1894), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1096), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(544), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(545)] = { [aux_sym__repeat_newline] = STATE(560), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1568), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1895), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(776), + [sym__unquoted_with_expr] = STATE(1102), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(545), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(546)] = { - [aux_sym__repeat_newline] = STATE(504), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1569), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(561), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1896), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(777), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(546), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(547)] = { [aux_sym__repeat_newline] = STATE(562), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1570), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1897), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(778), + [sym__unquoted_with_expr] = STATE(1140), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(547), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(548)] = { [aux_sym__repeat_newline] = STATE(563), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1571), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1900), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(548), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(549)] = { [aux_sym__repeat_newline] = STATE(564), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1000), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(549), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(550)] = { [aux_sym__repeat_newline] = STATE(565), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1572), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1901), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(550), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(551)] = { [aux_sym__repeat_newline] = STATE(566), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1573), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1735), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(551), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(552)] = { [aux_sym__repeat_newline] = STATE(567), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1574), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1736), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(784), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(552), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(553)] = { [aux_sym__repeat_newline] = STATE(568), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1575), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1737), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(785), + [sym__unquoted_with_expr] = STATE(1025), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(553), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(554)] = { - [aux_sym__repeat_newline] = STATE(601), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1245), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1242), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(860), + [sym__unquoted_with_expr] = STATE(1035), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(554), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(555)] = { - [aux_sym__repeat_newline] = STATE(627), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1991), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1272), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(555), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(556)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1578), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1743), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(556), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(557)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1580), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1745), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(557), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(558)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1582), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1747), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(558), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(559)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1584), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1749), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(1128), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(559), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(560)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1586), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1751), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(803), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(560), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(561)] = { - [aux_sym__repeat_newline] = STATE(530), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1221), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1753), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(804), + [sym__unquoted_with_expr] = STATE(979), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(561), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(562)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1589), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1755), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(805), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(562), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(563)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1591), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1757), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(806), + [sym__unquoted_with_expr] = STATE(1083), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(563), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(564)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1087), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(807), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(564), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(565)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1593), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1759), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1004), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(565), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(566)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1595), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1761), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(809), + [sym__unquoted_with_expr] = STATE(1014), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(566), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(567)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1597), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1763), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(1028), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(567), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(568)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1599), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1765), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1038), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(568), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(569)] = { [aux_sym__repeat_newline] = STATE(585), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1601), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1768), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(812), + [sym__unquoted_with_expr] = STATE(1056), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(569), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(570)] = { [aux_sym__repeat_newline] = STATE(586), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1602), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1769), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(813), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(570), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(571)] = { [aux_sym__repeat_newline] = STATE(587), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1603), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1771), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(1077), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(571), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(572)] = { [aux_sym__repeat_newline] = STATE(588), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1605), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1773), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(815), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(572), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(573)] = { [aux_sym__repeat_newline] = STATE(589), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1606), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1775), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(829), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(573), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(574)] = { [aux_sym__repeat_newline] = STATE(590), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1607), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1776), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(830), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(574), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(575)] = { [aux_sym__repeat_newline] = STATE(591), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1608), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1778), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(831), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(575), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(576)] = { [aux_sym__repeat_newline] = STATE(592), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1609), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1780), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(832), + [sym__unquoted_with_expr] = STATE(1126), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(576), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(577)] = { [aux_sym__repeat_newline] = STATE(593), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1130), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(833), + [sym__unquoted_with_expr] = STATE(1138), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(577), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(578)] = { [aux_sym__repeat_newline] = STATE(594), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1610), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1783), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1141), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(578), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(579)] = { [aux_sym__repeat_newline] = STATE(595), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1611), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1785), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(835), + [sym__unquoted_with_expr] = STATE(1066), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(579), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(580)] = { [aux_sym__repeat_newline] = STATE(596), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1612), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1786), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(836), + [sym__unquoted_with_expr] = STATE(980), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(580), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(581)] = { [aux_sym__repeat_newline] = STATE(597), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1613), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1788), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(837), + [sym__unquoted_with_expr] = STATE(982), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(581), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(582)] = { - [aux_sym__repeat_newline] = STATE(628), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1992), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(978), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1039), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(582), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(583)] = { - [aux_sym__repeat_newline] = STATE(643), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1993), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1276), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(583), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(584)] = { - [aux_sym__repeat_newline] = STATE(646), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1994), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1146), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(1128), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(584), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(585)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1626), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1805), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(840), + [sym__unquoted_with_expr] = STATE(1001), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(585), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(586)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1628), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1807), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(854), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(586), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(587)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1630), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1809), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(855), + [sym__unquoted_with_expr] = STATE(1020), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(587), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(588)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1632), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1811), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(856), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(588), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(589)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1634), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1813), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(857), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(589), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(590)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1636), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1815), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(858), + [sym__unquoted_with_expr] = STATE(1029), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(590), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(591)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1638), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1817), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(859), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(591), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(592)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1640), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1819), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(860), + [sym__unquoted_with_expr] = STATE(1035), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(592), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(593)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(978), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1039), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(593), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(594)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1642), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1821), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1043), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(594), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(595)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1644), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1823), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1046), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(595), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(596)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1646), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1825), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(864), + [sym__unquoted_with_expr] = STATE(1049), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(596), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(597)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1648), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1827), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(865), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(597), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(598)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1178), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1149), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(598), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(599)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1188), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1151), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__unquoted_with_expr] = STATE(979), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(599), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(600)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1201), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1153), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(600), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(601)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1217), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1156), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__unquoted_with_expr] = STATE(1083), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(601), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(602)] = { - [aux_sym__repeat_newline] = STATE(631), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1236), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(555), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1274), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(772), + [sym__unquoted_with_expr] = STATE(1086), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(602), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(603)] = { - [aux_sym__repeat_newline] = STATE(632), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1249), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1087), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(807), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(603), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(604)] = { - [aux_sym__repeat_newline] = STATE(633), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1253), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1159), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1004), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(604), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(605)] = { - [aux_sym__repeat_newline] = STATE(634), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1154), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(583), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1281), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(773), + [sym__unquoted_with_expr] = STATE(1088), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(605), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(606)] = { - [aux_sym__repeat_newline] = STATE(635), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1161), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1163), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(809), + [sym__unquoted_with_expr] = STATE(1014), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(606), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(607)] = { - [aux_sym__repeat_newline] = STATE(636), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1164), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4624), + [sym__spread_list] = STATE(4907), + [sym_val_entry] = STATE(4591), + [sym_val_record] = STATE(4624), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(607), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym_list_body_repeat1] = STATE(673), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(608)] = { - [aux_sym__repeat_newline] = STATE(638), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1171), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1168), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1038), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(608), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(609)] = { - [aux_sym__repeat_newline] = STATE(639), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1174), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(531), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1170), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(812), + [sym__unquoted_with_expr] = STATE(1056), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(609), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(610)] = { - [aux_sym__repeat_newline] = STATE(640), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(532), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1173), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(813), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(610), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(611)] = { - [aux_sym__repeat_newline] = STATE(641), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1185), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(533), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1174), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(1077), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(611), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(612)] = { - [aux_sym__repeat_newline] = STATE(644), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1192), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(584), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1147), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1096), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(612), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(613)] = { - [aux_sym__repeat_newline] = STATE(647), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1195), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(534), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1176), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(815), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(613), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(614)] = { - [aux_sym__repeat_newline] = STATE(650), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1199), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(598), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1154), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(776), + [sym__unquoted_with_expr] = STATE(1102), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(614), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(615)] = { + [aux_sym__repeat_newline] = STATE(537), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1185), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(829), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(1962), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2082), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(616)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1996), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(538), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1186), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(830), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(616), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(617)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1998), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(539), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1188), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(831), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(617), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(618)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4386), - [sym__record_key] = STATE(4971), + [aux_sym__repeat_newline] = STATE(554), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1191), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(832), + [sym__unquoted_with_expr] = STATE(1126), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(618), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym_record_body_repeat1] = STATE(878), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2082), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(619)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2000), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(641), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2225), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(771), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(619), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(620)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2002), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(642), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2226), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(772), + [sym__unquoted_with_expr] = STATE(1086), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(620), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(621)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2004), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1244), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1043), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(621), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(622)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2006), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(643), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2227), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(773), + [sym__unquoted_with_expr] = STATE(1088), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(622), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(623)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2008), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1246), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1046), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(623), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(624)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2010), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1249), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(864), + [sym__unquoted_with_expr] = STATE(1049), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(624), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(625)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4298), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4586), - [sym__record_key] = STATE(4971), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1251), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(865), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(625), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym__match_pattern_record_body_repeat1] = STATE(836), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2082), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(626)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(644), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2228), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1096), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(626), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(627)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2012), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(645), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2229), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(776), + [sym__unquoted_with_expr] = STATE(1102), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(627), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(628)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2014), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(646), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2230), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(777), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(628), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(629)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4590), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(647), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2231), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(778), + [sym__unquoted_with_expr] = STATE(1140), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(629), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(630)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(648), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2232), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(630), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(631)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1134), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(649), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1000), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(631), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(632)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1139), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(650), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2233), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(632), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(633)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1143), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(651), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2234), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(633), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(634)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1148), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(652), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2235), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(784), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(634), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(635)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1152), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(653), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2236), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(785), + [sym__unquoted_with_expr] = STATE(1025), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(635), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(636)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1157), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(582), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1130), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(833), + [sym__unquoted_with_expr] = STATE(1138), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(636), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(637)] = { - [aux_sym__repeat_newline] = STATE(531), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(621), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1195), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1141), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(637), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(638)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1162), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(623), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1196), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(835), + [sym__unquoted_with_expr] = STATE(1066), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(638), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(639)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1167), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(624), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1197), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(836), + [sym__unquoted_with_expr] = STATE(980), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(639), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(640)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(625), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1200), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(837), + [sym__unquoted_with_expr] = STATE(982), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(640), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(641)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1177), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2240), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(641), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(642)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2242), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(642), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(1970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1972), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(643)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2016), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2244), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(643), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(644)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1181), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2246), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(1128), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(644), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(645)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2248), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(803), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(645), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(1980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1982), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(646)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2018), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2250), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(804), + [sym__unquoted_with_expr] = STATE(979), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(646), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(647)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1186), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2252), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(805), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(647), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(648)] = { - [aux_sym__repeat_newline] = STATE(671), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2020), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2254), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(806), + [sym__unquoted_with_expr] = STATE(1083), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(648), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(649)] = { - [aux_sym__repeat_newline] = STATE(505), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2021), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1087), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(807), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(649), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(650)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1191), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2256), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1004), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(650), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(651)] = { - [aux_sym__repeat_newline] = STATE(506), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2022), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2258), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(809), + [sym__unquoted_with_expr] = STATE(1014), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(651), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(652)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2260), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(1028), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(652), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(653)] = { - [aux_sym__repeat_newline] = STATE(508), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2024), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2262), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1038), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(653), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(654)] = { - [aux_sym__repeat_newline] = STATE(509), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2025), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(670), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2264), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(812), + [sym__unquoted_with_expr] = STATE(1056), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(654), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(655)] = { - [aux_sym__repeat_newline] = STATE(525), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1182), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(671), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2265), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(813), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(655), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(656)] = { - [aux_sym__repeat_newline] = STATE(510), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2026), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(672), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2266), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(1077), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(656), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(657)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4767), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [aux_sym__repeat_newline] = STATE(674), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2267), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(815), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(657), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [anon_sym_null] = ACTIONS(1989), - [aux_sym_cmd_identifier_token3] = ACTIONS(1992), - [aux_sym_cmd_identifier_token4] = ACTIONS(1992), - [aux_sym_cmd_identifier_token5] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_DOT_DOT] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2013), - [anon_sym_DOT_DOT_LT] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2016), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2022), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2028), - [aux_sym__val_number_token2] = ACTIONS(2028), - [aux_sym__val_number_token3] = ACTIONS(2028), - [anon_sym_0b] = ACTIONS(2031), - [anon_sym_0o] = ACTIONS(2034), - [anon_sym_0x] = ACTIONS(2034), - [sym_val_date] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_BQUOTE] = ACTIONS(2046), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2052), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2055), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(658)] = { - [aux_sym__repeat_newline] = STATE(511), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2027), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(676), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2268), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(658), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(659)] = { - [aux_sym__repeat_newline] = STATE(512), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(677), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2335), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(830), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(659), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(660)] = { - [aux_sym__repeat_newline] = STATE(513), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2028), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(678), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2270), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(831), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(660), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(661)] = { - [aux_sym__repeat_newline] = STATE(514), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2029), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(679), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2271), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(832), + [sym__unquoted_with_expr] = STATE(1126), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(661), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(662)] = { - [aux_sym__repeat_newline] = STATE(515), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2030), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(680), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1130), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(833), + [sym__unquoted_with_expr] = STATE(1138), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(662), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(663)] = { - [aux_sym__repeat_newline] = STATE(516), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2031), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(681), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2272), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1141), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(663), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(664)] = { + [sym_cmd_identifier] = STATE(4348), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(5295), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_entry] = STATE(4790), + [sym__record_key] = STATE(5094), [sym_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [aux_sym__types_body_repeat1] = STATE(1720), + [aux_sym_record_body_repeat1] = STATE(868), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [sym__newline] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1952), }, [STATE(665)] = { - [aux_sym__repeat_newline] = STATE(519), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1176), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(683), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2274), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(836), + [sym__unquoted_with_expr] = STATE(980), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(665), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(666)] = { - [aux_sym__repeat_newline] = STATE(520), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1262), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(518), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2275), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(837), + [sym__unquoted_with_expr] = STATE(982), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(666), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(667)] = { - [aux_sym__repeat_newline] = STATE(521), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1250), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4624), + [sym__spread_list] = STATE(4907), + [sym_val_entry] = STATE(4599), + [sym_val_record] = STATE(4624), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), [sym_comment] = STATE(667), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [aux_sym_list_body_repeat1] = STATE(673), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1618), + [aux_sym_cmd_identifier_token4] = ACTIONS(1618), + [aux_sym_cmd_identifier_token5] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1632), + [anon_sym_DOT_DOT_LT] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1634), + [aux_sym__val_number_decimal_token2] = ACTIONS(1636), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1578), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), + }, + [STATE(668)] = { + [sym_comment] = STATE(668), + [ts_builtin_sym_end] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [anon_sym_DOT_DOT2] = ACTIONS(1958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1956), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1956), + [aux_sym__immediate_decimal_token5] = ACTIONS(2137), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [sym__unquoted_pattern] = ACTIONS(1958), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(669)] = { + [aux_sym__repeat_newline] = STATE(601), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1166), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(669), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(668)] = { - [aux_sym__repeat_newline] = STATE(522), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1255), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(668), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(670)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2289), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(840), + [sym__unquoted_with_expr] = STATE(1001), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(670), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(669)] = { - [aux_sym__repeat_newline] = STATE(523), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1135), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(669), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(671)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2291), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(854), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(671), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(670)] = { - [aux_sym__repeat_newline] = STATE(524), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1158), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(670), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(672)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2293), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(855), + [sym__unquoted_with_expr] = STATE(1020), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(672), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(671)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2044), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(671), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(673)] = { + [sym_expr_parenthesized] = STATE(4125), + [sym__spread_parenthesized] = STATE(4907), + [sym_val_range] = STATE(4902), + [sym__val_range] = STATE(4558), + [sym__value] = STATE(4902), + [sym_val_nothing] = STATE(4624), + [sym_val_bool] = STATE(4473), + [sym__spread_variable] = STATE(4919), + [sym_val_variable] = STATE(4075), + [sym_val_cellpath] = STATE(4624), + [sym_val_number] = STATE(4624), + [sym__val_number_decimal] = STATE(3666), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4624), + [sym_val_filesize] = STATE(4624), + [sym_val_binary] = STATE(4624), + [sym_val_string] = STATE(4624), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_interpolated] = STATE(4624), + [sym__inter_single_quotes] = STATE(4757), + [sym__inter_double_quotes] = STATE(4758), + [sym_val_list] = STATE(4624), + [sym__spread_list] = STATE(4907), + [sym_val_entry] = STATE(4954), + [sym_val_record] = STATE(4624), + [sym_val_table] = STATE(4624), + [sym_val_closure] = STATE(4624), + [sym__unquoted_in_list] = STATE(4508), + [sym__unquoted_in_list_with_expr] = STATE(4902), + [sym__unquoted_anonymous_prefix] = STATE(4558), + [sym_comment] = STATE(673), + [aux_sym_list_body_repeat1] = STATE(673), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [anon_sym_null] = ACTIONS(2142), + [aux_sym_cmd_identifier_token3] = ACTIONS(2145), + [aux_sym_cmd_identifier_token4] = ACTIONS(2145), + [aux_sym_cmd_identifier_token5] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_DOLLAR] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_DOT_DOT] = ACTIONS(2160), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2163), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2166), + [anon_sym_DOT_DOT_LT] = ACTIONS(2166), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2169), + [aux_sym__val_number_decimal_token1] = ACTIONS(2172), + [aux_sym__val_number_decimal_token2] = ACTIONS(2175), + [aux_sym__val_number_decimal_token3] = ACTIONS(2178), + [aux_sym__val_number_decimal_token4] = ACTIONS(2178), + [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(2184), + [anon_sym_0o] = ACTIONS(2187), + [anon_sym_0x] = ACTIONS(2187), + [sym_val_date] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2199), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2205), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2208), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2211), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2214), + }, + [STATE(674)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2295), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(856), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(674), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(672)] = { - [sym_comment] = STATE(672), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2064), - [aux_sym__immediate_decimal_token5] = ACTIONS(2066), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(673)] = { - [sym_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2068), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2070), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2070), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(674)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), - [sym_comment] = STATE(674), - [anon_sym_in] = ACTIONS(2072), - [sym__newline] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_err_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_GT_PIPE] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_GT2] = ACTIONS(2074), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_EQ_GT] = ACTIONS(2072), - [anon_sym_STAR2] = ACTIONS(2074), - [anon_sym_and2] = ACTIONS(2072), - [anon_sym_xor2] = ACTIONS(2072), - [anon_sym_or2] = ACTIONS(2072), - [anon_sym_not_DASHin2] = ACTIONS(2072), - [anon_sym_has2] = ACTIONS(2072), - [anon_sym_not_DASHhas2] = ACTIONS(2072), - [anon_sym_starts_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2072), - [anon_sym_ends_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2072), - [anon_sym_EQ_EQ2] = ACTIONS(2072), - [anon_sym_BANG_EQ2] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LT_EQ2] = ACTIONS(2072), - [anon_sym_GT_EQ2] = ACTIONS(2072), - [anon_sym_EQ_TILDE2] = ACTIONS(2072), - [anon_sym_BANG_TILDE2] = ACTIONS(2072), - [anon_sym_like2] = ACTIONS(2072), - [anon_sym_not_DASHlike2] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2072), - [anon_sym_PLUS_PLUS2] = ACTIONS(2072), - [anon_sym_SLASH2] = ACTIONS(2074), - [anon_sym_mod2] = ACTIONS(2072), - [anon_sym_SLASH_SLASH2] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2074), - [anon_sym_bit_DASHshl2] = ACTIONS(2072), - [anon_sym_bit_DASHshr2] = ACTIONS(2072), - [anon_sym_bit_DASHand2] = ACTIONS(2072), - [anon_sym_bit_DASHxor2] = ACTIONS(2072), - [anon_sym_bit_DASHor2] = ACTIONS(2072), - [anon_sym_err_GT] = ACTIONS(2074), - [anon_sym_out_GT] = ACTIONS(2074), - [anon_sym_e_GT] = ACTIONS(2074), - [anon_sym_o_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT] = ACTIONS(2074), - [anon_sym_err_GT_GT] = ACTIONS(2072), - [anon_sym_out_GT_GT] = ACTIONS(2072), - [anon_sym_e_GT_GT] = ACTIONS(2072), - [anon_sym_o_GT_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(675)] = { + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(675), - [anon_sym_in] = ACTIONS(2076), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_DOT_DOT2] = ACTIONS(2080), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2082), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [anon_sym_else] = ACTIONS(2217), + [anon_sym_catch] = ACTIONS(2217), + [anon_sym_in] = ACTIONS(2217), + [sym__newline] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_err_GT_PIPE] = ACTIONS(2217), + [anon_sym_out_GT_PIPE] = ACTIONS(2217), + [anon_sym_e_GT_PIPE] = ACTIONS(2217), + [anon_sym_o_GT_PIPE] = ACTIONS(2217), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2217), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2217), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2217), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2217), + [anon_sym_COLON] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_RPAREN] = ACTIONS(2217), + [anon_sym_GT2] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_STAR2] = ACTIONS(2222), + [anon_sym_and2] = ACTIONS(2217), + [anon_sym_xor2] = ACTIONS(2217), + [anon_sym_or2] = ACTIONS(2217), + [anon_sym_not_DASHin2] = ACTIONS(2217), + [anon_sym_has2] = ACTIONS(2217), + [anon_sym_not_DASHhas2] = ACTIONS(2217), + [anon_sym_starts_DASHwith2] = ACTIONS(2217), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2217), + [anon_sym_ends_DASHwith2] = ACTIONS(2217), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2217), + [anon_sym_EQ_EQ2] = ACTIONS(2217), + [anon_sym_BANG_EQ2] = ACTIONS(2217), + [anon_sym_LT2] = ACTIONS(2222), + [anon_sym_LT_EQ2] = ACTIONS(2217), + [anon_sym_GT_EQ2] = ACTIONS(2217), + [anon_sym_EQ_TILDE2] = ACTIONS(2217), + [anon_sym_BANG_TILDE2] = ACTIONS(2217), + [anon_sym_like2] = ACTIONS(2217), + [anon_sym_not_DASHlike2] = ACTIONS(2217), + [anon_sym_STAR_STAR2] = ACTIONS(2217), + [anon_sym_PLUS_PLUS2] = ACTIONS(2217), + [anon_sym_SLASH2] = ACTIONS(2222), + [anon_sym_mod2] = ACTIONS(2217), + [anon_sym_SLASH_SLASH2] = ACTIONS(2217), + [anon_sym_PLUS2] = ACTIONS(2222), + [anon_sym_bit_DASHshl2] = ACTIONS(2217), + [anon_sym_bit_DASHshr2] = ACTIONS(2217), + [anon_sym_bit_DASHand2] = ACTIONS(2217), + [anon_sym_bit_DASHxor2] = ACTIONS(2217), + [anon_sym_bit_DASHor2] = ACTIONS(2217), + [anon_sym_err_GT] = ACTIONS(2222), + [anon_sym_out_GT] = ACTIONS(2222), + [anon_sym_e_GT] = ACTIONS(2222), + [anon_sym_o_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT] = ACTIONS(2222), + [anon_sym_err_GT_GT] = ACTIONS(2217), + [anon_sym_out_GT_GT] = ACTIONS(2217), + [anon_sym_e_GT_GT] = ACTIONS(2217), + [anon_sym_o_GT_GT] = ACTIONS(2217), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2217), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2217), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2217), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2217), [anon_sym_POUND] = ACTIONS(3), }, [STATE(676)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2297), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(857), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(676), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_in] = ACTIONS(2084), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_GT2] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_EQ_GT] = ACTIONS(2084), - [anon_sym_STAR2] = ACTIONS(2086), - [anon_sym_and2] = ACTIONS(2084), - [anon_sym_xor2] = ACTIONS(2084), - [anon_sym_or2] = ACTIONS(2084), - [anon_sym_not_DASHin2] = ACTIONS(2084), - [anon_sym_has2] = ACTIONS(2084), - [anon_sym_not_DASHhas2] = ACTIONS(2084), - [anon_sym_starts_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2084), - [anon_sym_ends_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2084), - [anon_sym_EQ_EQ2] = ACTIONS(2084), - [anon_sym_BANG_EQ2] = ACTIONS(2084), - [anon_sym_LT2] = ACTIONS(2086), - [anon_sym_LT_EQ2] = ACTIONS(2084), - [anon_sym_GT_EQ2] = ACTIONS(2084), - [anon_sym_EQ_TILDE2] = ACTIONS(2084), - [anon_sym_BANG_TILDE2] = ACTIONS(2084), - [anon_sym_like2] = ACTIONS(2084), - [anon_sym_not_DASHlike2] = ACTIONS(2084), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_STAR_STAR2] = ACTIONS(2084), - [anon_sym_PLUS_PLUS2] = ACTIONS(2084), - [anon_sym_SLASH2] = ACTIONS(2086), - [anon_sym_mod2] = ACTIONS(2084), - [anon_sym_SLASH_SLASH2] = ACTIONS(2084), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_bit_DASHshl2] = ACTIONS(2084), - [anon_sym_bit_DASHshr2] = ACTIONS(2084), - [anon_sym_bit_DASHand2] = ACTIONS(2084), - [anon_sym_bit_DASHxor2] = ACTIONS(2084), - [anon_sym_bit_DASHor2] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(677)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2299), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(858), + [sym__unquoted_with_expr] = STATE(1029), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(677), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(678)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2301), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(859), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(679)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2303), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(860), + [sym__unquoted_with_expr] = STATE(1035), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(679), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(680)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(978), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1039), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(681)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2305), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1043), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(681), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(682)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2307), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1046), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(682), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(683)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(2309), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(864), + [sym__unquoted_with_expr] = STATE(1049), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(683), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(684)] = { + [aux_sym__repeat_newline] = STATE(2381), + [sym_expr_unary] = STATE(1268), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1268), + [sym__expr_binary_expression_parenthesized] = STATE(1165), + [sym_expr_parenthesized] = STATE(770), + [sym_val_range] = STATE(1268), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(1268), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(1028), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_DOT_DOT2] = ACTIONS(1872), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [sym__newline] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2082), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(685)] = { + [sym__expr_parenthesized_immediate] = STATE(5247), [sym_comment] = STATE(685), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_in] = ACTIONS(2092), - [sym__newline] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_err_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_GT_PIPE] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), - [anon_sym_RPAREN] = ACTIONS(2092), - [anon_sym_GT2] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_EQ_GT] = ACTIONS(2092), - [anon_sym_STAR2] = ACTIONS(2094), - [anon_sym_and2] = ACTIONS(2092), - [anon_sym_xor2] = ACTIONS(2092), - [anon_sym_or2] = ACTIONS(2092), - [anon_sym_not_DASHin2] = ACTIONS(2092), - [anon_sym_has2] = ACTIONS(2092), - [anon_sym_not_DASHhas2] = ACTIONS(2092), - [anon_sym_starts_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2092), - [anon_sym_ends_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2092), - [anon_sym_EQ_EQ2] = ACTIONS(2092), - [anon_sym_BANG_EQ2] = ACTIONS(2092), - [anon_sym_LT2] = ACTIONS(2094), - [anon_sym_LT_EQ2] = ACTIONS(2092), - [anon_sym_GT_EQ2] = ACTIONS(2092), - [anon_sym_EQ_TILDE2] = ACTIONS(2092), - [anon_sym_BANG_TILDE2] = ACTIONS(2092), - [anon_sym_like2] = ACTIONS(2092), - [anon_sym_not_DASHlike2] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), + [anon_sym_in] = ACTIONS(2224), + [sym__newline] = ACTIONS(2224), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_err_GT_PIPE] = ACTIONS(2224), + [anon_sym_out_GT_PIPE] = ACTIONS(2224), + [anon_sym_e_GT_PIPE] = ACTIONS(2224), + [anon_sym_o_GT_PIPE] = ACTIONS(2224), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2224), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2224), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2224), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2224), + [anon_sym_RPAREN] = ACTIONS(2224), + [anon_sym_GT2] = ACTIONS(2226), + [anon_sym_DASH2] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2224), + [anon_sym_EQ_GT] = ACTIONS(2224), + [anon_sym_STAR2] = ACTIONS(2226), + [anon_sym_and2] = ACTIONS(2224), + [anon_sym_xor2] = ACTIONS(2224), + [anon_sym_or2] = ACTIONS(2224), + [anon_sym_not_DASHin2] = ACTIONS(2224), + [anon_sym_has2] = ACTIONS(2224), + [anon_sym_not_DASHhas2] = ACTIONS(2224), + [anon_sym_starts_DASHwith2] = ACTIONS(2224), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2224), + [anon_sym_ends_DASHwith2] = ACTIONS(2224), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2224), + [anon_sym_EQ_EQ2] = ACTIONS(2224), + [anon_sym_BANG_EQ2] = ACTIONS(2224), + [anon_sym_LT2] = ACTIONS(2226), + [anon_sym_LT_EQ2] = ACTIONS(2224), + [anon_sym_GT_EQ2] = ACTIONS(2224), + [anon_sym_EQ_TILDE2] = ACTIONS(2224), + [anon_sym_BANG_TILDE2] = ACTIONS(2224), + [anon_sym_like2] = ACTIONS(2224), + [anon_sym_not_DASHlike2] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2224), + [anon_sym_PLUS_PLUS2] = ACTIONS(2224), + [anon_sym_SLASH2] = ACTIONS(2226), + [anon_sym_mod2] = ACTIONS(2224), + [anon_sym_SLASH_SLASH2] = ACTIONS(2224), + [anon_sym_PLUS2] = ACTIONS(2226), + [anon_sym_bit_DASHshl2] = ACTIONS(2224), + [anon_sym_bit_DASHshr2] = ACTIONS(2224), + [anon_sym_bit_DASHand2] = ACTIONS(2224), + [anon_sym_bit_DASHxor2] = ACTIONS(2224), + [anon_sym_bit_DASHor2] = ACTIONS(2224), + [anon_sym_err_GT] = ACTIONS(2226), + [anon_sym_out_GT] = ACTIONS(2226), + [anon_sym_e_GT] = ACTIONS(2226), + [anon_sym_o_GT] = ACTIONS(2226), + [anon_sym_err_PLUSout_GT] = ACTIONS(2226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2226), + [anon_sym_o_PLUSe_GT] = ACTIONS(2226), + [anon_sym_e_PLUSo_GT] = ACTIONS(2226), + [anon_sym_err_GT_GT] = ACTIONS(2224), + [anon_sym_out_GT_GT] = ACTIONS(2224), + [anon_sym_e_GT_GT] = ACTIONS(2224), + [anon_sym_o_GT_GT] = ACTIONS(2224), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2224), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2224), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2224), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2224), [anon_sym_POUND] = ACTIONS(3), }, [STATE(686)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(686), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(687)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(687), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2232), + [sym__newline] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_err_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_GT_PIPE] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2232), + [anon_sym_RPAREN] = ACTIONS(2232), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2232), + [anon_sym_xor2] = ACTIONS(2232), + [anon_sym_or2] = ACTIONS(2232), + [anon_sym_not_DASHin2] = ACTIONS(2232), + [anon_sym_has2] = ACTIONS(2232), + [anon_sym_not_DASHhas2] = ACTIONS(2232), + [anon_sym_starts_DASHwith2] = ACTIONS(2232), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2232), + [anon_sym_ends_DASHwith2] = ACTIONS(2232), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2232), + [anon_sym_EQ_EQ2] = ACTIONS(2232), + [anon_sym_BANG_EQ2] = ACTIONS(2232), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2232), + [anon_sym_GT_EQ2] = ACTIONS(2232), + [anon_sym_EQ_TILDE2] = ACTIONS(2232), + [anon_sym_BANG_TILDE2] = ACTIONS(2232), + [anon_sym_like2] = ACTIONS(2232), + [anon_sym_not_DASHlike2] = ACTIONS(2232), + [anon_sym_STAR_STAR2] = ACTIONS(2232), + [anon_sym_PLUS_PLUS2] = ACTIONS(2232), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2232), + [anon_sym_SLASH_SLASH2] = ACTIONS(2232), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2232), + [anon_sym_bit_DASHshr2] = ACTIONS(2232), + [anon_sym_bit_DASHand2] = ACTIONS(2232), + [anon_sym_bit_DASHxor2] = ACTIONS(2232), + [anon_sym_bit_DASHor2] = ACTIONS(2232), + [anon_sym_DOT_DOT2] = ACTIONS(2236), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2238), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2234), + [anon_sym_out_GT] = ACTIONS(2234), + [anon_sym_e_GT] = ACTIONS(2234), + [anon_sym_o_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT] = ACTIONS(2234), + [anon_sym_err_GT_GT] = ACTIONS(2232), + [anon_sym_out_GT_GT] = ACTIONS(2232), + [anon_sym_e_GT_GT] = ACTIONS(2232), + [anon_sym_o_GT_GT] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2232), [anon_sym_POUND] = ACTIONS(3), }, [STATE(688)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(688), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2104), + [sym__newline] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_err_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_GT_PIPE] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2104), + [anon_sym_GT2] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_STAR2] = ACTIONS(2106), + [anon_sym_and2] = ACTIONS(2104), + [anon_sym_xor2] = ACTIONS(2104), + [anon_sym_or2] = ACTIONS(2104), + [anon_sym_not_DASHin2] = ACTIONS(2104), + [anon_sym_has2] = ACTIONS(2104), + [anon_sym_not_DASHhas2] = ACTIONS(2104), + [anon_sym_starts_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2104), + [anon_sym_ends_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2104), + [anon_sym_EQ_EQ2] = ACTIONS(2104), + [anon_sym_BANG_EQ2] = ACTIONS(2104), + [anon_sym_LT2] = ACTIONS(2106), + [anon_sym_LT_EQ2] = ACTIONS(2104), + [anon_sym_GT_EQ2] = ACTIONS(2104), + [anon_sym_EQ_TILDE2] = ACTIONS(2104), + [anon_sym_BANG_TILDE2] = ACTIONS(2104), + [anon_sym_like2] = ACTIONS(2104), + [anon_sym_not_DASHlike2] = ACTIONS(2104), + [anon_sym_STAR_STAR2] = ACTIONS(2104), + [anon_sym_PLUS_PLUS2] = ACTIONS(2104), + [anon_sym_SLASH2] = ACTIONS(2106), + [anon_sym_mod2] = ACTIONS(2104), + [anon_sym_SLASH_SLASH2] = ACTIONS(2104), + [anon_sym_PLUS2] = ACTIONS(2106), + [anon_sym_bit_DASHshl2] = ACTIONS(2104), + [anon_sym_bit_DASHshr2] = ACTIONS(2104), + [anon_sym_bit_DASHand2] = ACTIONS(2104), + [anon_sym_bit_DASHxor2] = ACTIONS(2104), + [anon_sym_bit_DASHor2] = ACTIONS(2104), + [anon_sym_DOT_DOT2] = ACTIONS(2240), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2242), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2242), + [anon_sym_err_GT] = ACTIONS(2106), + [anon_sym_out_GT] = ACTIONS(2106), + [anon_sym_e_GT] = ACTIONS(2106), + [anon_sym_o_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_err_GT_GT] = ACTIONS(2104), + [anon_sym_out_GT_GT] = ACTIONS(2104), + [anon_sym_e_GT_GT] = ACTIONS(2104), + [anon_sym_o_GT_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), [anon_sym_POUND] = ACTIONS(3), }, [STATE(689)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(689), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2244), + [sym__newline] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_err_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_GT_PIPE] = ACTIONS(2244), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2244), + [anon_sym_RPAREN] = ACTIONS(2244), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2244), + [anon_sym_xor2] = ACTIONS(2244), + [anon_sym_or2] = ACTIONS(2244), + [anon_sym_not_DASHin2] = ACTIONS(2244), + [anon_sym_has2] = ACTIONS(2244), + [anon_sym_not_DASHhas2] = ACTIONS(2244), + [anon_sym_starts_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2244), + [anon_sym_ends_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2244), + [anon_sym_EQ_EQ2] = ACTIONS(2244), + [anon_sym_BANG_EQ2] = ACTIONS(2244), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2244), + [anon_sym_GT_EQ2] = ACTIONS(2244), + [anon_sym_EQ_TILDE2] = ACTIONS(2244), + [anon_sym_BANG_TILDE2] = ACTIONS(2244), + [anon_sym_like2] = ACTIONS(2244), + [anon_sym_not_DASHlike2] = ACTIONS(2244), + [anon_sym_STAR_STAR2] = ACTIONS(2244), + [anon_sym_PLUS_PLUS2] = ACTIONS(2244), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2244), + [anon_sym_SLASH_SLASH2] = ACTIONS(2244), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2244), + [anon_sym_bit_DASHshr2] = ACTIONS(2244), + [anon_sym_bit_DASHand2] = ACTIONS(2244), + [anon_sym_bit_DASHxor2] = ACTIONS(2244), + [anon_sym_bit_DASHor2] = ACTIONS(2244), + [anon_sym_DOT_DOT2] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2244), + [anon_sym_out_GT_GT] = ACTIONS(2244), + [anon_sym_e_GT_GT] = ACTIONS(2244), + [anon_sym_o_GT_GT] = ACTIONS(2244), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2244), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2244), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2244), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2244), [anon_sym_POUND] = ACTIONS(3), }, [STATE(690)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(690), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(691)] = { [sym_comment] = STATE(691), - [anon_sym_else] = ACTIONS(2096), - [anon_sym_catch] = ACTIONS(2096), - [anon_sym_in] = ACTIONS(2096), - [sym__newline] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_COLON] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2096), - [anon_sym_GT2] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_STAR2] = ACTIONS(2098), - [anon_sym_and2] = ACTIONS(2096), - [anon_sym_xor2] = ACTIONS(2096), - [anon_sym_or2] = ACTIONS(2096), - [anon_sym_not_DASHin2] = ACTIONS(2096), - [anon_sym_has2] = ACTIONS(2096), - [anon_sym_not_DASHhas2] = ACTIONS(2096), - [anon_sym_starts_DASHwith2] = ACTIONS(2096), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2096), - [anon_sym_ends_DASHwith2] = ACTIONS(2096), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2096), - [anon_sym_EQ_EQ2] = ACTIONS(2096), - [anon_sym_BANG_EQ2] = ACTIONS(2096), - [anon_sym_LT2] = ACTIONS(2098), - [anon_sym_LT_EQ2] = ACTIONS(2096), - [anon_sym_GT_EQ2] = ACTIONS(2096), - [anon_sym_EQ_TILDE2] = ACTIONS(2096), - [anon_sym_BANG_TILDE2] = ACTIONS(2096), - [anon_sym_like2] = ACTIONS(2096), - [anon_sym_not_DASHlike2] = ACTIONS(2096), - [anon_sym_STAR_STAR2] = ACTIONS(2096), - [anon_sym_PLUS_PLUS2] = ACTIONS(2096), - [anon_sym_SLASH2] = ACTIONS(2098), - [anon_sym_mod2] = ACTIONS(2096), - [anon_sym_SLASH_SLASH2] = ACTIONS(2096), - [anon_sym_PLUS2] = ACTIONS(2098), - [anon_sym_bit_DASHshl2] = ACTIONS(2096), - [anon_sym_bit_DASHshr2] = ACTIONS(2096), - [anon_sym_bit_DASHand2] = ACTIONS(2096), - [anon_sym_bit_DASHxor2] = ACTIONS(2096), - [anon_sym_bit_DASHor2] = ACTIONS(2096), - [anon_sym_err_GT] = ACTIONS(2098), - [anon_sym_out_GT] = ACTIONS(2098), - [anon_sym_e_GT] = ACTIONS(2098), - [anon_sym_o_GT] = ACTIONS(2098), - [anon_sym_err_PLUSout_GT] = ACTIONS(2098), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2098), - [anon_sym_o_PLUSe_GT] = ACTIONS(2098), - [anon_sym_e_PLUSo_GT] = ACTIONS(2098), - [anon_sym_err_GT_GT] = ACTIONS(2096), - [anon_sym_out_GT_GT] = ACTIONS(2096), - [anon_sym_e_GT_GT] = ACTIONS(2096), - [anon_sym_o_GT_GT] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(904), + [anon_sym_in] = ACTIONS(904), + [sym__newline] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_PIPE] = ACTIONS(904), + [anon_sym_err_GT_PIPE] = ACTIONS(904), + [anon_sym_out_GT_PIPE] = ACTIONS(904), + [anon_sym_e_GT_PIPE] = ACTIONS(904), + [anon_sym_o_GT_PIPE] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(904), + [anon_sym_RPAREN] = ACTIONS(904), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(904), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(904), + [anon_sym_xor2] = ACTIONS(904), + [anon_sym_or2] = ACTIONS(904), + [anon_sym_not_DASHin2] = ACTIONS(904), + [anon_sym_has2] = ACTIONS(904), + [anon_sym_not_DASHhas2] = ACTIONS(904), + [anon_sym_starts_DASHwith2] = ACTIONS(904), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(904), + [anon_sym_ends_DASHwith2] = ACTIONS(904), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(904), + [anon_sym_EQ_EQ2] = ACTIONS(904), + [anon_sym_BANG_EQ2] = ACTIONS(904), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(904), + [anon_sym_GT_EQ2] = ACTIONS(904), + [anon_sym_EQ_TILDE2] = ACTIONS(904), + [anon_sym_BANG_TILDE2] = ACTIONS(904), + [anon_sym_like2] = ACTIONS(904), + [anon_sym_not_DASHlike2] = ACTIONS(904), + [anon_sym_STAR_STAR2] = ACTIONS(904), + [anon_sym_PLUS_PLUS2] = ACTIONS(904), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(904), + [anon_sym_SLASH_SLASH2] = ACTIONS(904), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(904), + [anon_sym_bit_DASHshr2] = ACTIONS(904), + [anon_sym_bit_DASHand2] = ACTIONS(904), + [anon_sym_bit_DASHxor2] = ACTIONS(904), + [anon_sym_bit_DASHor2] = ACTIONS(904), + [anon_sym_COLON2] = ACTIONS(904), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [anon_sym_err_GT_GT] = ACTIONS(904), + [anon_sym_out_GT_GT] = ACTIONS(904), + [anon_sym_e_GT_GT] = ACTIONS(904), + [anon_sym_o_GT_GT] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(904), [anon_sym_POUND] = ACTIONS(3), }, [STATE(692)] = { [sym_comment] = STATE(692), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_DOT_DOT2] = ACTIONS(2104), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2106), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2106), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_in] = ACTIONS(2248), + [sym__newline] = ACTIONS(2248), + [anon_sym_SEMI] = ACTIONS(2248), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_err_GT_PIPE] = ACTIONS(2248), + [anon_sym_out_GT_PIPE] = ACTIONS(2248), + [anon_sym_e_GT_PIPE] = ACTIONS(2248), + [anon_sym_o_GT_PIPE] = ACTIONS(2248), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2248), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2248), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2248), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2248), + [anon_sym_RPAREN] = ACTIONS(2248), + [anon_sym_GT2] = ACTIONS(2250), + [anon_sym_DASH2] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2248), + [anon_sym_RBRACE] = ACTIONS(2248), + [anon_sym_EQ_GT] = ACTIONS(2248), + [anon_sym_STAR2] = ACTIONS(2250), + [anon_sym_and2] = ACTIONS(2248), + [anon_sym_xor2] = ACTIONS(2248), + [anon_sym_or2] = ACTIONS(2248), + [anon_sym_not_DASHin2] = ACTIONS(2248), + [anon_sym_has2] = ACTIONS(2248), + [anon_sym_not_DASHhas2] = ACTIONS(2248), + [anon_sym_starts_DASHwith2] = ACTIONS(2248), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2248), + [anon_sym_ends_DASHwith2] = ACTIONS(2248), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2248), + [anon_sym_EQ_EQ2] = ACTIONS(2248), + [anon_sym_BANG_EQ2] = ACTIONS(2248), + [anon_sym_LT2] = ACTIONS(2250), + [anon_sym_LT_EQ2] = ACTIONS(2248), + [anon_sym_GT_EQ2] = ACTIONS(2248), + [anon_sym_EQ_TILDE2] = ACTIONS(2248), + [anon_sym_BANG_TILDE2] = ACTIONS(2248), + [anon_sym_like2] = ACTIONS(2248), + [anon_sym_not_DASHlike2] = ACTIONS(2248), + [anon_sym_STAR_STAR2] = ACTIONS(2248), + [anon_sym_PLUS_PLUS2] = ACTIONS(2248), + [anon_sym_SLASH2] = ACTIONS(2250), + [anon_sym_mod2] = ACTIONS(2248), + [anon_sym_SLASH_SLASH2] = ACTIONS(2248), + [anon_sym_PLUS2] = ACTIONS(2250), + [anon_sym_bit_DASHshl2] = ACTIONS(2248), + [anon_sym_bit_DASHshr2] = ACTIONS(2248), + [anon_sym_bit_DASHand2] = ACTIONS(2248), + [anon_sym_bit_DASHxor2] = ACTIONS(2248), + [anon_sym_bit_DASHor2] = ACTIONS(2248), + [anon_sym_LBRACK2] = ACTIONS(2252), + [anon_sym_err_GT] = ACTIONS(2250), + [anon_sym_out_GT] = ACTIONS(2250), + [anon_sym_e_GT] = ACTIONS(2250), + [anon_sym_o_GT] = ACTIONS(2250), + [anon_sym_err_PLUSout_GT] = ACTIONS(2250), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2250), + [anon_sym_o_PLUSe_GT] = ACTIONS(2250), + [anon_sym_e_PLUSo_GT] = ACTIONS(2250), + [anon_sym_err_GT_GT] = ACTIONS(2248), + [anon_sym_out_GT_GT] = ACTIONS(2248), + [anon_sym_e_GT_GT] = ACTIONS(2248), + [anon_sym_o_GT_GT] = ACTIONS(2248), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2248), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2248), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2248), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2248), [anon_sym_POUND] = ACTIONS(3), }, [STATE(693)] = { [sym_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2108), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2110), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2110), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_STAR2] = ACTIONS(1750), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1750), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1856), + [anon_sym_SLASH2] = ACTIONS(1750), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1750), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(1750), + [anon_sym_out_GT] = ACTIONS(1750), + [anon_sym_e_GT] = ACTIONS(1750), + [anon_sym_o_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT] = ACTIONS(1750), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(3), }, [STATE(694)] = { [sym_comment] = STATE(694), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_in] = ACTIONS(2112), - [sym__newline] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(2112), - [anon_sym_err_GT_PIPE] = ACTIONS(2112), - [anon_sym_out_GT_PIPE] = ACTIONS(2112), - [anon_sym_e_GT_PIPE] = ACTIONS(2112), - [anon_sym_o_GT_PIPE] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2112), - [anon_sym_RPAREN] = ACTIONS(2112), - [anon_sym_GT2] = ACTIONS(2114), - [anon_sym_DASH2] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_EQ_GT] = ACTIONS(2112), - [anon_sym_STAR2] = ACTIONS(2114), - [anon_sym_and2] = ACTIONS(2112), - [anon_sym_xor2] = ACTIONS(2112), - [anon_sym_or2] = ACTIONS(2112), - [anon_sym_not_DASHin2] = ACTIONS(2112), - [anon_sym_has2] = ACTIONS(2112), - [anon_sym_not_DASHhas2] = ACTIONS(2112), - [anon_sym_starts_DASHwith2] = ACTIONS(2112), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2112), - [anon_sym_ends_DASHwith2] = ACTIONS(2112), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2112), - [anon_sym_EQ_EQ2] = ACTIONS(2112), - [anon_sym_BANG_EQ2] = ACTIONS(2112), - [anon_sym_LT2] = ACTIONS(2114), - [anon_sym_LT_EQ2] = ACTIONS(2112), - [anon_sym_GT_EQ2] = ACTIONS(2112), - [anon_sym_EQ_TILDE2] = ACTIONS(2112), - [anon_sym_BANG_TILDE2] = ACTIONS(2112), - [anon_sym_like2] = ACTIONS(2112), - [anon_sym_not_DASHlike2] = ACTIONS(2112), - [anon_sym_STAR_STAR2] = ACTIONS(2112), - [anon_sym_PLUS_PLUS2] = ACTIONS(2112), - [anon_sym_SLASH2] = ACTIONS(2114), - [anon_sym_mod2] = ACTIONS(2112), - [anon_sym_SLASH_SLASH2] = ACTIONS(2112), - [anon_sym_PLUS2] = ACTIONS(2114), - [anon_sym_bit_DASHshl2] = ACTIONS(2112), - [anon_sym_bit_DASHshr2] = ACTIONS(2112), - [anon_sym_bit_DASHand2] = ACTIONS(2112), - [anon_sym_bit_DASHxor2] = ACTIONS(2112), - [anon_sym_bit_DASHor2] = ACTIONS(2112), - [anon_sym_COLON2] = ACTIONS(2112), - [anon_sym_err_GT] = ACTIONS(2114), - [anon_sym_out_GT] = ACTIONS(2114), - [anon_sym_e_GT] = ACTIONS(2114), - [anon_sym_o_GT] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT] = ACTIONS(2114), - [anon_sym_err_GT_GT] = ACTIONS(2112), - [anon_sym_out_GT_GT] = ACTIONS(2112), - [anon_sym_e_GT_GT] = ACTIONS(2112), - [anon_sym_o_GT_GT] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2112), + [anon_sym_in] = ACTIONS(2244), + [sym__newline] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2244), + [anon_sym_xor2] = ACTIONS(2244), + [anon_sym_or2] = ACTIONS(2244), + [anon_sym_not_DASHin2] = ACTIONS(2244), + [anon_sym_has2] = ACTIONS(2244), + [anon_sym_not_DASHhas2] = ACTIONS(2244), + [anon_sym_starts_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2244), + [anon_sym_ends_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2244), + [anon_sym_EQ_EQ2] = ACTIONS(2244), + [anon_sym_BANG_EQ2] = ACTIONS(2244), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2244), + [anon_sym_GT_EQ2] = ACTIONS(2244), + [anon_sym_EQ_TILDE2] = ACTIONS(2244), + [anon_sym_BANG_TILDE2] = ACTIONS(2244), + [anon_sym_like2] = ACTIONS(2244), + [anon_sym_not_DASHlike2] = ACTIONS(2244), + [anon_sym_STAR_STAR2] = ACTIONS(2244), + [anon_sym_PLUS_PLUS2] = ACTIONS(2244), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2244), + [anon_sym_SLASH_SLASH2] = ACTIONS(2244), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2244), + [anon_sym_bit_DASHshr2] = ACTIONS(2244), + [anon_sym_bit_DASHand2] = ACTIONS(2244), + [anon_sym_bit_DASHxor2] = ACTIONS(2244), + [anon_sym_bit_DASHor2] = ACTIONS(2244), + [anon_sym_DOT_DOT2] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(2256), + [anon_sym_out_GT] = ACTIONS(2256), + [anon_sym_e_GT] = ACTIONS(2256), + [anon_sym_o_GT] = ACTIONS(2256), + [anon_sym_err_PLUSout_GT] = ACTIONS(2256), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2256), + [anon_sym_o_PLUSe_GT] = ACTIONS(2256), + [anon_sym_e_PLUSo_GT] = ACTIONS(2256), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), [anon_sym_POUND] = ACTIONS(3), }, [STATE(695)] = { + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(695), - [anon_sym_if] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(696)] = { [sym_comment] = STATE(696), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(2116), - [aux_sym__immediate_decimal_token5] = ACTIONS(2118), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [ts_builtin_sym_end] = ACTIONS(1610), + [anon_sym_in] = ACTIONS(1610), + [sym__newline] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_err_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_GT_PIPE] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), + [anon_sym_GT2] = ACTIONS(1608), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_STAR2] = ACTIONS(1608), + [anon_sym_and2] = ACTIONS(1610), + [anon_sym_xor2] = ACTIONS(1610), + [anon_sym_or2] = ACTIONS(1610), + [anon_sym_not_DASHin2] = ACTIONS(1610), + [anon_sym_has2] = ACTIONS(1610), + [anon_sym_not_DASHhas2] = ACTIONS(1610), + [anon_sym_starts_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1610), + [anon_sym_ends_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1610), + [anon_sym_EQ_EQ2] = ACTIONS(1610), + [anon_sym_BANG_EQ2] = ACTIONS(1610), + [anon_sym_LT2] = ACTIONS(1608), + [anon_sym_LT_EQ2] = ACTIONS(1610), + [anon_sym_GT_EQ2] = ACTIONS(1610), + [anon_sym_EQ_TILDE2] = ACTIONS(1610), + [anon_sym_BANG_TILDE2] = ACTIONS(1610), + [anon_sym_like2] = ACTIONS(1610), + [anon_sym_not_DASHlike2] = ACTIONS(1610), + [anon_sym_STAR_STAR2] = ACTIONS(1610), + [anon_sym_PLUS_PLUS2] = ACTIONS(1610), + [anon_sym_SLASH2] = ACTIONS(1608), + [anon_sym_mod2] = ACTIONS(1610), + [anon_sym_SLASH_SLASH2] = ACTIONS(1610), + [anon_sym_PLUS2] = ACTIONS(1608), + [anon_sym_bit_DASHshl2] = ACTIONS(1610), + [anon_sym_bit_DASHshr2] = ACTIONS(1610), + [anon_sym_bit_DASHand2] = ACTIONS(1610), + [anon_sym_bit_DASHxor2] = ACTIONS(1610), + [anon_sym_bit_DASHor2] = ACTIONS(1610), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_QMARK2] = ACTIONS(2258), + [anon_sym_DOT2] = ACTIONS(1608), + [anon_sym_err_GT] = ACTIONS(1608), + [anon_sym_out_GT] = ACTIONS(1608), + [anon_sym_e_GT] = ACTIONS(1608), + [anon_sym_o_GT] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT] = ACTIONS(1608), + [anon_sym_err_GT_GT] = ACTIONS(1610), + [anon_sym_out_GT_GT] = ACTIONS(1610), + [anon_sym_e_GT_GT] = ACTIONS(1610), + [anon_sym_o_GT_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), [anon_sym_POUND] = ACTIONS(3), }, [STATE(697)] = { [sym_comment] = STATE(697), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_in] = ACTIONS(2260), + [sym__newline] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_err_GT_PIPE] = ACTIONS(2260), + [anon_sym_out_GT_PIPE] = ACTIONS(2260), + [anon_sym_e_GT_PIPE] = ACTIONS(2260), + [anon_sym_o_GT_PIPE] = ACTIONS(2260), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2260), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2260), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2260), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2260), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_GT2] = ACTIONS(2262), + [anon_sym_DASH2] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_EQ_GT] = ACTIONS(2260), + [anon_sym_STAR2] = ACTIONS(2262), + [anon_sym_and2] = ACTIONS(2260), + [anon_sym_xor2] = ACTIONS(2260), + [anon_sym_or2] = ACTIONS(2260), + [anon_sym_not_DASHin2] = ACTIONS(2260), + [anon_sym_has2] = ACTIONS(2260), + [anon_sym_not_DASHhas2] = ACTIONS(2260), + [anon_sym_starts_DASHwith2] = ACTIONS(2260), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2260), + [anon_sym_ends_DASHwith2] = ACTIONS(2260), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2260), + [anon_sym_EQ_EQ2] = ACTIONS(2260), + [anon_sym_BANG_EQ2] = ACTIONS(2260), + [anon_sym_LT2] = ACTIONS(2262), + [anon_sym_LT_EQ2] = ACTIONS(2260), + [anon_sym_GT_EQ2] = ACTIONS(2260), + [anon_sym_EQ_TILDE2] = ACTIONS(2260), + [anon_sym_BANG_TILDE2] = ACTIONS(2260), + [anon_sym_like2] = ACTIONS(2260), + [anon_sym_not_DASHlike2] = ACTIONS(2260), + [anon_sym_STAR_STAR2] = ACTIONS(2260), + [anon_sym_PLUS_PLUS2] = ACTIONS(2260), + [anon_sym_SLASH2] = ACTIONS(2262), + [anon_sym_mod2] = ACTIONS(2260), + [anon_sym_SLASH_SLASH2] = ACTIONS(2260), + [anon_sym_PLUS2] = ACTIONS(2262), + [anon_sym_bit_DASHshl2] = ACTIONS(2260), + [anon_sym_bit_DASHshr2] = ACTIONS(2260), + [anon_sym_bit_DASHand2] = ACTIONS(2260), + [anon_sym_bit_DASHxor2] = ACTIONS(2260), + [anon_sym_bit_DASHor2] = ACTIONS(2260), + [anon_sym_COLON2] = ACTIONS(2260), + [anon_sym_err_GT] = ACTIONS(2262), + [anon_sym_out_GT] = ACTIONS(2262), + [anon_sym_e_GT] = ACTIONS(2262), + [anon_sym_o_GT] = ACTIONS(2262), + [anon_sym_err_PLUSout_GT] = ACTIONS(2262), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2262), + [anon_sym_o_PLUSe_GT] = ACTIONS(2262), + [anon_sym_e_PLUSo_GT] = ACTIONS(2262), + [anon_sym_err_GT_GT] = ACTIONS(2260), + [anon_sym_out_GT_GT] = ACTIONS(2260), + [anon_sym_e_GT_GT] = ACTIONS(2260), + [anon_sym_o_GT_GT] = ACTIONS(2260), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2260), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2260), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2260), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2260), [anon_sym_POUND] = ACTIONS(3), }, [STATE(698)] = { + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(698), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), - [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2124), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2126), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2126), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(699)] = { + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(699), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_in] = ACTIONS(2128), - [sym__newline] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_err_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_GT_PIPE] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), - [anon_sym_RPAREN] = ACTIONS(2128), - [anon_sym_GT2] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_EQ_GT] = ACTIONS(2128), - [anon_sym_STAR2] = ACTIONS(2130), - [anon_sym_and2] = ACTIONS(2128), - [anon_sym_xor2] = ACTIONS(2128), - [anon_sym_or2] = ACTIONS(2128), - [anon_sym_not_DASHin2] = ACTIONS(2128), - [anon_sym_has2] = ACTIONS(2128), - [anon_sym_not_DASHhas2] = ACTIONS(2128), - [anon_sym_starts_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2128), - [anon_sym_ends_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2128), - [anon_sym_EQ_EQ2] = ACTIONS(2128), - [anon_sym_BANG_EQ2] = ACTIONS(2128), - [anon_sym_LT2] = ACTIONS(2130), - [anon_sym_LT_EQ2] = ACTIONS(2128), - [anon_sym_GT_EQ2] = ACTIONS(2128), - [anon_sym_EQ_TILDE2] = ACTIONS(2128), - [anon_sym_BANG_TILDE2] = ACTIONS(2128), - [anon_sym_like2] = ACTIONS(2128), - [anon_sym_not_DASHlike2] = ACTIONS(2128), - [anon_sym_STAR_STAR2] = ACTIONS(2128), - [anon_sym_PLUS_PLUS2] = ACTIONS(2128), - [anon_sym_SLASH2] = ACTIONS(2130), - [anon_sym_mod2] = ACTIONS(2128), - [anon_sym_SLASH_SLASH2] = ACTIONS(2128), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_bit_DASHshl2] = ACTIONS(2128), - [anon_sym_bit_DASHshr2] = ACTIONS(2128), - [anon_sym_bit_DASHand2] = ACTIONS(2128), - [anon_sym_bit_DASHxor2] = ACTIONS(2128), - [anon_sym_bit_DASHor2] = ACTIONS(2128), - [anon_sym_LBRACK2] = ACTIONS(2132), - [anon_sym_err_GT] = ACTIONS(2130), - [anon_sym_out_GT] = ACTIONS(2130), - [anon_sym_e_GT] = ACTIONS(2130), - [anon_sym_o_GT] = ACTIONS(2130), - [anon_sym_err_PLUSout_GT] = ACTIONS(2130), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), - [anon_sym_o_PLUSe_GT] = ACTIONS(2130), - [anon_sym_e_PLUSo_GT] = ACTIONS(2130), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(700)] = { [sym_comment] = STATE(700), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [anon_sym_in] = ACTIONS(1882), + [sym__newline] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_err_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_GT_PIPE] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_GT2] = ACTIONS(1884), + [anon_sym_DASH2] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_STAR2] = ACTIONS(1884), + [anon_sym_and2] = ACTIONS(1882), + [anon_sym_xor2] = ACTIONS(1882), + [anon_sym_or2] = ACTIONS(1882), + [anon_sym_not_DASHin2] = ACTIONS(1882), + [anon_sym_has2] = ACTIONS(1882), + [anon_sym_not_DASHhas2] = ACTIONS(1882), + [anon_sym_starts_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), + [anon_sym_ends_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), + [anon_sym_EQ_EQ2] = ACTIONS(1882), + [anon_sym_BANG_EQ2] = ACTIONS(1882), + [anon_sym_LT2] = ACTIONS(1884), + [anon_sym_LT_EQ2] = ACTIONS(1882), + [anon_sym_GT_EQ2] = ACTIONS(1882), + [anon_sym_EQ_TILDE2] = ACTIONS(1882), + [anon_sym_BANG_TILDE2] = ACTIONS(1882), + [anon_sym_like2] = ACTIONS(1882), + [anon_sym_not_DASHlike2] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(1882), + [anon_sym_STAR_STAR2] = ACTIONS(1882), + [anon_sym_PLUS_PLUS2] = ACTIONS(1882), + [anon_sym_SLASH2] = ACTIONS(1884), + [anon_sym_mod2] = ACTIONS(1882), + [anon_sym_SLASH_SLASH2] = ACTIONS(1882), + [anon_sym_PLUS2] = ACTIONS(1884), + [anon_sym_bit_DASHshl2] = ACTIONS(1882), + [anon_sym_bit_DASHshr2] = ACTIONS(1882), + [anon_sym_bit_DASHand2] = ACTIONS(1882), + [anon_sym_bit_DASHxor2] = ACTIONS(1882), + [anon_sym_bit_DASHor2] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(2264), + [aux_sym__immediate_decimal_token5] = ACTIONS(2266), + [anon_sym_err_GT] = ACTIONS(1884), + [anon_sym_out_GT] = ACTIONS(1884), + [anon_sym_e_GT] = ACTIONS(1884), + [anon_sym_o_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT] = ACTIONS(1884), + [anon_sym_err_GT_GT] = ACTIONS(1882), + [anon_sym_out_GT_GT] = ACTIONS(1882), + [anon_sym_e_GT_GT] = ACTIONS(1882), + [anon_sym_o_GT_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [sym__unquoted_pattern] = ACTIONS(1884), [anon_sym_POUND] = ACTIONS(3), }, [STATE(701)] = { [sym_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1610), + [anon_sym_in] = ACTIONS(1610), + [sym__newline] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_err_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_GT_PIPE] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), + [anon_sym_GT2] = ACTIONS(1608), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_STAR2] = ACTIONS(1608), + [anon_sym_and2] = ACTIONS(1610), + [anon_sym_xor2] = ACTIONS(1610), + [anon_sym_or2] = ACTIONS(1610), + [anon_sym_not_DASHin2] = ACTIONS(1610), + [anon_sym_has2] = ACTIONS(1610), + [anon_sym_not_DASHhas2] = ACTIONS(1610), + [anon_sym_starts_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1610), + [anon_sym_ends_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1610), + [anon_sym_EQ_EQ2] = ACTIONS(1610), + [anon_sym_BANG_EQ2] = ACTIONS(1610), + [anon_sym_LT2] = ACTIONS(1608), + [anon_sym_LT_EQ2] = ACTIONS(1610), + [anon_sym_GT_EQ2] = ACTIONS(1610), + [anon_sym_EQ_TILDE2] = ACTIONS(1610), + [anon_sym_BANG_TILDE2] = ACTIONS(1610), + [anon_sym_like2] = ACTIONS(1610), + [anon_sym_not_DASHlike2] = ACTIONS(1610), + [anon_sym_STAR_STAR2] = ACTIONS(1610), + [anon_sym_PLUS_PLUS2] = ACTIONS(1610), + [anon_sym_SLASH2] = ACTIONS(1608), + [anon_sym_mod2] = ACTIONS(1610), + [anon_sym_SLASH_SLASH2] = ACTIONS(1610), + [anon_sym_PLUS2] = ACTIONS(1608), + [anon_sym_bit_DASHshl2] = ACTIONS(1610), + [anon_sym_bit_DASHshr2] = ACTIONS(1610), + [anon_sym_bit_DASHand2] = ACTIONS(1610), + [anon_sym_bit_DASHxor2] = ACTIONS(1610), + [anon_sym_bit_DASHor2] = ACTIONS(1610), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_DOT2] = ACTIONS(1608), + [anon_sym_err_GT] = ACTIONS(1608), + [anon_sym_out_GT] = ACTIONS(1608), + [anon_sym_e_GT] = ACTIONS(1608), + [anon_sym_o_GT] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT] = ACTIONS(1608), + [anon_sym_err_GT_GT] = ACTIONS(1610), + [anon_sym_out_GT_GT] = ACTIONS(1610), + [anon_sym_e_GT_GT] = ACTIONS(1610), + [anon_sym_o_GT_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), [anon_sym_POUND] = ACTIONS(3), }, [STATE(702)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(702), - [anon_sym_in] = ACTIONS(2144), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_RPAREN] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_EQ_GT] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2146), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_has2] = ACTIONS(2144), - [anon_sym_not_DASHhas2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2146), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_like2] = ACTIONS(2144), - [anon_sym_not_DASHlike2] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2146), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), + [ts_builtin_sym_end] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2104), + [sym__newline] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_err_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_GT_PIPE] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), + [anon_sym_GT2] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2104), + [anon_sym_STAR2] = ACTIONS(2106), + [anon_sym_and2] = ACTIONS(2104), + [anon_sym_xor2] = ACTIONS(2104), + [anon_sym_or2] = ACTIONS(2104), + [anon_sym_not_DASHin2] = ACTIONS(2104), + [anon_sym_has2] = ACTIONS(2104), + [anon_sym_not_DASHhas2] = ACTIONS(2104), + [anon_sym_starts_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2104), + [anon_sym_ends_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2104), + [anon_sym_EQ_EQ2] = ACTIONS(2104), + [anon_sym_BANG_EQ2] = ACTIONS(2104), + [anon_sym_LT2] = ACTIONS(2106), + [anon_sym_LT_EQ2] = ACTIONS(2104), + [anon_sym_GT_EQ2] = ACTIONS(2104), + [anon_sym_EQ_TILDE2] = ACTIONS(2104), + [anon_sym_BANG_TILDE2] = ACTIONS(2104), + [anon_sym_like2] = ACTIONS(2104), + [anon_sym_not_DASHlike2] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2108), + [anon_sym_STAR_STAR2] = ACTIONS(2104), + [anon_sym_PLUS_PLUS2] = ACTIONS(2104), + [anon_sym_SLASH2] = ACTIONS(2106), + [anon_sym_mod2] = ACTIONS(2104), + [anon_sym_SLASH_SLASH2] = ACTIONS(2104), + [anon_sym_PLUS2] = ACTIONS(2106), + [anon_sym_bit_DASHshl2] = ACTIONS(2104), + [anon_sym_bit_DASHshr2] = ACTIONS(2104), + [anon_sym_bit_DASHand2] = ACTIONS(2104), + [anon_sym_bit_DASHxor2] = ACTIONS(2104), + [anon_sym_bit_DASHor2] = ACTIONS(2104), + [anon_sym_DOT_DOT2] = ACTIONS(2270), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2272), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2272), + [anon_sym_err_GT] = ACTIONS(2106), + [anon_sym_out_GT] = ACTIONS(2106), + [anon_sym_e_GT] = ACTIONS(2106), + [anon_sym_o_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_err_GT_GT] = ACTIONS(2104), + [anon_sym_out_GT_GT] = ACTIONS(2104), + [anon_sym_e_GT_GT] = ACTIONS(2104), + [anon_sym_o_GT_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), + [sym__unquoted_pattern] = ACTIONS(2114), [anon_sym_POUND] = ACTIONS(3), }, [STATE(703)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(703), - [anon_sym_in] = ACTIONS(2148), - [sym__newline] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_err_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_GT_PIPE] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_GT2] = ACTIONS(2150), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2148), - [anon_sym_EQ_GT] = ACTIONS(2148), - [anon_sym_STAR2] = ACTIONS(2150), - [anon_sym_and2] = ACTIONS(2148), - [anon_sym_xor2] = ACTIONS(2148), - [anon_sym_or2] = ACTIONS(2148), - [anon_sym_not_DASHin2] = ACTIONS(2148), - [anon_sym_has2] = ACTIONS(2148), - [anon_sym_not_DASHhas2] = ACTIONS(2148), - [anon_sym_starts_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2148), - [anon_sym_ends_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2148), - [anon_sym_EQ_EQ2] = ACTIONS(2148), - [anon_sym_BANG_EQ2] = ACTIONS(2148), - [anon_sym_LT2] = ACTIONS(2150), - [anon_sym_LT_EQ2] = ACTIONS(2148), - [anon_sym_GT_EQ2] = ACTIONS(2148), - [anon_sym_EQ_TILDE2] = ACTIONS(2148), - [anon_sym_BANG_TILDE2] = ACTIONS(2148), - [anon_sym_like2] = ACTIONS(2148), - [anon_sym_not_DASHlike2] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2148), - [anon_sym_PLUS_PLUS2] = ACTIONS(2148), - [anon_sym_SLASH2] = ACTIONS(2150), - [anon_sym_mod2] = ACTIONS(2148), - [anon_sym_SLASH_SLASH2] = ACTIONS(2148), - [anon_sym_PLUS2] = ACTIONS(2150), - [anon_sym_bit_DASHshl2] = ACTIONS(2148), - [anon_sym_bit_DASHshr2] = ACTIONS(2148), - [anon_sym_bit_DASHand2] = ACTIONS(2148), - [anon_sym_bit_DASHxor2] = ACTIONS(2148), - [anon_sym_bit_DASHor2] = ACTIONS(2148), - [anon_sym_err_GT] = ACTIONS(2150), - [anon_sym_out_GT] = ACTIONS(2150), - [anon_sym_e_GT] = ACTIONS(2150), - [anon_sym_o_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT] = ACTIONS(2150), - [anon_sym_err_GT_GT] = ACTIONS(2148), - [anon_sym_out_GT_GT] = ACTIONS(2148), - [anon_sym_e_GT_GT] = ACTIONS(2148), - [anon_sym_o_GT_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(2274), + [sym__newline] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_err_GT_PIPE] = ACTIONS(2274), + [anon_sym_out_GT_PIPE] = ACTIONS(2274), + [anon_sym_e_GT_PIPE] = ACTIONS(2274), + [anon_sym_o_GT_PIPE] = ACTIONS(2274), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2274), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2274), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2274), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2274), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_GT2] = ACTIONS(2276), + [anon_sym_DASH2] = ACTIONS(2274), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_EQ_GT] = ACTIONS(2274), + [anon_sym_STAR2] = ACTIONS(2276), + [anon_sym_and2] = ACTIONS(2274), + [anon_sym_xor2] = ACTIONS(2274), + [anon_sym_or2] = ACTIONS(2274), + [anon_sym_not_DASHin2] = ACTIONS(2274), + [anon_sym_has2] = ACTIONS(2274), + [anon_sym_not_DASHhas2] = ACTIONS(2274), + [anon_sym_starts_DASHwith2] = ACTIONS(2274), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2274), + [anon_sym_ends_DASHwith2] = ACTIONS(2274), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2274), + [anon_sym_EQ_EQ2] = ACTIONS(2274), + [anon_sym_BANG_EQ2] = ACTIONS(2274), + [anon_sym_LT2] = ACTIONS(2276), + [anon_sym_LT_EQ2] = ACTIONS(2274), + [anon_sym_GT_EQ2] = ACTIONS(2274), + [anon_sym_EQ_TILDE2] = ACTIONS(2274), + [anon_sym_BANG_TILDE2] = ACTIONS(2274), + [anon_sym_like2] = ACTIONS(2274), + [anon_sym_not_DASHlike2] = ACTIONS(2274), + [anon_sym_LPAREN2] = ACTIONS(2274), + [anon_sym_STAR_STAR2] = ACTIONS(2274), + [anon_sym_PLUS_PLUS2] = ACTIONS(2274), + [anon_sym_SLASH2] = ACTIONS(2276), + [anon_sym_mod2] = ACTIONS(2274), + [anon_sym_SLASH_SLASH2] = ACTIONS(2274), + [anon_sym_PLUS2] = ACTIONS(2276), + [anon_sym_bit_DASHshl2] = ACTIONS(2274), + [anon_sym_bit_DASHshr2] = ACTIONS(2274), + [anon_sym_bit_DASHand2] = ACTIONS(2274), + [anon_sym_bit_DASHxor2] = ACTIONS(2274), + [anon_sym_bit_DASHor2] = ACTIONS(2274), + [anon_sym_err_GT] = ACTIONS(2276), + [anon_sym_out_GT] = ACTIONS(2276), + [anon_sym_e_GT] = ACTIONS(2276), + [anon_sym_o_GT] = ACTIONS(2276), + [anon_sym_err_PLUSout_GT] = ACTIONS(2276), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2276), + [anon_sym_o_PLUSe_GT] = ACTIONS(2276), + [anon_sym_e_PLUSo_GT] = ACTIONS(2276), + [anon_sym_err_GT_GT] = ACTIONS(2274), + [anon_sym_out_GT_GT] = ACTIONS(2274), + [anon_sym_e_GT_GT] = ACTIONS(2274), + [anon_sym_o_GT_GT] = ACTIONS(2274), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2274), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2274), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2274), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2274), [anon_sym_POUND] = ACTIONS(3), }, [STATE(704)] = { [sym_comment] = STATE(704), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(2156), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2158), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2158), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(2278), + [sym__newline] = ACTIONS(2278), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_err_GT_PIPE] = ACTIONS(2278), + [anon_sym_out_GT_PIPE] = ACTIONS(2278), + [anon_sym_e_GT_PIPE] = ACTIONS(2278), + [anon_sym_o_GT_PIPE] = ACTIONS(2278), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2278), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2278), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2278), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2278), + [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_GT2] = ACTIONS(2280), + [anon_sym_DASH2] = ACTIONS(2278), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_STAR2] = ACTIONS(2280), + [anon_sym_and2] = ACTIONS(2278), + [anon_sym_xor2] = ACTIONS(2278), + [anon_sym_or2] = ACTIONS(2278), + [anon_sym_not_DASHin2] = ACTIONS(2278), + [anon_sym_has2] = ACTIONS(2278), + [anon_sym_not_DASHhas2] = ACTIONS(2278), + [anon_sym_starts_DASHwith2] = ACTIONS(2278), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2278), + [anon_sym_ends_DASHwith2] = ACTIONS(2278), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2278), + [anon_sym_EQ_EQ2] = ACTIONS(2278), + [anon_sym_BANG_EQ2] = ACTIONS(2278), + [anon_sym_LT2] = ACTIONS(2280), + [anon_sym_LT_EQ2] = ACTIONS(2278), + [anon_sym_GT_EQ2] = ACTIONS(2278), + [anon_sym_EQ_TILDE2] = ACTIONS(2278), + [anon_sym_BANG_TILDE2] = ACTIONS(2278), + [anon_sym_like2] = ACTIONS(2278), + [anon_sym_not_DASHlike2] = ACTIONS(2278), + [anon_sym_STAR_STAR2] = ACTIONS(2278), + [anon_sym_PLUS_PLUS2] = ACTIONS(2278), + [anon_sym_SLASH2] = ACTIONS(2280), + [anon_sym_mod2] = ACTIONS(2278), + [anon_sym_SLASH_SLASH2] = ACTIONS(2278), + [anon_sym_PLUS2] = ACTIONS(2280), + [anon_sym_bit_DASHshl2] = ACTIONS(2278), + [anon_sym_bit_DASHshr2] = ACTIONS(2278), + [anon_sym_bit_DASHand2] = ACTIONS(2278), + [anon_sym_bit_DASHxor2] = ACTIONS(2278), + [anon_sym_bit_DASHor2] = ACTIONS(2278), + [anon_sym_DOT_DOT2] = ACTIONS(2282), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2284), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2284), + [anon_sym_err_GT] = ACTIONS(2280), + [anon_sym_out_GT] = ACTIONS(2280), + [anon_sym_e_GT] = ACTIONS(2280), + [anon_sym_o_GT] = ACTIONS(2280), + [anon_sym_err_PLUSout_GT] = ACTIONS(2280), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2280), + [anon_sym_o_PLUSe_GT] = ACTIONS(2280), + [anon_sym_e_PLUSo_GT] = ACTIONS(2280), + [anon_sym_err_GT_GT] = ACTIONS(2278), + [anon_sym_out_GT_GT] = ACTIONS(2278), + [anon_sym_e_GT_GT] = ACTIONS(2278), + [anon_sym_o_GT_GT] = ACTIONS(2278), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2278), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2278), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2278), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2278), [anon_sym_POUND] = ACTIONS(3), }, [STATE(705)] = { [sym_comment] = STATE(705), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2160), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2162), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2162), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), + [ts_builtin_sym_end] = ACTIONS(1920), + [anon_sym_in] = ACTIONS(1920), + [sym__newline] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_err_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_GT_PIPE] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1920), + [anon_sym_GT2] = ACTIONS(1922), + [anon_sym_DASH2] = ACTIONS(1920), + [anon_sym_STAR2] = ACTIONS(1922), + [anon_sym_and2] = ACTIONS(1920), + [anon_sym_xor2] = ACTIONS(1920), + [anon_sym_or2] = ACTIONS(1920), + [anon_sym_not_DASHin2] = ACTIONS(1920), + [anon_sym_has2] = ACTIONS(1920), + [anon_sym_not_DASHhas2] = ACTIONS(1920), + [anon_sym_starts_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1920), + [anon_sym_ends_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1920), + [anon_sym_EQ_EQ2] = ACTIONS(1920), + [anon_sym_BANG_EQ2] = ACTIONS(1920), + [anon_sym_LT2] = ACTIONS(1922), + [anon_sym_LT_EQ2] = ACTIONS(1920), + [anon_sym_GT_EQ2] = ACTIONS(1920), + [anon_sym_EQ_TILDE2] = ACTIONS(1920), + [anon_sym_BANG_TILDE2] = ACTIONS(1920), + [anon_sym_like2] = ACTIONS(1920), + [anon_sym_not_DASHlike2] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1920), + [anon_sym_STAR_STAR2] = ACTIONS(1920), + [anon_sym_PLUS_PLUS2] = ACTIONS(1920), + [anon_sym_SLASH2] = ACTIONS(1922), + [anon_sym_mod2] = ACTIONS(1920), + [anon_sym_SLASH_SLASH2] = ACTIONS(1920), + [anon_sym_PLUS2] = ACTIONS(1922), + [anon_sym_bit_DASHshl2] = ACTIONS(1920), + [anon_sym_bit_DASHshr2] = ACTIONS(1920), + [anon_sym_bit_DASHand2] = ACTIONS(1920), + [anon_sym_bit_DASHxor2] = ACTIONS(1920), + [anon_sym_bit_DASHor2] = ACTIONS(1920), + [anon_sym_DOT_DOT2] = ACTIONS(1922), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1920), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1920), + [anon_sym_err_GT] = ACTIONS(1922), + [anon_sym_out_GT] = ACTIONS(1922), + [anon_sym_e_GT] = ACTIONS(1922), + [anon_sym_o_GT] = ACTIONS(1922), + [anon_sym_err_PLUSout_GT] = ACTIONS(1922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1922), + [anon_sym_o_PLUSe_GT] = ACTIONS(1922), + [anon_sym_e_PLUSo_GT] = ACTIONS(1922), + [anon_sym_err_GT_GT] = ACTIONS(1920), + [anon_sym_out_GT_GT] = ACTIONS(1920), + [anon_sym_e_GT_GT] = ACTIONS(1920), + [anon_sym_o_GT_GT] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1920), + [sym__unquoted_pattern] = ACTIONS(1922), [anon_sym_POUND] = ACTIONS(3), }, [STATE(706)] = { + [sym__expr_parenthesized_immediate] = STATE(5247), [sym_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(2164), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_in] = ACTIONS(2286), + [sym__newline] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_err_GT_PIPE] = ACTIONS(2286), + [anon_sym_out_GT_PIPE] = ACTIONS(2286), + [anon_sym_e_GT_PIPE] = ACTIONS(2286), + [anon_sym_o_GT_PIPE] = ACTIONS(2286), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2286), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2286), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2286), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2286), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_GT2] = ACTIONS(2288), + [anon_sym_DASH2] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_EQ_GT] = ACTIONS(2286), + [anon_sym_STAR2] = ACTIONS(2288), + [anon_sym_and2] = ACTIONS(2286), + [anon_sym_xor2] = ACTIONS(2286), + [anon_sym_or2] = ACTIONS(2286), + [anon_sym_not_DASHin2] = ACTIONS(2286), + [anon_sym_has2] = ACTIONS(2286), + [anon_sym_not_DASHhas2] = ACTIONS(2286), + [anon_sym_starts_DASHwith2] = ACTIONS(2286), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2286), + [anon_sym_ends_DASHwith2] = ACTIONS(2286), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2286), + [anon_sym_EQ_EQ2] = ACTIONS(2286), + [anon_sym_BANG_EQ2] = ACTIONS(2286), + [anon_sym_LT2] = ACTIONS(2288), + [anon_sym_LT_EQ2] = ACTIONS(2286), + [anon_sym_GT_EQ2] = ACTIONS(2286), + [anon_sym_EQ_TILDE2] = ACTIONS(2286), + [anon_sym_BANG_TILDE2] = ACTIONS(2286), + [anon_sym_like2] = ACTIONS(2286), + [anon_sym_not_DASHlike2] = ACTIONS(2286), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2286), + [anon_sym_PLUS_PLUS2] = ACTIONS(2286), + [anon_sym_SLASH2] = ACTIONS(2288), + [anon_sym_mod2] = ACTIONS(2286), + [anon_sym_SLASH_SLASH2] = ACTIONS(2286), + [anon_sym_PLUS2] = ACTIONS(2288), + [anon_sym_bit_DASHshl2] = ACTIONS(2286), + [anon_sym_bit_DASHshr2] = ACTIONS(2286), + [anon_sym_bit_DASHand2] = ACTIONS(2286), + [anon_sym_bit_DASHxor2] = ACTIONS(2286), + [anon_sym_bit_DASHor2] = ACTIONS(2286), + [anon_sym_err_GT] = ACTIONS(2288), + [anon_sym_out_GT] = ACTIONS(2288), + [anon_sym_e_GT] = ACTIONS(2288), + [anon_sym_o_GT] = ACTIONS(2288), + [anon_sym_err_PLUSout_GT] = ACTIONS(2288), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2288), + [anon_sym_o_PLUSe_GT] = ACTIONS(2288), + [anon_sym_e_PLUSo_GT] = ACTIONS(2288), + [anon_sym_err_GT_GT] = ACTIONS(2286), + [anon_sym_out_GT_GT] = ACTIONS(2286), + [anon_sym_e_GT_GT] = ACTIONS(2286), + [anon_sym_o_GT_GT] = ACTIONS(2286), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2286), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2286), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2286), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2286), [anon_sym_POUND] = ACTIONS(3), }, [STATE(707)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(707), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(708)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(708), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(709)] = { + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(709), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2166), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2168), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2168), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(710)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(710), - [anon_sym_in] = ACTIONS(2170), - [sym__newline] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_err_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_GT_PIPE] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2170), - [anon_sym_RPAREN] = ACTIONS(2170), - [anon_sym_GT2] = ACTIONS(2172), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2170), - [anon_sym_EQ_GT] = ACTIONS(2170), - [anon_sym_STAR2] = ACTIONS(2172), - [anon_sym_and2] = ACTIONS(2170), - [anon_sym_xor2] = ACTIONS(2170), - [anon_sym_or2] = ACTIONS(2170), - [anon_sym_not_DASHin2] = ACTIONS(2170), - [anon_sym_has2] = ACTIONS(2170), - [anon_sym_not_DASHhas2] = ACTIONS(2170), - [anon_sym_starts_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2170), - [anon_sym_ends_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2170), - [anon_sym_EQ_EQ2] = ACTIONS(2170), - [anon_sym_BANG_EQ2] = ACTIONS(2170), - [anon_sym_LT2] = ACTIONS(2172), - [anon_sym_LT_EQ2] = ACTIONS(2170), - [anon_sym_GT_EQ2] = ACTIONS(2170), - [anon_sym_EQ_TILDE2] = ACTIONS(2170), - [anon_sym_BANG_TILDE2] = ACTIONS(2170), - [anon_sym_like2] = ACTIONS(2170), - [anon_sym_not_DASHlike2] = ACTIONS(2170), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2170), - [anon_sym_PLUS_PLUS2] = ACTIONS(2170), - [anon_sym_SLASH2] = ACTIONS(2172), - [anon_sym_mod2] = ACTIONS(2170), - [anon_sym_SLASH_SLASH2] = ACTIONS(2170), - [anon_sym_PLUS2] = ACTIONS(2172), - [anon_sym_bit_DASHshl2] = ACTIONS(2170), - [anon_sym_bit_DASHshr2] = ACTIONS(2170), - [anon_sym_bit_DASHand2] = ACTIONS(2170), - [anon_sym_bit_DASHxor2] = ACTIONS(2170), - [anon_sym_bit_DASHor2] = ACTIONS(2170), - [anon_sym_err_GT] = ACTIONS(2172), - [anon_sym_out_GT] = ACTIONS(2172), - [anon_sym_e_GT] = ACTIONS(2172), - [anon_sym_o_GT] = ACTIONS(2172), - [anon_sym_err_PLUSout_GT] = ACTIONS(2172), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2172), - [anon_sym_o_PLUSe_GT] = ACTIONS(2172), - [anon_sym_e_PLUSo_GT] = ACTIONS(2172), - [anon_sym_err_GT_GT] = ACTIONS(2170), - [anon_sym_out_GT_GT] = ACTIONS(2170), - [anon_sym_e_GT_GT] = ACTIONS(2170), - [anon_sym_o_GT_GT] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2170), + [anon_sym_in] = ACTIONS(1920), + [sym__newline] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_err_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_GT_PIPE] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1920), + [anon_sym_RPAREN] = ACTIONS(1920), + [anon_sym_GT2] = ACTIONS(1922), + [anon_sym_DASH2] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_STAR2] = ACTIONS(1922), + [anon_sym_and2] = ACTIONS(1920), + [anon_sym_xor2] = ACTIONS(1920), + [anon_sym_or2] = ACTIONS(1920), + [anon_sym_not_DASHin2] = ACTIONS(1920), + [anon_sym_has2] = ACTIONS(1920), + [anon_sym_not_DASHhas2] = ACTIONS(1920), + [anon_sym_starts_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1920), + [anon_sym_ends_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1920), + [anon_sym_EQ_EQ2] = ACTIONS(1920), + [anon_sym_BANG_EQ2] = ACTIONS(1920), + [anon_sym_LT2] = ACTIONS(1922), + [anon_sym_LT_EQ2] = ACTIONS(1920), + [anon_sym_GT_EQ2] = ACTIONS(1920), + [anon_sym_EQ_TILDE2] = ACTIONS(1920), + [anon_sym_BANG_TILDE2] = ACTIONS(1920), + [anon_sym_like2] = ACTIONS(1920), + [anon_sym_not_DASHlike2] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1920), + [anon_sym_STAR_STAR2] = ACTIONS(1920), + [anon_sym_PLUS_PLUS2] = ACTIONS(1920), + [anon_sym_SLASH2] = ACTIONS(1922), + [anon_sym_mod2] = ACTIONS(1920), + [anon_sym_SLASH_SLASH2] = ACTIONS(1920), + [anon_sym_PLUS2] = ACTIONS(1922), + [anon_sym_bit_DASHshl2] = ACTIONS(1920), + [anon_sym_bit_DASHshr2] = ACTIONS(1920), + [anon_sym_bit_DASHand2] = ACTIONS(1920), + [anon_sym_bit_DASHxor2] = ACTIONS(1920), + [anon_sym_bit_DASHor2] = ACTIONS(1920), + [aux_sym__immediate_decimal_token1] = ACTIONS(2290), + [aux_sym__immediate_decimal_token5] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(1922), + [anon_sym_out_GT] = ACTIONS(1922), + [anon_sym_e_GT] = ACTIONS(1922), + [anon_sym_o_GT] = ACTIONS(1922), + [anon_sym_err_PLUSout_GT] = ACTIONS(1922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1922), + [anon_sym_o_PLUSe_GT] = ACTIONS(1922), + [anon_sym_e_PLUSo_GT] = ACTIONS(1922), + [anon_sym_err_GT_GT] = ACTIONS(1920), + [anon_sym_out_GT_GT] = ACTIONS(1920), + [anon_sym_e_GT_GT] = ACTIONS(1920), + [anon_sym_o_GT_GT] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1920), + [sym__unquoted_pattern] = ACTIONS(1922), [anon_sym_POUND] = ACTIONS(3), }, [STATE(711)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(711), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2294), + [sym__newline] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_err_GT_PIPE] = ACTIONS(2294), + [anon_sym_out_GT_PIPE] = ACTIONS(2294), + [anon_sym_e_GT_PIPE] = ACTIONS(2294), + [anon_sym_o_GT_PIPE] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2294), + [anon_sym_GT2] = ACTIONS(2296), + [anon_sym_DASH2] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_STAR2] = ACTIONS(2296), + [anon_sym_and2] = ACTIONS(2294), + [anon_sym_xor2] = ACTIONS(2294), + [anon_sym_or2] = ACTIONS(2294), + [anon_sym_not_DASHin2] = ACTIONS(2294), + [anon_sym_has2] = ACTIONS(2294), + [anon_sym_not_DASHhas2] = ACTIONS(2294), + [anon_sym_starts_DASHwith2] = ACTIONS(2294), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2294), + [anon_sym_ends_DASHwith2] = ACTIONS(2294), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2294), + [anon_sym_EQ_EQ2] = ACTIONS(2294), + [anon_sym_BANG_EQ2] = ACTIONS(2294), + [anon_sym_LT2] = ACTIONS(2296), + [anon_sym_LT_EQ2] = ACTIONS(2294), + [anon_sym_GT_EQ2] = ACTIONS(2294), + [anon_sym_EQ_TILDE2] = ACTIONS(2294), + [anon_sym_BANG_TILDE2] = ACTIONS(2294), + [anon_sym_like2] = ACTIONS(2294), + [anon_sym_not_DASHlike2] = ACTIONS(2294), + [anon_sym_STAR_STAR2] = ACTIONS(2294), + [anon_sym_PLUS_PLUS2] = ACTIONS(2294), + [anon_sym_SLASH2] = ACTIONS(2296), + [anon_sym_mod2] = ACTIONS(2294), + [anon_sym_SLASH_SLASH2] = ACTIONS(2294), + [anon_sym_PLUS2] = ACTIONS(2296), + [anon_sym_bit_DASHshl2] = ACTIONS(2294), + [anon_sym_bit_DASHshr2] = ACTIONS(2294), + [anon_sym_bit_DASHand2] = ACTIONS(2294), + [anon_sym_bit_DASHxor2] = ACTIONS(2294), + [anon_sym_bit_DASHor2] = ACTIONS(2294), + [anon_sym_DOT_DOT2] = ACTIONS(2298), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2300), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2300), + [anon_sym_err_GT] = ACTIONS(2296), + [anon_sym_out_GT] = ACTIONS(2296), + [anon_sym_e_GT] = ACTIONS(2296), + [anon_sym_o_GT] = ACTIONS(2296), + [anon_sym_err_PLUSout_GT] = ACTIONS(2296), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2296), + [anon_sym_o_PLUSe_GT] = ACTIONS(2296), + [anon_sym_e_PLUSo_GT] = ACTIONS(2296), + [anon_sym_err_GT_GT] = ACTIONS(2294), + [anon_sym_out_GT_GT] = ACTIONS(2294), + [anon_sym_e_GT_GT] = ACTIONS(2294), + [anon_sym_o_GT_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2294), [anon_sym_POUND] = ACTIONS(3), }, [STATE(712)] = { [sym_comment] = STATE(712), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2094), + [sym__newline] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_err_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_GT_PIPE] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(2094), + [anon_sym_GT2] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_STAR2] = ACTIONS(2096), + [anon_sym_and2] = ACTIONS(2094), + [anon_sym_xor2] = ACTIONS(2094), + [anon_sym_or2] = ACTIONS(2094), + [anon_sym_not_DASHin2] = ACTIONS(2094), + [anon_sym_has2] = ACTIONS(2094), + [anon_sym_not_DASHhas2] = ACTIONS(2094), + [anon_sym_starts_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2094), + [anon_sym_ends_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2094), + [anon_sym_EQ_EQ2] = ACTIONS(2094), + [anon_sym_BANG_EQ2] = ACTIONS(2094), + [anon_sym_LT2] = ACTIONS(2096), + [anon_sym_LT_EQ2] = ACTIONS(2094), + [anon_sym_GT_EQ2] = ACTIONS(2094), + [anon_sym_EQ_TILDE2] = ACTIONS(2094), + [anon_sym_BANG_TILDE2] = ACTIONS(2094), + [anon_sym_like2] = ACTIONS(2094), + [anon_sym_not_DASHlike2] = ACTIONS(2094), + [anon_sym_STAR_STAR2] = ACTIONS(2094), + [anon_sym_PLUS_PLUS2] = ACTIONS(2094), + [anon_sym_SLASH2] = ACTIONS(2096), + [anon_sym_mod2] = ACTIONS(2094), + [anon_sym_SLASH_SLASH2] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2096), + [anon_sym_bit_DASHshl2] = ACTIONS(2094), + [anon_sym_bit_DASHshr2] = ACTIONS(2094), + [anon_sym_bit_DASHand2] = ACTIONS(2094), + [anon_sym_bit_DASHxor2] = ACTIONS(2094), + [anon_sym_bit_DASHor2] = ACTIONS(2094), + [anon_sym_DOT_DOT2] = ACTIONS(2302), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2304), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2304), + [anon_sym_err_GT] = ACTIONS(2096), + [anon_sym_out_GT] = ACTIONS(2096), + [anon_sym_e_GT] = ACTIONS(2096), + [anon_sym_o_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT] = ACTIONS(2096), + [anon_sym_err_GT_GT] = ACTIONS(2094), + [anon_sym_out_GT_GT] = ACTIONS(2094), + [anon_sym_e_GT_GT] = ACTIONS(2094), + [anon_sym_o_GT_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), [anon_sym_POUND] = ACTIONS(3), }, [STATE(713)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1276), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1016), - [sym__unquoted_with_expr] = STATE(1301), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(713), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(714)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(714), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(2306), + [anon_sym_in] = ACTIONS(2306), + [sym__newline] = ACTIONS(2306), + [anon_sym_SEMI] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_err_GT_PIPE] = ACTIONS(2306), + [anon_sym_out_GT_PIPE] = ACTIONS(2306), + [anon_sym_e_GT_PIPE] = ACTIONS(2306), + [anon_sym_o_GT_PIPE] = ACTIONS(2306), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2306), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2306), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2306), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(2306), + [anon_sym_GT2] = ACTIONS(2308), + [anon_sym_DASH2] = ACTIONS(2306), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_EQ_GT] = ACTIONS(2306), + [anon_sym_STAR2] = ACTIONS(2308), + [anon_sym_and2] = ACTIONS(2306), + [anon_sym_xor2] = ACTIONS(2306), + [anon_sym_or2] = ACTIONS(2306), + [anon_sym_not_DASHin2] = ACTIONS(2306), + [anon_sym_has2] = ACTIONS(2306), + [anon_sym_not_DASHhas2] = ACTIONS(2306), + [anon_sym_starts_DASHwith2] = ACTIONS(2306), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2306), + [anon_sym_ends_DASHwith2] = ACTIONS(2306), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2306), + [anon_sym_EQ_EQ2] = ACTIONS(2306), + [anon_sym_BANG_EQ2] = ACTIONS(2306), + [anon_sym_LT2] = ACTIONS(2308), + [anon_sym_LT_EQ2] = ACTIONS(2306), + [anon_sym_GT_EQ2] = ACTIONS(2306), + [anon_sym_EQ_TILDE2] = ACTIONS(2306), + [anon_sym_BANG_TILDE2] = ACTIONS(2306), + [anon_sym_like2] = ACTIONS(2306), + [anon_sym_not_DASHlike2] = ACTIONS(2306), + [anon_sym_LPAREN2] = ACTIONS(2306), + [anon_sym_STAR_STAR2] = ACTIONS(2306), + [anon_sym_PLUS_PLUS2] = ACTIONS(2306), + [anon_sym_SLASH2] = ACTIONS(2308), + [anon_sym_mod2] = ACTIONS(2306), + [anon_sym_SLASH_SLASH2] = ACTIONS(2306), + [anon_sym_PLUS2] = ACTIONS(2308), + [anon_sym_bit_DASHshl2] = ACTIONS(2306), + [anon_sym_bit_DASHshr2] = ACTIONS(2306), + [anon_sym_bit_DASHand2] = ACTIONS(2306), + [anon_sym_bit_DASHxor2] = ACTIONS(2306), + [anon_sym_bit_DASHor2] = ACTIONS(2306), + [anon_sym_err_GT] = ACTIONS(2308), + [anon_sym_out_GT] = ACTIONS(2308), + [anon_sym_e_GT] = ACTIONS(2308), + [anon_sym_o_GT] = ACTIONS(2308), + [anon_sym_err_PLUSout_GT] = ACTIONS(2308), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2308), + [anon_sym_o_PLUSe_GT] = ACTIONS(2308), + [anon_sym_e_PLUSo_GT] = ACTIONS(2308), + [anon_sym_err_GT_GT] = ACTIONS(2306), + [anon_sym_out_GT_GT] = ACTIONS(2306), + [anon_sym_e_GT_GT] = ACTIONS(2306), + [anon_sym_o_GT_GT] = ACTIONS(2306), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2306), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2306), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2306), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2306), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(715)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2187), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(715), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_catch] = ACTIONS(2310), + [anon_sym_in] = ACTIONS(2310), + [sym__newline] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_err_GT_PIPE] = ACTIONS(2310), + [anon_sym_out_GT_PIPE] = ACTIONS(2310), + [anon_sym_e_GT_PIPE] = ACTIONS(2310), + [anon_sym_o_GT_PIPE] = ACTIONS(2310), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2310), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2310), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2310), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2310), + [anon_sym_COLON] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_RPAREN] = ACTIONS(2310), + [anon_sym_GT2] = ACTIONS(2312), + [anon_sym_DASH2] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_STAR2] = ACTIONS(2312), + [anon_sym_and2] = ACTIONS(2310), + [anon_sym_xor2] = ACTIONS(2310), + [anon_sym_or2] = ACTIONS(2310), + [anon_sym_not_DASHin2] = ACTIONS(2310), + [anon_sym_has2] = ACTIONS(2310), + [anon_sym_not_DASHhas2] = ACTIONS(2310), + [anon_sym_starts_DASHwith2] = ACTIONS(2310), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2310), + [anon_sym_ends_DASHwith2] = ACTIONS(2310), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2310), + [anon_sym_EQ_EQ2] = ACTIONS(2310), + [anon_sym_BANG_EQ2] = ACTIONS(2310), + [anon_sym_LT2] = ACTIONS(2312), + [anon_sym_LT_EQ2] = ACTIONS(2310), + [anon_sym_GT_EQ2] = ACTIONS(2310), + [anon_sym_EQ_TILDE2] = ACTIONS(2310), + [anon_sym_BANG_TILDE2] = ACTIONS(2310), + [anon_sym_like2] = ACTIONS(2310), + [anon_sym_not_DASHlike2] = ACTIONS(2310), + [anon_sym_STAR_STAR2] = ACTIONS(2310), + [anon_sym_PLUS_PLUS2] = ACTIONS(2310), + [anon_sym_SLASH2] = ACTIONS(2312), + [anon_sym_mod2] = ACTIONS(2310), + [anon_sym_SLASH_SLASH2] = ACTIONS(2310), + [anon_sym_PLUS2] = ACTIONS(2312), + [anon_sym_bit_DASHshl2] = ACTIONS(2310), + [anon_sym_bit_DASHshr2] = ACTIONS(2310), + [anon_sym_bit_DASHand2] = ACTIONS(2310), + [anon_sym_bit_DASHxor2] = ACTIONS(2310), + [anon_sym_bit_DASHor2] = ACTIONS(2310), + [anon_sym_err_GT] = ACTIONS(2312), + [anon_sym_out_GT] = ACTIONS(2312), + [anon_sym_e_GT] = ACTIONS(2312), + [anon_sym_o_GT] = ACTIONS(2312), + [anon_sym_err_PLUSout_GT] = ACTIONS(2312), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2312), + [anon_sym_o_PLUSe_GT] = ACTIONS(2312), + [anon_sym_e_PLUSo_GT] = ACTIONS(2312), + [anon_sym_err_GT_GT] = ACTIONS(2310), + [anon_sym_out_GT_GT] = ACTIONS(2310), + [anon_sym_e_GT_GT] = ACTIONS(2310), + [anon_sym_o_GT_GT] = ACTIONS(2310), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2310), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2310), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2310), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2310), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(716)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2188), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(716), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(717)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2189), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__expr_parenthesized_immediate] = STATE(5247), [sym_comment] = STATE(717), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2314), + [sym__newline] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_err_GT_PIPE] = ACTIONS(2314), + [anon_sym_out_GT_PIPE] = ACTIONS(2314), + [anon_sym_e_GT_PIPE] = ACTIONS(2314), + [anon_sym_o_GT_PIPE] = ACTIONS(2314), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2314), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2314), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2314), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2314), + [anon_sym_RPAREN] = ACTIONS(2314), + [anon_sym_GT2] = ACTIONS(2316), + [anon_sym_DASH2] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_EQ_GT] = ACTIONS(2314), + [anon_sym_STAR2] = ACTIONS(2316), + [anon_sym_and2] = ACTIONS(2314), + [anon_sym_xor2] = ACTIONS(2314), + [anon_sym_or2] = ACTIONS(2314), + [anon_sym_not_DASHin2] = ACTIONS(2314), + [anon_sym_has2] = ACTIONS(2314), + [anon_sym_not_DASHhas2] = ACTIONS(2314), + [anon_sym_starts_DASHwith2] = ACTIONS(2314), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2314), + [anon_sym_ends_DASHwith2] = ACTIONS(2314), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2314), + [anon_sym_EQ_EQ2] = ACTIONS(2314), + [anon_sym_BANG_EQ2] = ACTIONS(2314), + [anon_sym_LT2] = ACTIONS(2316), + [anon_sym_LT_EQ2] = ACTIONS(2314), + [anon_sym_GT_EQ2] = ACTIONS(2314), + [anon_sym_EQ_TILDE2] = ACTIONS(2314), + [anon_sym_BANG_TILDE2] = ACTIONS(2314), + [anon_sym_like2] = ACTIONS(2314), + [anon_sym_not_DASHlike2] = ACTIONS(2314), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2314), + [anon_sym_PLUS_PLUS2] = ACTIONS(2314), + [anon_sym_SLASH2] = ACTIONS(2316), + [anon_sym_mod2] = ACTIONS(2314), + [anon_sym_SLASH_SLASH2] = ACTIONS(2314), + [anon_sym_PLUS2] = ACTIONS(2316), + [anon_sym_bit_DASHshl2] = ACTIONS(2314), + [anon_sym_bit_DASHshr2] = ACTIONS(2314), + [anon_sym_bit_DASHand2] = ACTIONS(2314), + [anon_sym_bit_DASHxor2] = ACTIONS(2314), + [anon_sym_bit_DASHor2] = ACTIONS(2314), + [anon_sym_err_GT] = ACTIONS(2316), + [anon_sym_out_GT] = ACTIONS(2316), + [anon_sym_e_GT] = ACTIONS(2316), + [anon_sym_o_GT] = ACTIONS(2316), + [anon_sym_err_PLUSout_GT] = ACTIONS(2316), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2316), + [anon_sym_o_PLUSe_GT] = ACTIONS(2316), + [anon_sym_e_PLUSo_GT] = ACTIONS(2316), + [anon_sym_err_GT_GT] = ACTIONS(2314), + [anon_sym_out_GT_GT] = ACTIONS(2314), + [anon_sym_e_GT_GT] = ACTIONS(2314), + [anon_sym_o_GT_GT] = ACTIONS(2314), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2314), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2314), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2314), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2314), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(718)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2190), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(718), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(719)] = { + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(719), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_in] = ACTIONS(2194), - [sym__newline] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_err_GT_PIPE] = ACTIONS(2194), - [anon_sym_out_GT_PIPE] = ACTIONS(2194), - [anon_sym_e_GT_PIPE] = ACTIONS(2194), - [anon_sym_o_GT_PIPE] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), - [anon_sym_RPAREN] = ACTIONS(2194), - [anon_sym_GT2] = ACTIONS(2196), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_EQ_GT] = ACTIONS(2194), - [anon_sym_STAR2] = ACTIONS(2196), - [anon_sym_and2] = ACTIONS(2194), - [anon_sym_xor2] = ACTIONS(2194), - [anon_sym_or2] = ACTIONS(2194), - [anon_sym_not_DASHin2] = ACTIONS(2194), - [anon_sym_has2] = ACTIONS(2194), - [anon_sym_not_DASHhas2] = ACTIONS(2194), - [anon_sym_starts_DASHwith2] = ACTIONS(2194), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), - [anon_sym_ends_DASHwith2] = ACTIONS(2194), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), - [anon_sym_EQ_EQ2] = ACTIONS(2194), - [anon_sym_BANG_EQ2] = ACTIONS(2194), - [anon_sym_LT2] = ACTIONS(2196), - [anon_sym_LT_EQ2] = ACTIONS(2194), - [anon_sym_GT_EQ2] = ACTIONS(2194), - [anon_sym_EQ_TILDE2] = ACTIONS(2194), - [anon_sym_BANG_TILDE2] = ACTIONS(2194), - [anon_sym_like2] = ACTIONS(2194), - [anon_sym_not_DASHlike2] = ACTIONS(2194), - [anon_sym_STAR_STAR2] = ACTIONS(2194), - [anon_sym_PLUS_PLUS2] = ACTIONS(2194), - [anon_sym_SLASH2] = ACTIONS(2196), - [anon_sym_mod2] = ACTIONS(2194), - [anon_sym_SLASH_SLASH2] = ACTIONS(2194), - [anon_sym_PLUS2] = ACTIONS(2196), - [anon_sym_bit_DASHshl2] = ACTIONS(2194), - [anon_sym_bit_DASHshr2] = ACTIONS(2194), - [anon_sym_bit_DASHand2] = ACTIONS(2194), - [anon_sym_bit_DASHxor2] = ACTIONS(2194), - [anon_sym_bit_DASHor2] = ACTIONS(2194), - [anon_sym_err_GT] = ACTIONS(2196), - [anon_sym_out_GT] = ACTIONS(2196), - [anon_sym_e_GT] = ACTIONS(2196), - [anon_sym_o_GT] = ACTIONS(2196), - [anon_sym_err_PLUSout_GT] = ACTIONS(2196), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), - [anon_sym_o_PLUSe_GT] = ACTIONS(2196), - [anon_sym_e_PLUSo_GT] = ACTIONS(2196), - [anon_sym_err_GT_GT] = ACTIONS(2194), - [anon_sym_out_GT_GT] = ACTIONS(2194), - [anon_sym_e_GT_GT] = ACTIONS(2194), - [anon_sym_o_GT_GT] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(720)] = { + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(720), - [anon_sym_if] = ACTIONS(2198), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_EQ_GT] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(721)] = { [sym_comment] = STATE(721), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2318), + [sym__newline] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_err_GT_PIPE] = ACTIONS(2318), + [anon_sym_out_GT_PIPE] = ACTIONS(2318), + [anon_sym_e_GT_PIPE] = ACTIONS(2318), + [anon_sym_o_GT_PIPE] = ACTIONS(2318), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2318), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2318), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2318), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2318), + [anon_sym_RPAREN] = ACTIONS(2318), + [anon_sym_GT2] = ACTIONS(2320), + [anon_sym_DASH2] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_STAR2] = ACTIONS(2320), + [anon_sym_and2] = ACTIONS(2318), + [anon_sym_xor2] = ACTIONS(2318), + [anon_sym_or2] = ACTIONS(2318), + [anon_sym_not_DASHin2] = ACTIONS(2318), + [anon_sym_has2] = ACTIONS(2318), + [anon_sym_not_DASHhas2] = ACTIONS(2318), + [anon_sym_starts_DASHwith2] = ACTIONS(2318), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2318), + [anon_sym_ends_DASHwith2] = ACTIONS(2318), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2318), + [anon_sym_EQ_EQ2] = ACTIONS(2318), + [anon_sym_BANG_EQ2] = ACTIONS(2318), + [anon_sym_LT2] = ACTIONS(2320), + [anon_sym_LT_EQ2] = ACTIONS(2318), + [anon_sym_GT_EQ2] = ACTIONS(2318), + [anon_sym_EQ_TILDE2] = ACTIONS(2318), + [anon_sym_BANG_TILDE2] = ACTIONS(2318), + [anon_sym_like2] = ACTIONS(2318), + [anon_sym_not_DASHlike2] = ACTIONS(2318), + [anon_sym_STAR_STAR2] = ACTIONS(2318), + [anon_sym_PLUS_PLUS2] = ACTIONS(2318), + [anon_sym_SLASH2] = ACTIONS(2320), + [anon_sym_mod2] = ACTIONS(2318), + [anon_sym_SLASH_SLASH2] = ACTIONS(2318), + [anon_sym_PLUS2] = ACTIONS(2320), + [anon_sym_bit_DASHshl2] = ACTIONS(2318), + [anon_sym_bit_DASHshr2] = ACTIONS(2318), + [anon_sym_bit_DASHand2] = ACTIONS(2318), + [anon_sym_bit_DASHxor2] = ACTIONS(2318), + [anon_sym_bit_DASHor2] = ACTIONS(2318), + [anon_sym_DOT_DOT2] = ACTIONS(2322), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2324), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2324), + [anon_sym_err_GT] = ACTIONS(2320), + [anon_sym_out_GT] = ACTIONS(2320), + [anon_sym_e_GT] = ACTIONS(2320), + [anon_sym_o_GT] = ACTIONS(2320), + [anon_sym_err_PLUSout_GT] = ACTIONS(2320), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2320), + [anon_sym_o_PLUSe_GT] = ACTIONS(2320), + [anon_sym_e_PLUSo_GT] = ACTIONS(2320), + [anon_sym_err_GT_GT] = ACTIONS(2318), + [anon_sym_out_GT_GT] = ACTIONS(2318), + [anon_sym_e_GT_GT] = ACTIONS(2318), + [anon_sym_o_GT_GT] = ACTIONS(2318), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2318), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2318), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2318), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2318), [anon_sym_POUND] = ACTIONS(3), }, [STATE(722)] = { [sym_comment] = STATE(722), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_EQ_GT] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [ts_builtin_sym_end] = ACTIONS(2094), + [anon_sym_in] = ACTIONS(2094), + [sym__newline] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_err_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_GT_PIPE] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), + [anon_sym_GT2] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_STAR2] = ACTIONS(2096), + [anon_sym_and2] = ACTIONS(2094), + [anon_sym_xor2] = ACTIONS(2094), + [anon_sym_or2] = ACTIONS(2094), + [anon_sym_not_DASHin2] = ACTIONS(2094), + [anon_sym_has2] = ACTIONS(2094), + [anon_sym_not_DASHhas2] = ACTIONS(2094), + [anon_sym_starts_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2094), + [anon_sym_ends_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2094), + [anon_sym_EQ_EQ2] = ACTIONS(2094), + [anon_sym_BANG_EQ2] = ACTIONS(2094), + [anon_sym_LT2] = ACTIONS(2096), + [anon_sym_LT_EQ2] = ACTIONS(2094), + [anon_sym_GT_EQ2] = ACTIONS(2094), + [anon_sym_EQ_TILDE2] = ACTIONS(2094), + [anon_sym_BANG_TILDE2] = ACTIONS(2094), + [anon_sym_like2] = ACTIONS(2094), + [anon_sym_not_DASHlike2] = ACTIONS(2094), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2094), + [anon_sym_PLUS_PLUS2] = ACTIONS(2094), + [anon_sym_SLASH2] = ACTIONS(2096), + [anon_sym_mod2] = ACTIONS(2094), + [anon_sym_SLASH_SLASH2] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2096), + [anon_sym_bit_DASHshl2] = ACTIONS(2094), + [anon_sym_bit_DASHshr2] = ACTIONS(2094), + [anon_sym_bit_DASHand2] = ACTIONS(2094), + [anon_sym_bit_DASHxor2] = ACTIONS(2094), + [anon_sym_bit_DASHor2] = ACTIONS(2094), + [anon_sym_DOT_DOT2] = ACTIONS(2326), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2328), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2328), + [anon_sym_err_GT] = ACTIONS(2096), + [anon_sym_out_GT] = ACTIONS(2096), + [anon_sym_e_GT] = ACTIONS(2096), + [anon_sym_o_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT] = ACTIONS(2096), + [anon_sym_err_GT_GT] = ACTIONS(2094), + [anon_sym_out_GT_GT] = ACTIONS(2094), + [anon_sym_e_GT_GT] = ACTIONS(2094), + [anon_sym_o_GT_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), + [sym__unquoted_pattern] = ACTIONS(1774), [anon_sym_POUND] = ACTIONS(3), }, [STATE(723)] = { [sym_comment] = STATE(723), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_EQ_GT] = ACTIONS(2120), - [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), - [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), + [ts_builtin_sym_end] = ACTIONS(2050), + [anon_sym_in] = ACTIONS(2050), + [sym__newline] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_err_GT_PIPE] = ACTIONS(2050), + [anon_sym_out_GT_PIPE] = ACTIONS(2050), + [anon_sym_e_GT_PIPE] = ACTIONS(2050), + [anon_sym_o_GT_PIPE] = ACTIONS(2050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2050), + [anon_sym_GT2] = ACTIONS(2052), + [anon_sym_DASH2] = ACTIONS(2050), + [anon_sym_STAR2] = ACTIONS(2052), + [anon_sym_and2] = ACTIONS(2050), + [anon_sym_xor2] = ACTIONS(2050), + [anon_sym_or2] = ACTIONS(2050), + [anon_sym_not_DASHin2] = ACTIONS(2050), + [anon_sym_has2] = ACTIONS(2050), + [anon_sym_not_DASHhas2] = ACTIONS(2050), + [anon_sym_starts_DASHwith2] = ACTIONS(2050), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2050), + [anon_sym_ends_DASHwith2] = ACTIONS(2050), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2050), + [anon_sym_EQ_EQ2] = ACTIONS(2050), + [anon_sym_BANG_EQ2] = ACTIONS(2050), + [anon_sym_LT2] = ACTIONS(2052), + [anon_sym_LT_EQ2] = ACTIONS(2050), + [anon_sym_GT_EQ2] = ACTIONS(2050), + [anon_sym_EQ_TILDE2] = ACTIONS(2050), + [anon_sym_BANG_TILDE2] = ACTIONS(2050), + [anon_sym_like2] = ACTIONS(2050), + [anon_sym_not_DASHlike2] = ACTIONS(2050), + [anon_sym_LPAREN2] = ACTIONS(2050), + [anon_sym_STAR_STAR2] = ACTIONS(2050), + [anon_sym_PLUS_PLUS2] = ACTIONS(2050), + [anon_sym_SLASH2] = ACTIONS(2052), + [anon_sym_mod2] = ACTIONS(2050), + [anon_sym_SLASH_SLASH2] = ACTIONS(2050), + [anon_sym_PLUS2] = ACTIONS(2052), + [anon_sym_bit_DASHshl2] = ACTIONS(2050), + [anon_sym_bit_DASHshr2] = ACTIONS(2050), + [anon_sym_bit_DASHand2] = ACTIONS(2050), + [anon_sym_bit_DASHxor2] = ACTIONS(2050), + [anon_sym_bit_DASHor2] = ACTIONS(2050), + [anon_sym_DOT_DOT2] = ACTIONS(2052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2050), + [anon_sym_err_GT] = ACTIONS(2052), + [anon_sym_out_GT] = ACTIONS(2052), + [anon_sym_e_GT] = ACTIONS(2052), + [anon_sym_o_GT] = ACTIONS(2052), + [anon_sym_err_PLUSout_GT] = ACTIONS(2052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2052), + [anon_sym_o_PLUSe_GT] = ACTIONS(2052), + [anon_sym_e_PLUSo_GT] = ACTIONS(2052), + [anon_sym_err_GT_GT] = ACTIONS(2050), + [anon_sym_out_GT_GT] = ACTIONS(2050), + [anon_sym_e_GT_GT] = ACTIONS(2050), + [anon_sym_o_GT_GT] = ACTIONS(2050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2050), + [sym__unquoted_pattern] = ACTIONS(2052), [anon_sym_POUND] = ACTIONS(3), }, [STATE(724)] = { + [sym__expr_parenthesized_immediate] = STATE(5247), [sym_comment] = STATE(724), - [anon_sym_if] = ACTIONS(2202), - [anon_sym_in] = ACTIONS(2202), - [sym__newline] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_RPAREN] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2204), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_EQ_GT] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2204), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2204), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_like2] = ACTIONS(2202), - [anon_sym_not_DASHlike2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2204), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2204), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), - [anon_sym_err_GT] = ACTIONS(2204), - [anon_sym_out_GT] = ACTIONS(2204), - [anon_sym_e_GT] = ACTIONS(2204), - [anon_sym_o_GT] = ACTIONS(2204), - [anon_sym_err_PLUSout_GT] = ACTIONS(2204), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2204), - [anon_sym_o_PLUSe_GT] = ACTIONS(2204), - [anon_sym_e_PLUSo_GT] = ACTIONS(2204), - [anon_sym_err_GT_GT] = ACTIONS(2202), - [anon_sym_out_GT_GT] = ACTIONS(2202), - [anon_sym_e_GT_GT] = ACTIONS(2202), - [anon_sym_o_GT_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), + [anon_sym_in] = ACTIONS(2330), + [sym__newline] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_PIPE] = ACTIONS(2330), + [anon_sym_err_GT_PIPE] = ACTIONS(2330), + [anon_sym_out_GT_PIPE] = ACTIONS(2330), + [anon_sym_e_GT_PIPE] = ACTIONS(2330), + [anon_sym_o_GT_PIPE] = ACTIONS(2330), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2330), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2330), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2330), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2330), + [anon_sym_RPAREN] = ACTIONS(2330), + [anon_sym_GT2] = ACTIONS(2332), + [anon_sym_DASH2] = ACTIONS(2330), + [anon_sym_LBRACE] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_EQ_GT] = ACTIONS(2330), + [anon_sym_STAR2] = ACTIONS(2332), + [anon_sym_and2] = ACTIONS(2330), + [anon_sym_xor2] = ACTIONS(2330), + [anon_sym_or2] = ACTIONS(2330), + [anon_sym_not_DASHin2] = ACTIONS(2330), + [anon_sym_has2] = ACTIONS(2330), + [anon_sym_not_DASHhas2] = ACTIONS(2330), + [anon_sym_starts_DASHwith2] = ACTIONS(2330), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2330), + [anon_sym_ends_DASHwith2] = ACTIONS(2330), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2330), + [anon_sym_EQ_EQ2] = ACTIONS(2330), + [anon_sym_BANG_EQ2] = ACTIONS(2330), + [anon_sym_LT2] = ACTIONS(2332), + [anon_sym_LT_EQ2] = ACTIONS(2330), + [anon_sym_GT_EQ2] = ACTIONS(2330), + [anon_sym_EQ_TILDE2] = ACTIONS(2330), + [anon_sym_BANG_TILDE2] = ACTIONS(2330), + [anon_sym_like2] = ACTIONS(2330), + [anon_sym_not_DASHlike2] = ACTIONS(2330), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2330), + [anon_sym_PLUS_PLUS2] = ACTIONS(2330), + [anon_sym_SLASH2] = ACTIONS(2332), + [anon_sym_mod2] = ACTIONS(2330), + [anon_sym_SLASH_SLASH2] = ACTIONS(2330), + [anon_sym_PLUS2] = ACTIONS(2332), + [anon_sym_bit_DASHshl2] = ACTIONS(2330), + [anon_sym_bit_DASHshr2] = ACTIONS(2330), + [anon_sym_bit_DASHand2] = ACTIONS(2330), + [anon_sym_bit_DASHxor2] = ACTIONS(2330), + [anon_sym_bit_DASHor2] = ACTIONS(2330), + [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(2330), + [anon_sym_out_GT_GT] = ACTIONS(2330), + [anon_sym_e_GT_GT] = ACTIONS(2330), + [anon_sym_o_GT_GT] = ACTIONS(2330), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2330), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2330), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2330), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2330), [anon_sym_POUND] = ACTIONS(3), }, [STATE(725)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1288), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(974), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4499), [sym_comment] = STATE(725), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [ts_builtin_sym_end] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [anon_sym_DOT_DOT2] = ACTIONS(1958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1956), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1956), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [sym__unquoted_pattern] = ACTIONS(1958), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(726)] = { [sym_comment] = STATE(726), - [anon_sym_if] = ACTIONS(2206), - [anon_sym_in] = ACTIONS(2206), - [sym__newline] = ACTIONS(2206), - [anon_sym_SEMI] = ACTIONS(2206), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_err_GT_PIPE] = ACTIONS(2206), - [anon_sym_out_GT_PIPE] = ACTIONS(2206), - [anon_sym_e_GT_PIPE] = ACTIONS(2206), - [anon_sym_o_GT_PIPE] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2206), - [anon_sym_RPAREN] = ACTIONS(2206), - [anon_sym_GT2] = ACTIONS(2208), - [anon_sym_DASH2] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym_EQ_GT] = ACTIONS(2206), - [anon_sym_STAR2] = ACTIONS(2208), - [anon_sym_and2] = ACTIONS(2206), - [anon_sym_xor2] = ACTIONS(2206), - [anon_sym_or2] = ACTIONS(2206), - [anon_sym_not_DASHin2] = ACTIONS(2206), - [anon_sym_has2] = ACTIONS(2206), - [anon_sym_not_DASHhas2] = ACTIONS(2206), - [anon_sym_starts_DASHwith2] = ACTIONS(2206), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2206), - [anon_sym_ends_DASHwith2] = ACTIONS(2206), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2206), - [anon_sym_EQ_EQ2] = ACTIONS(2206), - [anon_sym_BANG_EQ2] = ACTIONS(2206), - [anon_sym_LT2] = ACTIONS(2208), - [anon_sym_LT_EQ2] = ACTIONS(2206), - [anon_sym_GT_EQ2] = ACTIONS(2206), - [anon_sym_EQ_TILDE2] = ACTIONS(2206), - [anon_sym_BANG_TILDE2] = ACTIONS(2206), - [anon_sym_like2] = ACTIONS(2206), - [anon_sym_not_DASHlike2] = ACTIONS(2206), - [anon_sym_STAR_STAR2] = ACTIONS(2206), - [anon_sym_PLUS_PLUS2] = ACTIONS(2206), - [anon_sym_SLASH2] = ACTIONS(2208), - [anon_sym_mod2] = ACTIONS(2206), - [anon_sym_SLASH_SLASH2] = ACTIONS(2206), - [anon_sym_PLUS2] = ACTIONS(2208), - [anon_sym_bit_DASHshl2] = ACTIONS(2206), - [anon_sym_bit_DASHshr2] = ACTIONS(2206), - [anon_sym_bit_DASHand2] = ACTIONS(2206), - [anon_sym_bit_DASHxor2] = ACTIONS(2206), - [anon_sym_bit_DASHor2] = ACTIONS(2206), - [anon_sym_err_GT] = ACTIONS(2208), - [anon_sym_out_GT] = ACTIONS(2208), - [anon_sym_e_GT] = ACTIONS(2208), - [anon_sym_o_GT] = ACTIONS(2208), - [anon_sym_err_PLUSout_GT] = ACTIONS(2208), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2208), - [anon_sym_o_PLUSe_GT] = ACTIONS(2208), - [anon_sym_e_PLUSo_GT] = ACTIONS(2208), - [anon_sym_err_GT_GT] = ACTIONS(2206), - [anon_sym_out_GT_GT] = ACTIONS(2206), - [anon_sym_e_GT_GT] = ACTIONS(2206), - [anon_sym_o_GT_GT] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_in] = ACTIONS(2334), + [sym__newline] = ACTIONS(2334), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_err_GT_PIPE] = ACTIONS(2334), + [anon_sym_out_GT_PIPE] = ACTIONS(2334), + [anon_sym_e_GT_PIPE] = ACTIONS(2334), + [anon_sym_o_GT_PIPE] = ACTIONS(2334), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2334), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2334), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2334), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2334), + [anon_sym_RPAREN] = ACTIONS(2334), + [anon_sym_GT2] = ACTIONS(2336), + [anon_sym_DASH2] = ACTIONS(2334), + [anon_sym_LBRACE] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_EQ_GT] = ACTIONS(2334), + [anon_sym_STAR2] = ACTIONS(2336), + [anon_sym_and2] = ACTIONS(2334), + [anon_sym_xor2] = ACTIONS(2334), + [anon_sym_or2] = ACTIONS(2334), + [anon_sym_not_DASHin2] = ACTIONS(2334), + [anon_sym_has2] = ACTIONS(2334), + [anon_sym_not_DASHhas2] = ACTIONS(2334), + [anon_sym_starts_DASHwith2] = ACTIONS(2334), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2334), + [anon_sym_ends_DASHwith2] = ACTIONS(2334), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2334), + [anon_sym_EQ_EQ2] = ACTIONS(2334), + [anon_sym_BANG_EQ2] = ACTIONS(2334), + [anon_sym_LT2] = ACTIONS(2336), + [anon_sym_LT_EQ2] = ACTIONS(2334), + [anon_sym_GT_EQ2] = ACTIONS(2334), + [anon_sym_EQ_TILDE2] = ACTIONS(2334), + [anon_sym_BANG_TILDE2] = ACTIONS(2334), + [anon_sym_like2] = ACTIONS(2334), + [anon_sym_not_DASHlike2] = ACTIONS(2334), + [anon_sym_STAR_STAR2] = ACTIONS(2334), + [anon_sym_PLUS_PLUS2] = ACTIONS(2334), + [anon_sym_SLASH2] = ACTIONS(2336), + [anon_sym_mod2] = ACTIONS(2334), + [anon_sym_SLASH_SLASH2] = ACTIONS(2334), + [anon_sym_PLUS2] = ACTIONS(2336), + [anon_sym_bit_DASHshl2] = ACTIONS(2334), + [anon_sym_bit_DASHshr2] = ACTIONS(2334), + [anon_sym_bit_DASHand2] = ACTIONS(2334), + [anon_sym_bit_DASHxor2] = ACTIONS(2334), + [anon_sym_bit_DASHor2] = ACTIONS(2334), + [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(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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(727)] = { [sym_comment] = STATE(727), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_in] = ACTIONS(2210), - [sym__newline] = ACTIONS(2210), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_err_GT_PIPE] = ACTIONS(2210), - [anon_sym_out_GT_PIPE] = ACTIONS(2210), - [anon_sym_e_GT_PIPE] = ACTIONS(2210), - [anon_sym_o_GT_PIPE] = ACTIONS(2210), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2210), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2210), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2210), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2210), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_GT2] = ACTIONS(2212), - [anon_sym_DASH2] = ACTIONS(2210), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_EQ_GT] = ACTIONS(2210), - [anon_sym_STAR2] = ACTIONS(2212), - [anon_sym_and2] = ACTIONS(2210), - [anon_sym_xor2] = ACTIONS(2210), - [anon_sym_or2] = ACTIONS(2210), - [anon_sym_not_DASHin2] = ACTIONS(2210), - [anon_sym_has2] = ACTIONS(2210), - [anon_sym_not_DASHhas2] = ACTIONS(2210), - [anon_sym_starts_DASHwith2] = ACTIONS(2210), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2210), - [anon_sym_ends_DASHwith2] = ACTIONS(2210), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2210), - [anon_sym_EQ_EQ2] = ACTIONS(2210), - [anon_sym_BANG_EQ2] = ACTIONS(2210), - [anon_sym_LT2] = ACTIONS(2212), - [anon_sym_LT_EQ2] = ACTIONS(2210), - [anon_sym_GT_EQ2] = ACTIONS(2210), - [anon_sym_EQ_TILDE2] = ACTIONS(2210), - [anon_sym_BANG_TILDE2] = ACTIONS(2210), - [anon_sym_like2] = ACTIONS(2210), - [anon_sym_not_DASHlike2] = ACTIONS(2210), - [anon_sym_STAR_STAR2] = ACTIONS(2210), - [anon_sym_PLUS_PLUS2] = ACTIONS(2210), - [anon_sym_SLASH2] = ACTIONS(2212), - [anon_sym_mod2] = ACTIONS(2210), - [anon_sym_SLASH_SLASH2] = ACTIONS(2210), - [anon_sym_PLUS2] = ACTIONS(2212), - [anon_sym_bit_DASHshl2] = ACTIONS(2210), - [anon_sym_bit_DASHshr2] = ACTIONS(2210), - [anon_sym_bit_DASHand2] = ACTIONS(2210), - [anon_sym_bit_DASHxor2] = ACTIONS(2210), - [anon_sym_bit_DASHor2] = ACTIONS(2210), - [anon_sym_err_GT] = ACTIONS(2212), - [anon_sym_out_GT] = ACTIONS(2212), - [anon_sym_e_GT] = ACTIONS(2212), - [anon_sym_o_GT] = ACTIONS(2212), - [anon_sym_err_PLUSout_GT] = ACTIONS(2212), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2212), - [anon_sym_o_PLUSe_GT] = ACTIONS(2212), - [anon_sym_e_PLUSo_GT] = ACTIONS(2212), - [anon_sym_err_GT_GT] = ACTIONS(2210), - [anon_sym_out_GT_GT] = ACTIONS(2210), - [anon_sym_e_GT_GT] = ACTIONS(2210), - [anon_sym_o_GT_GT] = ACTIONS(2210), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2210), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2210), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2210), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_in] = ACTIONS(2338), + [sym__newline] = ACTIONS(2338), + [anon_sym_SEMI] = ACTIONS(2338), + [anon_sym_PIPE] = ACTIONS(2338), + [anon_sym_err_GT_PIPE] = ACTIONS(2338), + [anon_sym_out_GT_PIPE] = ACTIONS(2338), + [anon_sym_e_GT_PIPE] = ACTIONS(2338), + [anon_sym_o_GT_PIPE] = ACTIONS(2338), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2338), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2338), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2338), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2338), + [anon_sym_RPAREN] = ACTIONS(2338), + [anon_sym_GT2] = ACTIONS(2340), + [anon_sym_DASH2] = ACTIONS(2338), + [anon_sym_LBRACE] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_EQ_GT] = ACTIONS(2338), + [anon_sym_STAR2] = ACTIONS(2340), + [anon_sym_and2] = ACTIONS(2338), + [anon_sym_xor2] = ACTIONS(2338), + [anon_sym_or2] = ACTIONS(2338), + [anon_sym_not_DASHin2] = ACTIONS(2338), + [anon_sym_has2] = ACTIONS(2338), + [anon_sym_not_DASHhas2] = ACTIONS(2338), + [anon_sym_starts_DASHwith2] = ACTIONS(2338), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2338), + [anon_sym_ends_DASHwith2] = ACTIONS(2338), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2338), + [anon_sym_EQ_EQ2] = ACTIONS(2338), + [anon_sym_BANG_EQ2] = ACTIONS(2338), + [anon_sym_LT2] = ACTIONS(2340), + [anon_sym_LT_EQ2] = ACTIONS(2338), + [anon_sym_GT_EQ2] = ACTIONS(2338), + [anon_sym_EQ_TILDE2] = ACTIONS(2338), + [anon_sym_BANG_TILDE2] = ACTIONS(2338), + [anon_sym_like2] = ACTIONS(2338), + [anon_sym_not_DASHlike2] = ACTIONS(2338), + [anon_sym_STAR_STAR2] = ACTIONS(2338), + [anon_sym_PLUS_PLUS2] = ACTIONS(2338), + [anon_sym_SLASH2] = ACTIONS(2340), + [anon_sym_mod2] = ACTIONS(2338), + [anon_sym_SLASH_SLASH2] = ACTIONS(2338), + [anon_sym_PLUS2] = ACTIONS(2340), + [anon_sym_bit_DASHshl2] = ACTIONS(2338), + [anon_sym_bit_DASHshr2] = ACTIONS(2338), + [anon_sym_bit_DASHand2] = ACTIONS(2338), + [anon_sym_bit_DASHxor2] = ACTIONS(2338), + [anon_sym_bit_DASHor2] = ACTIONS(2338), + [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(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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(728)] = { [sym_comment] = STATE(728), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_in] = ACTIONS(2214), - [sym__newline] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_RPAREN] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2216), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_EQ_GT] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2216), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_has2] = ACTIONS(2214), - [anon_sym_not_DASHhas2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2216), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_like2] = ACTIONS(2214), - [anon_sym_not_DASHlike2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2216), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2216), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_err_GT] = ACTIONS(2216), - [anon_sym_out_GT] = ACTIONS(2216), - [anon_sym_e_GT] = ACTIONS(2216), - [anon_sym_o_GT] = ACTIONS(2216), - [anon_sym_err_PLUSout_GT] = ACTIONS(2216), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2216), - [anon_sym_o_PLUSe_GT] = ACTIONS(2216), - [anon_sym_e_PLUSo_GT] = ACTIONS(2216), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_in] = ACTIONS(2342), + [sym__newline] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_err_GT_PIPE] = ACTIONS(2342), + [anon_sym_out_GT_PIPE] = ACTIONS(2342), + [anon_sym_e_GT_PIPE] = ACTIONS(2342), + [anon_sym_o_GT_PIPE] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2342), + [anon_sym_RPAREN] = ACTIONS(2342), + [anon_sym_GT2] = ACTIONS(2344), + [anon_sym_DASH2] = ACTIONS(2342), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_EQ_GT] = ACTIONS(2342), + [anon_sym_STAR2] = ACTIONS(2344), + [anon_sym_and2] = ACTIONS(2342), + [anon_sym_xor2] = ACTIONS(2342), + [anon_sym_or2] = ACTIONS(2342), + [anon_sym_not_DASHin2] = ACTIONS(2342), + [anon_sym_has2] = ACTIONS(2342), + [anon_sym_not_DASHhas2] = ACTIONS(2342), + [anon_sym_starts_DASHwith2] = ACTIONS(2342), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2342), + [anon_sym_ends_DASHwith2] = ACTIONS(2342), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2342), + [anon_sym_EQ_EQ2] = ACTIONS(2342), + [anon_sym_BANG_EQ2] = ACTIONS(2342), + [anon_sym_LT2] = ACTIONS(2344), + [anon_sym_LT_EQ2] = ACTIONS(2342), + [anon_sym_GT_EQ2] = ACTIONS(2342), + [anon_sym_EQ_TILDE2] = ACTIONS(2342), + [anon_sym_BANG_TILDE2] = ACTIONS(2342), + [anon_sym_like2] = ACTIONS(2342), + [anon_sym_not_DASHlike2] = ACTIONS(2342), + [anon_sym_STAR_STAR2] = ACTIONS(2342), + [anon_sym_PLUS_PLUS2] = ACTIONS(2342), + [anon_sym_SLASH2] = ACTIONS(2344), + [anon_sym_mod2] = ACTIONS(2342), + [anon_sym_SLASH_SLASH2] = ACTIONS(2342), + [anon_sym_PLUS2] = ACTIONS(2344), + [anon_sym_bit_DASHshl2] = ACTIONS(2342), + [anon_sym_bit_DASHshr2] = ACTIONS(2342), + [anon_sym_bit_DASHand2] = ACTIONS(2342), + [anon_sym_bit_DASHxor2] = ACTIONS(2342), + [anon_sym_bit_DASHor2] = ACTIONS(2342), + [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(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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(729)] = { [sym_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1537), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [sym__newline] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_err_GT_PIPE] = ACTIONS(2318), + [anon_sym_out_GT_PIPE] = ACTIONS(2318), + [anon_sym_e_GT_PIPE] = ACTIONS(2318), + [anon_sym_o_GT_PIPE] = ACTIONS(2318), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2318), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2318), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2318), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2318), + [anon_sym_RPAREN] = ACTIONS(2318), + [anon_sym_GT2] = ACTIONS(2320), + [anon_sym_DASH2] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_EQ_GT] = ACTIONS(2318), + [anon_sym_STAR2] = ACTIONS(2320), + [anon_sym_and2] = ACTIONS(2318), + [anon_sym_xor2] = ACTIONS(2318), + [anon_sym_or2] = ACTIONS(2318), + [anon_sym_not_DASHin2] = ACTIONS(2318), + [anon_sym_has2] = ACTIONS(2318), + [anon_sym_not_DASHhas2] = ACTIONS(2318), + [anon_sym_starts_DASHwith2] = ACTIONS(2318), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2318), + [anon_sym_ends_DASHwith2] = ACTIONS(2318), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2318), + [anon_sym_EQ_EQ2] = ACTIONS(2318), + [anon_sym_BANG_EQ2] = ACTIONS(2318), + [anon_sym_LT2] = ACTIONS(2320), + [anon_sym_LT_EQ2] = ACTIONS(2318), + [anon_sym_GT_EQ2] = ACTIONS(2318), + [anon_sym_EQ_TILDE2] = ACTIONS(2318), + [anon_sym_BANG_TILDE2] = ACTIONS(2318), + [anon_sym_like2] = ACTIONS(2318), + [anon_sym_not_DASHlike2] = ACTIONS(2318), + [anon_sym_STAR_STAR2] = ACTIONS(2318), + [anon_sym_PLUS_PLUS2] = ACTIONS(2318), + [anon_sym_SLASH2] = ACTIONS(2320), + [anon_sym_mod2] = ACTIONS(2318), + [anon_sym_SLASH_SLASH2] = ACTIONS(2318), + [anon_sym_PLUS2] = ACTIONS(2320), + [anon_sym_bit_DASHshl2] = ACTIONS(2318), + [anon_sym_bit_DASHshr2] = ACTIONS(2318), + [anon_sym_bit_DASHand2] = ACTIONS(2318), + [anon_sym_bit_DASHxor2] = ACTIONS(2318), + [anon_sym_bit_DASHor2] = ACTIONS(2318), + [anon_sym_err_GT] = ACTIONS(2320), + [anon_sym_out_GT] = ACTIONS(2320), + [anon_sym_e_GT] = ACTIONS(2320), + [anon_sym_o_GT] = ACTIONS(2320), + [anon_sym_err_PLUSout_GT] = ACTIONS(2320), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2320), + [anon_sym_o_PLUSe_GT] = ACTIONS(2320), + [anon_sym_e_PLUSo_GT] = ACTIONS(2320), + [anon_sym_err_GT_GT] = ACTIONS(2318), + [anon_sym_out_GT_GT] = ACTIONS(2318), + [anon_sym_e_GT_GT] = ACTIONS(2318), + [anon_sym_o_GT_GT] = ACTIONS(2318), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2318), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2318), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2318), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2318), [anon_sym_POUND] = ACTIONS(3), }, [STATE(730)] = { [sym_comment] = STATE(730), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_in] = ACTIONS(2218), - [sym__newline] = ACTIONS(2218), - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_err_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_GT_PIPE] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), - [anon_sym_RPAREN] = ACTIONS(2218), - [anon_sym_GT2] = ACTIONS(2220), - [anon_sym_DASH2] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(2218), - [anon_sym_STAR2] = ACTIONS(2220), - [anon_sym_and2] = ACTIONS(2218), - [anon_sym_xor2] = ACTIONS(2218), - [anon_sym_or2] = ACTIONS(2218), - [anon_sym_not_DASHin2] = ACTIONS(2218), - [anon_sym_has2] = ACTIONS(2218), - [anon_sym_not_DASHhas2] = ACTIONS(2218), - [anon_sym_starts_DASHwith2] = ACTIONS(2218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), - [anon_sym_ends_DASHwith2] = ACTIONS(2218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), - [anon_sym_EQ_EQ2] = ACTIONS(2218), - [anon_sym_BANG_EQ2] = ACTIONS(2218), - [anon_sym_LT2] = ACTIONS(2220), - [anon_sym_LT_EQ2] = ACTIONS(2218), - [anon_sym_GT_EQ2] = ACTIONS(2218), - [anon_sym_EQ_TILDE2] = ACTIONS(2218), - [anon_sym_BANG_TILDE2] = ACTIONS(2218), - [anon_sym_like2] = ACTIONS(2218), - [anon_sym_not_DASHlike2] = ACTIONS(2218), - [anon_sym_STAR_STAR2] = ACTIONS(2218), - [anon_sym_PLUS_PLUS2] = ACTIONS(2218), - [anon_sym_SLASH2] = ACTIONS(2220), - [anon_sym_mod2] = ACTIONS(2218), - [anon_sym_SLASH_SLASH2] = ACTIONS(2218), - [anon_sym_PLUS2] = ACTIONS(2220), - [anon_sym_bit_DASHshl2] = ACTIONS(2218), - [anon_sym_bit_DASHshr2] = ACTIONS(2218), - [anon_sym_bit_DASHand2] = ACTIONS(2218), - [anon_sym_bit_DASHxor2] = ACTIONS(2218), - [anon_sym_bit_DASHor2] = ACTIONS(2218), - [anon_sym_err_GT] = ACTIONS(2220), - [anon_sym_out_GT] = ACTIONS(2220), - [anon_sym_e_GT] = ACTIONS(2220), - [anon_sym_o_GT] = ACTIONS(2220), - [anon_sym_err_PLUSout_GT] = ACTIONS(2220), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), - [anon_sym_o_PLUSe_GT] = ACTIONS(2220), - [anon_sym_e_PLUSo_GT] = ACTIONS(2220), - [anon_sym_err_GT_GT] = ACTIONS(2218), - [anon_sym_out_GT_GT] = ACTIONS(2218), - [anon_sym_e_GT_GT] = ACTIONS(2218), - [anon_sym_o_GT_GT] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2278), + [anon_sym_in] = ACTIONS(2278), + [sym__newline] = ACTIONS(2278), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_err_GT_PIPE] = ACTIONS(2278), + [anon_sym_out_GT_PIPE] = ACTIONS(2278), + [anon_sym_e_GT_PIPE] = ACTIONS(2278), + [anon_sym_o_GT_PIPE] = ACTIONS(2278), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2278), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2278), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2278), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2278), + [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_GT2] = ACTIONS(2280), + [anon_sym_DASH2] = ACTIONS(2278), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_EQ_GT] = ACTIONS(2278), + [anon_sym_STAR2] = ACTIONS(2280), + [anon_sym_and2] = ACTIONS(2278), + [anon_sym_xor2] = ACTIONS(2278), + [anon_sym_or2] = ACTIONS(2278), + [anon_sym_not_DASHin2] = ACTIONS(2278), + [anon_sym_has2] = ACTIONS(2278), + [anon_sym_not_DASHhas2] = ACTIONS(2278), + [anon_sym_starts_DASHwith2] = ACTIONS(2278), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2278), + [anon_sym_ends_DASHwith2] = ACTIONS(2278), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2278), + [anon_sym_EQ_EQ2] = ACTIONS(2278), + [anon_sym_BANG_EQ2] = ACTIONS(2278), + [anon_sym_LT2] = ACTIONS(2280), + [anon_sym_LT_EQ2] = ACTIONS(2278), + [anon_sym_GT_EQ2] = ACTIONS(2278), + [anon_sym_EQ_TILDE2] = ACTIONS(2278), + [anon_sym_BANG_TILDE2] = ACTIONS(2278), + [anon_sym_like2] = ACTIONS(2278), + [anon_sym_not_DASHlike2] = ACTIONS(2278), + [anon_sym_STAR_STAR2] = ACTIONS(2278), + [anon_sym_PLUS_PLUS2] = ACTIONS(2278), + [anon_sym_SLASH2] = ACTIONS(2280), + [anon_sym_mod2] = ACTIONS(2278), + [anon_sym_SLASH_SLASH2] = ACTIONS(2278), + [anon_sym_PLUS2] = ACTIONS(2280), + [anon_sym_bit_DASHshl2] = ACTIONS(2278), + [anon_sym_bit_DASHshr2] = ACTIONS(2278), + [anon_sym_bit_DASHand2] = ACTIONS(2278), + [anon_sym_bit_DASHxor2] = ACTIONS(2278), + [anon_sym_bit_DASHor2] = ACTIONS(2278), + [anon_sym_err_GT] = ACTIONS(2280), + [anon_sym_out_GT] = ACTIONS(2280), + [anon_sym_e_GT] = ACTIONS(2280), + [anon_sym_o_GT] = ACTIONS(2280), + [anon_sym_err_PLUSout_GT] = ACTIONS(2280), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2280), + [anon_sym_o_PLUSe_GT] = ACTIONS(2280), + [anon_sym_e_PLUSo_GT] = ACTIONS(2280), + [anon_sym_err_GT_GT] = ACTIONS(2278), + [anon_sym_out_GT_GT] = ACTIONS(2278), + [anon_sym_e_GT_GT] = ACTIONS(2278), + [anon_sym_o_GT_GT] = ACTIONS(2278), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2278), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2278), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2278), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2278), [anon_sym_POUND] = ACTIONS(3), }, [STATE(731)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1267), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1012), - [sym__unquoted_with_expr] = STATE(1307), - [sym__unquoted_anonymous_prefix] = STATE(4499), [sym_comment] = STATE(731), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [sym__newline] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_err_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_GT_PIPE] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2232), + [anon_sym_RPAREN] = ACTIONS(2232), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_EQ_GT] = ACTIONS(2232), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2232), + [anon_sym_xor2] = ACTIONS(2232), + [anon_sym_or2] = ACTIONS(2232), + [anon_sym_not_DASHin2] = ACTIONS(2232), + [anon_sym_has2] = ACTIONS(2232), + [anon_sym_not_DASHhas2] = ACTIONS(2232), + [anon_sym_starts_DASHwith2] = ACTIONS(2232), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2232), + [anon_sym_ends_DASHwith2] = ACTIONS(2232), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2232), + [anon_sym_EQ_EQ2] = ACTIONS(2232), + [anon_sym_BANG_EQ2] = ACTIONS(2232), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2232), + [anon_sym_GT_EQ2] = ACTIONS(2232), + [anon_sym_EQ_TILDE2] = ACTIONS(2232), + [anon_sym_BANG_TILDE2] = ACTIONS(2232), + [anon_sym_like2] = ACTIONS(2232), + [anon_sym_not_DASHlike2] = ACTIONS(2232), + [anon_sym_STAR_STAR2] = ACTIONS(2232), + [anon_sym_PLUS_PLUS2] = ACTIONS(2232), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2232), + [anon_sym_SLASH_SLASH2] = ACTIONS(2232), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2232), + [anon_sym_bit_DASHshr2] = ACTIONS(2232), + [anon_sym_bit_DASHand2] = ACTIONS(2232), + [anon_sym_bit_DASHxor2] = ACTIONS(2232), + [anon_sym_bit_DASHor2] = ACTIONS(2232), + [anon_sym_err_GT] = ACTIONS(2234), + [anon_sym_out_GT] = ACTIONS(2234), + [anon_sym_e_GT] = ACTIONS(2234), + [anon_sym_o_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT] = ACTIONS(2234), + [anon_sym_err_GT_GT] = ACTIONS(2232), + [anon_sym_out_GT_GT] = ACTIONS(2232), + [anon_sym_e_GT_GT] = ACTIONS(2232), + [anon_sym_o_GT_GT] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(732)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1370), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1125), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(480), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1139), + [sym__unquoted_with_expr] = STATE(1371), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(732), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2352), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), + [anon_sym_DOT_DOT_LT] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2362), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(732)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1278), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1071), - [sym__unquoted_with_expr] = STATE(1302), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(732), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(733)] = { + [sym_comment] = STATE(733), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_in] = ACTIONS(2366), + [sym__newline] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2366), + [anon_sym_err_GT_PIPE] = ACTIONS(2366), + [anon_sym_out_GT_PIPE] = ACTIONS(2366), + [anon_sym_e_GT_PIPE] = ACTIONS(2366), + [anon_sym_o_GT_PIPE] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2366), + [anon_sym_RPAREN] = ACTIONS(2366), + [anon_sym_GT2] = ACTIONS(2368), + [anon_sym_DASH2] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_EQ_GT] = ACTIONS(2366), + [anon_sym_STAR2] = ACTIONS(2368), + [anon_sym_and2] = ACTIONS(2366), + [anon_sym_xor2] = ACTIONS(2366), + [anon_sym_or2] = ACTIONS(2366), + [anon_sym_not_DASHin2] = ACTIONS(2366), + [anon_sym_has2] = ACTIONS(2366), + [anon_sym_not_DASHhas2] = ACTIONS(2366), + [anon_sym_starts_DASHwith2] = ACTIONS(2366), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2366), + [anon_sym_ends_DASHwith2] = ACTIONS(2366), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2366), + [anon_sym_EQ_EQ2] = ACTIONS(2366), + [anon_sym_BANG_EQ2] = ACTIONS(2366), + [anon_sym_LT2] = ACTIONS(2368), + [anon_sym_LT_EQ2] = ACTIONS(2366), + [anon_sym_GT_EQ2] = ACTIONS(2366), + [anon_sym_EQ_TILDE2] = ACTIONS(2366), + [anon_sym_BANG_TILDE2] = ACTIONS(2366), + [anon_sym_like2] = ACTIONS(2366), + [anon_sym_not_DASHlike2] = ACTIONS(2366), + [anon_sym_STAR_STAR2] = ACTIONS(2366), + [anon_sym_PLUS_PLUS2] = ACTIONS(2366), + [anon_sym_SLASH2] = ACTIONS(2368), + [anon_sym_mod2] = ACTIONS(2366), + [anon_sym_SLASH_SLASH2] = ACTIONS(2366), + [anon_sym_PLUS2] = ACTIONS(2368), + [anon_sym_bit_DASHshl2] = ACTIONS(2366), + [anon_sym_bit_DASHshr2] = ACTIONS(2366), + [anon_sym_bit_DASHand2] = ACTIONS(2366), + [anon_sym_bit_DASHxor2] = ACTIONS(2366), + [anon_sym_bit_DASHor2] = ACTIONS(2366), + [anon_sym_err_GT] = ACTIONS(2368), + [anon_sym_out_GT] = ACTIONS(2368), + [anon_sym_e_GT] = ACTIONS(2368), + [anon_sym_o_GT] = ACTIONS(2368), + [anon_sym_err_PLUSout_GT] = ACTIONS(2368), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2368), + [anon_sym_o_PLUSe_GT] = ACTIONS(2368), + [anon_sym_e_PLUSo_GT] = ACTIONS(2368), + [anon_sym_err_GT_GT] = ACTIONS(2366), + [anon_sym_out_GT_GT] = ACTIONS(2366), + [anon_sym_e_GT_GT] = ACTIONS(2366), + [anon_sym_o_GT_GT] = ACTIONS(2366), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2366), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2366), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2366), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2366), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(734)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1301), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1125), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(480), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1037), + [sym__unquoted_with_expr] = STATE(1321), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(734), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2352), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), + [anon_sym_DOT_DOT_LT] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2362), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(733)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1308), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1127), - [sym__unquoted_with_expr] = STATE(1321), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(733), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(735)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1322), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1125), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(480), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1120), + [sym__unquoted_with_expr] = STATE(1346), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(735), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2352), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), + [anon_sym_DOT_DOT_LT] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2362), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(734)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1283), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(972), - [sym__unquoted_with_expr] = STATE(1281), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(734), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(736)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1315), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1125), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(480), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1129), + [sym__unquoted_with_expr] = STATE(1297), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(736), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2352), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), + [anon_sym_DOT_DOT_LT] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2362), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(735)] = { - [sym_comment] = STATE(735), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_in] = ACTIONS(2222), - [sym__newline] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2224), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_EQ_GT] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2224), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_has2] = ACTIONS(2222), - [anon_sym_not_DASHhas2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2224), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_like2] = ACTIONS(2222), - [anon_sym_not_DASHlike2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2224), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2224), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), - [anon_sym_err_GT] = ACTIONS(2224), - [anon_sym_out_GT] = ACTIONS(2224), - [anon_sym_e_GT] = ACTIONS(2224), - [anon_sym_o_GT] = ACTIONS(2224), - [anon_sym_err_PLUSout_GT] = ACTIONS(2224), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2224), - [anon_sym_o_PLUSe_GT] = ACTIONS(2224), - [anon_sym_e_PLUSo_GT] = ACTIONS(2224), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(736)] = { - [sym_comment] = STATE(736), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_in] = ACTIONS(2226), - [sym__newline] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_err_GT_PIPE] = ACTIONS(2226), - [anon_sym_out_GT_PIPE] = ACTIONS(2226), - [anon_sym_e_GT_PIPE] = ACTIONS(2226), - [anon_sym_o_GT_PIPE] = ACTIONS(2226), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2226), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2226), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2226), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2226), - [anon_sym_RPAREN] = ACTIONS(2226), - [anon_sym_GT2] = ACTIONS(2228), - [anon_sym_DASH2] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_EQ_GT] = ACTIONS(2226), - [anon_sym_STAR2] = ACTIONS(2228), - [anon_sym_and2] = ACTIONS(2226), - [anon_sym_xor2] = ACTIONS(2226), - [anon_sym_or2] = ACTIONS(2226), - [anon_sym_not_DASHin2] = ACTIONS(2226), - [anon_sym_has2] = ACTIONS(2226), - [anon_sym_not_DASHhas2] = ACTIONS(2226), - [anon_sym_starts_DASHwith2] = ACTIONS(2226), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2226), - [anon_sym_ends_DASHwith2] = ACTIONS(2226), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2226), - [anon_sym_EQ_EQ2] = ACTIONS(2226), - [anon_sym_BANG_EQ2] = ACTIONS(2226), - [anon_sym_LT2] = ACTIONS(2228), - [anon_sym_LT_EQ2] = ACTIONS(2226), - [anon_sym_GT_EQ2] = ACTIONS(2226), - [anon_sym_EQ_TILDE2] = ACTIONS(2226), - [anon_sym_BANG_TILDE2] = ACTIONS(2226), - [anon_sym_like2] = ACTIONS(2226), - [anon_sym_not_DASHlike2] = ACTIONS(2226), - [anon_sym_STAR_STAR2] = ACTIONS(2226), - [anon_sym_PLUS_PLUS2] = ACTIONS(2226), - [anon_sym_SLASH2] = ACTIONS(2228), - [anon_sym_mod2] = ACTIONS(2226), - [anon_sym_SLASH_SLASH2] = ACTIONS(2226), - [anon_sym_PLUS2] = ACTIONS(2228), - [anon_sym_bit_DASHshl2] = ACTIONS(2226), - [anon_sym_bit_DASHshr2] = ACTIONS(2226), - [anon_sym_bit_DASHand2] = ACTIONS(2226), - [anon_sym_bit_DASHxor2] = ACTIONS(2226), - [anon_sym_bit_DASHor2] = ACTIONS(2226), - [anon_sym_err_GT] = ACTIONS(2228), - [anon_sym_out_GT] = ACTIONS(2228), - [anon_sym_e_GT] = ACTIONS(2228), - [anon_sym_o_GT] = ACTIONS(2228), - [anon_sym_err_PLUSout_GT] = ACTIONS(2228), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2228), - [anon_sym_o_PLUSe_GT] = ACTIONS(2228), - [anon_sym_e_PLUSo_GT] = ACTIONS(2228), - [anon_sym_err_GT_GT] = ACTIONS(2226), - [anon_sym_out_GT_GT] = ACTIONS(2226), - [anon_sym_e_GT_GT] = ACTIONS(2226), - [anon_sym_o_GT_GT] = ACTIONS(2226), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2226), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2226), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2226), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(737)] = { [sym_comment] = STATE(737), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [sym__newline] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_err_GT_PIPE] = ACTIONS(2230), - [anon_sym_out_GT_PIPE] = ACTIONS(2230), - [anon_sym_e_GT_PIPE] = ACTIONS(2230), - [anon_sym_o_GT_PIPE] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2230), - [anon_sym_RPAREN] = ACTIONS(2230), - [anon_sym_GT2] = ACTIONS(2232), - [anon_sym_DASH2] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_EQ_GT] = ACTIONS(2230), - [anon_sym_STAR2] = ACTIONS(2232), - [anon_sym_and2] = ACTIONS(2230), - [anon_sym_xor2] = ACTIONS(2230), - [anon_sym_or2] = ACTIONS(2230), - [anon_sym_not_DASHin2] = ACTIONS(2230), - [anon_sym_has2] = ACTIONS(2230), - [anon_sym_not_DASHhas2] = ACTIONS(2230), - [anon_sym_starts_DASHwith2] = ACTIONS(2230), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2230), - [anon_sym_ends_DASHwith2] = ACTIONS(2230), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2230), - [anon_sym_EQ_EQ2] = ACTIONS(2230), - [anon_sym_BANG_EQ2] = ACTIONS(2230), - [anon_sym_LT2] = ACTIONS(2232), - [anon_sym_LT_EQ2] = ACTIONS(2230), - [anon_sym_GT_EQ2] = ACTIONS(2230), - [anon_sym_EQ_TILDE2] = ACTIONS(2230), - [anon_sym_BANG_TILDE2] = ACTIONS(2230), - [anon_sym_like2] = ACTIONS(2230), - [anon_sym_not_DASHlike2] = ACTIONS(2230), - [anon_sym_STAR_STAR2] = ACTIONS(2230), - [anon_sym_PLUS_PLUS2] = ACTIONS(2230), - [anon_sym_SLASH2] = ACTIONS(2232), - [anon_sym_mod2] = ACTIONS(2230), - [anon_sym_SLASH_SLASH2] = ACTIONS(2230), - [anon_sym_PLUS2] = ACTIONS(2232), - [anon_sym_bit_DASHshl2] = ACTIONS(2230), - [anon_sym_bit_DASHshr2] = ACTIONS(2230), - [anon_sym_bit_DASHand2] = ACTIONS(2230), - [anon_sym_bit_DASHxor2] = ACTIONS(2230), - [anon_sym_bit_DASHor2] = ACTIONS(2230), - [anon_sym_err_GT] = ACTIONS(2232), - [anon_sym_out_GT] = ACTIONS(2232), - [anon_sym_e_GT] = ACTIONS(2232), - [anon_sym_o_GT] = ACTIONS(2232), - [anon_sym_err_PLUSout_GT] = ACTIONS(2232), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2232), - [anon_sym_o_PLUSe_GT] = ACTIONS(2232), - [anon_sym_e_PLUSo_GT] = ACTIONS(2232), - [anon_sym_err_GT_GT] = ACTIONS(2230), - [anon_sym_out_GT_GT] = ACTIONS(2230), - [anon_sym_e_GT_GT] = ACTIONS(2230), - [anon_sym_o_GT_GT] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_in] = ACTIONS(2370), + [sym__newline] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_err_GT_PIPE] = ACTIONS(2370), + [anon_sym_out_GT_PIPE] = ACTIONS(2370), + [anon_sym_e_GT_PIPE] = ACTIONS(2370), + [anon_sym_o_GT_PIPE] = ACTIONS(2370), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2370), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2370), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2370), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2370), + [anon_sym_RPAREN] = ACTIONS(2370), + [anon_sym_GT2] = ACTIONS(2372), + [anon_sym_DASH2] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_EQ_GT] = ACTIONS(2370), + [anon_sym_STAR2] = ACTIONS(2372), + [anon_sym_and2] = ACTIONS(2370), + [anon_sym_xor2] = ACTIONS(2370), + [anon_sym_or2] = ACTIONS(2370), + [anon_sym_not_DASHin2] = ACTIONS(2370), + [anon_sym_has2] = ACTIONS(2370), + [anon_sym_not_DASHhas2] = ACTIONS(2370), + [anon_sym_starts_DASHwith2] = ACTIONS(2370), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2370), + [anon_sym_ends_DASHwith2] = ACTIONS(2370), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2370), + [anon_sym_EQ_EQ2] = ACTIONS(2370), + [anon_sym_BANG_EQ2] = ACTIONS(2370), + [anon_sym_LT2] = ACTIONS(2372), + [anon_sym_LT_EQ2] = ACTIONS(2370), + [anon_sym_GT_EQ2] = ACTIONS(2370), + [anon_sym_EQ_TILDE2] = ACTIONS(2370), + [anon_sym_BANG_TILDE2] = ACTIONS(2370), + [anon_sym_like2] = ACTIONS(2370), + [anon_sym_not_DASHlike2] = ACTIONS(2370), + [anon_sym_STAR_STAR2] = ACTIONS(2370), + [anon_sym_PLUS_PLUS2] = ACTIONS(2370), + [anon_sym_SLASH2] = ACTIONS(2372), + [anon_sym_mod2] = ACTIONS(2370), + [anon_sym_SLASH_SLASH2] = ACTIONS(2370), + [anon_sym_PLUS2] = ACTIONS(2372), + [anon_sym_bit_DASHshl2] = ACTIONS(2370), + [anon_sym_bit_DASHshr2] = ACTIONS(2370), + [anon_sym_bit_DASHand2] = ACTIONS(2370), + [anon_sym_bit_DASHxor2] = ACTIONS(2370), + [anon_sym_bit_DASHor2] = ACTIONS(2370), + [anon_sym_err_GT] = ACTIONS(2372), + [anon_sym_out_GT] = ACTIONS(2372), + [anon_sym_e_GT] = ACTIONS(2372), + [anon_sym_o_GT] = ACTIONS(2372), + [anon_sym_err_PLUSout_GT] = ACTIONS(2372), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2372), + [anon_sym_o_PLUSe_GT] = ACTIONS(2372), + [anon_sym_e_PLUSo_GT] = ACTIONS(2372), + [anon_sym_err_GT_GT] = ACTIONS(2370), + [anon_sym_out_GT_GT] = ACTIONS(2370), + [anon_sym_e_GT_GT] = ACTIONS(2370), + [anon_sym_o_GT_GT] = ACTIONS(2370), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2370), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2370), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2370), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2370), [anon_sym_POUND] = ACTIONS(3), }, [STATE(738)] = { [sym_comment] = STATE(738), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_in] = ACTIONS(2234), - [sym__newline] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_RPAREN] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2236), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_EQ_GT] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2236), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_has2] = ACTIONS(2234), - [anon_sym_not_DASHhas2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2236), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_like2] = ACTIONS(2234), - [anon_sym_not_DASHlike2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2236), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2236), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_err_GT] = ACTIONS(2236), - [anon_sym_out_GT] = ACTIONS(2236), - [anon_sym_e_GT] = ACTIONS(2236), - [anon_sym_o_GT] = ACTIONS(2236), - [anon_sym_err_PLUSout_GT] = ACTIONS(2236), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2236), - [anon_sym_o_PLUSe_GT] = ACTIONS(2236), - [anon_sym_e_PLUSo_GT] = ACTIONS(2236), - [anon_sym_err_GT_GT] = ACTIONS(2234), - [anon_sym_out_GT_GT] = ACTIONS(2234), - [anon_sym_e_GT_GT] = ACTIONS(2234), - [anon_sym_o_GT_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2374), + [anon_sym_in] = ACTIONS(2374), + [sym__newline] = ACTIONS(2374), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_err_GT_PIPE] = ACTIONS(2374), + [anon_sym_out_GT_PIPE] = ACTIONS(2374), + [anon_sym_e_GT_PIPE] = ACTIONS(2374), + [anon_sym_o_GT_PIPE] = ACTIONS(2374), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2374), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2374), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2374), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2374), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_GT2] = ACTIONS(2376), + [anon_sym_DASH2] = ACTIONS(2374), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_EQ_GT] = ACTIONS(2374), + [anon_sym_STAR2] = ACTIONS(2376), + [anon_sym_and2] = ACTIONS(2374), + [anon_sym_xor2] = ACTIONS(2374), + [anon_sym_or2] = ACTIONS(2374), + [anon_sym_not_DASHin2] = ACTIONS(2374), + [anon_sym_has2] = ACTIONS(2374), + [anon_sym_not_DASHhas2] = ACTIONS(2374), + [anon_sym_starts_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2374), + [anon_sym_ends_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2374), + [anon_sym_EQ_EQ2] = ACTIONS(2374), + [anon_sym_BANG_EQ2] = ACTIONS(2374), + [anon_sym_LT2] = ACTIONS(2376), + [anon_sym_LT_EQ2] = ACTIONS(2374), + [anon_sym_GT_EQ2] = ACTIONS(2374), + [anon_sym_EQ_TILDE2] = ACTIONS(2374), + [anon_sym_BANG_TILDE2] = ACTIONS(2374), + [anon_sym_like2] = ACTIONS(2374), + [anon_sym_not_DASHlike2] = ACTIONS(2374), + [anon_sym_STAR_STAR2] = ACTIONS(2374), + [anon_sym_PLUS_PLUS2] = ACTIONS(2374), + [anon_sym_SLASH2] = ACTIONS(2376), + [anon_sym_mod2] = ACTIONS(2374), + [anon_sym_SLASH_SLASH2] = ACTIONS(2374), + [anon_sym_PLUS2] = ACTIONS(2376), + [anon_sym_bit_DASHshl2] = ACTIONS(2374), + [anon_sym_bit_DASHshr2] = ACTIONS(2374), + [anon_sym_bit_DASHand2] = ACTIONS(2374), + [anon_sym_bit_DASHxor2] = ACTIONS(2374), + [anon_sym_bit_DASHor2] = ACTIONS(2374), + [anon_sym_err_GT] = ACTIONS(2376), + [anon_sym_out_GT] = ACTIONS(2376), + [anon_sym_e_GT] = ACTIONS(2376), + [anon_sym_o_GT] = ACTIONS(2376), + [anon_sym_err_PLUSout_GT] = ACTIONS(2376), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2376), + [anon_sym_o_PLUSe_GT] = ACTIONS(2376), + [anon_sym_e_PLUSo_GT] = ACTIONS(2376), + [anon_sym_err_GT_GT] = ACTIONS(2374), + [anon_sym_out_GT_GT] = ACTIONS(2374), + [anon_sym_e_GT_GT] = ACTIONS(2374), + [anon_sym_o_GT_GT] = ACTIONS(2374), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2374), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2374), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2374), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2374), [anon_sym_POUND] = ACTIONS(3), }, [STATE(739)] = { [sym_comment] = STATE(739), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [sym__newline] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_err_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_GT_PIPE] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2238), - [anon_sym_RPAREN] = ACTIONS(2238), - [anon_sym_GT2] = ACTIONS(2240), - [anon_sym_DASH2] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_EQ_GT] = ACTIONS(2238), - [anon_sym_STAR2] = ACTIONS(2240), - [anon_sym_and2] = ACTIONS(2238), - [anon_sym_xor2] = ACTIONS(2238), - [anon_sym_or2] = ACTIONS(2238), - [anon_sym_not_DASHin2] = ACTIONS(2238), - [anon_sym_has2] = ACTIONS(2238), - [anon_sym_not_DASHhas2] = ACTIONS(2238), - [anon_sym_starts_DASHwith2] = ACTIONS(2238), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2238), - [anon_sym_ends_DASHwith2] = ACTIONS(2238), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2238), - [anon_sym_EQ_EQ2] = ACTIONS(2238), - [anon_sym_BANG_EQ2] = ACTIONS(2238), - [anon_sym_LT2] = ACTIONS(2240), - [anon_sym_LT_EQ2] = ACTIONS(2238), - [anon_sym_GT_EQ2] = ACTIONS(2238), - [anon_sym_EQ_TILDE2] = ACTIONS(2238), - [anon_sym_BANG_TILDE2] = ACTIONS(2238), - [anon_sym_like2] = ACTIONS(2238), - [anon_sym_not_DASHlike2] = ACTIONS(2238), - [anon_sym_STAR_STAR2] = ACTIONS(2238), - [anon_sym_PLUS_PLUS2] = ACTIONS(2238), - [anon_sym_SLASH2] = ACTIONS(2240), - [anon_sym_mod2] = ACTIONS(2238), - [anon_sym_SLASH_SLASH2] = ACTIONS(2238), - [anon_sym_PLUS2] = ACTIONS(2240), - [anon_sym_bit_DASHshl2] = ACTIONS(2238), - [anon_sym_bit_DASHshr2] = ACTIONS(2238), - [anon_sym_bit_DASHand2] = ACTIONS(2238), - [anon_sym_bit_DASHxor2] = ACTIONS(2238), - [anon_sym_bit_DASHor2] = ACTIONS(2238), - [anon_sym_err_GT] = ACTIONS(2240), - [anon_sym_out_GT] = ACTIONS(2240), - [anon_sym_e_GT] = ACTIONS(2240), - [anon_sym_o_GT] = ACTIONS(2240), - [anon_sym_err_PLUSout_GT] = ACTIONS(2240), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), - [anon_sym_o_PLUSe_GT] = ACTIONS(2240), - [anon_sym_e_PLUSo_GT] = ACTIONS(2240), - [anon_sym_err_GT_GT] = ACTIONS(2238), - [anon_sym_out_GT_GT] = ACTIONS(2238), - [anon_sym_e_GT_GT] = ACTIONS(2238), - [anon_sym_o_GT_GT] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1696), + [sym__newline] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_err_GT_PIPE] = ACTIONS(1696), + [anon_sym_out_GT_PIPE] = ACTIONS(1696), + [anon_sym_e_GT_PIPE] = ACTIONS(1696), + [anon_sym_o_GT_PIPE] = ACTIONS(1696), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1696), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1696), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1696), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1696), + [anon_sym_GT2] = ACTIONS(1694), + [anon_sym_DASH2] = ACTIONS(1696), + [anon_sym_STAR2] = ACTIONS(1694), + [anon_sym_and2] = ACTIONS(1696), + [anon_sym_xor2] = ACTIONS(1696), + [anon_sym_or2] = ACTIONS(1696), + [anon_sym_not_DASHin2] = ACTIONS(1696), + [anon_sym_has2] = ACTIONS(1696), + [anon_sym_not_DASHhas2] = ACTIONS(1696), + [anon_sym_starts_DASHwith2] = ACTIONS(1696), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1696), + [anon_sym_ends_DASHwith2] = ACTIONS(1696), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1696), + [anon_sym_EQ_EQ2] = ACTIONS(1696), + [anon_sym_BANG_EQ2] = ACTIONS(1696), + [anon_sym_LT2] = ACTIONS(1694), + [anon_sym_LT_EQ2] = ACTIONS(1696), + [anon_sym_GT_EQ2] = ACTIONS(1696), + [anon_sym_EQ_TILDE2] = ACTIONS(1696), + [anon_sym_BANG_TILDE2] = ACTIONS(1696), + [anon_sym_like2] = ACTIONS(1696), + [anon_sym_not_DASHlike2] = ACTIONS(1696), + [anon_sym_STAR_STAR2] = ACTIONS(1696), + [anon_sym_PLUS_PLUS2] = ACTIONS(1696), + [anon_sym_SLASH2] = ACTIONS(1694), + [anon_sym_mod2] = ACTIONS(1696), + [anon_sym_SLASH_SLASH2] = ACTIONS(1696), + [anon_sym_PLUS2] = ACTIONS(1694), + [anon_sym_bit_DASHshl2] = ACTIONS(1696), + [anon_sym_bit_DASHshr2] = ACTIONS(1696), + [anon_sym_bit_DASHand2] = ACTIONS(1696), + [anon_sym_bit_DASHxor2] = ACTIONS(1696), + [anon_sym_bit_DASHor2] = ACTIONS(1696), + [anon_sym_DOT_DOT2] = ACTIONS(1694), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1696), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1696), + [anon_sym_DOT2] = ACTIONS(1694), + [anon_sym_err_GT] = ACTIONS(1694), + [anon_sym_out_GT] = ACTIONS(1694), + [anon_sym_e_GT] = ACTIONS(1694), + [anon_sym_o_GT] = ACTIONS(1694), + [anon_sym_err_PLUSout_GT] = ACTIONS(1694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1694), + [anon_sym_o_PLUSe_GT] = ACTIONS(1694), + [anon_sym_e_PLUSo_GT] = ACTIONS(1694), + [anon_sym_err_GT_GT] = ACTIONS(1696), + [anon_sym_out_GT_GT] = ACTIONS(1696), + [anon_sym_e_GT_GT] = ACTIONS(1696), + [anon_sym_o_GT_GT] = ACTIONS(1696), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1696), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1696), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1696), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1696), [anon_sym_POUND] = ACTIONS(3), }, [STATE(740)] = { [sym_comment] = STATE(740), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2242), - [sym__newline] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_err_GT_PIPE] = ACTIONS(2242), - [anon_sym_out_GT_PIPE] = ACTIONS(2242), - [anon_sym_e_GT_PIPE] = ACTIONS(2242), - [anon_sym_o_GT_PIPE] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2242), - [anon_sym_RPAREN] = ACTIONS(2242), - [anon_sym_GT2] = ACTIONS(2244), - [anon_sym_DASH2] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_EQ_GT] = ACTIONS(2242), - [anon_sym_STAR2] = ACTIONS(2244), - [anon_sym_and2] = ACTIONS(2242), - [anon_sym_xor2] = ACTIONS(2242), - [anon_sym_or2] = ACTIONS(2242), - [anon_sym_not_DASHin2] = ACTIONS(2242), - [anon_sym_has2] = ACTIONS(2242), - [anon_sym_not_DASHhas2] = ACTIONS(2242), - [anon_sym_starts_DASHwith2] = ACTIONS(2242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2242), - [anon_sym_ends_DASHwith2] = ACTIONS(2242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2242), - [anon_sym_EQ_EQ2] = ACTIONS(2242), - [anon_sym_BANG_EQ2] = ACTIONS(2242), - [anon_sym_LT2] = ACTIONS(2244), - [anon_sym_LT_EQ2] = ACTIONS(2242), - [anon_sym_GT_EQ2] = ACTIONS(2242), - [anon_sym_EQ_TILDE2] = ACTIONS(2242), - [anon_sym_BANG_TILDE2] = ACTIONS(2242), - [anon_sym_like2] = ACTIONS(2242), - [anon_sym_not_DASHlike2] = ACTIONS(2242), - [anon_sym_STAR_STAR2] = ACTIONS(2242), - [anon_sym_PLUS_PLUS2] = ACTIONS(2242), - [anon_sym_SLASH2] = ACTIONS(2244), - [anon_sym_mod2] = ACTIONS(2242), - [anon_sym_SLASH_SLASH2] = ACTIONS(2242), - [anon_sym_PLUS2] = ACTIONS(2244), - [anon_sym_bit_DASHshl2] = ACTIONS(2242), - [anon_sym_bit_DASHshr2] = ACTIONS(2242), - [anon_sym_bit_DASHand2] = ACTIONS(2242), - [anon_sym_bit_DASHxor2] = ACTIONS(2242), - [anon_sym_bit_DASHor2] = ACTIONS(2242), - [anon_sym_err_GT] = ACTIONS(2244), - [anon_sym_out_GT] = ACTIONS(2244), - [anon_sym_e_GT] = ACTIONS(2244), - [anon_sym_o_GT] = ACTIONS(2244), - [anon_sym_err_PLUSout_GT] = ACTIONS(2244), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2244), - [anon_sym_o_PLUSe_GT] = ACTIONS(2244), - [anon_sym_e_PLUSo_GT] = ACTIONS(2244), - [anon_sym_err_GT_GT] = ACTIONS(2242), - [anon_sym_out_GT_GT] = ACTIONS(2242), - [anon_sym_e_GT_GT] = ACTIONS(2242), - [anon_sym_o_GT_GT] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2378), + [anon_sym_in] = ACTIONS(2378), + [sym__newline] = ACTIONS(2378), + [anon_sym_SEMI] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_err_GT_PIPE] = ACTIONS(2378), + [anon_sym_out_GT_PIPE] = ACTIONS(2378), + [anon_sym_e_GT_PIPE] = ACTIONS(2378), + [anon_sym_o_GT_PIPE] = ACTIONS(2378), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2378), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2378), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2378), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2378), + [anon_sym_RPAREN] = ACTIONS(2378), + [anon_sym_GT2] = ACTIONS(2380), + [anon_sym_DASH2] = ACTIONS(2378), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_EQ_GT] = ACTIONS(2378), + [anon_sym_STAR2] = ACTIONS(2380), + [anon_sym_and2] = ACTIONS(2378), + [anon_sym_xor2] = ACTIONS(2378), + [anon_sym_or2] = ACTIONS(2378), + [anon_sym_not_DASHin2] = ACTIONS(2378), + [anon_sym_has2] = ACTIONS(2378), + [anon_sym_not_DASHhas2] = ACTIONS(2378), + [anon_sym_starts_DASHwith2] = ACTIONS(2378), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2378), + [anon_sym_ends_DASHwith2] = ACTIONS(2378), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2378), + [anon_sym_EQ_EQ2] = ACTIONS(2378), + [anon_sym_BANG_EQ2] = ACTIONS(2378), + [anon_sym_LT2] = ACTIONS(2380), + [anon_sym_LT_EQ2] = ACTIONS(2378), + [anon_sym_GT_EQ2] = ACTIONS(2378), + [anon_sym_EQ_TILDE2] = ACTIONS(2378), + [anon_sym_BANG_TILDE2] = ACTIONS(2378), + [anon_sym_like2] = ACTIONS(2378), + [anon_sym_not_DASHlike2] = ACTIONS(2378), + [anon_sym_STAR_STAR2] = ACTIONS(2378), + [anon_sym_PLUS_PLUS2] = ACTIONS(2378), + [anon_sym_SLASH2] = ACTIONS(2380), + [anon_sym_mod2] = ACTIONS(2378), + [anon_sym_SLASH_SLASH2] = ACTIONS(2378), + [anon_sym_PLUS2] = ACTIONS(2380), + [anon_sym_bit_DASHshl2] = ACTIONS(2378), + [anon_sym_bit_DASHshr2] = ACTIONS(2378), + [anon_sym_bit_DASHand2] = ACTIONS(2378), + [anon_sym_bit_DASHxor2] = ACTIONS(2378), + [anon_sym_bit_DASHor2] = ACTIONS(2378), + [anon_sym_err_GT] = ACTIONS(2380), + [anon_sym_out_GT] = ACTIONS(2380), + [anon_sym_e_GT] = ACTIONS(2380), + [anon_sym_o_GT] = ACTIONS(2380), + [anon_sym_err_PLUSout_GT] = ACTIONS(2380), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2380), + [anon_sym_o_PLUSe_GT] = ACTIONS(2380), + [anon_sym_e_PLUSo_GT] = ACTIONS(2380), + [anon_sym_err_GT_GT] = ACTIONS(2378), + [anon_sym_out_GT_GT] = ACTIONS(2378), + [anon_sym_e_GT_GT] = ACTIONS(2378), + [anon_sym_o_GT_GT] = ACTIONS(2378), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2378), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2378), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2378), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2378), [anon_sym_POUND] = ACTIONS(3), }, [STATE(741)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1312), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1125), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(480), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1089), + [sym__unquoted_with_expr] = STATE(1294), + [sym__unquoted_anonymous_prefix] = STATE(4783), [sym_comment] = STATE(741), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_in] = ACTIONS(2246), - [sym__newline] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2248), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_EQ_GT] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2248), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_has2] = ACTIONS(2246), - [anon_sym_not_DASHhas2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2248), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_like2] = ACTIONS(2246), - [anon_sym_not_DASHlike2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2248), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2248), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_err_GT] = ACTIONS(2248), - [anon_sym_out_GT] = ACTIONS(2248), - [anon_sym_e_GT] = ACTIONS(2248), - [anon_sym_o_GT] = ACTIONS(2248), - [anon_sym_err_PLUSout_GT] = ACTIONS(2248), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2248), - [anon_sym_o_PLUSe_GT] = ACTIONS(2248), - [anon_sym_e_PLUSo_GT] = ACTIONS(2248), - [anon_sym_err_GT_GT] = ACTIONS(2246), - [anon_sym_out_GT_GT] = ACTIONS(2246), - [anon_sym_e_GT_GT] = ACTIONS(2246), - [anon_sym_o_GT_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(742)] = { - [sym_comment] = STATE(742), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [sym__newline] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_err_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_GT_PIPE] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), - [anon_sym_RPAREN] = ACTIONS(2250), - [anon_sym_GT2] = ACTIONS(2252), - [anon_sym_DASH2] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_EQ_GT] = ACTIONS(2250), - [anon_sym_STAR2] = ACTIONS(2252), - [anon_sym_and2] = ACTIONS(2250), - [anon_sym_xor2] = ACTIONS(2250), - [anon_sym_or2] = ACTIONS(2250), - [anon_sym_not_DASHin2] = ACTIONS(2250), - [anon_sym_has2] = ACTIONS(2250), - [anon_sym_not_DASHhas2] = ACTIONS(2250), - [anon_sym_starts_DASHwith2] = ACTIONS(2250), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2250), - [anon_sym_ends_DASHwith2] = ACTIONS(2250), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2250), - [anon_sym_EQ_EQ2] = ACTIONS(2250), - [anon_sym_BANG_EQ2] = ACTIONS(2250), - [anon_sym_LT2] = ACTIONS(2252), - [anon_sym_LT_EQ2] = ACTIONS(2250), - [anon_sym_GT_EQ2] = ACTIONS(2250), - [anon_sym_EQ_TILDE2] = ACTIONS(2250), - [anon_sym_BANG_TILDE2] = ACTIONS(2250), - [anon_sym_like2] = ACTIONS(2250), - [anon_sym_not_DASHlike2] = ACTIONS(2250), - [anon_sym_STAR_STAR2] = ACTIONS(2250), - [anon_sym_PLUS_PLUS2] = ACTIONS(2250), - [anon_sym_SLASH2] = ACTIONS(2252), - [anon_sym_mod2] = ACTIONS(2250), - [anon_sym_SLASH_SLASH2] = ACTIONS(2250), - [anon_sym_PLUS2] = ACTIONS(2252), - [anon_sym_bit_DASHshl2] = ACTIONS(2250), - [anon_sym_bit_DASHshr2] = ACTIONS(2250), - [anon_sym_bit_DASHand2] = ACTIONS(2250), - [anon_sym_bit_DASHxor2] = ACTIONS(2250), - [anon_sym_bit_DASHor2] = ACTIONS(2250), - [anon_sym_err_GT] = ACTIONS(2252), - [anon_sym_out_GT] = ACTIONS(2252), - [anon_sym_e_GT] = ACTIONS(2252), - [anon_sym_o_GT] = ACTIONS(2252), - [anon_sym_err_PLUSout_GT] = ACTIONS(2252), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2252), - [anon_sym_o_PLUSe_GT] = ACTIONS(2252), - [anon_sym_e_PLUSo_GT] = ACTIONS(2252), - [anon_sym_err_GT_GT] = ACTIONS(2250), - [anon_sym_out_GT_GT] = ACTIONS(2250), - [anon_sym_e_GT_GT] = ACTIONS(2250), - [anon_sym_o_GT_GT] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2250), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(743)] = { - [sym_comment] = STATE(743), - [anon_sym_in] = ACTIONS(2254), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2256), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_EQ_GT] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2256), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_has2] = ACTIONS(2254), - [anon_sym_not_DASHhas2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2256), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_like2] = ACTIONS(2254), - [anon_sym_not_DASHlike2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2256), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2256), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_COLON2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2256), - [anon_sym_out_GT] = ACTIONS(2256), - [anon_sym_e_GT] = ACTIONS(2256), - [anon_sym_o_GT] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT] = ACTIONS(2256), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(744)] = { - [sym_comment] = STATE(744), - [anon_sym_in] = ACTIONS(2254), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2256), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_EQ_GT] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2256), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_has2] = ACTIONS(2254), - [anon_sym_not_DASHhas2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2256), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_like2] = ACTIONS(2254), - [anon_sym_not_DASHlike2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2256), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2256), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_COLON2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2256), - [anon_sym_out_GT] = ACTIONS(2256), - [anon_sym_e_GT] = ACTIONS(2256), - [anon_sym_o_GT] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT] = ACTIONS(2256), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(745)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1282), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1296), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(745), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2352), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), + [anon_sym_DOT_DOT_LT] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2362), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, + [STATE(742)] = { + [sym_comment] = STATE(742), + [anon_sym_if] = ACTIONS(2382), + [anon_sym_in] = ACTIONS(2382), + [sym__newline] = ACTIONS(2382), + [anon_sym_SEMI] = ACTIONS(2382), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_err_GT_PIPE] = ACTIONS(2382), + [anon_sym_out_GT_PIPE] = ACTIONS(2382), + [anon_sym_e_GT_PIPE] = ACTIONS(2382), + [anon_sym_o_GT_PIPE] = ACTIONS(2382), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2382), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2382), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2382), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2382), + [anon_sym_RPAREN] = ACTIONS(2382), + [anon_sym_GT2] = ACTIONS(2384), + [anon_sym_DASH2] = ACTIONS(2382), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2382), + [anon_sym_EQ_GT] = ACTIONS(2382), + [anon_sym_STAR2] = ACTIONS(2384), + [anon_sym_and2] = ACTIONS(2382), + [anon_sym_xor2] = ACTIONS(2382), + [anon_sym_or2] = ACTIONS(2382), + [anon_sym_not_DASHin2] = ACTIONS(2382), + [anon_sym_has2] = ACTIONS(2382), + [anon_sym_not_DASHhas2] = ACTIONS(2382), + [anon_sym_starts_DASHwith2] = ACTIONS(2382), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2382), + [anon_sym_ends_DASHwith2] = ACTIONS(2382), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2382), + [anon_sym_EQ_EQ2] = ACTIONS(2382), + [anon_sym_BANG_EQ2] = ACTIONS(2382), + [anon_sym_LT2] = ACTIONS(2384), + [anon_sym_LT_EQ2] = ACTIONS(2382), + [anon_sym_GT_EQ2] = ACTIONS(2382), + [anon_sym_EQ_TILDE2] = ACTIONS(2382), + [anon_sym_BANG_TILDE2] = ACTIONS(2382), + [anon_sym_like2] = ACTIONS(2382), + [anon_sym_not_DASHlike2] = ACTIONS(2382), + [anon_sym_STAR_STAR2] = ACTIONS(2382), + [anon_sym_PLUS_PLUS2] = ACTIONS(2382), + [anon_sym_SLASH2] = ACTIONS(2384), + [anon_sym_mod2] = ACTIONS(2382), + [anon_sym_SLASH_SLASH2] = ACTIONS(2382), + [anon_sym_PLUS2] = ACTIONS(2384), + [anon_sym_bit_DASHshl2] = ACTIONS(2382), + [anon_sym_bit_DASHshr2] = ACTIONS(2382), + [anon_sym_bit_DASHand2] = ACTIONS(2382), + [anon_sym_bit_DASHxor2] = ACTIONS(2382), + [anon_sym_bit_DASHor2] = ACTIONS(2382), + [anon_sym_err_GT] = ACTIONS(2384), + [anon_sym_out_GT] = ACTIONS(2384), + [anon_sym_e_GT] = ACTIONS(2384), + [anon_sym_o_GT] = ACTIONS(2384), + [anon_sym_err_PLUSout_GT] = ACTIONS(2384), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2384), + [anon_sym_o_PLUSe_GT] = ACTIONS(2384), + [anon_sym_e_PLUSo_GT] = ACTIONS(2384), + [anon_sym_err_GT_GT] = ACTIONS(2382), + [anon_sym_out_GT_GT] = ACTIONS(2382), + [anon_sym_e_GT_GT] = ACTIONS(2382), + [anon_sym_o_GT_GT] = ACTIONS(2382), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2382), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2382), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2382), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2382), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(743)] = { + [sym_comment] = STATE(743), + [anon_sym_if] = ACTIONS(2386), + [anon_sym_in] = ACTIONS(2386), + [sym__newline] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2386), + [anon_sym_err_GT_PIPE] = ACTIONS(2386), + [anon_sym_out_GT_PIPE] = ACTIONS(2386), + [anon_sym_e_GT_PIPE] = ACTIONS(2386), + [anon_sym_o_GT_PIPE] = ACTIONS(2386), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2386), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2386), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2386), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2386), + [anon_sym_RPAREN] = ACTIONS(2386), + [anon_sym_GT2] = ACTIONS(2388), + [anon_sym_DASH2] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_EQ_GT] = ACTIONS(2386), + [anon_sym_STAR2] = ACTIONS(2388), + [anon_sym_and2] = ACTIONS(2386), + [anon_sym_xor2] = ACTIONS(2386), + [anon_sym_or2] = ACTIONS(2386), + [anon_sym_not_DASHin2] = ACTIONS(2386), + [anon_sym_has2] = ACTIONS(2386), + [anon_sym_not_DASHhas2] = ACTIONS(2386), + [anon_sym_starts_DASHwith2] = ACTIONS(2386), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2386), + [anon_sym_ends_DASHwith2] = ACTIONS(2386), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2386), + [anon_sym_EQ_EQ2] = ACTIONS(2386), + [anon_sym_BANG_EQ2] = ACTIONS(2386), + [anon_sym_LT2] = ACTIONS(2388), + [anon_sym_LT_EQ2] = ACTIONS(2386), + [anon_sym_GT_EQ2] = ACTIONS(2386), + [anon_sym_EQ_TILDE2] = ACTIONS(2386), + [anon_sym_BANG_TILDE2] = ACTIONS(2386), + [anon_sym_like2] = ACTIONS(2386), + [anon_sym_not_DASHlike2] = ACTIONS(2386), + [anon_sym_STAR_STAR2] = ACTIONS(2386), + [anon_sym_PLUS_PLUS2] = ACTIONS(2386), + [anon_sym_SLASH2] = ACTIONS(2388), + [anon_sym_mod2] = ACTIONS(2386), + [anon_sym_SLASH_SLASH2] = ACTIONS(2386), + [anon_sym_PLUS2] = ACTIONS(2388), + [anon_sym_bit_DASHshl2] = ACTIONS(2386), + [anon_sym_bit_DASHshr2] = ACTIONS(2386), + [anon_sym_bit_DASHand2] = ACTIONS(2386), + [anon_sym_bit_DASHxor2] = ACTIONS(2386), + [anon_sym_bit_DASHor2] = ACTIONS(2386), + [anon_sym_err_GT] = ACTIONS(2388), + [anon_sym_out_GT] = ACTIONS(2388), + [anon_sym_e_GT] = ACTIONS(2388), + [anon_sym_o_GT] = ACTIONS(2388), + [anon_sym_err_PLUSout_GT] = ACTIONS(2388), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2388), + [anon_sym_o_PLUSe_GT] = ACTIONS(2388), + [anon_sym_e_PLUSo_GT] = ACTIONS(2388), + [anon_sym_err_GT_GT] = ACTIONS(2386), + [anon_sym_out_GT_GT] = ACTIONS(2386), + [anon_sym_e_GT_GT] = ACTIONS(2386), + [anon_sym_o_GT_GT] = ACTIONS(2386), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2386), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2386), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2386), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2386), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(744)] = { + [sym_comment] = STATE(744), + [anon_sym_if] = ACTIONS(2390), + [anon_sym_in] = ACTIONS(2390), + [sym__newline] = ACTIONS(2390), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2390), + [anon_sym_err_GT_PIPE] = ACTIONS(2390), + [anon_sym_out_GT_PIPE] = ACTIONS(2390), + [anon_sym_e_GT_PIPE] = ACTIONS(2390), + [anon_sym_o_GT_PIPE] = ACTIONS(2390), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2390), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2390), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2390), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2390), + [anon_sym_RPAREN] = ACTIONS(2390), + [anon_sym_GT2] = ACTIONS(2392), + [anon_sym_DASH2] = ACTIONS(2390), + [anon_sym_LBRACE] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_EQ_GT] = ACTIONS(2390), + [anon_sym_STAR2] = ACTIONS(2392), + [anon_sym_and2] = ACTIONS(2390), + [anon_sym_xor2] = ACTIONS(2390), + [anon_sym_or2] = ACTIONS(2390), + [anon_sym_not_DASHin2] = ACTIONS(2390), + [anon_sym_has2] = ACTIONS(2390), + [anon_sym_not_DASHhas2] = ACTIONS(2390), + [anon_sym_starts_DASHwith2] = ACTIONS(2390), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2390), + [anon_sym_ends_DASHwith2] = ACTIONS(2390), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2390), + [anon_sym_EQ_EQ2] = ACTIONS(2390), + [anon_sym_BANG_EQ2] = ACTIONS(2390), + [anon_sym_LT2] = ACTIONS(2392), + [anon_sym_LT_EQ2] = ACTIONS(2390), + [anon_sym_GT_EQ2] = ACTIONS(2390), + [anon_sym_EQ_TILDE2] = ACTIONS(2390), + [anon_sym_BANG_TILDE2] = ACTIONS(2390), + [anon_sym_like2] = ACTIONS(2390), + [anon_sym_not_DASHlike2] = ACTIONS(2390), + [anon_sym_STAR_STAR2] = ACTIONS(2390), + [anon_sym_PLUS_PLUS2] = ACTIONS(2390), + [anon_sym_SLASH2] = ACTIONS(2392), + [anon_sym_mod2] = ACTIONS(2390), + [anon_sym_SLASH_SLASH2] = ACTIONS(2390), + [anon_sym_PLUS2] = ACTIONS(2392), + [anon_sym_bit_DASHshl2] = ACTIONS(2390), + [anon_sym_bit_DASHshr2] = ACTIONS(2390), + [anon_sym_bit_DASHand2] = ACTIONS(2390), + [anon_sym_bit_DASHxor2] = ACTIONS(2390), + [anon_sym_bit_DASHor2] = ACTIONS(2390), + [anon_sym_err_GT] = ACTIONS(2392), + [anon_sym_out_GT] = ACTIONS(2392), + [anon_sym_e_GT] = ACTIONS(2392), + [anon_sym_o_GT] = ACTIONS(2392), + [anon_sym_err_PLUSout_GT] = ACTIONS(2392), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2392), + [anon_sym_o_PLUSe_GT] = ACTIONS(2392), + [anon_sym_e_PLUSo_GT] = ACTIONS(2392), + [anon_sym_err_GT_GT] = ACTIONS(2390), + [anon_sym_out_GT_GT] = ACTIONS(2390), + [anon_sym_e_GT_GT] = ACTIONS(2390), + [anon_sym_o_GT_GT] = ACTIONS(2390), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2390), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2390), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2390), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2390), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(745)] = { + [sym_comment] = STATE(745), + [anon_sym_if] = ACTIONS(2394), + [anon_sym_in] = ACTIONS(2394), + [sym__newline] = ACTIONS(2394), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_err_GT_PIPE] = ACTIONS(2394), + [anon_sym_out_GT_PIPE] = ACTIONS(2394), + [anon_sym_e_GT_PIPE] = ACTIONS(2394), + [anon_sym_o_GT_PIPE] = ACTIONS(2394), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2394), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2394), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2394), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2394), + [anon_sym_RPAREN] = ACTIONS(2394), + [anon_sym_GT2] = ACTIONS(2396), + [anon_sym_DASH2] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_EQ_GT] = ACTIONS(2394), + [anon_sym_STAR2] = ACTIONS(2396), + [anon_sym_and2] = ACTIONS(2394), + [anon_sym_xor2] = ACTIONS(2394), + [anon_sym_or2] = ACTIONS(2394), + [anon_sym_not_DASHin2] = ACTIONS(2394), + [anon_sym_has2] = ACTIONS(2394), + [anon_sym_not_DASHhas2] = ACTIONS(2394), + [anon_sym_starts_DASHwith2] = ACTIONS(2394), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2394), + [anon_sym_ends_DASHwith2] = ACTIONS(2394), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2394), + [anon_sym_EQ_EQ2] = ACTIONS(2394), + [anon_sym_BANG_EQ2] = ACTIONS(2394), + [anon_sym_LT2] = ACTIONS(2396), + [anon_sym_LT_EQ2] = ACTIONS(2394), + [anon_sym_GT_EQ2] = ACTIONS(2394), + [anon_sym_EQ_TILDE2] = ACTIONS(2394), + [anon_sym_BANG_TILDE2] = ACTIONS(2394), + [anon_sym_like2] = ACTIONS(2394), + [anon_sym_not_DASHlike2] = ACTIONS(2394), + [anon_sym_STAR_STAR2] = ACTIONS(2394), + [anon_sym_PLUS_PLUS2] = ACTIONS(2394), + [anon_sym_SLASH2] = ACTIONS(2396), + [anon_sym_mod2] = ACTIONS(2394), + [anon_sym_SLASH_SLASH2] = ACTIONS(2394), + [anon_sym_PLUS2] = ACTIONS(2396), + [anon_sym_bit_DASHshl2] = ACTIONS(2394), + [anon_sym_bit_DASHshr2] = ACTIONS(2394), + [anon_sym_bit_DASHand2] = ACTIONS(2394), + [anon_sym_bit_DASHxor2] = ACTIONS(2394), + [anon_sym_bit_DASHor2] = ACTIONS(2394), + [anon_sym_err_GT] = ACTIONS(2396), + [anon_sym_out_GT] = ACTIONS(2396), + [anon_sym_e_GT] = ACTIONS(2396), + [anon_sym_o_GT] = ACTIONS(2396), + [anon_sym_err_PLUSout_GT] = ACTIONS(2396), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2396), + [anon_sym_o_PLUSe_GT] = ACTIONS(2396), + [anon_sym_e_PLUSo_GT] = ACTIONS(2396), + [anon_sym_err_GT_GT] = ACTIONS(2394), + [anon_sym_out_GT_GT] = ACTIONS(2394), + [anon_sym_e_GT_GT] = ACTIONS(2394), + [anon_sym_o_GT_GT] = ACTIONS(2394), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2394), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2394), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2394), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2394), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(746)] = { [sym_comment] = STATE(746), - [anon_sym_in] = ACTIONS(2258), - [sym__newline] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_err_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_GT_PIPE] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [anon_sym_GT2] = ACTIONS(2260), - [anon_sym_DASH2] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_EQ_GT] = ACTIONS(2258), - [anon_sym_STAR2] = ACTIONS(2260), - [anon_sym_and2] = ACTIONS(2258), - [anon_sym_xor2] = ACTIONS(2258), - [anon_sym_or2] = ACTIONS(2258), - [anon_sym_not_DASHin2] = ACTIONS(2258), - [anon_sym_has2] = ACTIONS(2258), - [anon_sym_not_DASHhas2] = ACTIONS(2258), - [anon_sym_starts_DASHwith2] = ACTIONS(2258), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2258), - [anon_sym_ends_DASHwith2] = ACTIONS(2258), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2258), - [anon_sym_EQ_EQ2] = ACTIONS(2258), - [anon_sym_BANG_EQ2] = ACTIONS(2258), - [anon_sym_LT2] = ACTIONS(2260), - [anon_sym_LT_EQ2] = ACTIONS(2258), - [anon_sym_GT_EQ2] = ACTIONS(2258), - [anon_sym_EQ_TILDE2] = ACTIONS(2258), - [anon_sym_BANG_TILDE2] = ACTIONS(2258), - [anon_sym_like2] = ACTIONS(2258), - [anon_sym_not_DASHlike2] = ACTIONS(2258), - [anon_sym_STAR_STAR2] = ACTIONS(2258), - [anon_sym_PLUS_PLUS2] = ACTIONS(2258), - [anon_sym_SLASH2] = ACTIONS(2260), - [anon_sym_mod2] = ACTIONS(2258), - [anon_sym_SLASH_SLASH2] = ACTIONS(2258), - [anon_sym_PLUS2] = ACTIONS(2260), - [anon_sym_bit_DASHshl2] = ACTIONS(2258), - [anon_sym_bit_DASHshr2] = ACTIONS(2258), - [anon_sym_bit_DASHand2] = ACTIONS(2258), - [anon_sym_bit_DASHxor2] = ACTIONS(2258), - [anon_sym_bit_DASHor2] = ACTIONS(2258), - [anon_sym_COLON2] = ACTIONS(2258), - [anon_sym_err_GT] = ACTIONS(2260), - [anon_sym_out_GT] = ACTIONS(2260), - [anon_sym_e_GT] = ACTIONS(2260), - [anon_sym_o_GT] = ACTIONS(2260), - [anon_sym_err_PLUSout_GT] = ACTIONS(2260), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2260), - [anon_sym_o_PLUSe_GT] = ACTIONS(2260), - [anon_sym_e_PLUSo_GT] = ACTIONS(2260), - [anon_sym_err_GT_GT] = ACTIONS(2258), - [anon_sym_out_GT_GT] = ACTIONS(2258), - [anon_sym_e_GT_GT] = ACTIONS(2258), - [anon_sym_o_GT_GT] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2258), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_in] = ACTIONS(2398), + [sym__newline] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_err_GT_PIPE] = ACTIONS(2398), + [anon_sym_out_GT_PIPE] = ACTIONS(2398), + [anon_sym_e_GT_PIPE] = ACTIONS(2398), + [anon_sym_o_GT_PIPE] = ACTIONS(2398), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2398), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2398), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2398), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2398), + [anon_sym_RPAREN] = ACTIONS(2398), + [anon_sym_GT2] = ACTIONS(2400), + [anon_sym_DASH2] = ACTIONS(2398), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_EQ_GT] = ACTIONS(2398), + [anon_sym_STAR2] = ACTIONS(2400), + [anon_sym_and2] = ACTIONS(2398), + [anon_sym_xor2] = ACTIONS(2398), + [anon_sym_or2] = ACTIONS(2398), + [anon_sym_not_DASHin2] = ACTIONS(2398), + [anon_sym_has2] = ACTIONS(2398), + [anon_sym_not_DASHhas2] = ACTIONS(2398), + [anon_sym_starts_DASHwith2] = ACTIONS(2398), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2398), + [anon_sym_ends_DASHwith2] = ACTIONS(2398), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2398), + [anon_sym_EQ_EQ2] = ACTIONS(2398), + [anon_sym_BANG_EQ2] = ACTIONS(2398), + [anon_sym_LT2] = ACTIONS(2400), + [anon_sym_LT_EQ2] = ACTIONS(2398), + [anon_sym_GT_EQ2] = ACTIONS(2398), + [anon_sym_EQ_TILDE2] = ACTIONS(2398), + [anon_sym_BANG_TILDE2] = ACTIONS(2398), + [anon_sym_like2] = ACTIONS(2398), + [anon_sym_not_DASHlike2] = ACTIONS(2398), + [anon_sym_STAR_STAR2] = ACTIONS(2398), + [anon_sym_PLUS_PLUS2] = ACTIONS(2398), + [anon_sym_SLASH2] = ACTIONS(2400), + [anon_sym_mod2] = ACTIONS(2398), + [anon_sym_SLASH_SLASH2] = ACTIONS(2398), + [anon_sym_PLUS2] = ACTIONS(2400), + [anon_sym_bit_DASHshl2] = ACTIONS(2398), + [anon_sym_bit_DASHshr2] = ACTIONS(2398), + [anon_sym_bit_DASHand2] = ACTIONS(2398), + [anon_sym_bit_DASHxor2] = ACTIONS(2398), + [anon_sym_bit_DASHor2] = ACTIONS(2398), + [anon_sym_err_GT] = ACTIONS(2400), + [anon_sym_out_GT] = ACTIONS(2400), + [anon_sym_e_GT] = ACTIONS(2400), + [anon_sym_o_GT] = ACTIONS(2400), + [anon_sym_err_PLUSout_GT] = ACTIONS(2400), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2400), + [anon_sym_o_PLUSe_GT] = ACTIONS(2400), + [anon_sym_e_PLUSo_GT] = ACTIONS(2400), + [anon_sym_err_GT_GT] = ACTIONS(2398), + [anon_sym_out_GT_GT] = ACTIONS(2398), + [anon_sym_e_GT_GT] = ACTIONS(2398), + [anon_sym_o_GT_GT] = ACTIONS(2398), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2398), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2398), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2398), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2398), [anon_sym_POUND] = ACTIONS(3), }, [STATE(747)] = { [sym_comment] = STATE(747), - [anon_sym_in] = ACTIONS(2262), - [sym__newline] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_err_GT_PIPE] = ACTIONS(2262), - [anon_sym_out_GT_PIPE] = ACTIONS(2262), - [anon_sym_e_GT_PIPE] = ACTIONS(2262), - [anon_sym_o_GT_PIPE] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2262), - [anon_sym_RPAREN] = ACTIONS(2262), - [anon_sym_GT2] = ACTIONS(2264), - [anon_sym_DASH2] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(2262), - [anon_sym_STAR2] = ACTIONS(2264), - [anon_sym_and2] = ACTIONS(2262), - [anon_sym_xor2] = ACTIONS(2262), - [anon_sym_or2] = ACTIONS(2262), - [anon_sym_not_DASHin2] = ACTIONS(2262), - [anon_sym_has2] = ACTIONS(2262), - [anon_sym_not_DASHhas2] = ACTIONS(2262), - [anon_sym_starts_DASHwith2] = ACTIONS(2262), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2262), - [anon_sym_ends_DASHwith2] = ACTIONS(2262), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2262), - [anon_sym_EQ_EQ2] = ACTIONS(2262), - [anon_sym_BANG_EQ2] = ACTIONS(2262), - [anon_sym_LT2] = ACTIONS(2264), - [anon_sym_LT_EQ2] = ACTIONS(2262), - [anon_sym_GT_EQ2] = ACTIONS(2262), - [anon_sym_EQ_TILDE2] = ACTIONS(2262), - [anon_sym_BANG_TILDE2] = ACTIONS(2262), - [anon_sym_like2] = ACTIONS(2262), - [anon_sym_not_DASHlike2] = ACTIONS(2262), - [anon_sym_STAR_STAR2] = ACTIONS(2262), - [anon_sym_PLUS_PLUS2] = ACTIONS(2262), - [anon_sym_SLASH2] = ACTIONS(2264), - [anon_sym_mod2] = ACTIONS(2262), - [anon_sym_SLASH_SLASH2] = ACTIONS(2262), - [anon_sym_PLUS2] = ACTIONS(2264), - [anon_sym_bit_DASHshl2] = ACTIONS(2262), - [anon_sym_bit_DASHshr2] = ACTIONS(2262), - [anon_sym_bit_DASHand2] = ACTIONS(2262), - [anon_sym_bit_DASHxor2] = ACTIONS(2262), - [anon_sym_bit_DASHor2] = ACTIONS(2262), - [anon_sym_COLON2] = ACTIONS(2262), - [anon_sym_err_GT] = ACTIONS(2264), - [anon_sym_out_GT] = ACTIONS(2264), - [anon_sym_e_GT] = ACTIONS(2264), - [anon_sym_o_GT] = ACTIONS(2264), - [anon_sym_err_PLUSout_GT] = ACTIONS(2264), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2264), - [anon_sym_o_PLUSe_GT] = ACTIONS(2264), - [anon_sym_e_PLUSo_GT] = ACTIONS(2264), - [anon_sym_err_GT_GT] = ACTIONS(2262), - [anon_sym_out_GT_GT] = ACTIONS(2262), - [anon_sym_e_GT_GT] = ACTIONS(2262), - [anon_sym_o_GT_GT] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2262), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2402), + [sym__newline] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2402), + [anon_sym_err_GT_PIPE] = ACTIONS(2402), + [anon_sym_out_GT_PIPE] = ACTIONS(2402), + [anon_sym_e_GT_PIPE] = ACTIONS(2402), + [anon_sym_o_GT_PIPE] = ACTIONS(2402), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2402), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2402), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2402), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_GT2] = ACTIONS(2404), + [anon_sym_DASH2] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_EQ_GT] = ACTIONS(2402), + [anon_sym_STAR2] = ACTIONS(2404), + [anon_sym_and2] = ACTIONS(2402), + [anon_sym_xor2] = ACTIONS(2402), + [anon_sym_or2] = ACTIONS(2402), + [anon_sym_not_DASHin2] = ACTIONS(2402), + [anon_sym_has2] = ACTIONS(2402), + [anon_sym_not_DASHhas2] = ACTIONS(2402), + [anon_sym_starts_DASHwith2] = ACTIONS(2402), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2402), + [anon_sym_ends_DASHwith2] = ACTIONS(2402), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2402), + [anon_sym_EQ_EQ2] = ACTIONS(2402), + [anon_sym_BANG_EQ2] = ACTIONS(2402), + [anon_sym_LT2] = ACTIONS(2404), + [anon_sym_LT_EQ2] = ACTIONS(2402), + [anon_sym_GT_EQ2] = ACTIONS(2402), + [anon_sym_EQ_TILDE2] = ACTIONS(2402), + [anon_sym_BANG_TILDE2] = ACTIONS(2402), + [anon_sym_like2] = ACTIONS(2402), + [anon_sym_not_DASHlike2] = ACTIONS(2402), + [anon_sym_STAR_STAR2] = ACTIONS(2402), + [anon_sym_PLUS_PLUS2] = ACTIONS(2402), + [anon_sym_SLASH2] = ACTIONS(2404), + [anon_sym_mod2] = ACTIONS(2402), + [anon_sym_SLASH_SLASH2] = ACTIONS(2402), + [anon_sym_PLUS2] = ACTIONS(2404), + [anon_sym_bit_DASHshl2] = ACTIONS(2402), + [anon_sym_bit_DASHshr2] = ACTIONS(2402), + [anon_sym_bit_DASHand2] = ACTIONS(2402), + [anon_sym_bit_DASHxor2] = ACTIONS(2402), + [anon_sym_bit_DASHor2] = ACTIONS(2402), + [anon_sym_err_GT] = ACTIONS(2404), + [anon_sym_out_GT] = ACTIONS(2404), + [anon_sym_e_GT] = ACTIONS(2404), + [anon_sym_o_GT] = ACTIONS(2404), + [anon_sym_err_PLUSout_GT] = ACTIONS(2404), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2404), + [anon_sym_o_PLUSe_GT] = ACTIONS(2404), + [anon_sym_e_PLUSo_GT] = ACTIONS(2404), + [anon_sym_err_GT_GT] = ACTIONS(2402), + [anon_sym_out_GT_GT] = ACTIONS(2402), + [anon_sym_e_GT_GT] = ACTIONS(2402), + [anon_sym_o_GT_GT] = ACTIONS(2402), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2402), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2402), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2402), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2402), [anon_sym_POUND] = ACTIONS(3), }, [STATE(748)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1247), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(748), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_if] = ACTIONS(2406), + [anon_sym_in] = ACTIONS(2406), + [sym__newline] = ACTIONS(2406), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym_PIPE] = ACTIONS(2406), + [anon_sym_err_GT_PIPE] = ACTIONS(2406), + [anon_sym_out_GT_PIPE] = ACTIONS(2406), + [anon_sym_e_GT_PIPE] = ACTIONS(2406), + [anon_sym_o_GT_PIPE] = ACTIONS(2406), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2406), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2406), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2406), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2406), + [anon_sym_RPAREN] = ACTIONS(2406), + [anon_sym_GT2] = ACTIONS(2408), + [anon_sym_DASH2] = ACTIONS(2406), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_EQ_GT] = ACTIONS(2406), + [anon_sym_STAR2] = ACTIONS(2408), + [anon_sym_and2] = ACTIONS(2406), + [anon_sym_xor2] = ACTIONS(2406), + [anon_sym_or2] = ACTIONS(2406), + [anon_sym_not_DASHin2] = ACTIONS(2406), + [anon_sym_has2] = ACTIONS(2406), + [anon_sym_not_DASHhas2] = ACTIONS(2406), + [anon_sym_starts_DASHwith2] = ACTIONS(2406), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2406), + [anon_sym_ends_DASHwith2] = ACTIONS(2406), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2406), + [anon_sym_EQ_EQ2] = ACTIONS(2406), + [anon_sym_BANG_EQ2] = ACTIONS(2406), + [anon_sym_LT2] = ACTIONS(2408), + [anon_sym_LT_EQ2] = ACTIONS(2406), + [anon_sym_GT_EQ2] = ACTIONS(2406), + [anon_sym_EQ_TILDE2] = ACTIONS(2406), + [anon_sym_BANG_TILDE2] = ACTIONS(2406), + [anon_sym_like2] = ACTIONS(2406), + [anon_sym_not_DASHlike2] = ACTIONS(2406), + [anon_sym_STAR_STAR2] = ACTIONS(2406), + [anon_sym_PLUS_PLUS2] = ACTIONS(2406), + [anon_sym_SLASH2] = ACTIONS(2408), + [anon_sym_mod2] = ACTIONS(2406), + [anon_sym_SLASH_SLASH2] = ACTIONS(2406), + [anon_sym_PLUS2] = ACTIONS(2408), + [anon_sym_bit_DASHshl2] = ACTIONS(2406), + [anon_sym_bit_DASHshr2] = ACTIONS(2406), + [anon_sym_bit_DASHand2] = ACTIONS(2406), + [anon_sym_bit_DASHxor2] = ACTIONS(2406), + [anon_sym_bit_DASHor2] = ACTIONS(2406), + [anon_sym_err_GT] = ACTIONS(2408), + [anon_sym_out_GT] = ACTIONS(2408), + [anon_sym_e_GT] = ACTIONS(2408), + [anon_sym_o_GT] = ACTIONS(2408), + [anon_sym_err_PLUSout_GT] = ACTIONS(2408), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2408), + [anon_sym_o_PLUSe_GT] = ACTIONS(2408), + [anon_sym_e_PLUSo_GT] = ACTIONS(2408), + [anon_sym_err_GT_GT] = ACTIONS(2406), + [anon_sym_out_GT_GT] = ACTIONS(2406), + [anon_sym_e_GT_GT] = ACTIONS(2406), + [anon_sym_o_GT_GT] = ACTIONS(2406), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2406), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2406), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2406), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2406), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(749)] = { + [sym_comment] = STATE(749), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2410), + [sym__newline] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2410), + [anon_sym_err_GT_PIPE] = ACTIONS(2410), + [anon_sym_out_GT_PIPE] = ACTIONS(2410), + [anon_sym_e_GT_PIPE] = ACTIONS(2410), + [anon_sym_o_GT_PIPE] = ACTIONS(2410), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2410), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2410), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2410), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2410), + [anon_sym_RPAREN] = ACTIONS(2410), + [anon_sym_GT2] = ACTIONS(2412), + [anon_sym_DASH2] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_EQ_GT] = ACTIONS(2410), + [anon_sym_STAR2] = ACTIONS(2412), + [anon_sym_and2] = ACTIONS(2410), + [anon_sym_xor2] = ACTIONS(2410), + [anon_sym_or2] = ACTIONS(2410), + [anon_sym_not_DASHin2] = ACTIONS(2410), + [anon_sym_has2] = ACTIONS(2410), + [anon_sym_not_DASHhas2] = ACTIONS(2410), + [anon_sym_starts_DASHwith2] = ACTIONS(2410), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2410), + [anon_sym_ends_DASHwith2] = ACTIONS(2410), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2410), + [anon_sym_EQ_EQ2] = ACTIONS(2410), + [anon_sym_BANG_EQ2] = ACTIONS(2410), + [anon_sym_LT2] = ACTIONS(2412), + [anon_sym_LT_EQ2] = ACTIONS(2410), + [anon_sym_GT_EQ2] = ACTIONS(2410), + [anon_sym_EQ_TILDE2] = ACTIONS(2410), + [anon_sym_BANG_TILDE2] = ACTIONS(2410), + [anon_sym_like2] = ACTIONS(2410), + [anon_sym_not_DASHlike2] = ACTIONS(2410), + [anon_sym_STAR_STAR2] = ACTIONS(2410), + [anon_sym_PLUS_PLUS2] = ACTIONS(2410), + [anon_sym_SLASH2] = ACTIONS(2412), + [anon_sym_mod2] = ACTIONS(2410), + [anon_sym_SLASH_SLASH2] = ACTIONS(2410), + [anon_sym_PLUS2] = ACTIONS(2412), + [anon_sym_bit_DASHshl2] = ACTIONS(2410), + [anon_sym_bit_DASHshr2] = ACTIONS(2410), + [anon_sym_bit_DASHand2] = ACTIONS(2410), + [anon_sym_bit_DASHxor2] = ACTIONS(2410), + [anon_sym_bit_DASHor2] = ACTIONS(2410), + [anon_sym_err_GT] = ACTIONS(2412), + [anon_sym_out_GT] = ACTIONS(2412), + [anon_sym_e_GT] = ACTIONS(2412), + [anon_sym_o_GT] = ACTIONS(2412), + [anon_sym_err_PLUSout_GT] = ACTIONS(2412), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2412), + [anon_sym_o_PLUSe_GT] = ACTIONS(2412), + [anon_sym_e_PLUSo_GT] = ACTIONS(2412), + [anon_sym_err_GT_GT] = ACTIONS(2410), + [anon_sym_out_GT_GT] = ACTIONS(2410), + [anon_sym_e_GT_GT] = ACTIONS(2410), + [anon_sym_o_GT_GT] = ACTIONS(2410), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2410), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2410), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2410), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2410), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(750)] = { + [sym_comment] = STATE(750), + [anon_sym_in] = ACTIONS(2414), + [sym__newline] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2414), + [anon_sym_err_GT_PIPE] = ACTIONS(2414), + [anon_sym_out_GT_PIPE] = ACTIONS(2414), + [anon_sym_e_GT_PIPE] = ACTIONS(2414), + [anon_sym_o_GT_PIPE] = ACTIONS(2414), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2414), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2414), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2414), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2414), + [anon_sym_RPAREN] = ACTIONS(2414), + [anon_sym_GT2] = ACTIONS(2416), + [anon_sym_DASH2] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_EQ_GT] = ACTIONS(2414), + [anon_sym_STAR2] = ACTIONS(2416), + [anon_sym_and2] = ACTIONS(2414), + [anon_sym_xor2] = ACTIONS(2414), + [anon_sym_or2] = ACTIONS(2414), + [anon_sym_not_DASHin2] = ACTIONS(2414), + [anon_sym_has2] = ACTIONS(2414), + [anon_sym_not_DASHhas2] = ACTIONS(2414), + [anon_sym_starts_DASHwith2] = ACTIONS(2414), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2414), + [anon_sym_ends_DASHwith2] = ACTIONS(2414), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2414), + [anon_sym_EQ_EQ2] = ACTIONS(2414), + [anon_sym_BANG_EQ2] = ACTIONS(2414), + [anon_sym_LT2] = ACTIONS(2416), + [anon_sym_LT_EQ2] = ACTIONS(2414), + [anon_sym_GT_EQ2] = ACTIONS(2414), + [anon_sym_EQ_TILDE2] = ACTIONS(2414), + [anon_sym_BANG_TILDE2] = ACTIONS(2414), + [anon_sym_like2] = ACTIONS(2414), + [anon_sym_not_DASHlike2] = ACTIONS(2414), + [anon_sym_STAR_STAR2] = ACTIONS(2414), + [anon_sym_PLUS_PLUS2] = ACTIONS(2414), + [anon_sym_SLASH2] = ACTIONS(2416), + [anon_sym_mod2] = ACTIONS(2414), + [anon_sym_SLASH_SLASH2] = ACTIONS(2414), + [anon_sym_PLUS2] = ACTIONS(2416), + [anon_sym_bit_DASHshl2] = ACTIONS(2414), + [anon_sym_bit_DASHshr2] = ACTIONS(2414), + [anon_sym_bit_DASHand2] = ACTIONS(2414), + [anon_sym_bit_DASHxor2] = ACTIONS(2414), + [anon_sym_bit_DASHor2] = ACTIONS(2414), + [anon_sym_COLON2] = ACTIONS(2414), + [anon_sym_err_GT] = ACTIONS(2416), + [anon_sym_out_GT] = ACTIONS(2416), + [anon_sym_e_GT] = ACTIONS(2416), + [anon_sym_o_GT] = ACTIONS(2416), + [anon_sym_err_PLUSout_GT] = ACTIONS(2416), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2416), + [anon_sym_o_PLUSe_GT] = ACTIONS(2416), + [anon_sym_e_PLUSo_GT] = ACTIONS(2416), + [anon_sym_err_GT_GT] = ACTIONS(2414), + [anon_sym_out_GT_GT] = ACTIONS(2414), + [anon_sym_e_GT_GT] = ACTIONS(2414), + [anon_sym_o_GT_GT] = ACTIONS(2414), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2414), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2414), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2414), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2414), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(751)] = { + [sym_comment] = STATE(751), + [anon_sym_in] = ACTIONS(2414), + [sym__newline] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2414), + [anon_sym_err_GT_PIPE] = ACTIONS(2414), + [anon_sym_out_GT_PIPE] = ACTIONS(2414), + [anon_sym_e_GT_PIPE] = ACTIONS(2414), + [anon_sym_o_GT_PIPE] = ACTIONS(2414), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2414), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2414), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2414), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2414), + [anon_sym_RPAREN] = ACTIONS(2414), + [anon_sym_GT2] = ACTIONS(2416), + [anon_sym_DASH2] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_EQ_GT] = ACTIONS(2414), + [anon_sym_STAR2] = ACTIONS(2416), + [anon_sym_and2] = ACTIONS(2414), + [anon_sym_xor2] = ACTIONS(2414), + [anon_sym_or2] = ACTIONS(2414), + [anon_sym_not_DASHin2] = ACTIONS(2414), + [anon_sym_has2] = ACTIONS(2414), + [anon_sym_not_DASHhas2] = ACTIONS(2414), + [anon_sym_starts_DASHwith2] = ACTIONS(2414), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2414), + [anon_sym_ends_DASHwith2] = ACTIONS(2414), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2414), + [anon_sym_EQ_EQ2] = ACTIONS(2414), + [anon_sym_BANG_EQ2] = ACTIONS(2414), + [anon_sym_LT2] = ACTIONS(2416), + [anon_sym_LT_EQ2] = ACTIONS(2414), + [anon_sym_GT_EQ2] = ACTIONS(2414), + [anon_sym_EQ_TILDE2] = ACTIONS(2414), + [anon_sym_BANG_TILDE2] = ACTIONS(2414), + [anon_sym_like2] = ACTIONS(2414), + [anon_sym_not_DASHlike2] = ACTIONS(2414), + [anon_sym_STAR_STAR2] = ACTIONS(2414), + [anon_sym_PLUS_PLUS2] = ACTIONS(2414), + [anon_sym_SLASH2] = ACTIONS(2416), + [anon_sym_mod2] = ACTIONS(2414), + [anon_sym_SLASH_SLASH2] = ACTIONS(2414), + [anon_sym_PLUS2] = ACTIONS(2416), + [anon_sym_bit_DASHshl2] = ACTIONS(2414), + [anon_sym_bit_DASHshr2] = ACTIONS(2414), + [anon_sym_bit_DASHand2] = ACTIONS(2414), + [anon_sym_bit_DASHxor2] = ACTIONS(2414), + [anon_sym_bit_DASHor2] = ACTIONS(2414), + [anon_sym_COLON2] = ACTIONS(2414), + [anon_sym_err_GT] = ACTIONS(2416), + [anon_sym_out_GT] = ACTIONS(2416), + [anon_sym_e_GT] = ACTIONS(2416), + [anon_sym_o_GT] = ACTIONS(2416), + [anon_sym_err_PLUSout_GT] = ACTIONS(2416), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2416), + [anon_sym_o_PLUSe_GT] = ACTIONS(2416), + [anon_sym_e_PLUSo_GT] = ACTIONS(2416), + [anon_sym_err_GT_GT] = ACTIONS(2414), + [anon_sym_out_GT_GT] = ACTIONS(2414), + [anon_sym_e_GT_GT] = ACTIONS(2414), + [anon_sym_o_GT_GT] = ACTIONS(2414), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2414), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2414), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2414), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2414), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(752)] = { + [sym_comment] = STATE(752), + [anon_sym_in] = ACTIONS(2418), + [sym__newline] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_err_GT_PIPE] = ACTIONS(2418), + [anon_sym_out_GT_PIPE] = ACTIONS(2418), + [anon_sym_e_GT_PIPE] = ACTIONS(2418), + [anon_sym_o_GT_PIPE] = ACTIONS(2418), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_GT2] = ACTIONS(2420), + [anon_sym_DASH2] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(2418), + [anon_sym_STAR2] = ACTIONS(2420), + [anon_sym_and2] = ACTIONS(2418), + [anon_sym_xor2] = ACTIONS(2418), + [anon_sym_or2] = ACTIONS(2418), + [anon_sym_not_DASHin2] = ACTIONS(2418), + [anon_sym_has2] = ACTIONS(2418), + [anon_sym_not_DASHhas2] = ACTIONS(2418), + [anon_sym_starts_DASHwith2] = ACTIONS(2418), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), + [anon_sym_ends_DASHwith2] = ACTIONS(2418), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), + [anon_sym_EQ_EQ2] = ACTIONS(2418), + [anon_sym_BANG_EQ2] = ACTIONS(2418), + [anon_sym_LT2] = ACTIONS(2420), + [anon_sym_LT_EQ2] = ACTIONS(2418), + [anon_sym_GT_EQ2] = ACTIONS(2418), + [anon_sym_EQ_TILDE2] = ACTIONS(2418), + [anon_sym_BANG_TILDE2] = ACTIONS(2418), + [anon_sym_like2] = ACTIONS(2418), + [anon_sym_not_DASHlike2] = ACTIONS(2418), + [anon_sym_STAR_STAR2] = ACTIONS(2418), + [anon_sym_PLUS_PLUS2] = ACTIONS(2418), + [anon_sym_SLASH2] = ACTIONS(2420), + [anon_sym_mod2] = ACTIONS(2418), + [anon_sym_SLASH_SLASH2] = ACTIONS(2418), + [anon_sym_PLUS2] = ACTIONS(2420), + [anon_sym_bit_DASHshl2] = ACTIONS(2418), + [anon_sym_bit_DASHshr2] = ACTIONS(2418), + [anon_sym_bit_DASHand2] = ACTIONS(2418), + [anon_sym_bit_DASHxor2] = ACTIONS(2418), + [anon_sym_bit_DASHor2] = ACTIONS(2418), + [anon_sym_COLON2] = ACTIONS(2418), + [anon_sym_err_GT] = ACTIONS(2420), + [anon_sym_out_GT] = ACTIONS(2420), + [anon_sym_e_GT] = ACTIONS(2420), + [anon_sym_o_GT] = ACTIONS(2420), + [anon_sym_err_PLUSout_GT] = ACTIONS(2420), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), + [anon_sym_o_PLUSe_GT] = ACTIONS(2420), + [anon_sym_e_PLUSo_GT] = ACTIONS(2420), + [anon_sym_err_GT_GT] = ACTIONS(2418), + [anon_sym_out_GT_GT] = ACTIONS(2418), + [anon_sym_e_GT_GT] = ACTIONS(2418), + [anon_sym_o_GT_GT] = ACTIONS(2418), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(753)] = { + [sym_comment] = STATE(753), + [anon_sym_in] = ACTIONS(2422), + [sym__newline] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_err_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_GT_PIPE] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_GT2] = ACTIONS(2424), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_EQ_GT] = ACTIONS(2422), + [anon_sym_STAR2] = ACTIONS(2424), + [anon_sym_and2] = ACTIONS(2422), + [anon_sym_xor2] = ACTIONS(2422), + [anon_sym_or2] = ACTIONS(2422), + [anon_sym_not_DASHin2] = ACTIONS(2422), + [anon_sym_has2] = ACTIONS(2422), + [anon_sym_not_DASHhas2] = ACTIONS(2422), + [anon_sym_starts_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2422), + [anon_sym_ends_DASHwith2] = ACTIONS(2422), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2422), + [anon_sym_EQ_EQ2] = ACTIONS(2422), + [anon_sym_BANG_EQ2] = ACTIONS(2422), + [anon_sym_LT2] = ACTIONS(2424), + [anon_sym_LT_EQ2] = ACTIONS(2422), + [anon_sym_GT_EQ2] = ACTIONS(2422), + [anon_sym_EQ_TILDE2] = ACTIONS(2422), + [anon_sym_BANG_TILDE2] = ACTIONS(2422), + [anon_sym_like2] = ACTIONS(2422), + [anon_sym_not_DASHlike2] = ACTIONS(2422), + [anon_sym_STAR_STAR2] = ACTIONS(2422), + [anon_sym_PLUS_PLUS2] = ACTIONS(2422), + [anon_sym_SLASH2] = ACTIONS(2424), + [anon_sym_mod2] = ACTIONS(2422), + [anon_sym_SLASH_SLASH2] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2424), + [anon_sym_bit_DASHshl2] = ACTIONS(2422), + [anon_sym_bit_DASHshr2] = ACTIONS(2422), + [anon_sym_bit_DASHand2] = ACTIONS(2422), + [anon_sym_bit_DASHxor2] = ACTIONS(2422), + [anon_sym_bit_DASHor2] = ACTIONS(2422), + [anon_sym_COLON2] = ACTIONS(2422), + [anon_sym_err_GT] = ACTIONS(2424), + [anon_sym_out_GT] = ACTIONS(2424), + [anon_sym_e_GT] = ACTIONS(2424), + [anon_sym_o_GT] = ACTIONS(2424), + [anon_sym_err_PLUSout_GT] = ACTIONS(2424), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2424), + [anon_sym_o_PLUSe_GT] = ACTIONS(2424), + [anon_sym_e_PLUSo_GT] = ACTIONS(2424), + [anon_sym_err_GT_GT] = ACTIONS(2422), + [anon_sym_out_GT_GT] = ACTIONS(2422), + [anon_sym_e_GT_GT] = ACTIONS(2422), + [anon_sym_o_GT_GT] = ACTIONS(2422), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2422), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2422), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2422), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(754)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1189), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(699), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(754), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(749)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1251), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(749), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(755)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1190), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(686), + [sym__unquoted_with_expr] = STATE(969), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(755), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(750)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1254), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(750), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(756)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1193), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(914), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(756), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(751)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1203), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(751), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(757)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1194), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(695), + [sym__unquoted_with_expr] = STATE(919), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(757), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(752)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1133), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(752), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(758)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1201), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(698), + [sym__unquoted_with_expr] = STATE(920), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(758), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(753)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1136), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(753), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(759)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1203), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(707), + [sym__unquoted_with_expr] = STATE(922), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(759), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(754)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1138), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(754), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(760)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1217), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(923), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(760), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(755)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1140), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(755), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(761)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1221), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(925), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(761), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(756)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(756), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(762)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(927), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(713), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(762), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(757)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1142), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(757), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(763)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1222), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(716), + [sym__unquoted_with_expr] = STATE(931), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(763), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(758)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1144), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(758), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(764)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1225), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(718), + [sym__unquoted_with_expr] = STATE(932), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(764), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(759)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1145), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(759), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(765)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1226), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(719), + [sym__unquoted_with_expr] = STATE(909), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(765), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(760)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1147), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(760), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(766)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1227), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(939), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(456), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(720), + [sym__unquoted_with_expr] = STATE(937), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(766), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2082), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(761)] = { - [sym_cell_path] = STATE(1279), - [sym_path] = STATE(783), - [sym_comment] = STATE(761), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1878), - [anon_sym_in] = ACTIONS(1878), - [sym__newline] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_err_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_GT_PIPE] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1878), - [anon_sym_GT2] = ACTIONS(1880), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_STAR2] = ACTIONS(1880), - [anon_sym_and2] = ACTIONS(1878), - [anon_sym_xor2] = ACTIONS(1878), - [anon_sym_or2] = ACTIONS(1878), - [anon_sym_not_DASHin2] = ACTIONS(1878), - [anon_sym_has2] = ACTIONS(1878), - [anon_sym_not_DASHhas2] = ACTIONS(1878), - [anon_sym_starts_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1878), - [anon_sym_ends_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1878), - [anon_sym_EQ_EQ2] = ACTIONS(1878), - [anon_sym_BANG_EQ2] = ACTIONS(1878), - [anon_sym_LT2] = ACTIONS(1880), - [anon_sym_LT_EQ2] = ACTIONS(1878), - [anon_sym_GT_EQ2] = ACTIONS(1878), - [anon_sym_EQ_TILDE2] = ACTIONS(1878), - [anon_sym_BANG_TILDE2] = ACTIONS(1878), - [anon_sym_like2] = ACTIONS(1878), - [anon_sym_not_DASHlike2] = ACTIONS(1878), - [anon_sym_STAR_STAR2] = ACTIONS(1878), - [anon_sym_PLUS_PLUS2] = ACTIONS(1878), - [anon_sym_SLASH2] = ACTIONS(1880), - [anon_sym_mod2] = ACTIONS(1878), - [anon_sym_SLASH_SLASH2] = ACTIONS(1878), - [anon_sym_PLUS2] = ACTIONS(1880), - [anon_sym_bit_DASHshl2] = ACTIONS(1878), - [anon_sym_bit_DASHshr2] = ACTIONS(1878), - [anon_sym_bit_DASHand2] = ACTIONS(1878), - [anon_sym_bit_DASHxor2] = ACTIONS(1878), - [anon_sym_bit_DASHor2] = ACTIONS(1878), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1880), - [anon_sym_out_GT] = ACTIONS(1880), - [anon_sym_e_GT] = ACTIONS(1880), - [anon_sym_o_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT] = ACTIONS(1880), - [anon_sym_err_GT_GT] = ACTIONS(1878), - [anon_sym_out_GT_GT] = ACTIONS(1878), - [anon_sym_e_GT_GT] = ACTIONS(1878), - [anon_sym_o_GT_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(762)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1315), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1033), - [sym__unquoted_with_expr] = STATE(1280), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(762), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(763)] = { - [sym_comment] = STATE(763), - [anon_sym_in] = ACTIONS(2268), - [sym__newline] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_err_GT_PIPE] = ACTIONS(2268), - [anon_sym_out_GT_PIPE] = ACTIONS(2268), - [anon_sym_e_GT_PIPE] = ACTIONS(2268), - [anon_sym_o_GT_PIPE] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_GT2] = ACTIONS(2270), - [anon_sym_DASH2] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_EQ_GT] = ACTIONS(2268), - [anon_sym_STAR2] = ACTIONS(2270), - [anon_sym_and2] = ACTIONS(2268), - [anon_sym_xor2] = ACTIONS(2268), - [anon_sym_or2] = ACTIONS(2268), - [anon_sym_not_DASHin2] = ACTIONS(2268), - [anon_sym_has2] = ACTIONS(2268), - [anon_sym_not_DASHhas2] = ACTIONS(2268), - [anon_sym_starts_DASHwith2] = ACTIONS(2268), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2268), - [anon_sym_ends_DASHwith2] = ACTIONS(2268), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2268), - [anon_sym_EQ_EQ2] = ACTIONS(2268), - [anon_sym_BANG_EQ2] = ACTIONS(2268), - [anon_sym_LT2] = ACTIONS(2270), - [anon_sym_LT_EQ2] = ACTIONS(2268), - [anon_sym_GT_EQ2] = ACTIONS(2268), - [anon_sym_EQ_TILDE2] = ACTIONS(2268), - [anon_sym_BANG_TILDE2] = ACTIONS(2268), - [anon_sym_like2] = ACTIONS(2268), - [anon_sym_not_DASHlike2] = ACTIONS(2268), - [anon_sym_STAR_STAR2] = ACTIONS(2268), - [anon_sym_PLUS_PLUS2] = ACTIONS(2268), - [anon_sym_SLASH2] = ACTIONS(2270), - [anon_sym_mod2] = ACTIONS(2268), - [anon_sym_SLASH_SLASH2] = ACTIONS(2268), - [anon_sym_PLUS2] = ACTIONS(2270), - [anon_sym_bit_DASHshl2] = ACTIONS(2268), - [anon_sym_bit_DASHshr2] = ACTIONS(2268), - [anon_sym_bit_DASHand2] = ACTIONS(2268), - [anon_sym_bit_DASHxor2] = ACTIONS(2268), - [anon_sym_bit_DASHor2] = ACTIONS(2268), - [anon_sym_COLON2] = ACTIONS(2268), - [anon_sym_err_GT] = ACTIONS(2270), - [anon_sym_out_GT] = ACTIONS(2270), - [anon_sym_e_GT] = ACTIONS(2270), - [anon_sym_o_GT] = ACTIONS(2270), - [anon_sym_err_PLUSout_GT] = ACTIONS(2270), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2270), - [anon_sym_o_PLUSe_GT] = ACTIONS(2270), - [anon_sym_e_PLUSo_GT] = ACTIONS(2270), - [anon_sym_err_GT_GT] = ACTIONS(2268), - [anon_sym_out_GT_GT] = ACTIONS(2268), - [anon_sym_e_GT_GT] = ACTIONS(2268), - [anon_sym_o_GT_GT] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2268), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(764)] = { - [sym_comment] = STATE(764), - [anon_sym_in] = ACTIONS(2272), - [sym__newline] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2274), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_EQ_GT] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2274), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_has2] = ACTIONS(2272), - [anon_sym_not_DASHhas2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2274), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_like2] = ACTIONS(2272), - [anon_sym_not_DASHlike2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2274), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2274), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_COLON2] = ACTIONS(2272), - [anon_sym_err_GT] = ACTIONS(2274), - [anon_sym_out_GT] = ACTIONS(2274), - [anon_sym_e_GT] = ACTIONS(2274), - [anon_sym_o_GT] = ACTIONS(2274), - [anon_sym_err_PLUSout_GT] = ACTIONS(2274), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2274), - [anon_sym_o_PLUSe_GT] = ACTIONS(2274), - [anon_sym_e_PLUSo_GT] = ACTIONS(2274), - [anon_sym_err_GT_GT] = ACTIONS(2272), - [anon_sym_out_GT_GT] = ACTIONS(2272), - [anon_sym_e_GT_GT] = ACTIONS(2272), - [anon_sym_o_GT_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(765)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1286), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1086), - [sym__unquoted_with_expr] = STATE(1345), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(765), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(766)] = { - [sym_comment] = STATE(766), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_err_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_GT_PIPE] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2278), - [anon_sym_out_GT] = ACTIONS(2278), - [anon_sym_e_GT] = ACTIONS(2278), - [anon_sym_o_GT] = ACTIONS(2278), - [anon_sym_err_PLUSout_GT] = ACTIONS(2278), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), - [anon_sym_o_PLUSe_GT] = ACTIONS(2278), - [anon_sym_e_PLUSo_GT] = ACTIONS(2278), - [anon_sym_err_GT_GT] = ACTIONS(2276), - [anon_sym_out_GT_GT] = ACTIONS(2276), - [anon_sym_e_GT_GT] = ACTIONS(2276), - [anon_sym_o_GT_GT] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(767)] = { - [aux_sym__repeat_newline] = STATE(980), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_cell_path] = STATE(1340), + [sym_path] = STATE(775), [sym_comment] = STATE(767), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [aux_sym__where_predicate_lhs_repeat1] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(2008), + [anon_sym_in] = ACTIONS(2008), + [sym__newline] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_err_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_GT_PIPE] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2008), + [anon_sym_GT2] = ACTIONS(2010), + [anon_sym_DASH2] = ACTIONS(2008), + [anon_sym_STAR2] = ACTIONS(2010), + [anon_sym_and2] = ACTIONS(2008), + [anon_sym_xor2] = ACTIONS(2008), + [anon_sym_or2] = ACTIONS(2008), + [anon_sym_not_DASHin2] = ACTIONS(2008), + [anon_sym_has2] = ACTIONS(2008), + [anon_sym_not_DASHhas2] = ACTIONS(2008), + [anon_sym_starts_DASHwith2] = ACTIONS(2008), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2008), + [anon_sym_ends_DASHwith2] = ACTIONS(2008), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2008), + [anon_sym_EQ_EQ2] = ACTIONS(2008), + [anon_sym_BANG_EQ2] = ACTIONS(2008), + [anon_sym_LT2] = ACTIONS(2010), + [anon_sym_LT_EQ2] = ACTIONS(2008), + [anon_sym_GT_EQ2] = ACTIONS(2008), + [anon_sym_EQ_TILDE2] = ACTIONS(2008), + [anon_sym_BANG_TILDE2] = ACTIONS(2008), + [anon_sym_like2] = ACTIONS(2008), + [anon_sym_not_DASHlike2] = ACTIONS(2008), + [anon_sym_STAR_STAR2] = ACTIONS(2008), + [anon_sym_PLUS_PLUS2] = ACTIONS(2008), + [anon_sym_SLASH2] = ACTIONS(2010), + [anon_sym_mod2] = ACTIONS(2008), + [anon_sym_SLASH_SLASH2] = ACTIONS(2008), + [anon_sym_PLUS2] = ACTIONS(2010), + [anon_sym_bit_DASHshl2] = ACTIONS(2008), + [anon_sym_bit_DASHshr2] = ACTIONS(2008), + [anon_sym_bit_DASHand2] = ACTIONS(2008), + [anon_sym_bit_DASHxor2] = ACTIONS(2008), + [anon_sym_bit_DASHor2] = ACTIONS(2008), + [anon_sym_DOT2] = ACTIONS(2426), + [anon_sym_err_GT] = ACTIONS(2010), + [anon_sym_out_GT] = ACTIONS(2010), + [anon_sym_e_GT] = ACTIONS(2010), + [anon_sym_o_GT] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT] = ACTIONS(2010), + [anon_sym_err_GT_GT] = ACTIONS(2008), + [anon_sym_out_GT_GT] = ACTIONS(2008), + [anon_sym_e_GT_GT] = ACTIONS(2008), + [anon_sym_o_GT_GT] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2008), [anon_sym_POUND] = ACTIONS(3), }, [STATE(768)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1314), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1128), - [sym__unquoted_with_expr] = STATE(1284), - [sym__unquoted_anonymous_prefix] = STATE(4499), [sym_comment] = STATE(768), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2428), + [sym__newline] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2428), + [anon_sym_PIPE] = ACTIONS(2428), + [anon_sym_err_GT_PIPE] = ACTIONS(2428), + [anon_sym_out_GT_PIPE] = ACTIONS(2428), + [anon_sym_e_GT_PIPE] = ACTIONS(2428), + [anon_sym_o_GT_PIPE] = ACTIONS(2428), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2428), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2428), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2428), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2428), + [anon_sym_RPAREN] = ACTIONS(2428), + [anon_sym_GT2] = ACTIONS(2430), + [anon_sym_DASH2] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2428), + [anon_sym_RBRACE] = ACTIONS(2428), + [anon_sym_EQ_GT] = ACTIONS(2428), + [anon_sym_STAR2] = ACTIONS(2430), + [anon_sym_and2] = ACTIONS(2428), + [anon_sym_xor2] = ACTIONS(2428), + [anon_sym_or2] = ACTIONS(2428), + [anon_sym_not_DASHin2] = ACTIONS(2428), + [anon_sym_has2] = ACTIONS(2428), + [anon_sym_not_DASHhas2] = ACTIONS(2428), + [anon_sym_starts_DASHwith2] = ACTIONS(2428), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2428), + [anon_sym_ends_DASHwith2] = ACTIONS(2428), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2428), + [anon_sym_EQ_EQ2] = ACTIONS(2428), + [anon_sym_BANG_EQ2] = ACTIONS(2428), + [anon_sym_LT2] = ACTIONS(2430), + [anon_sym_LT_EQ2] = ACTIONS(2428), + [anon_sym_GT_EQ2] = ACTIONS(2428), + [anon_sym_EQ_TILDE2] = ACTIONS(2428), + [anon_sym_BANG_TILDE2] = ACTIONS(2428), + [anon_sym_like2] = ACTIONS(2428), + [anon_sym_not_DASHlike2] = ACTIONS(2428), + [anon_sym_STAR_STAR2] = ACTIONS(2428), + [anon_sym_PLUS_PLUS2] = ACTIONS(2428), + [anon_sym_SLASH2] = ACTIONS(2430), + [anon_sym_mod2] = ACTIONS(2428), + [anon_sym_SLASH_SLASH2] = ACTIONS(2428), + [anon_sym_PLUS2] = ACTIONS(2430), + [anon_sym_bit_DASHshl2] = ACTIONS(2428), + [anon_sym_bit_DASHshr2] = ACTIONS(2428), + [anon_sym_bit_DASHand2] = ACTIONS(2428), + [anon_sym_bit_DASHxor2] = ACTIONS(2428), + [anon_sym_bit_DASHor2] = ACTIONS(2428), + [anon_sym_COLON2] = ACTIONS(2428), + [anon_sym_err_GT] = ACTIONS(2430), + [anon_sym_out_GT] = ACTIONS(2430), + [anon_sym_e_GT] = ACTIONS(2430), + [anon_sym_o_GT] = ACTIONS(2430), + [anon_sym_err_PLUSout_GT] = ACTIONS(2430), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2430), + [anon_sym_o_PLUSe_GT] = ACTIONS(2430), + [anon_sym_e_PLUSo_GT] = ACTIONS(2430), + [anon_sym_err_GT_GT] = ACTIONS(2428), + [anon_sym_out_GT_GT] = ACTIONS(2428), + [anon_sym_e_GT_GT] = ACTIONS(2428), + [anon_sym_o_GT_GT] = ACTIONS(2428), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2428), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2428), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2428), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2428), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(769)] = { - [aux_sym__repeat_newline] = STATE(983), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(769), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2432), + [sym__newline] = ACTIONS(2432), + [anon_sym_SEMI] = ACTIONS(2432), + [anon_sym_PIPE] = ACTIONS(2432), + [anon_sym_err_GT_PIPE] = ACTIONS(2432), + [anon_sym_out_GT_PIPE] = ACTIONS(2432), + [anon_sym_e_GT_PIPE] = ACTIONS(2432), + [anon_sym_o_GT_PIPE] = ACTIONS(2432), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2432), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2432), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2432), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2432), + [anon_sym_RPAREN] = ACTIONS(2432), + [anon_sym_GT2] = ACTIONS(2434), + [anon_sym_DASH2] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2432), + [anon_sym_RBRACE] = ACTIONS(2432), + [anon_sym_EQ_GT] = ACTIONS(2432), + [anon_sym_STAR2] = ACTIONS(2434), + [anon_sym_and2] = ACTIONS(2432), + [anon_sym_xor2] = ACTIONS(2432), + [anon_sym_or2] = ACTIONS(2432), + [anon_sym_not_DASHin2] = ACTIONS(2432), + [anon_sym_has2] = ACTIONS(2432), + [anon_sym_not_DASHhas2] = ACTIONS(2432), + [anon_sym_starts_DASHwith2] = ACTIONS(2432), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2432), + [anon_sym_ends_DASHwith2] = ACTIONS(2432), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2432), + [anon_sym_EQ_EQ2] = ACTIONS(2432), + [anon_sym_BANG_EQ2] = ACTIONS(2432), + [anon_sym_LT2] = ACTIONS(2434), + [anon_sym_LT_EQ2] = ACTIONS(2432), + [anon_sym_GT_EQ2] = ACTIONS(2432), + [anon_sym_EQ_TILDE2] = ACTIONS(2432), + [anon_sym_BANG_TILDE2] = ACTIONS(2432), + [anon_sym_like2] = ACTIONS(2432), + [anon_sym_not_DASHlike2] = ACTIONS(2432), + [anon_sym_STAR_STAR2] = ACTIONS(2432), + [anon_sym_PLUS_PLUS2] = ACTIONS(2432), + [anon_sym_SLASH2] = ACTIONS(2434), + [anon_sym_mod2] = ACTIONS(2432), + [anon_sym_SLASH_SLASH2] = ACTIONS(2432), + [anon_sym_PLUS2] = ACTIONS(2434), + [anon_sym_bit_DASHshl2] = ACTIONS(2432), + [anon_sym_bit_DASHshr2] = ACTIONS(2432), + [anon_sym_bit_DASHand2] = ACTIONS(2432), + [anon_sym_bit_DASHxor2] = ACTIONS(2432), + [anon_sym_bit_DASHor2] = ACTIONS(2432), + [anon_sym_COLON2] = ACTIONS(2432), + [anon_sym_err_GT] = ACTIONS(2434), + [anon_sym_out_GT] = ACTIONS(2434), + [anon_sym_e_GT] = ACTIONS(2434), + [anon_sym_o_GT] = ACTIONS(2434), + [anon_sym_err_PLUSout_GT] = ACTIONS(2434), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2434), + [anon_sym_o_PLUSe_GT] = ACTIONS(2434), + [anon_sym_e_PLUSo_GT] = ACTIONS(2434), + [anon_sym_err_GT_GT] = ACTIONS(2432), + [anon_sym_out_GT_GT] = ACTIONS(2432), + [anon_sym_e_GT_GT] = ACTIONS(2432), + [anon_sym_o_GT_GT] = ACTIONS(2432), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2432), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2432), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2432), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2432), [anon_sym_POUND] = ACTIONS(3), }, [STATE(770)] = { - [aux_sym__repeat_newline] = STATE(986), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(770), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2436), + [sym__newline] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2436), + [anon_sym_PIPE] = ACTIONS(2436), + [anon_sym_err_GT_PIPE] = ACTIONS(2436), + [anon_sym_out_GT_PIPE] = ACTIONS(2436), + [anon_sym_e_GT_PIPE] = ACTIONS(2436), + [anon_sym_o_GT_PIPE] = ACTIONS(2436), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2436), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2436), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2436), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2436), + [anon_sym_RPAREN] = ACTIONS(2436), + [anon_sym_GT2] = ACTIONS(2438), + [anon_sym_DASH2] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2436), + [anon_sym_STAR2] = ACTIONS(2438), + [anon_sym_and2] = ACTIONS(2436), + [anon_sym_xor2] = ACTIONS(2436), + [anon_sym_or2] = ACTIONS(2436), + [anon_sym_not_DASHin2] = ACTIONS(2436), + [anon_sym_has2] = ACTIONS(2436), + [anon_sym_not_DASHhas2] = ACTIONS(2436), + [anon_sym_starts_DASHwith2] = ACTIONS(2436), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2436), + [anon_sym_ends_DASHwith2] = ACTIONS(2436), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2436), + [anon_sym_EQ_EQ2] = ACTIONS(2436), + [anon_sym_BANG_EQ2] = ACTIONS(2436), + [anon_sym_LT2] = ACTIONS(2438), + [anon_sym_LT_EQ2] = ACTIONS(2436), + [anon_sym_GT_EQ2] = ACTIONS(2436), + [anon_sym_EQ_TILDE2] = ACTIONS(2436), + [anon_sym_BANG_TILDE2] = ACTIONS(2436), + [anon_sym_like2] = ACTIONS(2436), + [anon_sym_not_DASHlike2] = ACTIONS(2436), + [anon_sym_STAR_STAR2] = ACTIONS(2436), + [anon_sym_PLUS_PLUS2] = ACTIONS(2436), + [anon_sym_SLASH2] = ACTIONS(2438), + [anon_sym_mod2] = ACTIONS(2436), + [anon_sym_SLASH_SLASH2] = ACTIONS(2436), + [anon_sym_PLUS2] = ACTIONS(2438), + [anon_sym_bit_DASHshl2] = ACTIONS(2436), + [anon_sym_bit_DASHshr2] = ACTIONS(2436), + [anon_sym_bit_DASHand2] = ACTIONS(2436), + [anon_sym_bit_DASHxor2] = ACTIONS(2436), + [anon_sym_bit_DASHor2] = ACTIONS(2436), + [anon_sym_DOT_DOT2] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(2438), + [anon_sym_out_GT] = ACTIONS(2438), + [anon_sym_e_GT] = ACTIONS(2438), + [anon_sym_o_GT] = ACTIONS(2438), + [anon_sym_err_PLUSout_GT] = ACTIONS(2438), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2438), + [anon_sym_o_PLUSe_GT] = ACTIONS(2438), + [anon_sym_e_PLUSo_GT] = ACTIONS(2438), + [anon_sym_err_GT_GT] = ACTIONS(2436), + [anon_sym_out_GT_GT] = ACTIONS(2436), + [anon_sym_e_GT_GT] = ACTIONS(2436), + [anon_sym_o_GT_GT] = ACTIONS(2436), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2436), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2436), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2436), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2436), [anon_sym_POUND] = ACTIONS(3), }, [STATE(771)] = { - [aux_sym__repeat_newline] = STATE(990), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1110), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(771), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(772)] = { - [aux_sym__repeat_newline] = STATE(992), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1121), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(772), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(773)] = { + [aux_sym__repeat_newline] = STATE(1124), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(773), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_err_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_GT_PIPE] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2287), - [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2289), - [anon_sym_out_GT] = ACTIONS(2289), - [anon_sym_e_GT] = ACTIONS(2289), - [anon_sym_o_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT] = ACTIONS(2289), - [anon_sym_err_GT_GT] = ACTIONS(2287), - [anon_sym_out_GT_GT] = ACTIONS(2287), - [anon_sym_e_GT_GT] = ACTIONS(2287), - [anon_sym_o_GT_GT] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2287), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(774)] = { - [aux_sym__repeat_newline] = STATE(994), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1132), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(774), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(775)] = { - [aux_sym__repeat_newline] = STATE(996), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(775), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [ts_builtin_sym_end] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [sym__newline] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_err_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_GT_PIPE] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1659), + [anon_sym_GT2] = ACTIONS(1657), + [anon_sym_DASH2] = ACTIONS(1659), + [anon_sym_STAR2] = ACTIONS(1657), + [anon_sym_and2] = ACTIONS(1659), + [anon_sym_xor2] = ACTIONS(1659), + [anon_sym_or2] = ACTIONS(1659), + [anon_sym_not_DASHin2] = ACTIONS(1659), + [anon_sym_has2] = ACTIONS(1659), + [anon_sym_not_DASHhas2] = ACTIONS(1659), + [anon_sym_starts_DASHwith2] = ACTIONS(1659), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1659), + [anon_sym_ends_DASHwith2] = ACTIONS(1659), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1659), + [anon_sym_EQ_EQ2] = ACTIONS(1659), + [anon_sym_BANG_EQ2] = ACTIONS(1659), + [anon_sym_LT2] = ACTIONS(1657), + [anon_sym_LT_EQ2] = ACTIONS(1659), + [anon_sym_GT_EQ2] = ACTIONS(1659), + [anon_sym_EQ_TILDE2] = ACTIONS(1659), + [anon_sym_BANG_TILDE2] = ACTIONS(1659), + [anon_sym_like2] = ACTIONS(1659), + [anon_sym_not_DASHlike2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1659), + [anon_sym_PLUS_PLUS2] = ACTIONS(1659), + [anon_sym_SLASH2] = ACTIONS(1657), + [anon_sym_mod2] = ACTIONS(1659), + [anon_sym_SLASH_SLASH2] = ACTIONS(1659), + [anon_sym_PLUS2] = ACTIONS(1657), + [anon_sym_bit_DASHshl2] = ACTIONS(1659), + [anon_sym_bit_DASHshr2] = ACTIONS(1659), + [anon_sym_bit_DASHand2] = ACTIONS(1659), + [anon_sym_bit_DASHxor2] = ACTIONS(1659), + [anon_sym_bit_DASHor2] = ACTIONS(1659), + [anon_sym_DOT_DOT2] = ACTIONS(1657), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1659), + [anon_sym_DOT2] = ACTIONS(1657), + [anon_sym_err_GT] = ACTIONS(1657), + [anon_sym_out_GT] = ACTIONS(1657), + [anon_sym_e_GT] = ACTIONS(1657), + [anon_sym_o_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT] = ACTIONS(1657), + [anon_sym_err_GT_GT] = ACTIONS(1659), + [anon_sym_out_GT_GT] = ACTIONS(1659), + [anon_sym_e_GT_GT] = ACTIONS(1659), + [anon_sym_o_GT_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(3), }, [STATE(776)] = { - [aux_sym__repeat_newline] = STATE(998), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1057), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(776), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(777)] = { - [aux_sym__repeat_newline] = STATE(1002), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1012), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(777), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(778)] = { - [aux_sym__repeat_newline] = STATE(1004), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1076), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(778), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(779)] = { + [aux_sym__repeat_newline] = STATE(1085), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(779), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2291), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(780)] = { - [aux_sym__repeat_newline] = STATE(1007), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1131), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(780), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(781)] = { - [aux_sym__repeat_newline] = STATE(1009), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1010), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(781), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(782)] = { - [aux_sym__repeat_newline] = STATE(1011), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(782), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(1882), + [sym__newline] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_err_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_GT_PIPE] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_GT2] = ACTIONS(1884), + [anon_sym_DASH2] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_STAR2] = ACTIONS(1884), + [anon_sym_and2] = ACTIONS(1882), + [anon_sym_xor2] = ACTIONS(1882), + [anon_sym_or2] = ACTIONS(1882), + [anon_sym_not_DASHin2] = ACTIONS(1882), + [anon_sym_has2] = ACTIONS(1882), + [anon_sym_not_DASHhas2] = ACTIONS(1882), + [anon_sym_starts_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), + [anon_sym_ends_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), + [anon_sym_EQ_EQ2] = ACTIONS(1882), + [anon_sym_BANG_EQ2] = ACTIONS(1882), + [anon_sym_LT2] = ACTIONS(1884), + [anon_sym_LT_EQ2] = ACTIONS(1882), + [anon_sym_GT_EQ2] = ACTIONS(1882), + [anon_sym_EQ_TILDE2] = ACTIONS(1882), + [anon_sym_BANG_TILDE2] = ACTIONS(1882), + [anon_sym_like2] = ACTIONS(1882), + [anon_sym_not_DASHlike2] = ACTIONS(1882), + [anon_sym_STAR_STAR2] = ACTIONS(1882), + [anon_sym_PLUS_PLUS2] = ACTIONS(1882), + [anon_sym_SLASH2] = ACTIONS(1884), + [anon_sym_mod2] = ACTIONS(1882), + [anon_sym_SLASH_SLASH2] = ACTIONS(1882), + [anon_sym_PLUS2] = ACTIONS(1884), + [anon_sym_bit_DASHshl2] = ACTIONS(1882), + [anon_sym_bit_DASHshr2] = ACTIONS(1882), + [anon_sym_bit_DASHand2] = ACTIONS(1882), + [anon_sym_bit_DASHxor2] = ACTIONS(1882), + [anon_sym_bit_DASHor2] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(2444), + [aux_sym__immediate_decimal_token5] = ACTIONS(1888), + [anon_sym_err_GT] = ACTIONS(1884), + [anon_sym_out_GT] = ACTIONS(1884), + [anon_sym_e_GT] = ACTIONS(1884), + [anon_sym_o_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT] = ACTIONS(1884), + [anon_sym_err_GT_GT] = ACTIONS(1882), + [anon_sym_out_GT_GT] = ACTIONS(1882), + [anon_sym_e_GT_GT] = ACTIONS(1882), + [anon_sym_o_GT_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), [anon_sym_POUND] = ACTIONS(3), }, [STATE(783)] = { + [aux_sym__repeat_newline] = STATE(1016), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(784)] = { + [aux_sym__repeat_newline] = STATE(1031), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(784), - [ts_builtin_sym_end] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1522), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(785)] = { - [sym_cell_path] = STATE(1272), - [sym_path] = STATE(783), + [aux_sym__repeat_newline] = STATE(1042), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(785), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1858), - [anon_sym_in] = ACTIONS(1858), - [sym__newline] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_GT2] = ACTIONS(1860), - [anon_sym_DASH2] = ACTIONS(1858), - [anon_sym_STAR2] = ACTIONS(1860), - [anon_sym_and2] = ACTIONS(1858), - [anon_sym_xor2] = ACTIONS(1858), - [anon_sym_or2] = ACTIONS(1858), - [anon_sym_not_DASHin2] = ACTIONS(1858), - [anon_sym_has2] = ACTIONS(1858), - [anon_sym_not_DASHhas2] = ACTIONS(1858), - [anon_sym_starts_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), - [anon_sym_ends_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), - [anon_sym_EQ_EQ2] = ACTIONS(1858), - [anon_sym_BANG_EQ2] = ACTIONS(1858), - [anon_sym_LT2] = ACTIONS(1860), - [anon_sym_LT_EQ2] = ACTIONS(1858), - [anon_sym_GT_EQ2] = ACTIONS(1858), - [anon_sym_EQ_TILDE2] = ACTIONS(1858), - [anon_sym_BANG_TILDE2] = ACTIONS(1858), - [anon_sym_like2] = ACTIONS(1858), - [anon_sym_not_DASHlike2] = ACTIONS(1858), - [anon_sym_STAR_STAR2] = ACTIONS(1858), - [anon_sym_PLUS_PLUS2] = ACTIONS(1858), - [anon_sym_SLASH2] = ACTIONS(1860), - [anon_sym_mod2] = ACTIONS(1858), - [anon_sym_SLASH_SLASH2] = ACTIONS(1858), - [anon_sym_PLUS2] = ACTIONS(1860), - [anon_sym_bit_DASHshl2] = ACTIONS(1858), - [anon_sym_bit_DASHshr2] = ACTIONS(1858), - [anon_sym_bit_DASHand2] = ACTIONS(1858), - [anon_sym_bit_DASHxor2] = ACTIONS(1858), - [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1860), - [anon_sym_out_GT] = ACTIONS(1860), - [anon_sym_e_GT] = ACTIONS(1860), - [anon_sym_o_GT] = ACTIONS(1860), - [anon_sym_err_PLUSout_GT] = ACTIONS(1860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), - [anon_sym_o_PLUSe_GT] = ACTIONS(1860), - [anon_sym_e_PLUSo_GT] = ACTIONS(1860), - [anon_sym_err_GT_GT] = ACTIONS(1858), - [anon_sym_out_GT_GT] = ACTIONS(1858), - [anon_sym_e_GT_GT] = ACTIONS(1858), - [anon_sym_o_GT_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(786)] = { + [sym_cell_path] = STATE(1298), + [sym_path] = STATE(775), [sym_comment] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(2293), - [aux_sym__immediate_decimal_token5] = ACTIONS(2295), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [aux_sym__where_predicate_lhs_repeat1] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [sym__newline] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_err_GT_PIPE] = ACTIONS(2032), + [anon_sym_out_GT_PIPE] = ACTIONS(2032), + [anon_sym_e_GT_PIPE] = ACTIONS(2032), + [anon_sym_o_GT_PIPE] = ACTIONS(2032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2032), + [anon_sym_GT2] = ACTIONS(2035), + [anon_sym_DASH2] = ACTIONS(2032), + [anon_sym_STAR2] = ACTIONS(2035), + [anon_sym_and2] = ACTIONS(2032), + [anon_sym_xor2] = ACTIONS(2032), + [anon_sym_or2] = ACTIONS(2032), + [anon_sym_not_DASHin2] = ACTIONS(2032), + [anon_sym_has2] = ACTIONS(2032), + [anon_sym_not_DASHhas2] = ACTIONS(2032), + [anon_sym_starts_DASHwith2] = ACTIONS(2032), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2032), + [anon_sym_ends_DASHwith2] = ACTIONS(2032), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2032), + [anon_sym_EQ_EQ2] = ACTIONS(2032), + [anon_sym_BANG_EQ2] = ACTIONS(2032), + [anon_sym_LT2] = ACTIONS(2035), + [anon_sym_LT_EQ2] = ACTIONS(2032), + [anon_sym_GT_EQ2] = ACTIONS(2032), + [anon_sym_EQ_TILDE2] = ACTIONS(2032), + [anon_sym_BANG_TILDE2] = ACTIONS(2032), + [anon_sym_like2] = ACTIONS(2032), + [anon_sym_not_DASHlike2] = ACTIONS(2032), + [anon_sym_STAR_STAR2] = ACTIONS(2032), + [anon_sym_PLUS_PLUS2] = ACTIONS(2032), + [anon_sym_SLASH2] = ACTIONS(2035), + [anon_sym_mod2] = ACTIONS(2032), + [anon_sym_SLASH_SLASH2] = ACTIONS(2032), + [anon_sym_PLUS2] = ACTIONS(2035), + [anon_sym_bit_DASHshl2] = ACTIONS(2032), + [anon_sym_bit_DASHshr2] = ACTIONS(2032), + [anon_sym_bit_DASHand2] = ACTIONS(2032), + [anon_sym_bit_DASHxor2] = ACTIONS(2032), + [anon_sym_bit_DASHor2] = ACTIONS(2032), + [anon_sym_DOT2] = ACTIONS(2426), + [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(2032), + [anon_sym_out_GT_GT] = ACTIONS(2032), + [anon_sym_e_GT_GT] = ACTIONS(2032), + [anon_sym_o_GT_GT] = ACTIONS(2032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2032), [anon_sym_POUND] = ACTIONS(3), }, [STATE(787)] = { - [sym_cell_path] = STATE(1273), - [sym_path] = STATE(783), + [sym_cell_path] = STATE(1302), + [sym_path] = STATE(775), [sym_comment] = STATE(787), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [sym__newline] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_err_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_GT_PIPE] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), - [anon_sym_GT2] = ACTIONS(1864), - [anon_sym_DASH2] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1864), - [anon_sym_and2] = ACTIONS(1862), - [anon_sym_xor2] = ACTIONS(1862), - [anon_sym_or2] = ACTIONS(1862), - [anon_sym_not_DASHin2] = ACTIONS(1862), - [anon_sym_has2] = ACTIONS(1862), - [anon_sym_not_DASHhas2] = ACTIONS(1862), - [anon_sym_starts_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), - [anon_sym_ends_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), - [anon_sym_EQ_EQ2] = ACTIONS(1862), - [anon_sym_BANG_EQ2] = ACTIONS(1862), - [anon_sym_LT2] = ACTIONS(1864), - [anon_sym_LT_EQ2] = ACTIONS(1862), - [anon_sym_GT_EQ2] = ACTIONS(1862), - [anon_sym_EQ_TILDE2] = ACTIONS(1862), - [anon_sym_BANG_TILDE2] = ACTIONS(1862), - [anon_sym_like2] = ACTIONS(1862), - [anon_sym_not_DASHlike2] = ACTIONS(1862), - [anon_sym_STAR_STAR2] = ACTIONS(1862), - [anon_sym_PLUS_PLUS2] = ACTIONS(1862), - [anon_sym_SLASH2] = ACTIONS(1864), - [anon_sym_mod2] = ACTIONS(1862), - [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1864), - [anon_sym_bit_DASHshl2] = ACTIONS(1862), - [anon_sym_bit_DASHshr2] = ACTIONS(1862), - [anon_sym_bit_DASHand2] = ACTIONS(1862), - [anon_sym_bit_DASHxor2] = ACTIONS(1862), - [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1864), - [anon_sym_out_GT] = ACTIONS(1864), - [anon_sym_e_GT] = ACTIONS(1864), - [anon_sym_o_GT] = ACTIONS(1864), - [anon_sym_err_PLUSout_GT] = ACTIONS(1864), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), - [anon_sym_o_PLUSe_GT] = ACTIONS(1864), - [anon_sym_e_PLUSo_GT] = ACTIONS(1864), - [anon_sym_err_GT_GT] = ACTIONS(1862), - [anon_sym_out_GT_GT] = ACTIONS(1862), - [anon_sym_e_GT_GT] = ACTIONS(1862), - [anon_sym_o_GT_GT] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), + [aux_sym__where_predicate_lhs_repeat1] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [sym__newline] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_err_GT_PIPE] = ACTIONS(2016), + [anon_sym_out_GT_PIPE] = ACTIONS(2016), + [anon_sym_e_GT_PIPE] = ACTIONS(2016), + [anon_sym_o_GT_PIPE] = ACTIONS(2016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2016), + [anon_sym_GT2] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2016), + [anon_sym_STAR2] = ACTIONS(2018), + [anon_sym_and2] = ACTIONS(2016), + [anon_sym_xor2] = ACTIONS(2016), + [anon_sym_or2] = ACTIONS(2016), + [anon_sym_not_DASHin2] = ACTIONS(2016), + [anon_sym_has2] = ACTIONS(2016), + [anon_sym_not_DASHhas2] = ACTIONS(2016), + [anon_sym_starts_DASHwith2] = ACTIONS(2016), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2016), + [anon_sym_ends_DASHwith2] = ACTIONS(2016), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2016), + [anon_sym_EQ_EQ2] = ACTIONS(2016), + [anon_sym_BANG_EQ2] = ACTIONS(2016), + [anon_sym_LT2] = ACTIONS(2018), + [anon_sym_LT_EQ2] = ACTIONS(2016), + [anon_sym_GT_EQ2] = ACTIONS(2016), + [anon_sym_EQ_TILDE2] = ACTIONS(2016), + [anon_sym_BANG_TILDE2] = ACTIONS(2016), + [anon_sym_like2] = ACTIONS(2016), + [anon_sym_not_DASHlike2] = ACTIONS(2016), + [anon_sym_STAR_STAR2] = ACTIONS(2016), + [anon_sym_PLUS_PLUS2] = ACTIONS(2016), + [anon_sym_SLASH2] = ACTIONS(2018), + [anon_sym_mod2] = ACTIONS(2016), + [anon_sym_SLASH_SLASH2] = ACTIONS(2016), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_bit_DASHshl2] = ACTIONS(2016), + [anon_sym_bit_DASHshr2] = ACTIONS(2016), + [anon_sym_bit_DASHand2] = ACTIONS(2016), + [anon_sym_bit_DASHxor2] = ACTIONS(2016), + [anon_sym_bit_DASHor2] = ACTIONS(2016), + [anon_sym_DOT2] = ACTIONS(2426), + [anon_sym_err_GT] = ACTIONS(2018), + [anon_sym_out_GT] = ACTIONS(2018), + [anon_sym_e_GT] = ACTIONS(2018), + [anon_sym_o_GT] = ACTIONS(2018), + [anon_sym_err_PLUSout_GT] = ACTIONS(2018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2018), + [anon_sym_o_PLUSe_GT] = ACTIONS(2018), + [anon_sym_e_PLUSo_GT] = ACTIONS(2018), + [anon_sym_err_GT_GT] = ACTIONS(2016), + [anon_sym_out_GT_GT] = ACTIONS(2016), + [anon_sym_e_GT_GT] = ACTIONS(2016), + [anon_sym_o_GT_GT] = ACTIONS(2016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2016), [anon_sym_POUND] = ACTIONS(3), }, [STATE(788)] = { - [aux_sym__repeat_newline] = STATE(912), - [aux_sym__pipe_separator] = STATE(885), + [sym_cell_path] = STATE(1303), + [sym_path] = STATE(775), [sym_comment] = STATE(788), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_alias] = ACTIONS(2299), - [anon_sym_let] = ACTIONS(2299), - [anon_sym_mut] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [aux_sym_cmd_identifier_token1] = ACTIONS(2297), - [anon_sym_def] = ACTIONS(2299), - [anon_sym_use] = ACTIONS(2299), - [anon_sym_export_DASHenv] = ACTIONS(2299), - [anon_sym_extern] = ACTIONS(2299), - [anon_sym_module] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_loop] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_else] = ACTIONS(2299), - [anon_sym_try] = ACTIONS(2299), - [anon_sym_catch] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2299), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2299), - [anon_sym_false] = ACTIONS(2299), - [anon_sym_null] = ACTIONS(2299), - [aux_sym_cmd_identifier_token3] = ACTIONS(2299), - [aux_sym_cmd_identifier_token4] = ACTIONS(2299), - [aux_sym_cmd_identifier_token5] = ACTIONS(2299), - [sym__newline] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_err_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_GT_PIPE] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2297), - [anon_sym_DASH2] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_DOT_DOT] = ACTIONS(2297), - [anon_sym_where] = ACTIONS(2299), - [aux_sym_expr_unary_token1] = ACTIONS(2299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2299), - [anon_sym_DOT_DOT_LT] = ACTIONS(2299), - [aux_sym__val_number_decimal_token1] = ACTIONS(2297), - [aux_sym__val_number_decimal_token2] = ACTIONS(2299), - [aux_sym__val_number_decimal_token3] = ACTIONS(2299), - [aux_sym__val_number_decimal_token4] = ACTIONS(2299), - [aux_sym__val_number_token1] = ACTIONS(2299), - [aux_sym__val_number_token2] = ACTIONS(2299), - [aux_sym__val_number_token3] = ACTIONS(2299), - [anon_sym_0b] = ACTIONS(2297), - [anon_sym_0o] = ACTIONS(2297), - [anon_sym_0x] = ACTIONS(2297), - [sym_val_date] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(2299), - [anon_sym_SQUOTE] = ACTIONS(2299), - [anon_sym_BQUOTE] = ACTIONS(2299), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2299), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2299), - [anon_sym_CARET] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2299), + [aux_sym__where_predicate_lhs_repeat1] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(2024), + [anon_sym_in] = ACTIONS(2024), + [sym__newline] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_err_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_GT_PIPE] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2024), + [anon_sym_GT2] = ACTIONS(2026), + [anon_sym_DASH2] = ACTIONS(2024), + [anon_sym_STAR2] = ACTIONS(2026), + [anon_sym_and2] = ACTIONS(2024), + [anon_sym_xor2] = ACTIONS(2024), + [anon_sym_or2] = ACTIONS(2024), + [anon_sym_not_DASHin2] = ACTIONS(2024), + [anon_sym_has2] = ACTIONS(2024), + [anon_sym_not_DASHhas2] = ACTIONS(2024), + [anon_sym_starts_DASHwith2] = ACTIONS(2024), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2024), + [anon_sym_ends_DASHwith2] = ACTIONS(2024), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2024), + [anon_sym_EQ_EQ2] = ACTIONS(2024), + [anon_sym_BANG_EQ2] = ACTIONS(2024), + [anon_sym_LT2] = ACTIONS(2026), + [anon_sym_LT_EQ2] = ACTIONS(2024), + [anon_sym_GT_EQ2] = ACTIONS(2024), + [anon_sym_EQ_TILDE2] = ACTIONS(2024), + [anon_sym_BANG_TILDE2] = ACTIONS(2024), + [anon_sym_like2] = ACTIONS(2024), + [anon_sym_not_DASHlike2] = ACTIONS(2024), + [anon_sym_STAR_STAR2] = ACTIONS(2024), + [anon_sym_PLUS_PLUS2] = ACTIONS(2024), + [anon_sym_SLASH2] = ACTIONS(2026), + [anon_sym_mod2] = ACTIONS(2024), + [anon_sym_SLASH_SLASH2] = ACTIONS(2024), + [anon_sym_PLUS2] = ACTIONS(2026), + [anon_sym_bit_DASHshl2] = ACTIONS(2024), + [anon_sym_bit_DASHshr2] = ACTIONS(2024), + [anon_sym_bit_DASHand2] = ACTIONS(2024), + [anon_sym_bit_DASHxor2] = ACTIONS(2024), + [anon_sym_bit_DASHor2] = ACTIONS(2024), + [anon_sym_DOT2] = ACTIONS(2426), + [anon_sym_err_GT] = ACTIONS(2026), + [anon_sym_out_GT] = ACTIONS(2026), + [anon_sym_e_GT] = ACTIONS(2026), + [anon_sym_o_GT] = ACTIONS(2026), + [anon_sym_err_PLUSout_GT] = ACTIONS(2026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2026), + [anon_sym_o_PLUSe_GT] = ACTIONS(2026), + [anon_sym_e_PLUSo_GT] = ACTIONS(2026), + [anon_sym_err_GT_GT] = ACTIONS(2024), + [anon_sym_out_GT_GT] = ACTIONS(2024), + [anon_sym_e_GT_GT] = ACTIONS(2024), + [anon_sym_o_GT_GT] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2024), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(789)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4300), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4588), - [sym__record_key] = STATE(4971), [sym_comment] = STATE(789), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [ts_builtin_sym_end] = ACTIONS(1692), + [anon_sym_in] = ACTIONS(1692), + [sym__newline] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_err_GT_PIPE] = ACTIONS(1692), + [anon_sym_out_GT_PIPE] = ACTIONS(1692), + [anon_sym_e_GT_PIPE] = ACTIONS(1692), + [anon_sym_o_GT_PIPE] = ACTIONS(1692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1692), + [anon_sym_GT2] = ACTIONS(1690), + [anon_sym_DASH2] = ACTIONS(1692), + [anon_sym_STAR2] = ACTIONS(1690), + [anon_sym_and2] = ACTIONS(1692), + [anon_sym_xor2] = ACTIONS(1692), + [anon_sym_or2] = ACTIONS(1692), + [anon_sym_not_DASHin2] = ACTIONS(1692), + [anon_sym_has2] = ACTIONS(1692), + [anon_sym_not_DASHhas2] = ACTIONS(1692), + [anon_sym_starts_DASHwith2] = ACTIONS(1692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1692), + [anon_sym_ends_DASHwith2] = ACTIONS(1692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1692), + [anon_sym_EQ_EQ2] = ACTIONS(1692), + [anon_sym_BANG_EQ2] = ACTIONS(1692), + [anon_sym_LT2] = ACTIONS(1690), + [anon_sym_LT_EQ2] = ACTIONS(1692), + [anon_sym_GT_EQ2] = ACTIONS(1692), + [anon_sym_EQ_TILDE2] = ACTIONS(1692), + [anon_sym_BANG_TILDE2] = ACTIONS(1692), + [anon_sym_like2] = ACTIONS(1692), + [anon_sym_not_DASHlike2] = ACTIONS(1692), + [anon_sym_STAR_STAR2] = ACTIONS(1692), + [anon_sym_PLUS_PLUS2] = ACTIONS(1692), + [anon_sym_SLASH2] = ACTIONS(1690), + [anon_sym_mod2] = ACTIONS(1692), + [anon_sym_SLASH_SLASH2] = ACTIONS(1692), + [anon_sym_PLUS2] = ACTIONS(1690), + [anon_sym_bit_DASHshl2] = ACTIONS(1692), + [anon_sym_bit_DASHshr2] = ACTIONS(1692), + [anon_sym_bit_DASHand2] = ACTIONS(1692), + [anon_sym_bit_DASHxor2] = ACTIONS(1692), + [anon_sym_bit_DASHor2] = ACTIONS(1692), + [anon_sym_DOT_DOT2] = ACTIONS(1690), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1692), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1692), + [anon_sym_DOT2] = ACTIONS(1690), + [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(1692), + [anon_sym_out_GT_GT] = ACTIONS(1692), + [anon_sym_e_GT_GT] = ACTIONS(1692), + [anon_sym_o_GT_GT] = ACTIONS(1692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1692), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(790)] = { - [sym_cell_path] = STATE(1292), - [sym_path] = STATE(783), + [aux_sym__repeat_newline] = STATE(917), + [aux_sym__pipe_separator] = STATE(892), [sym_comment] = STATE(790), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1850), - [anon_sym_in] = ACTIONS(1850), - [sym__newline] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_err_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_GT_PIPE] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1850), - [anon_sym_GT2] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1850), - [anon_sym_STAR2] = ACTIONS(1853), - [anon_sym_and2] = ACTIONS(1850), - [anon_sym_xor2] = ACTIONS(1850), - [anon_sym_or2] = ACTIONS(1850), - [anon_sym_not_DASHin2] = ACTIONS(1850), - [anon_sym_has2] = ACTIONS(1850), - [anon_sym_not_DASHhas2] = ACTIONS(1850), - [anon_sym_starts_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1850), - [anon_sym_ends_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1850), - [anon_sym_EQ_EQ2] = ACTIONS(1850), - [anon_sym_BANG_EQ2] = ACTIONS(1850), - [anon_sym_LT2] = ACTIONS(1853), - [anon_sym_LT_EQ2] = ACTIONS(1850), - [anon_sym_GT_EQ2] = ACTIONS(1850), - [anon_sym_EQ_TILDE2] = ACTIONS(1850), - [anon_sym_BANG_TILDE2] = ACTIONS(1850), - [anon_sym_like2] = ACTIONS(1850), - [anon_sym_not_DASHlike2] = ACTIONS(1850), - [anon_sym_STAR_STAR2] = ACTIONS(1850), - [anon_sym_PLUS_PLUS2] = ACTIONS(1850), - [anon_sym_SLASH2] = ACTIONS(1853), - [anon_sym_mod2] = ACTIONS(1850), - [anon_sym_SLASH_SLASH2] = ACTIONS(1850), - [anon_sym_PLUS2] = ACTIONS(1853), - [anon_sym_bit_DASHshl2] = ACTIONS(1850), - [anon_sym_bit_DASHshr2] = ACTIONS(1850), - [anon_sym_bit_DASHand2] = ACTIONS(1850), - [anon_sym_bit_DASHxor2] = ACTIONS(1850), - [anon_sym_bit_DASHor2] = ACTIONS(1850), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1853), - [anon_sym_out_GT] = ACTIONS(1853), - [anon_sym_e_GT] = ACTIONS(1853), - [anon_sym_o_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT] = ACTIONS(1853), - [anon_sym_err_GT_GT] = ACTIONS(1850), - [anon_sym_out_GT_GT] = ACTIONS(1850), - [anon_sym_e_GT_GT] = ACTIONS(1850), - [anon_sym_o_GT_GT] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2446), + [anon_sym_alias] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_mut] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [aux_sym_cmd_identifier_token1] = ACTIONS(2446), + [anon_sym_def] = ACTIONS(2448), + [anon_sym_use] = ACTIONS(2448), + [anon_sym_export_DASHenv] = ACTIONS(2448), + [anon_sym_extern] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_loop] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_catch] = ACTIONS(2448), + [anon_sym_match] = ACTIONS(2448), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2448), + [anon_sym_false] = ACTIONS(2448), + [anon_sym_null] = ACTIONS(2448), + [aux_sym_cmd_identifier_token3] = ACTIONS(2448), + [aux_sym_cmd_identifier_token4] = ACTIONS(2448), + [aux_sym_cmd_identifier_token5] = ACTIONS(2448), + [sym__newline] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_err_GT_PIPE] = ACTIONS(2452), + [anon_sym_out_GT_PIPE] = ACTIONS(2452), + [anon_sym_e_GT_PIPE] = ACTIONS(2452), + [anon_sym_o_GT_PIPE] = ACTIONS(2452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_DOLLAR] = ACTIONS(2446), + [anon_sym_DASH2] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_DOT_DOT] = ACTIONS(2446), + [anon_sym_where] = ACTIONS(2448), + [aux_sym_expr_unary_token1] = ACTIONS(2448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2448), + [anon_sym_DOT_DOT_LT] = ACTIONS(2448), + [aux_sym__val_number_decimal_token1] = ACTIONS(2446), + [aux_sym__val_number_decimal_token2] = ACTIONS(2448), + [aux_sym__val_number_decimal_token3] = ACTIONS(2448), + [aux_sym__val_number_decimal_token4] = ACTIONS(2448), + [aux_sym__val_number_token1] = ACTIONS(2448), + [aux_sym__val_number_token2] = ACTIONS(2448), + [aux_sym__val_number_token3] = ACTIONS(2448), + [anon_sym_0b] = ACTIONS(2446), + [anon_sym_0o] = ACTIONS(2446), + [anon_sym_0x] = ACTIONS(2446), + [sym_val_date] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_BQUOTE] = ACTIONS(2448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2448), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2448), }, [STATE(791)] = { [sym_comment] = STATE(791), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2305), - [aux_sym__immediate_decimal_token5] = ACTIONS(2307), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(2244), + [sym__newline] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2244), + [anon_sym_xor2] = ACTIONS(2244), + [anon_sym_or2] = ACTIONS(2244), + [anon_sym_not_DASHin2] = ACTIONS(2244), + [anon_sym_has2] = ACTIONS(2244), + [anon_sym_not_DASHhas2] = ACTIONS(2244), + [anon_sym_starts_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2244), + [anon_sym_ends_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2244), + [anon_sym_EQ_EQ2] = ACTIONS(2244), + [anon_sym_BANG_EQ2] = ACTIONS(2244), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2244), + [anon_sym_GT_EQ2] = ACTIONS(2244), + [anon_sym_EQ_TILDE2] = ACTIONS(2244), + [anon_sym_BANG_TILDE2] = ACTIONS(2244), + [anon_sym_like2] = ACTIONS(2244), + [anon_sym_not_DASHlike2] = ACTIONS(2244), + [anon_sym_STAR_STAR2] = ACTIONS(2244), + [anon_sym_PLUS_PLUS2] = ACTIONS(2244), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2244), + [anon_sym_SLASH_SLASH2] = ACTIONS(2244), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2244), + [anon_sym_bit_DASHshr2] = ACTIONS(2244), + [anon_sym_bit_DASHand2] = ACTIONS(2244), + [anon_sym_bit_DASHxor2] = ACTIONS(2244), + [anon_sym_bit_DASHor2] = ACTIONS(2244), + [anon_sym_DOT_DOT2] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), + [anon_sym_COLON2] = ACTIONS(1858), + [anon_sym_err_GT] = ACTIONS(2256), + [anon_sym_out_GT] = ACTIONS(2256), + [anon_sym_e_GT] = ACTIONS(2256), + [anon_sym_o_GT] = ACTIONS(2256), + [anon_sym_err_PLUSout_GT] = ACTIONS(2256), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2256), + [anon_sym_o_PLUSe_GT] = ACTIONS(2256), + [anon_sym_e_PLUSo_GT] = ACTIONS(2256), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), [anon_sym_POUND] = ACTIONS(3), }, [STATE(792)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(792), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(1920), + [anon_sym_in] = ACTIONS(1920), + [sym__newline] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_err_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_GT_PIPE] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1920), + [anon_sym_GT2] = ACTIONS(1922), + [anon_sym_DASH2] = ACTIONS(1920), + [anon_sym_STAR2] = ACTIONS(1922), + [anon_sym_and2] = ACTIONS(1920), + [anon_sym_xor2] = ACTIONS(1920), + [anon_sym_or2] = ACTIONS(1920), + [anon_sym_not_DASHin2] = ACTIONS(1920), + [anon_sym_has2] = ACTIONS(1920), + [anon_sym_not_DASHhas2] = ACTIONS(1920), + [anon_sym_starts_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1920), + [anon_sym_ends_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1920), + [anon_sym_EQ_EQ2] = ACTIONS(1920), + [anon_sym_BANG_EQ2] = ACTIONS(1920), + [anon_sym_LT2] = ACTIONS(1922), + [anon_sym_LT_EQ2] = ACTIONS(1920), + [anon_sym_GT_EQ2] = ACTIONS(1920), + [anon_sym_EQ_TILDE2] = ACTIONS(1920), + [anon_sym_BANG_TILDE2] = ACTIONS(1920), + [anon_sym_like2] = ACTIONS(1920), + [anon_sym_not_DASHlike2] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1920), + [anon_sym_STAR_STAR2] = ACTIONS(1920), + [anon_sym_PLUS_PLUS2] = ACTIONS(1920), + [anon_sym_SLASH2] = ACTIONS(1922), + [anon_sym_mod2] = ACTIONS(1920), + [anon_sym_SLASH_SLASH2] = ACTIONS(1920), + [anon_sym_PLUS2] = ACTIONS(1922), + [anon_sym_bit_DASHshl2] = ACTIONS(1920), + [anon_sym_bit_DASHshr2] = ACTIONS(1920), + [anon_sym_bit_DASHand2] = ACTIONS(1920), + [anon_sym_bit_DASHxor2] = ACTIONS(1920), + [anon_sym_bit_DASHor2] = ACTIONS(1920), + [aux_sym__immediate_decimal_token1] = ACTIONS(2454), + [aux_sym__immediate_decimal_token5] = ACTIONS(2456), + [anon_sym_err_GT] = ACTIONS(1922), + [anon_sym_out_GT] = ACTIONS(1922), + [anon_sym_e_GT] = ACTIONS(1922), + [anon_sym_o_GT] = ACTIONS(1922), + [anon_sym_err_PLUSout_GT] = ACTIONS(1922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1922), + [anon_sym_o_PLUSe_GT] = ACTIONS(1922), + [anon_sym_e_PLUSo_GT] = ACTIONS(1922), + [anon_sym_err_GT_GT] = ACTIONS(1920), + [anon_sym_out_GT_GT] = ACTIONS(1920), + [anon_sym_e_GT_GT] = ACTIONS(1920), + [anon_sym_o_GT_GT] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1920), + [sym__unquoted_pattern] = ACTIONS(1922), [anon_sym_POUND] = ACTIONS(3), }, [STATE(793)] = { - [aux_sym__repeat_newline] = STATE(1035), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_cell_path] = STATE(1305), + [sym_path] = STATE(775), [sym_comment] = STATE(793), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [aux_sym__where_predicate_lhs_repeat1] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(2020), + [anon_sym_in] = ACTIONS(2020), + [sym__newline] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_err_GT_PIPE] = ACTIONS(2020), + [anon_sym_out_GT_PIPE] = ACTIONS(2020), + [anon_sym_e_GT_PIPE] = ACTIONS(2020), + [anon_sym_o_GT_PIPE] = ACTIONS(2020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2020), + [anon_sym_GT2] = ACTIONS(2022), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_STAR2] = ACTIONS(2022), + [anon_sym_and2] = ACTIONS(2020), + [anon_sym_xor2] = ACTIONS(2020), + [anon_sym_or2] = ACTIONS(2020), + [anon_sym_not_DASHin2] = ACTIONS(2020), + [anon_sym_has2] = ACTIONS(2020), + [anon_sym_not_DASHhas2] = ACTIONS(2020), + [anon_sym_starts_DASHwith2] = ACTIONS(2020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2020), + [anon_sym_ends_DASHwith2] = ACTIONS(2020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2020), + [anon_sym_EQ_EQ2] = ACTIONS(2020), + [anon_sym_BANG_EQ2] = ACTIONS(2020), + [anon_sym_LT2] = ACTIONS(2022), + [anon_sym_LT_EQ2] = ACTIONS(2020), + [anon_sym_GT_EQ2] = ACTIONS(2020), + [anon_sym_EQ_TILDE2] = ACTIONS(2020), + [anon_sym_BANG_TILDE2] = ACTIONS(2020), + [anon_sym_like2] = ACTIONS(2020), + [anon_sym_not_DASHlike2] = ACTIONS(2020), + [anon_sym_STAR_STAR2] = ACTIONS(2020), + [anon_sym_PLUS_PLUS2] = ACTIONS(2020), + [anon_sym_SLASH2] = ACTIONS(2022), + [anon_sym_mod2] = ACTIONS(2020), + [anon_sym_SLASH_SLASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_bit_DASHshl2] = ACTIONS(2020), + [anon_sym_bit_DASHshr2] = ACTIONS(2020), + [anon_sym_bit_DASHand2] = ACTIONS(2020), + [anon_sym_bit_DASHxor2] = ACTIONS(2020), + [anon_sym_bit_DASHor2] = ACTIONS(2020), + [anon_sym_DOT2] = ACTIONS(2426), + [anon_sym_err_GT] = ACTIONS(2022), + [anon_sym_out_GT] = ACTIONS(2022), + [anon_sym_e_GT] = ACTIONS(2022), + [anon_sym_o_GT] = ACTIONS(2022), + [anon_sym_err_PLUSout_GT] = ACTIONS(2022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2022), + [anon_sym_o_PLUSe_GT] = ACTIONS(2022), + [anon_sym_e_PLUSo_GT] = ACTIONS(2022), + [anon_sym_err_GT_GT] = ACTIONS(2020), + [anon_sym_out_GT_GT] = ACTIONS(2020), + [anon_sym_e_GT_GT] = ACTIONS(2020), + [anon_sym_o_GT_GT] = ACTIONS(2020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2020), [anon_sym_POUND] = ACTIONS(3), }, [STATE(794)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_cmd_identifier] = STATE(4348), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(4248), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_entry] = STATE(4732), + [sym__record_key] = STATE(5094), [sym_comment] = STATE(794), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [aux_sym__match_pattern_record_body_repeat1] = STATE(839), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1962), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1952), }, [STATE(795)] = { + [sym_cmd_identifier] = STATE(4348), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(5295), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_entry] = STATE(4804), + [sym__record_key] = STATE(5094), [sym_comment] = STATE(795), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(2066), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(796)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2186), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(796), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym_record_body_repeat1] = STATE(869), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1952), + }, + [STATE(796)] = { + [aux_sym__repeat_newline] = STATE(985), + [sym__expr_parenthesized_immediate] = STATE(4977), + [sym_comment] = STATE(796), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(797)] = { - [aux_sym__repeat_newline] = STATE(1037), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(986), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(797), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(798)] = { - [aux_sym__repeat_newline] = STATE(1038), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(798), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(1882), + [sym__newline] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_err_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_GT_PIPE] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), + [anon_sym_GT2] = ACTIONS(1884), + [anon_sym_DASH2] = ACTIONS(1882), + [anon_sym_STAR2] = ACTIONS(1884), + [anon_sym_and2] = ACTIONS(1882), + [anon_sym_xor2] = ACTIONS(1882), + [anon_sym_or2] = ACTIONS(1882), + [anon_sym_not_DASHin2] = ACTIONS(1882), + [anon_sym_has2] = ACTIONS(1882), + [anon_sym_not_DASHhas2] = ACTIONS(1882), + [anon_sym_starts_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), + [anon_sym_ends_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), + [anon_sym_EQ_EQ2] = ACTIONS(1882), + [anon_sym_BANG_EQ2] = ACTIONS(1882), + [anon_sym_LT2] = ACTIONS(1884), + [anon_sym_LT_EQ2] = ACTIONS(1882), + [anon_sym_GT_EQ2] = ACTIONS(1882), + [anon_sym_EQ_TILDE2] = ACTIONS(1882), + [anon_sym_BANG_TILDE2] = ACTIONS(1882), + [anon_sym_like2] = ACTIONS(1882), + [anon_sym_not_DASHlike2] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(1882), + [anon_sym_STAR_STAR2] = ACTIONS(1882), + [anon_sym_PLUS_PLUS2] = ACTIONS(1882), + [anon_sym_SLASH2] = ACTIONS(1884), + [anon_sym_mod2] = ACTIONS(1882), + [anon_sym_SLASH_SLASH2] = ACTIONS(1882), + [anon_sym_PLUS2] = ACTIONS(1884), + [anon_sym_bit_DASHshl2] = ACTIONS(1882), + [anon_sym_bit_DASHshr2] = ACTIONS(1882), + [anon_sym_bit_DASHand2] = ACTIONS(1882), + [anon_sym_bit_DASHxor2] = ACTIONS(1882), + [anon_sym_bit_DASHor2] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(2462), + [aux_sym__immediate_decimal_token5] = ACTIONS(2464), + [anon_sym_err_GT] = ACTIONS(1884), + [anon_sym_out_GT] = ACTIONS(1884), + [anon_sym_e_GT] = ACTIONS(1884), + [anon_sym_o_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT] = ACTIONS(1884), + [anon_sym_err_GT_GT] = ACTIONS(1882), + [anon_sym_out_GT_GT] = ACTIONS(1882), + [anon_sym_e_GT_GT] = ACTIONS(1882), + [anon_sym_o_GT_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [sym__unquoted_pattern] = ACTIONS(1884), [anon_sym_POUND] = ACTIONS(3), }, [STATE(799)] = { - [aux_sym__repeat_newline] = STATE(1039), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(987), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(799), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(800)] = { - [aux_sym__repeat_newline] = STATE(1040), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(800), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(1882), + [sym__newline] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_err_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_GT_PIPE] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_GT2] = ACTIONS(1884), + [anon_sym_DASH2] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_STAR2] = ACTIONS(1884), + [anon_sym_and2] = ACTIONS(1882), + [anon_sym_xor2] = ACTIONS(1882), + [anon_sym_or2] = ACTIONS(1882), + [anon_sym_not_DASHin2] = ACTIONS(1882), + [anon_sym_has2] = ACTIONS(1882), + [anon_sym_not_DASHhas2] = ACTIONS(1882), + [anon_sym_starts_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), + [anon_sym_ends_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), + [anon_sym_EQ_EQ2] = ACTIONS(1882), + [anon_sym_BANG_EQ2] = ACTIONS(1882), + [anon_sym_LT2] = ACTIONS(1884), + [anon_sym_LT_EQ2] = ACTIONS(1882), + [anon_sym_GT_EQ2] = ACTIONS(1882), + [anon_sym_EQ_TILDE2] = ACTIONS(1882), + [anon_sym_BANG_TILDE2] = ACTIONS(1882), + [anon_sym_like2] = ACTIONS(1882), + [anon_sym_not_DASHlike2] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(1882), + [anon_sym_STAR_STAR2] = ACTIONS(1882), + [anon_sym_PLUS_PLUS2] = ACTIONS(1882), + [anon_sym_SLASH2] = ACTIONS(1884), + [anon_sym_mod2] = ACTIONS(1882), + [anon_sym_SLASH_SLASH2] = ACTIONS(1882), + [anon_sym_PLUS2] = ACTIONS(1884), + [anon_sym_bit_DASHshl2] = ACTIONS(1882), + [anon_sym_bit_DASHshr2] = ACTIONS(1882), + [anon_sym_bit_DASHand2] = ACTIONS(1882), + [anon_sym_bit_DASHxor2] = ACTIONS(1882), + [anon_sym_bit_DASHor2] = ACTIONS(1882), + [aux_sym__immediate_decimal_token5] = ACTIONS(2266), + [anon_sym_err_GT] = ACTIONS(1884), + [anon_sym_out_GT] = ACTIONS(1884), + [anon_sym_e_GT] = ACTIONS(1884), + [anon_sym_o_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT] = ACTIONS(1884), + [anon_sym_err_GT_GT] = ACTIONS(1882), + [anon_sym_out_GT_GT] = ACTIONS(1882), + [anon_sym_e_GT_GT] = ACTIONS(1882), + [anon_sym_o_GT_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [sym__unquoted_pattern] = ACTIONS(1884), [anon_sym_POUND] = ACTIONS(3), }, [STATE(801)] = { - [aux_sym__repeat_newline] = STATE(1041), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(988), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(801), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(802)] = { - [aux_sym__repeat_newline] = STATE(1130), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(802), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [aux_sym__immediate_decimal_token5] = ACTIONS(2466), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [sym__unquoted_pattern] = ACTIONS(1958), [anon_sym_POUND] = ACTIONS(3), }, [STATE(803)] = { - [aux_sym__repeat_newline] = STATE(1044), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(989), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(803), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(804)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(990), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(804), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(805)] = { - [aux_sym__repeat_newline] = STATE(1052), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(991), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(805), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(806)] = { - [aux_sym__repeat_newline] = STATE(1053), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(992), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(806), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(807)] = { - [aux_sym__repeat_newline] = STATE(1055), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(994), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(807), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(808)] = { + [aux_sym__repeat_newline] = STATE(995), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(808), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(809)] = { - [aux_sym__repeat_newline] = STATE(1057), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(996), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(809), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(810)] = { - [aux_sym__repeat_newline] = STATE(1060), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(997), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(810), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(811)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1681), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1121), - [sym__unquoted_with_expr] = STATE(1327), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(998), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(811), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(812)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1682), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1123), - [sym__unquoted_with_expr] = STATE(1334), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(1002), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(812), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(813)] = { + [aux_sym__repeat_newline] = STATE(1018), + [sym__expr_parenthesized_immediate] = STATE(4977), + [sym_comment] = STATE(813), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(814)] = { + [aux_sym__repeat_newline] = STATE(1021), + [sym__expr_parenthesized_immediate] = STATE(4977), + [sym_comment] = STATE(814), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(815)] = { + [aux_sym__repeat_newline] = STATE(1024), + [sym__expr_parenthesized_immediate] = STATE(4977), + [sym_comment] = STATE(815), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(816)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1922), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1727), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(1586), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1109), + [sym__unquoted_with_expr] = STATE(1352), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(816), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2478), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_LT] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2488), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(813)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1683), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1126), - [sym__unquoted_with_expr] = STATE(1317), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(813), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(817)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1914), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1727), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(1586), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1113), + [sym__unquoted_with_expr] = STATE(1354), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(817), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2478), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_LT] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2488), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(814)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1684), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(974), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(814), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(818)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1906), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1727), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(1586), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1115), + [sym__unquoted_with_expr] = STATE(1356), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(818), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2478), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_LT] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2488), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(815)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1685), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1012), - [sym__unquoted_with_expr] = STATE(1307), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(815), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(819)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1909), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1727), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(1586), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1119), + [sym__unquoted_with_expr] = STATE(1358), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(819), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2478), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_LT] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2488), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(816)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1686), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1071), - [sym__unquoted_with_expr] = STATE(1302), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(816), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(820)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1911), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1727), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(1586), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1133), + [sym__unquoted_with_expr] = STATE(1362), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(820), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2478), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_LT] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2488), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(817)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1687), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1127), - [sym__unquoted_with_expr] = STATE(1321), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(817), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(821)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1920), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1727), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(1586), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1134), + [sym__unquoted_with_expr] = STATE(1365), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(821), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2478), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_LT] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2488), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(818)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1689), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(972), - [sym__unquoted_with_expr] = STATE(1281), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(818), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(822)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2382), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(720), + [sym__unquoted_with_expr] = STATE(937), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(822), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(823)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1910), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1727), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(1586), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1137), + [sym__unquoted_with_expr] = STATE(1369), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(823), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2478), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_LT] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2488), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(819)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1282), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1296), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(819), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(824)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1370), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1727), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(1586), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1139), + [sym__unquoted_with_expr] = STATE(1371), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(824), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2478), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_LT] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2488), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(820)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1690), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1016), - [sym__unquoted_with_expr] = STATE(1301), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(820), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(825)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1921), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1727), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(1586), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1037), + [sym__unquoted_with_expr] = STATE(1321), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(825), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2478), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_LT] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2488), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(821)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1691), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1033), - [sym__unquoted_with_expr] = STATE(1280), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(821), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(826)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1916), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1727), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(1586), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1120), + [sym__unquoted_with_expr] = STATE(1346), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(826), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2478), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_LT] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2488), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(822)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1692), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1086), - [sym__unquoted_with_expr] = STATE(1345), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(822), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(827)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1917), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1727), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(1586), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1129), + [sym__unquoted_with_expr] = STATE(1297), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(827), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2478), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_LT] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2488), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(823)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1693), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1128), - [sym__unquoted_with_expr] = STATE(1284), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(823), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(828)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1908), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1727), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(1586), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1089), + [sym__unquoted_with_expr] = STATE(1294), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(828), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2478), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_LT] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2488), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(824)] = { - [aux_sym__repeat_newline] = STATE(1062), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(824), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(825)] = { - [aux_sym__repeat_newline] = STATE(1065), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(825), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(826)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4388), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(826), - [aux_sym_record_body_repeat1] = STATE(879), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(827)] = { - [aux_sym__repeat_newline] = STATE(1067), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(827), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(828)] = { - [aux_sym__repeat_newline] = STATE(1070), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(828), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(829)] = { - [aux_sym__repeat_newline] = STATE(1073), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1027), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(829), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(830)] = { - [sym_cell_path] = STATE(1320), - [sym_path] = STATE(783), + [aux_sym__repeat_newline] = STATE(1030), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(830), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1882), - [anon_sym_in] = ACTIONS(1882), - [sym__newline] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_err_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_GT_PIPE] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), - [anon_sym_GT2] = ACTIONS(1884), - [anon_sym_DASH2] = ACTIONS(1882), - [anon_sym_STAR2] = ACTIONS(1884), - [anon_sym_and2] = ACTIONS(1882), - [anon_sym_xor2] = ACTIONS(1882), - [anon_sym_or2] = ACTIONS(1882), - [anon_sym_not_DASHin2] = ACTIONS(1882), - [anon_sym_has2] = ACTIONS(1882), - [anon_sym_not_DASHhas2] = ACTIONS(1882), - [anon_sym_starts_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), - [anon_sym_ends_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), - [anon_sym_EQ_EQ2] = ACTIONS(1882), - [anon_sym_BANG_EQ2] = ACTIONS(1882), - [anon_sym_LT2] = ACTIONS(1884), - [anon_sym_LT_EQ2] = ACTIONS(1882), - [anon_sym_GT_EQ2] = ACTIONS(1882), - [anon_sym_EQ_TILDE2] = ACTIONS(1882), - [anon_sym_BANG_TILDE2] = ACTIONS(1882), - [anon_sym_like2] = ACTIONS(1882), - [anon_sym_not_DASHlike2] = ACTIONS(1882), - [anon_sym_STAR_STAR2] = ACTIONS(1882), - [anon_sym_PLUS_PLUS2] = ACTIONS(1882), - [anon_sym_SLASH2] = ACTIONS(1884), - [anon_sym_mod2] = ACTIONS(1882), - [anon_sym_SLASH_SLASH2] = ACTIONS(1882), - [anon_sym_PLUS2] = ACTIONS(1884), - [anon_sym_bit_DASHshl2] = ACTIONS(1882), - [anon_sym_bit_DASHshr2] = ACTIONS(1882), - [anon_sym_bit_DASHand2] = ACTIONS(1882), - [anon_sym_bit_DASHxor2] = ACTIONS(1882), - [anon_sym_bit_DASHor2] = ACTIONS(1882), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1884), - [anon_sym_out_GT] = ACTIONS(1884), - [anon_sym_e_GT] = ACTIONS(1884), - [anon_sym_o_GT] = ACTIONS(1884), - [anon_sym_err_PLUSout_GT] = ACTIONS(1884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), - [anon_sym_o_PLUSe_GT] = ACTIONS(1884), - [anon_sym_e_PLUSo_GT] = ACTIONS(1884), - [anon_sym_err_GT_GT] = ACTIONS(1882), - [anon_sym_out_GT_GT] = ACTIONS(1882), - [anon_sym_e_GT_GT] = ACTIONS(1882), - [anon_sym_o_GT_GT] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(831)] = { - [aux_sym__repeat_newline] = STATE(1078), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1033), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(831), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(832)] = { - [aux_sym__repeat_newline] = STATE(1080), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1036), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(832), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(833)] = { - [aux_sym__repeat_newline] = STATE(1082), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1041), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(833), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(834)] = { - [aux_sym__repeat_newline] = STATE(1085), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1044), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(834), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(835)] = { - [aux_sym__repeat_newline] = STATE(1088), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1047), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(835), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(836)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4235), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4578), - [sym__record_key] = STATE(4971), + [aux_sym__repeat_newline] = STATE(1050), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(836), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(837)] = { + [aux_sym__repeat_newline] = STATE(1053), + [sym__expr_parenthesized_immediate] = STATE(4977), + [sym_comment] = STATE(837), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(838)] = { + [sym_cmd_identifier] = STATE(4348), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(4325), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_entry] = STATE(4679), + [sym__record_key] = STATE(5094), + [sym_comment] = STATE(838), + [aux_sym__match_pattern_record_body_repeat1] = STATE(839), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -110120,5950 +114113,5616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1962), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1952), }, - [STATE(837)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4581), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4758), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(837), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), - [anon_sym_export] = ACTIONS(2335), - [anon_sym_alias] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_mut] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [aux_sym_cmd_identifier_token1] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2338), - [anon_sym_use] = ACTIONS(2338), - [anon_sym_export_DASHenv] = ACTIONS(2338), - [anon_sym_extern] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_loop] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_catch] = ACTIONS(2338), - [anon_sym_match] = ACTIONS(2338), - [anon_sym_in] = ACTIONS(2335), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [anon_sym_null] = ACTIONS(2344), - [aux_sym_cmd_identifier_token3] = ACTIONS(2347), - [aux_sym_cmd_identifier_token4] = ACTIONS(2347), - [aux_sym_cmd_identifier_token5] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_DASH2] = ACTIONS(2356), - [anon_sym_PLUS2] = ACTIONS(2356), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2362), - [aux_sym__val_number_decimal_token1] = ACTIONS(2365), - [aux_sym__val_number_decimal_token2] = ACTIONS(2368), - [aux_sym__val_number_decimal_token3] = ACTIONS(2371), - [aux_sym__val_number_decimal_token4] = ACTIONS(2371), - [aux_sym__val_number_token1] = ACTIONS(2374), - [aux_sym__val_number_token2] = ACTIONS(2374), - [aux_sym__val_number_token3] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2380), - [anon_sym_BQUOTE] = ACTIONS(2383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2386), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2395), + [STATE(839)] = { + [sym_cmd_identifier] = STATE(4348), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(4682), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_entry] = STATE(4928), + [sym__record_key] = STATE(5094), + [sym_comment] = STATE(839), + [aux_sym__match_pattern_record_body_repeat1] = STATE(839), + [anon_sym_export] = ACTIONS(2490), + [anon_sym_alias] = ACTIONS(2493), + [anon_sym_let] = ACTIONS(2493), + [anon_sym_mut] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [aux_sym_cmd_identifier_token1] = ACTIONS(2496), + [anon_sym_def] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_export_DASHenv] = ACTIONS(2493), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym_module] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_loop] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_else] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_catch] = ACTIONS(2493), + [anon_sym_match] = ACTIONS(2493), + [anon_sym_in] = ACTIONS(2490), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2499), + [aux_sym_cmd_identifier_token3] = ACTIONS(2502), + [aux_sym_cmd_identifier_token4] = ACTIONS(2502), + [aux_sym_cmd_identifier_token5] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_DOLLAR] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2511), + [anon_sym_PLUS2] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2514), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2523), + [aux_sym__val_number_decimal_token3] = ACTIONS(2526), + [aux_sym__val_number_decimal_token4] = ACTIONS(2526), + [aux_sym__val_number_token1] = ACTIONS(2529), + [aux_sym__val_number_token2] = ACTIONS(2529), + [aux_sym__val_number_token3] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2532), + [anon_sym_SQUOTE] = ACTIONS(2535), + [anon_sym_BQUOTE] = ACTIONS(2538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2541), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2544), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2547), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2550), }, - [STATE(838)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2212), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(838), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(840)] = { + [aux_sym__repeat_newline] = STATE(1061), + [sym__expr_parenthesized_immediate] = STATE(4977), + [sym_comment] = STATE(840), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(841)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2420), + [sym_expr_parenthesized] = STATE(2182), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2199), + [sym_val_variable] = STATE(2142), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1977), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(699), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(841), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [aux_sym_expr_unary_token1] = ACTIONS(2565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2567), + [anon_sym_DOT_DOT_LT] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2573), + [aux_sym__val_number_decimal_token4] = ACTIONS(2573), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2575), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(839)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2137), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(839), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(842)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2421), + [sym_expr_parenthesized] = STATE(2182), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2199), + [sym_val_variable] = STATE(2142), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1977), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(686), + [sym__unquoted_with_expr] = STATE(969), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(842), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [aux_sym_expr_unary_token1] = ACTIONS(2565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2567), + [anon_sym_DOT_DOT_LT] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2573), + [aux_sym__val_number_decimal_token4] = ACTIONS(2573), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2575), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(840)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2138), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(840), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(843)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2422), + [sym_expr_parenthesized] = STATE(2182), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2199), + [sym_val_variable] = STATE(2142), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1977), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(914), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(843), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [aux_sym_expr_unary_token1] = ACTIONS(2565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2567), + [anon_sym_DOT_DOT_LT] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2573), + [aux_sym__val_number_decimal_token4] = ACTIONS(2573), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2575), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(841)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2139), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(841), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(844)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2423), + [sym_expr_parenthesized] = STATE(2182), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2199), + [sym_val_variable] = STATE(2142), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1977), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(695), + [sym__unquoted_with_expr] = STATE(919), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(844), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [aux_sym_expr_unary_token1] = ACTIONS(2565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2567), + [anon_sym_DOT_DOT_LT] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2573), + [aux_sym__val_number_decimal_token4] = ACTIONS(2573), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2575), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(842)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2140), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(842), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(845)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2424), + [sym_expr_parenthesized] = STATE(2182), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2199), + [sym_val_variable] = STATE(2142), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1977), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(698), + [sym__unquoted_with_expr] = STATE(920), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(845), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [aux_sym_expr_unary_token1] = ACTIONS(2565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2567), + [anon_sym_DOT_DOT_LT] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2573), + [aux_sym__val_number_decimal_token4] = ACTIONS(2573), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2575), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(843)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2141), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(843), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(846)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2425), + [sym_expr_parenthesized] = STATE(2182), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2199), + [sym_val_variable] = STATE(2142), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1977), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(707), + [sym__unquoted_with_expr] = STATE(922), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(846), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [aux_sym_expr_unary_token1] = ACTIONS(2565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2567), + [anon_sym_DOT_DOT_LT] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2573), + [aux_sym__val_number_decimal_token4] = ACTIONS(2573), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2575), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(844)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2142), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(844), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(847)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2426), + [sym_expr_parenthesized] = STATE(2182), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2199), + [sym_val_variable] = STATE(2142), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1977), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(923), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(847), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [aux_sym_expr_unary_token1] = ACTIONS(2565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2567), + [anon_sym_DOT_DOT_LT] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2573), + [aux_sym__val_number_decimal_token4] = ACTIONS(2573), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2575), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(845)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2143), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(845), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(848)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2427), + [sym_expr_parenthesized] = STATE(2182), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2199), + [sym_val_variable] = STATE(2142), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1977), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(925), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(848), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [aux_sym_expr_unary_token1] = ACTIONS(2565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2567), + [anon_sym_DOT_DOT_LT] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2573), + [aux_sym__val_number_decimal_token4] = ACTIONS(2573), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2575), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(846)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(846), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(849)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(927), + [sym_expr_parenthesized] = STATE(2182), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2199), + [sym_val_variable] = STATE(2142), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1977), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(713), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(849), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [aux_sym_expr_unary_token1] = ACTIONS(2565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2567), + [anon_sym_DOT_DOT_LT] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2573), + [aux_sym__val_number_decimal_token4] = ACTIONS(2573), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2575), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(847)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2144), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(847), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(850)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2428), + [sym_expr_parenthesized] = STATE(2182), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2199), + [sym_val_variable] = STATE(2142), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1977), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(716), + [sym__unquoted_with_expr] = STATE(931), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(850), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [aux_sym_expr_unary_token1] = ACTIONS(2565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2567), + [anon_sym_DOT_DOT_LT] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2573), + [aux_sym__val_number_decimal_token4] = ACTIONS(2573), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2575), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(848)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2145), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(848), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(851)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2429), + [sym_expr_parenthesized] = STATE(2182), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2199), + [sym_val_variable] = STATE(2142), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1977), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(718), + [sym__unquoted_with_expr] = STATE(932), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(851), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [aux_sym_expr_unary_token1] = ACTIONS(2565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2567), + [anon_sym_DOT_DOT_LT] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2573), + [aux_sym__val_number_decimal_token4] = ACTIONS(2573), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2575), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(849)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2146), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(849), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(852)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2430), + [sym_expr_parenthesized] = STATE(2182), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2199), + [sym_val_variable] = STATE(2142), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1977), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(719), + [sym__unquoted_with_expr] = STATE(909), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(852), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [aux_sym_expr_unary_token1] = ACTIONS(2565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2567), + [anon_sym_DOT_DOT_LT] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2573), + [aux_sym__val_number_decimal_token4] = ACTIONS(2573), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2575), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(850)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2147), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(850), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(853)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2431), + [sym_expr_parenthesized] = STATE(2182), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2199), + [sym_val_variable] = STATE(2142), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1977), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(720), + [sym__unquoted_with_expr] = STATE(937), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(853), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [aux_sym_expr_unary_token1] = ACTIONS(2565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2567), + [anon_sym_DOT_DOT_LT] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2573), + [aux_sym__val_number_decimal_token4] = ACTIONS(2573), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2575), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(851)] = { - [aux_sym__repeat_newline] = STATE(1091), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(851), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(852)] = { - [aux_sym__repeat_newline] = STATE(1092), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(852), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(853)] = { - [aux_sym__repeat_newline] = STATE(1093), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(853), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(854)] = { - [aux_sym__repeat_newline] = STATE(1094), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1062), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(854), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(855)] = { - [aux_sym__repeat_newline] = STATE(1095), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1063), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(855), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(856)] = { - [aux_sym__repeat_newline] = STATE(1096), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1064), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(856), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(857)] = { - [aux_sym__repeat_newline] = STATE(1097), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1065), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(857), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(858)] = { - [aux_sym__repeat_newline] = STATE(1098), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1144), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(858), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(859)] = { - [aux_sym__repeat_newline] = STATE(1100), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1067), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(859), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(860)] = { - [aux_sym__repeat_newline] = STATE(1101), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1068), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(860), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(861)] = { - [aux_sym__repeat_newline] = STATE(1102), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1070), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(861), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(862)] = { - [aux_sym__repeat_newline] = STATE(1106), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1071), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(862), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(863)] = { - [aux_sym__repeat_newline] = STATE(1107), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1072), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(863), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(864)] = { - [sym_cell_path] = STATE(1274), - [sym_path] = STATE(783), + [aux_sym__repeat_newline] = STATE(1073), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(864), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(865)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1665), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(1074), + [sym__expr_parenthesized_immediate] = STATE(4977), [sym_comment] = STATE(865), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(866)] = { + [sym_comment] = STATE(866), + [anon_sym_in] = ACTIONS(2436), + [sym__newline] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_err_GT_PIPE] = ACTIONS(2580), + [anon_sym_out_GT_PIPE] = ACTIONS(2580), + [anon_sym_e_GT_PIPE] = ACTIONS(2580), + [anon_sym_o_GT_PIPE] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2580), + [anon_sym_RPAREN] = ACTIONS(2580), + [anon_sym_GT2] = ACTIONS(2438), + [anon_sym_DASH2] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_STAR2] = ACTIONS(2438), + [anon_sym_and2] = ACTIONS(2436), + [anon_sym_xor2] = ACTIONS(2436), + [anon_sym_or2] = ACTIONS(2436), + [anon_sym_not_DASHin2] = ACTIONS(2436), + [anon_sym_has2] = ACTIONS(2436), + [anon_sym_not_DASHhas2] = ACTIONS(2436), + [anon_sym_starts_DASHwith2] = ACTIONS(2436), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2436), + [anon_sym_ends_DASHwith2] = ACTIONS(2436), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2436), + [anon_sym_EQ_EQ2] = ACTIONS(2436), + [anon_sym_BANG_EQ2] = ACTIONS(2436), + [anon_sym_LT2] = ACTIONS(2438), + [anon_sym_LT_EQ2] = ACTIONS(2436), + [anon_sym_GT_EQ2] = ACTIONS(2436), + [anon_sym_EQ_TILDE2] = ACTIONS(2436), + [anon_sym_BANG_TILDE2] = ACTIONS(2436), + [anon_sym_like2] = ACTIONS(2436), + [anon_sym_not_DASHlike2] = ACTIONS(2436), + [anon_sym_STAR_STAR2] = ACTIONS(2436), + [anon_sym_PLUS_PLUS2] = ACTIONS(2436), + [anon_sym_SLASH2] = ACTIONS(2438), + [anon_sym_mod2] = ACTIONS(2436), + [anon_sym_SLASH_SLASH2] = ACTIONS(2436), + [anon_sym_PLUS2] = ACTIONS(2438), + [anon_sym_bit_DASHshl2] = ACTIONS(2436), + [anon_sym_bit_DASHshr2] = ACTIONS(2436), + [anon_sym_bit_DASHand2] = ACTIONS(2436), + [anon_sym_bit_DASHxor2] = ACTIONS(2436), + [anon_sym_bit_DASHor2] = ACTIONS(2436), + [anon_sym_DOT_DOT2] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), + [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(2580), + [anon_sym_out_GT_GT] = ACTIONS(2580), + [anon_sym_e_GT_GT] = ACTIONS(2580), + [anon_sym_o_GT_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2580), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(867)] = { + [sym_cell_path] = STATE(1319), + [sym_path] = STATE(775), + [sym_comment] = STATE(867), + [aux_sym__where_predicate_lhs_repeat1] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(2046), + [anon_sym_in] = ACTIONS(2046), + [sym__newline] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_PIPE] = ACTIONS(2046), + [anon_sym_err_GT_PIPE] = ACTIONS(2046), + [anon_sym_out_GT_PIPE] = ACTIONS(2046), + [anon_sym_e_GT_PIPE] = ACTIONS(2046), + [anon_sym_o_GT_PIPE] = ACTIONS(2046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2046), + [anon_sym_GT2] = ACTIONS(2048), + [anon_sym_DASH2] = ACTIONS(2046), + [anon_sym_STAR2] = ACTIONS(2048), + [anon_sym_and2] = ACTIONS(2046), + [anon_sym_xor2] = ACTIONS(2046), + [anon_sym_or2] = ACTIONS(2046), + [anon_sym_not_DASHin2] = ACTIONS(2046), + [anon_sym_has2] = ACTIONS(2046), + [anon_sym_not_DASHhas2] = ACTIONS(2046), + [anon_sym_starts_DASHwith2] = ACTIONS(2046), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2046), + [anon_sym_ends_DASHwith2] = ACTIONS(2046), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2046), + [anon_sym_EQ_EQ2] = ACTIONS(2046), + [anon_sym_BANG_EQ2] = ACTIONS(2046), + [anon_sym_LT2] = ACTIONS(2048), + [anon_sym_LT_EQ2] = ACTIONS(2046), + [anon_sym_GT_EQ2] = ACTIONS(2046), + [anon_sym_EQ_TILDE2] = ACTIONS(2046), + [anon_sym_BANG_TILDE2] = ACTIONS(2046), + [anon_sym_like2] = ACTIONS(2046), + [anon_sym_not_DASHlike2] = ACTIONS(2046), + [anon_sym_STAR_STAR2] = ACTIONS(2046), + [anon_sym_PLUS_PLUS2] = ACTIONS(2046), + [anon_sym_SLASH2] = ACTIONS(2048), + [anon_sym_mod2] = ACTIONS(2046), + [anon_sym_SLASH_SLASH2] = ACTIONS(2046), + [anon_sym_PLUS2] = ACTIONS(2048), + [anon_sym_bit_DASHshl2] = ACTIONS(2046), + [anon_sym_bit_DASHshr2] = ACTIONS(2046), + [anon_sym_bit_DASHand2] = ACTIONS(2046), + [anon_sym_bit_DASHxor2] = ACTIONS(2046), + [anon_sym_bit_DASHor2] = ACTIONS(2046), + [anon_sym_DOT2] = ACTIONS(2426), + [anon_sym_err_GT] = ACTIONS(2048), + [anon_sym_out_GT] = ACTIONS(2048), + [anon_sym_e_GT] = ACTIONS(2048), + [anon_sym_o_GT] = ACTIONS(2048), + [anon_sym_err_PLUSout_GT] = ACTIONS(2048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2048), + [anon_sym_o_PLUSe_GT] = ACTIONS(2048), + [anon_sym_e_PLUSo_GT] = ACTIONS(2048), + [anon_sym_err_GT_GT] = ACTIONS(2046), + [anon_sym_out_GT_GT] = ACTIONS(2046), + [anon_sym_e_GT_GT] = ACTIONS(2046), + [anon_sym_o_GT_GT] = ACTIONS(2046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(868)] = { + [sym_cmd_identifier] = STATE(4348), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(5295), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_entry] = STATE(4573), + [sym__record_key] = STATE(5094), + [sym_comment] = STATE(868), + [aux_sym_record_body_repeat1] = STATE(869), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_null] = ACTIONS(1928), + [aux_sym_cmd_identifier_token3] = ACTIONS(1930), + [aux_sym_cmd_identifier_token4] = ACTIONS(1930), + [aux_sym_cmd_identifier_token5] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(1952), }, - [STATE(866)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1666), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(866), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(869)] = { + [sym_cmd_identifier] = STATE(4348), + [sym_expr_parenthesized] = STATE(5295), + [sym__spread_parenthesized] = STATE(4903), + [sym__spread_variable] = STATE(4904), + [sym_val_variable] = STATE(5295), + [sym_val_number] = STATE(5295), + [sym__val_number_decimal] = STATE(2143), + [sym__val_number] = STATE(697), + [sym_val_string] = STATE(5295), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(5295), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym__spread_record] = STATE(4903), + [sym_record_entry] = STATE(4927), + [sym__record_key] = STATE(5094), + [sym_comment] = STATE(869), + [aux_sym_record_body_repeat1] = STATE(869), + [anon_sym_export] = ACTIONS(2584), + [anon_sym_alias] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_mut] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [aux_sym_cmd_identifier_token1] = ACTIONS(2590), + [anon_sym_def] = ACTIONS(2587), + [anon_sym_use] = ACTIONS(2587), + [anon_sym_export_DASHenv] = ACTIONS(2587), + [anon_sym_extern] = ACTIONS(2587), + [anon_sym_module] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_loop] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_else] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_catch] = ACTIONS(2587), + [anon_sym_match] = ACTIONS(2587), + [anon_sym_in] = ACTIONS(2584), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_null] = ACTIONS(2593), + [aux_sym_cmd_identifier_token3] = ACTIONS(2596), + [aux_sym_cmd_identifier_token4] = ACTIONS(2596), + [aux_sym_cmd_identifier_token5] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DASH2] = ACTIONS(2605), + [anon_sym_PLUS2] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2608), + [anon_sym_DOT_DOT_DOT_DOLLAR] = 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(2620), + [aux_sym__val_number_token1] = ACTIONS(2623), + [aux_sym__val_number_token2] = ACTIONS(2623), + [aux_sym__val_number_token3] = ACTIONS(2623), + [anon_sym_DQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_BQUOTE] = ACTIONS(2632), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2635), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2638), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2641), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2644), + }, + [STATE(870)] = { + [aux_sym__repeat_newline] = STATE(3595), + [aux_sym__pipe_separator] = STATE(892), + [sym_comment] = STATE(870), + [anon_sym_export] = ACTIONS(2647), + [anon_sym_alias] = ACTIONS(2649), + [anon_sym_let] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [aux_sym_cmd_identifier_token1] = ACTIONS(2647), + [anon_sym_def] = ACTIONS(2649), + [anon_sym_use] = ACTIONS(2649), + [anon_sym_export_DASHenv] = ACTIONS(2649), + [anon_sym_extern] = ACTIONS(2649), + [anon_sym_module] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_loop] = ACTIONS(2649), + [anon_sym_while] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_else] = ACTIONS(2649), + [anon_sym_try] = ACTIONS(2649), + [anon_sym_catch] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2647), + [anon_sym_true] = ACTIONS(2649), + [anon_sym_false] = ACTIONS(2649), + [anon_sym_null] = ACTIONS(2649), + [aux_sym_cmd_identifier_token3] = ACTIONS(2649), + [aux_sym_cmd_identifier_token4] = ACTIONS(2649), + [aux_sym_cmd_identifier_token5] = ACTIONS(2649), + [sym__newline] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_err_GT_PIPE] = ACTIONS(2452), + [anon_sym_out_GT_PIPE] = ACTIONS(2452), + [anon_sym_e_GT_PIPE] = ACTIONS(2452), + [anon_sym_o_GT_PIPE] = ACTIONS(2452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_DOLLAR] = ACTIONS(2647), + [anon_sym_DASH2] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_where] = ACTIONS(2649), + [aux_sym_expr_unary_token1] = ACTIONS(2649), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2649), + [anon_sym_DOT_DOT_LT] = ACTIONS(2649), + [aux_sym__val_number_decimal_token1] = ACTIONS(2647), + [aux_sym__val_number_decimal_token2] = ACTIONS(2649), + [aux_sym__val_number_decimal_token3] = ACTIONS(2649), + [aux_sym__val_number_decimal_token4] = ACTIONS(2649), + [aux_sym__val_number_token1] = ACTIONS(2649), + [aux_sym__val_number_token2] = ACTIONS(2649), + [aux_sym__val_number_token3] = ACTIONS(2649), + [anon_sym_0b] = ACTIONS(2647), + [anon_sym_0o] = ACTIONS(2647), + [anon_sym_0x] = ACTIONS(2647), + [sym_val_date] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_BQUOTE] = ACTIONS(2649), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2649), + }, + [STATE(871)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1349), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1125), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(480), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1109), + [sym__unquoted_with_expr] = STATE(1352), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(871), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2352), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), + [anon_sym_DOT_DOT_LT] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(872)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1353), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1125), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(480), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1113), + [sym__unquoted_with_expr] = STATE(1354), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(872), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2352), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), + [anon_sym_DOT_DOT_LT] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(873)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1355), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1125), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(480), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1115), + [sym__unquoted_with_expr] = STATE(1356), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(873), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2352), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), + [anon_sym_DOT_DOT_LT] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(874)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1357), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1125), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(480), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1119), + [sym__unquoted_with_expr] = STATE(1358), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(874), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2352), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), + [anon_sym_DOT_DOT_LT] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(875)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1861), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(699), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(875), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(867)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1667), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(867), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(876)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1862), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(686), + [sym__unquoted_with_expr] = STATE(969), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(876), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(868)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1668), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(868), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(877)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1863), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(914), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(877), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(869)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1669), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(869), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(878)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1864), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(695), + [sym__unquoted_with_expr] = STATE(919), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(878), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(870)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1670), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(870), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(879)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1865), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(698), + [sym__unquoted_with_expr] = STATE(920), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(879), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(871)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1671), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(871), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(880)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1866), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(707), + [sym__unquoted_with_expr] = STATE(922), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(880), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(872)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1672), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(872), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(881)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1867), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(923), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(881), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(873)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(873), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(882)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1868), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(925), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(882), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(874)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1673), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(874), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(883)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(927), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(713), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(883), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(875)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1674), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(875), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(884)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1869), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(716), + [sym__unquoted_with_expr] = STATE(931), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(884), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(876)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1675), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(876), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(885)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1870), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(718), + [sym__unquoted_with_expr] = STATE(932), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(885), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(877)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1676), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(877), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(886)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1871), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(719), + [sym__unquoted_with_expr] = STATE(909), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(886), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(878)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4551), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(878), - [aux_sym_record_body_repeat1] = STATE(879), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(879)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4727), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(879), - [aux_sym_record_body_repeat1] = STATE(879), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_alias] = ACTIONS(2425), - [anon_sym_let] = ACTIONS(2425), - [anon_sym_mut] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [aux_sym_cmd_identifier_token1] = ACTIONS(2428), - [anon_sym_def] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_export_DASHenv] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2425), - [anon_sym_module] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_loop] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_catch] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_in] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [anon_sym_null] = ACTIONS(2431), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2440), - [anon_sym_DASH2] = ACTIONS(2443), - [anon_sym_PLUS2] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2446), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), - [aux_sym__val_number_decimal_token1] = ACTIONS(2452), - [aux_sym__val_number_decimal_token2] = ACTIONS(2455), - [aux_sym__val_number_decimal_token3] = ACTIONS(2458), - [aux_sym__val_number_decimal_token4] = ACTIONS(2458), - [aux_sym__val_number_token1] = ACTIONS(2461), - [aux_sym__val_number_token2] = ACTIONS(2461), - [aux_sym__val_number_token3] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2467), - [anon_sym_BQUOTE] = ACTIONS(2470), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2479), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2482), - }, - [STATE(880)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2185), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(880), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(887)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(1872), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(1692), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1542), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(720), + [sym__unquoted_with_expr] = STATE(937), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(887), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2125), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2135), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(881)] = { - [aux_sym__repeat_newline] = STATE(3365), - [aux_sym__pipe_separator] = STATE(885), - [sym_comment] = STATE(881), - [anon_sym_export] = ACTIONS(2485), - [anon_sym_alias] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_mut] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [aux_sym_cmd_identifier_token1] = ACTIONS(2485), - [anon_sym_def] = ACTIONS(2487), - [anon_sym_use] = ACTIONS(2487), - [anon_sym_export_DASHenv] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_loop] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_catch] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_in] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2487), - [anon_sym_false] = ACTIONS(2487), - [anon_sym_null] = ACTIONS(2487), - [aux_sym_cmd_identifier_token3] = ACTIONS(2487), - [aux_sym_cmd_identifier_token4] = ACTIONS(2487), - [aux_sym_cmd_identifier_token5] = ACTIONS(2487), - [sym__newline] = ACTIONS(2489), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_err_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_GT_PIPE] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_DOLLAR] = ACTIONS(2485), - [anon_sym_DASH2] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_where] = ACTIONS(2487), - [aux_sym_expr_unary_token1] = ACTIONS(2487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2487), - [anon_sym_DOT_DOT_LT] = ACTIONS(2487), - [aux_sym__val_number_decimal_token1] = ACTIONS(2485), - [aux_sym__val_number_decimal_token2] = ACTIONS(2487), - [aux_sym__val_number_decimal_token3] = ACTIONS(2487), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2487), - [aux_sym__val_number_token2] = ACTIONS(2487), - [aux_sym__val_number_token3] = ACTIONS(2487), - [anon_sym_0b] = ACTIONS(2485), - [anon_sym_0o] = ACTIONS(2485), - [anon_sym_0x] = ACTIONS(2485), - [sym_val_date] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_BQUOTE] = ACTIONS(2487), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2487), + [STATE(888)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1361), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1125), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(480), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1133), + [sym__unquoted_with_expr] = STATE(1362), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(888), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2352), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), + [anon_sym_DOT_DOT_LT] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(882)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1323), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1121), - [sym__unquoted_with_expr] = STATE(1327), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(882), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(889)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1363), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1125), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(480), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1134), + [sym__unquoted_with_expr] = STATE(1365), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(889), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2352), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), + [anon_sym_DOT_DOT_LT] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2362), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(883)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1330), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1123), - [sym__unquoted_with_expr] = STATE(1334), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(883), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(890)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1366), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1125), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(480), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1135), + [sym__unquoted_with_expr] = STATE(1367), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(890), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2352), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), + [anon_sym_DOT_DOT_LT] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2362), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(884)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1335), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1126), - [sym__unquoted_with_expr] = STATE(1317), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(884), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(891)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1368), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1125), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(480), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1137), + [sym__unquoted_with_expr] = STATE(1369), + [sym__unquoted_anonymous_prefix] = STATE(4783), + [sym_comment] = STATE(891), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2352), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), + [anon_sym_DOT_DOT_LT] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2356), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2362), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(885)] = { - [aux_sym__repeat_newline] = STATE(3365), - [aux_sym__pipe_separator] = STATE(885), - [sym_comment] = STATE(885), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [sym__newline] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_err_GT_PIPE] = ACTIONS(2498), - [anon_sym_out_GT_PIPE] = ACTIONS(2498), - [anon_sym_e_GT_PIPE] = ACTIONS(2498), - [anon_sym_o_GT_PIPE] = ACTIONS(2498), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2498), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2498), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2498), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2491), - [anon_sym_where] = ACTIONS(2493), - [aux_sym_expr_unary_token1] = ACTIONS(2493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2493), - [anon_sym_DOT_DOT_LT] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2491), - [aux_sym__val_number_decimal_token2] = ACTIONS(2493), - [aux_sym__val_number_decimal_token3] = ACTIONS(2493), - [aux_sym__val_number_decimal_token4] = ACTIONS(2493), - [aux_sym__val_number_token1] = ACTIONS(2493), - [aux_sym__val_number_token2] = ACTIONS(2493), - [aux_sym__val_number_token3] = ACTIONS(2493), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2491), - [anon_sym_0x] = ACTIONS(2491), - [sym_val_date] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_BQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2493), - [anon_sym_CARET] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2493), + [STATE(892)] = { + [aux_sym__repeat_newline] = STATE(3595), + [aux_sym__pipe_separator] = STATE(892), + [sym_comment] = STATE(892), + [anon_sym_export] = ACTIONS(2653), + [anon_sym_alias] = ACTIONS(2655), + [anon_sym_let] = ACTIONS(2655), + [anon_sym_mut] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [aux_sym_cmd_identifier_token1] = ACTIONS(2653), + [anon_sym_def] = ACTIONS(2655), + [anon_sym_use] = ACTIONS(2655), + [anon_sym_export_DASHenv] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym_module] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_loop] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_catch] = ACTIONS(2655), + [anon_sym_match] = ACTIONS(2655), + [anon_sym_in] = ACTIONS(2653), + [anon_sym_true] = ACTIONS(2655), + [anon_sym_false] = ACTIONS(2655), + [anon_sym_null] = ACTIONS(2655), + [aux_sym_cmd_identifier_token3] = ACTIONS(2655), + [aux_sym_cmd_identifier_token4] = ACTIONS(2655), + [aux_sym_cmd_identifier_token5] = ACTIONS(2655), + [sym__newline] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2660), + [anon_sym_err_GT_PIPE] = ACTIONS(2660), + [anon_sym_out_GT_PIPE] = ACTIONS(2660), + [anon_sym_e_GT_PIPE] = ACTIONS(2660), + [anon_sym_o_GT_PIPE] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DASH2] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(2653), + [anon_sym_where] = ACTIONS(2655), + [aux_sym_expr_unary_token1] = ACTIONS(2655), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2655), + [anon_sym_DOT_DOT_LT] = ACTIONS(2655), + [aux_sym__val_number_decimal_token1] = ACTIONS(2653), + [aux_sym__val_number_decimal_token2] = ACTIONS(2655), + [aux_sym__val_number_decimal_token3] = ACTIONS(2655), + [aux_sym__val_number_decimal_token4] = ACTIONS(2655), + [aux_sym__val_number_token1] = ACTIONS(2655), + [aux_sym__val_number_token2] = ACTIONS(2655), + [aux_sym__val_number_token3] = ACTIONS(2655), + [anon_sym_0b] = ACTIONS(2653), + [anon_sym_0o] = ACTIONS(2653), + [anon_sym_0x] = ACTIONS(2653), + [sym_val_date] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_BQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2655), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2655), }, - [STATE(886)] = { - [sym_comment] = STATE(886), - [anon_sym_in] = ACTIONS(2501), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_RPAREN] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2501), - [anon_sym_xor2] = ACTIONS(2501), - [anon_sym_or2] = ACTIONS(2501), - [anon_sym_not_DASHin2] = ACTIONS(2501), - [anon_sym_has2] = ACTIONS(2501), - [anon_sym_not_DASHhas2] = ACTIONS(2501), - [anon_sym_starts_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2501), - [anon_sym_ends_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2501), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2501), - [anon_sym_like2] = ACTIONS(2501), - [anon_sym_not_DASHlike2] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_STAR_STAR2] = ACTIONS(2501), - [anon_sym_PLUS_PLUS2] = ACTIONS(2501), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2501), - [anon_sym_SLASH_SLASH2] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2501), - [anon_sym_bit_DASHshr2] = ACTIONS(2501), - [anon_sym_bit_DASHand2] = ACTIONS(2501), - [anon_sym_bit_DASHxor2] = ACTIONS(2501), - [anon_sym_bit_DASHor2] = ACTIONS(2501), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [sym__unquoted_pattern] = ACTIONS(2503), + [STATE(893)] = { + [sym_comment] = STATE(893), + [anon_sym_in] = ACTIONS(2663), + [sym__newline] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2663), + [anon_sym_err_GT_PIPE] = ACTIONS(2663), + [anon_sym_out_GT_PIPE] = ACTIONS(2663), + [anon_sym_e_GT_PIPE] = ACTIONS(2663), + [anon_sym_o_GT_PIPE] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2663), + [anon_sym_RPAREN] = ACTIONS(2663), + [anon_sym_GT2] = ACTIONS(2665), + [anon_sym_DASH2] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_STAR2] = ACTIONS(2665), + [anon_sym_and2] = ACTIONS(2663), + [anon_sym_xor2] = ACTIONS(2663), + [anon_sym_or2] = ACTIONS(2663), + [anon_sym_not_DASHin2] = ACTIONS(2663), + [anon_sym_has2] = ACTIONS(2663), + [anon_sym_not_DASHhas2] = ACTIONS(2663), + [anon_sym_starts_DASHwith2] = ACTIONS(2663), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2663), + [anon_sym_ends_DASHwith2] = ACTIONS(2663), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2663), + [anon_sym_EQ_EQ2] = ACTIONS(2663), + [anon_sym_BANG_EQ2] = ACTIONS(2663), + [anon_sym_LT2] = ACTIONS(2665), + [anon_sym_LT_EQ2] = ACTIONS(2663), + [anon_sym_GT_EQ2] = ACTIONS(2663), + [anon_sym_EQ_TILDE2] = ACTIONS(2663), + [anon_sym_BANG_TILDE2] = ACTIONS(2663), + [anon_sym_like2] = ACTIONS(2663), + [anon_sym_not_DASHlike2] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2663), + [anon_sym_STAR_STAR2] = ACTIONS(2663), + [anon_sym_PLUS_PLUS2] = ACTIONS(2663), + [anon_sym_SLASH2] = ACTIONS(2665), + [anon_sym_mod2] = ACTIONS(2663), + [anon_sym_SLASH_SLASH2] = ACTIONS(2663), + [anon_sym_PLUS2] = ACTIONS(2665), + [anon_sym_bit_DASHshl2] = ACTIONS(2663), + [anon_sym_bit_DASHshr2] = ACTIONS(2663), + [anon_sym_bit_DASHand2] = ACTIONS(2663), + [anon_sym_bit_DASHxor2] = ACTIONS(2663), + [anon_sym_bit_DASHor2] = ACTIONS(2663), + [anon_sym_err_GT] = ACTIONS(2665), + [anon_sym_out_GT] = ACTIONS(2665), + [anon_sym_e_GT] = ACTIONS(2665), + [anon_sym_o_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT] = ACTIONS(2665), + [anon_sym_err_GT_GT] = ACTIONS(2663), + [anon_sym_out_GT_GT] = ACTIONS(2663), + [anon_sym_e_GT_GT] = ACTIONS(2663), + [anon_sym_o_GT_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2663), + [sym__unquoted_pattern] = ACTIONS(2665), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(887)] = { - [sym_comment] = STATE(887), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2505), - [sym__newline] = ACTIONS(2505), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_err_GT_PIPE] = ACTIONS(2505), - [anon_sym_out_GT_PIPE] = ACTIONS(2505), - [anon_sym_e_GT_PIPE] = ACTIONS(2505), - [anon_sym_o_GT_PIPE] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2505), - [anon_sym_RPAREN] = ACTIONS(2505), - [anon_sym_GT2] = ACTIONS(2507), - [anon_sym_DASH2] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_EQ_GT] = ACTIONS(2505), - [anon_sym_STAR2] = ACTIONS(2507), - [anon_sym_and2] = ACTIONS(2505), - [anon_sym_xor2] = ACTIONS(2505), - [anon_sym_or2] = ACTIONS(2505), - [anon_sym_not_DASHin2] = ACTIONS(2505), - [anon_sym_has2] = ACTIONS(2505), - [anon_sym_not_DASHhas2] = ACTIONS(2505), - [anon_sym_starts_DASHwith2] = ACTIONS(2505), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2505), - [anon_sym_ends_DASHwith2] = ACTIONS(2505), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2505), - [anon_sym_EQ_EQ2] = ACTIONS(2505), - [anon_sym_BANG_EQ2] = ACTIONS(2505), - [anon_sym_LT2] = ACTIONS(2507), - [anon_sym_LT_EQ2] = ACTIONS(2505), - [anon_sym_GT_EQ2] = ACTIONS(2505), - [anon_sym_EQ_TILDE2] = ACTIONS(2505), - [anon_sym_BANG_TILDE2] = ACTIONS(2505), - [anon_sym_like2] = ACTIONS(2505), - [anon_sym_not_DASHlike2] = ACTIONS(2505), - [anon_sym_STAR_STAR2] = ACTIONS(2505), - [anon_sym_PLUS_PLUS2] = ACTIONS(2505), - [anon_sym_SLASH2] = ACTIONS(2507), - [anon_sym_mod2] = ACTIONS(2505), - [anon_sym_SLASH_SLASH2] = ACTIONS(2505), - [anon_sym_PLUS2] = ACTIONS(2507), - [anon_sym_bit_DASHshl2] = ACTIONS(2505), - [anon_sym_bit_DASHshr2] = ACTIONS(2505), - [anon_sym_bit_DASHand2] = ACTIONS(2505), - [anon_sym_bit_DASHxor2] = ACTIONS(2505), - [anon_sym_bit_DASHor2] = ACTIONS(2505), - [anon_sym_err_GT] = ACTIONS(2507), - [anon_sym_out_GT] = ACTIONS(2507), - [anon_sym_e_GT] = ACTIONS(2507), - [anon_sym_o_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT] = ACTIONS(2507), - [anon_sym_err_GT_GT] = ACTIONS(2505), - [anon_sym_out_GT_GT] = ACTIONS(2505), - [anon_sym_e_GT_GT] = ACTIONS(2505), - [anon_sym_o_GT_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2505), + [STATE(894)] = { + [sym_comment] = STATE(894), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_in] = ACTIONS(2667), + [sym__newline] = ACTIONS(2667), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_err_GT_PIPE] = ACTIONS(2667), + [anon_sym_out_GT_PIPE] = ACTIONS(2667), + [anon_sym_e_GT_PIPE] = ACTIONS(2667), + [anon_sym_o_GT_PIPE] = ACTIONS(2667), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2667), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2667), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2667), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2667), + [anon_sym_RPAREN] = ACTIONS(2667), + [anon_sym_GT2] = ACTIONS(2669), + [anon_sym_DASH2] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_EQ_GT] = ACTIONS(2667), + [anon_sym_STAR2] = ACTIONS(2669), + [anon_sym_and2] = ACTIONS(2667), + [anon_sym_xor2] = ACTIONS(2667), + [anon_sym_or2] = ACTIONS(2667), + [anon_sym_not_DASHin2] = ACTIONS(2667), + [anon_sym_has2] = ACTIONS(2667), + [anon_sym_not_DASHhas2] = ACTIONS(2667), + [anon_sym_starts_DASHwith2] = ACTIONS(2667), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2667), + [anon_sym_ends_DASHwith2] = ACTIONS(2667), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2667), + [anon_sym_EQ_EQ2] = ACTIONS(2667), + [anon_sym_BANG_EQ2] = ACTIONS(2667), + [anon_sym_LT2] = ACTIONS(2669), + [anon_sym_LT_EQ2] = ACTIONS(2667), + [anon_sym_GT_EQ2] = ACTIONS(2667), + [anon_sym_EQ_TILDE2] = ACTIONS(2667), + [anon_sym_BANG_TILDE2] = ACTIONS(2667), + [anon_sym_like2] = ACTIONS(2667), + [anon_sym_not_DASHlike2] = ACTIONS(2667), + [anon_sym_STAR_STAR2] = ACTIONS(2667), + [anon_sym_PLUS_PLUS2] = ACTIONS(2667), + [anon_sym_SLASH2] = ACTIONS(2669), + [anon_sym_mod2] = ACTIONS(2667), + [anon_sym_SLASH_SLASH2] = ACTIONS(2667), + [anon_sym_PLUS2] = ACTIONS(2669), + [anon_sym_bit_DASHshl2] = ACTIONS(2667), + [anon_sym_bit_DASHshr2] = ACTIONS(2667), + [anon_sym_bit_DASHand2] = ACTIONS(2667), + [anon_sym_bit_DASHxor2] = ACTIONS(2667), + [anon_sym_bit_DASHor2] = ACTIONS(2667), + [anon_sym_err_GT] = ACTIONS(2669), + [anon_sym_out_GT] = ACTIONS(2669), + [anon_sym_e_GT] = ACTIONS(2669), + [anon_sym_o_GT] = ACTIONS(2669), + [anon_sym_err_PLUSout_GT] = ACTIONS(2669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2669), + [anon_sym_o_PLUSe_GT] = ACTIONS(2669), + [anon_sym_e_PLUSo_GT] = ACTIONS(2669), + [anon_sym_err_GT_GT] = ACTIONS(2667), + [anon_sym_out_GT_GT] = ACTIONS(2667), + [anon_sym_e_GT_GT] = ACTIONS(2667), + [anon_sym_o_GT_GT] = ACTIONS(2667), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2667), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2667), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2667), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2667), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(888)] = { - [sym_comment] = STATE(888), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_EQ_GT] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [STATE(895)] = { + [sym_comment] = STATE(895), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [sym__newline] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_err_GT_PIPE] = ACTIONS(2294), + [anon_sym_out_GT_PIPE] = ACTIONS(2294), + [anon_sym_e_GT_PIPE] = ACTIONS(2294), + [anon_sym_o_GT_PIPE] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2294), + [anon_sym_GT2] = ACTIONS(2296), + [anon_sym_DASH2] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_EQ_GT] = ACTIONS(2294), + [anon_sym_STAR2] = ACTIONS(2296), + [anon_sym_and2] = ACTIONS(2294), + [anon_sym_xor2] = ACTIONS(2294), + [anon_sym_or2] = ACTIONS(2294), + [anon_sym_not_DASHin2] = ACTIONS(2294), + [anon_sym_has2] = ACTIONS(2294), + [anon_sym_not_DASHhas2] = ACTIONS(2294), + [anon_sym_starts_DASHwith2] = ACTIONS(2294), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2294), + [anon_sym_ends_DASHwith2] = ACTIONS(2294), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2294), + [anon_sym_EQ_EQ2] = ACTIONS(2294), + [anon_sym_BANG_EQ2] = ACTIONS(2294), + [anon_sym_LT2] = ACTIONS(2296), + [anon_sym_LT_EQ2] = ACTIONS(2294), + [anon_sym_GT_EQ2] = ACTIONS(2294), + [anon_sym_EQ_TILDE2] = ACTIONS(2294), + [anon_sym_BANG_TILDE2] = ACTIONS(2294), + [anon_sym_like2] = ACTIONS(2294), + [anon_sym_not_DASHlike2] = ACTIONS(2294), + [anon_sym_STAR_STAR2] = ACTIONS(2294), + [anon_sym_PLUS_PLUS2] = ACTIONS(2294), + [anon_sym_SLASH2] = ACTIONS(2296), + [anon_sym_mod2] = ACTIONS(2294), + [anon_sym_SLASH_SLASH2] = ACTIONS(2294), + [anon_sym_PLUS2] = ACTIONS(2296), + [anon_sym_bit_DASHshl2] = ACTIONS(2294), + [anon_sym_bit_DASHshr2] = ACTIONS(2294), + [anon_sym_bit_DASHand2] = ACTIONS(2294), + [anon_sym_bit_DASHxor2] = ACTIONS(2294), + [anon_sym_bit_DASHor2] = ACTIONS(2294), + [anon_sym_err_GT] = ACTIONS(2296), + [anon_sym_out_GT] = ACTIONS(2296), + [anon_sym_e_GT] = ACTIONS(2296), + [anon_sym_o_GT] = ACTIONS(2296), + [anon_sym_err_PLUSout_GT] = ACTIONS(2296), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2296), + [anon_sym_o_PLUSe_GT] = ACTIONS(2296), + [anon_sym_e_PLUSo_GT] = ACTIONS(2296), + [anon_sym_err_GT_GT] = ACTIONS(2294), + [anon_sym_out_GT_GT] = ACTIONS(2294), + [anon_sym_e_GT_GT] = ACTIONS(2294), + [anon_sym_o_GT_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2294), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(889)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2169), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(889), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(896)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2366), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(699), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(896), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(890)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2170), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(890), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(897)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2367), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(686), + [sym__unquoted_with_expr] = STATE(969), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(897), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(891)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2172), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(891), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(898)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2368), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(914), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(898), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(892)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2175), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(892), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(899)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2370), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(695), + [sym__unquoted_with_expr] = STATE(919), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(899), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(893)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2177), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(893), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(900)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2372), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(698), + [sym__unquoted_with_expr] = STATE(920), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(900), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(894)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2184), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(894), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(901)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2374), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(707), + [sym__unquoted_with_expr] = STATE(922), + [sym__unquoted_anonymous_prefix] = STATE(4638), + [sym_comment] = STATE(901), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(895)] = { - [sym_comment] = STATE(895), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(2509), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(896)] = { - [sym_comment] = STATE(896), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_EQ_GT] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(897)] = { - [sym_comment] = STATE(897), - [anon_sym_in] = ACTIONS(2511), - [sym__newline] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2511), - [anon_sym_err_GT_PIPE] = ACTIONS(2511), - [anon_sym_out_GT_PIPE] = ACTIONS(2511), - [anon_sym_e_GT_PIPE] = ACTIONS(2511), - [anon_sym_o_GT_PIPE] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2511), - [anon_sym_RPAREN] = ACTIONS(2511), - [anon_sym_GT2] = ACTIONS(2513), - [anon_sym_DASH2] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_EQ_GT] = ACTIONS(2511), - [anon_sym_STAR2] = ACTIONS(2513), - [anon_sym_and2] = ACTIONS(2511), - [anon_sym_xor2] = ACTIONS(2511), - [anon_sym_or2] = ACTIONS(2511), - [anon_sym_not_DASHin2] = ACTIONS(2511), - [anon_sym_has2] = ACTIONS(2511), - [anon_sym_not_DASHhas2] = ACTIONS(2511), - [anon_sym_starts_DASHwith2] = ACTIONS(2511), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2511), - [anon_sym_ends_DASHwith2] = ACTIONS(2511), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2511), - [anon_sym_EQ_EQ2] = ACTIONS(2511), - [anon_sym_BANG_EQ2] = ACTIONS(2511), - [anon_sym_LT2] = ACTIONS(2513), - [anon_sym_LT_EQ2] = ACTIONS(2511), - [anon_sym_GT_EQ2] = ACTIONS(2511), - [anon_sym_EQ_TILDE2] = ACTIONS(2511), - [anon_sym_BANG_TILDE2] = ACTIONS(2511), - [anon_sym_like2] = ACTIONS(2511), - [anon_sym_not_DASHlike2] = ACTIONS(2511), - [anon_sym_STAR_STAR2] = ACTIONS(2511), - [anon_sym_PLUS_PLUS2] = ACTIONS(2511), - [anon_sym_SLASH2] = ACTIONS(2513), - [anon_sym_mod2] = ACTIONS(2511), - [anon_sym_SLASH_SLASH2] = ACTIONS(2511), - [anon_sym_PLUS2] = ACTIONS(2513), - [anon_sym_bit_DASHshl2] = ACTIONS(2511), - [anon_sym_bit_DASHshr2] = ACTIONS(2511), - [anon_sym_bit_DASHand2] = ACTIONS(2511), - [anon_sym_bit_DASHxor2] = ACTIONS(2511), - [anon_sym_bit_DASHor2] = ACTIONS(2511), - [anon_sym_err_GT] = ACTIONS(2513), - [anon_sym_out_GT] = ACTIONS(2513), - [anon_sym_e_GT] = ACTIONS(2513), - [anon_sym_o_GT] = ACTIONS(2513), - [anon_sym_err_PLUSout_GT] = ACTIONS(2513), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2513), - [anon_sym_o_PLUSe_GT] = ACTIONS(2513), - [anon_sym_e_PLUSo_GT] = ACTIONS(2513), - [anon_sym_err_GT_GT] = ACTIONS(2511), - [anon_sym_out_GT_GT] = ACTIONS(2511), - [anon_sym_e_GT_GT] = ACTIONS(2511), - [anon_sym_o_GT_GT] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2511), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(898)] = { - [sym_comment] = STATE(898), - [anon_sym_in] = ACTIONS(2515), - [sym__newline] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_PIPE] = ACTIONS(2515), - [anon_sym_err_GT_PIPE] = ACTIONS(2515), - [anon_sym_out_GT_PIPE] = ACTIONS(2515), - [anon_sym_e_GT_PIPE] = ACTIONS(2515), - [anon_sym_o_GT_PIPE] = ACTIONS(2515), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2515), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2515), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2515), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2515), - [anon_sym_RPAREN] = ACTIONS(2515), - [anon_sym_GT2] = ACTIONS(2517), - [anon_sym_DASH2] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_EQ_GT] = ACTIONS(2515), - [anon_sym_STAR2] = ACTIONS(2517), - [anon_sym_and2] = ACTIONS(2515), - [anon_sym_xor2] = ACTIONS(2515), - [anon_sym_or2] = ACTIONS(2515), - [anon_sym_not_DASHin2] = ACTIONS(2515), - [anon_sym_has2] = ACTIONS(2515), - [anon_sym_not_DASHhas2] = ACTIONS(2515), - [anon_sym_starts_DASHwith2] = ACTIONS(2515), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2515), - [anon_sym_ends_DASHwith2] = ACTIONS(2515), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2515), - [anon_sym_EQ_EQ2] = ACTIONS(2515), - [anon_sym_BANG_EQ2] = ACTIONS(2515), - [anon_sym_LT2] = ACTIONS(2517), - [anon_sym_LT_EQ2] = ACTIONS(2515), - [anon_sym_GT_EQ2] = ACTIONS(2515), - [anon_sym_EQ_TILDE2] = ACTIONS(2515), - [anon_sym_BANG_TILDE2] = ACTIONS(2515), - [anon_sym_like2] = ACTIONS(2515), - [anon_sym_not_DASHlike2] = ACTIONS(2515), - [anon_sym_STAR_STAR2] = ACTIONS(2515), - [anon_sym_PLUS_PLUS2] = ACTIONS(2515), - [anon_sym_SLASH2] = ACTIONS(2517), - [anon_sym_mod2] = ACTIONS(2515), - [anon_sym_SLASH_SLASH2] = ACTIONS(2515), - [anon_sym_PLUS2] = ACTIONS(2517), - [anon_sym_bit_DASHshl2] = ACTIONS(2515), - [anon_sym_bit_DASHshr2] = ACTIONS(2515), - [anon_sym_bit_DASHand2] = ACTIONS(2515), - [anon_sym_bit_DASHxor2] = ACTIONS(2515), - [anon_sym_bit_DASHor2] = ACTIONS(2515), - [anon_sym_err_GT] = ACTIONS(2517), - [anon_sym_out_GT] = ACTIONS(2517), - [anon_sym_e_GT] = ACTIONS(2517), - [anon_sym_o_GT] = ACTIONS(2517), - [anon_sym_err_PLUSout_GT] = ACTIONS(2517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2517), - [anon_sym_o_PLUSe_GT] = ACTIONS(2517), - [anon_sym_e_PLUSo_GT] = ACTIONS(2517), - [anon_sym_err_GT_GT] = ACTIONS(2515), - [anon_sym_out_GT_GT] = ACTIONS(2515), - [anon_sym_e_GT_GT] = ACTIONS(2515), - [anon_sym_o_GT_GT] = ACTIONS(2515), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2515), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2515), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2515), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2515), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(899)] = { - [sym_comment] = STATE(899), - [anon_sym_in] = ACTIONS(2519), - [sym__newline] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_err_GT_PIPE] = ACTIONS(2519), - [anon_sym_out_GT_PIPE] = ACTIONS(2519), - [anon_sym_e_GT_PIPE] = ACTIONS(2519), - [anon_sym_o_GT_PIPE] = ACTIONS(2519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2519), - [anon_sym_RPAREN] = ACTIONS(2519), - [anon_sym_GT2] = ACTIONS(2521), - [anon_sym_DASH2] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_EQ_GT] = ACTIONS(2519), - [anon_sym_STAR2] = ACTIONS(2521), - [anon_sym_and2] = ACTIONS(2519), - [anon_sym_xor2] = ACTIONS(2519), - [anon_sym_or2] = ACTIONS(2519), - [anon_sym_not_DASHin2] = ACTIONS(2519), - [anon_sym_has2] = ACTIONS(2519), - [anon_sym_not_DASHhas2] = ACTIONS(2519), - [anon_sym_starts_DASHwith2] = ACTIONS(2519), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2519), - [anon_sym_ends_DASHwith2] = ACTIONS(2519), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2519), - [anon_sym_EQ_EQ2] = ACTIONS(2519), - [anon_sym_BANG_EQ2] = ACTIONS(2519), - [anon_sym_LT2] = ACTIONS(2521), - [anon_sym_LT_EQ2] = ACTIONS(2519), - [anon_sym_GT_EQ2] = ACTIONS(2519), - [anon_sym_EQ_TILDE2] = ACTIONS(2519), - [anon_sym_BANG_TILDE2] = ACTIONS(2519), - [anon_sym_like2] = ACTIONS(2519), - [anon_sym_not_DASHlike2] = ACTIONS(2519), - [anon_sym_STAR_STAR2] = ACTIONS(2519), - [anon_sym_PLUS_PLUS2] = ACTIONS(2519), - [anon_sym_SLASH2] = ACTIONS(2521), - [anon_sym_mod2] = ACTIONS(2519), - [anon_sym_SLASH_SLASH2] = ACTIONS(2519), - [anon_sym_PLUS2] = ACTIONS(2521), - [anon_sym_bit_DASHshl2] = ACTIONS(2519), - [anon_sym_bit_DASHshr2] = ACTIONS(2519), - [anon_sym_bit_DASHand2] = ACTIONS(2519), - [anon_sym_bit_DASHxor2] = ACTIONS(2519), - [anon_sym_bit_DASHor2] = ACTIONS(2519), - [anon_sym_err_GT] = ACTIONS(2521), - [anon_sym_out_GT] = ACTIONS(2521), - [anon_sym_e_GT] = ACTIONS(2521), - [anon_sym_o_GT] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT] = ACTIONS(2521), - [anon_sym_err_GT_GT] = ACTIONS(2519), - [anon_sym_out_GT_GT] = ACTIONS(2519), - [anon_sym_e_GT_GT] = ACTIONS(2519), - [anon_sym_o_GT_GT] = ACTIONS(2519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2519), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(900)] = { - [sym_comment] = STATE(900), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(901)] = { - [sym_comment] = STATE(901), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(902)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2375), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(923), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(902), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(903)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2377), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(925), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(903), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(904)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(927), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(713), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(904), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_RPAREN] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_EQ_GT] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(905)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2378), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(716), + [sym__unquoted_with_expr] = STATE(931), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(905), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(906)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2379), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(718), + [sym__unquoted_with_expr] = STATE(932), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(906), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(907)] = { + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2380), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(958), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2150), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(1958), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(719), + [sym__unquoted_with_expr] = STATE(909), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(907), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(908)] = { + [sym_expr_unary] = STATE(1348), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_binary] = STATE(1348), + [sym__expr_binary_expression] = STATE(1904), + [sym_expr_parenthesized] = STATE(962), + [sym_val_range] = STATE(1348), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(1348), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(1727), + [sym_val_variable] = STATE(952), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(1586), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(1135), + [sym__unquoted_with_expr] = STATE(1367), + [sym__unquoted_anonymous_prefix] = STATE(4783), [sym_comment] = STATE(908), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2478), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2480), + [anon_sym_DOT_DOT_LT] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2488), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(909)] = { [sym_comment] = STATE(909), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(910)] = { [sym_comment] = STATE(910), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = 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_RPAREN] = ACTIONS(2671), + [anon_sym_GT2] = ACTIONS(2673), + [anon_sym_DASH2] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_EQ_GT] = ACTIONS(2671), + [anon_sym_STAR2] = ACTIONS(2673), + [anon_sym_and2] = ACTIONS(2671), + [anon_sym_xor2] = ACTIONS(2671), + [anon_sym_or2] = ACTIONS(2671), + [anon_sym_not_DASHin2] = ACTIONS(2671), + [anon_sym_has2] = ACTIONS(2671), + [anon_sym_not_DASHhas2] = ACTIONS(2671), + [anon_sym_starts_DASHwith2] = ACTIONS(2671), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2671), + [anon_sym_ends_DASHwith2] = ACTIONS(2671), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2671), + [anon_sym_EQ_EQ2] = ACTIONS(2671), + [anon_sym_BANG_EQ2] = ACTIONS(2671), + [anon_sym_LT2] = ACTIONS(2673), + [anon_sym_LT_EQ2] = ACTIONS(2671), + [anon_sym_GT_EQ2] = ACTIONS(2671), + [anon_sym_EQ_TILDE2] = ACTIONS(2671), + [anon_sym_BANG_TILDE2] = ACTIONS(2671), + [anon_sym_like2] = ACTIONS(2671), + [anon_sym_not_DASHlike2] = ACTIONS(2671), + [anon_sym_STAR_STAR2] = ACTIONS(2671), + [anon_sym_PLUS_PLUS2] = ACTIONS(2671), + [anon_sym_SLASH2] = ACTIONS(2673), + [anon_sym_mod2] = ACTIONS(2671), + [anon_sym_SLASH_SLASH2] = ACTIONS(2671), + [anon_sym_PLUS2] = ACTIONS(2673), + [anon_sym_bit_DASHshl2] = ACTIONS(2671), + [anon_sym_bit_DASHshr2] = ACTIONS(2671), + [anon_sym_bit_DASHand2] = ACTIONS(2671), + [anon_sym_bit_DASHxor2] = ACTIONS(2671), + [anon_sym_bit_DASHor2] = ACTIONS(2671), + [anon_sym_err_GT] = ACTIONS(2673), + [anon_sym_out_GT] = ACTIONS(2673), + [anon_sym_e_GT] = ACTIONS(2673), + [anon_sym_o_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT] = ACTIONS(2673), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(911)] = { [sym_comment] = STATE(911), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2675), + [sym__newline] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2675), + [anon_sym_err_GT_PIPE] = ACTIONS(2675), + [anon_sym_out_GT_PIPE] = ACTIONS(2675), + [anon_sym_e_GT_PIPE] = ACTIONS(2675), + [anon_sym_o_GT_PIPE] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2675), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_GT2] = ACTIONS(2677), + [anon_sym_DASH2] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2675), + [anon_sym_EQ_GT] = ACTIONS(2675), + [anon_sym_STAR2] = ACTIONS(2677), + [anon_sym_and2] = ACTIONS(2675), + [anon_sym_xor2] = ACTIONS(2675), + [anon_sym_or2] = ACTIONS(2675), + [anon_sym_not_DASHin2] = ACTIONS(2675), + [anon_sym_has2] = ACTIONS(2675), + [anon_sym_not_DASHhas2] = ACTIONS(2675), + [anon_sym_starts_DASHwith2] = ACTIONS(2675), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2675), + [anon_sym_ends_DASHwith2] = ACTIONS(2675), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2675), + [anon_sym_EQ_EQ2] = ACTIONS(2675), + [anon_sym_BANG_EQ2] = ACTIONS(2675), + [anon_sym_LT2] = ACTIONS(2677), + [anon_sym_LT_EQ2] = ACTIONS(2675), + [anon_sym_GT_EQ2] = ACTIONS(2675), + [anon_sym_EQ_TILDE2] = ACTIONS(2675), + [anon_sym_BANG_TILDE2] = ACTIONS(2675), + [anon_sym_like2] = ACTIONS(2675), + [anon_sym_not_DASHlike2] = ACTIONS(2675), + [anon_sym_STAR_STAR2] = ACTIONS(2675), + [anon_sym_PLUS_PLUS2] = ACTIONS(2675), + [anon_sym_SLASH2] = ACTIONS(2677), + [anon_sym_mod2] = ACTIONS(2675), + [anon_sym_SLASH_SLASH2] = ACTIONS(2675), + [anon_sym_PLUS2] = ACTIONS(2677), + [anon_sym_bit_DASHshl2] = ACTIONS(2675), + [anon_sym_bit_DASHshr2] = ACTIONS(2675), + [anon_sym_bit_DASHand2] = ACTIONS(2675), + [anon_sym_bit_DASHxor2] = ACTIONS(2675), + [anon_sym_bit_DASHor2] = ACTIONS(2675), + [anon_sym_err_GT] = ACTIONS(2677), + [anon_sym_out_GT] = ACTIONS(2677), + [anon_sym_e_GT] = ACTIONS(2677), + [anon_sym_o_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT] = ACTIONS(2677), + [anon_sym_err_GT_GT] = ACTIONS(2675), + [anon_sym_out_GT_GT] = ACTIONS(2675), + [anon_sym_e_GT_GT] = ACTIONS(2675), + [anon_sym_o_GT_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2675), [anon_sym_POUND] = ACTIONS(3), }, [STATE(912)] = { - [aux_sym__repeat_newline] = STATE(964), [sym_comment] = STATE(912), - [anon_sym_export] = ACTIONS(2527), - [anon_sym_alias] = ACTIONS(2529), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_mut] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [aux_sym_cmd_identifier_token1] = ACTIONS(2527), - [anon_sym_def] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_export_DASHenv] = ACTIONS(2529), - [anon_sym_extern] = ACTIONS(2529), - [anon_sym_module] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_loop] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_catch] = ACTIONS(2529), - [anon_sym_match] = ACTIONS(2529), - [anon_sym_in] = ACTIONS(2527), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [aux_sym_cmd_identifier_token3] = ACTIONS(2529), - [aux_sym_cmd_identifier_token4] = ACTIONS(2529), - [aux_sym_cmd_identifier_token5] = ACTIONS(2529), - [sym__newline] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2531), - [anon_sym_err_GT_PIPE] = ACTIONS(2531), - [anon_sym_out_GT_PIPE] = ACTIONS(2531), - [anon_sym_e_GT_PIPE] = ACTIONS(2531), - [anon_sym_o_GT_PIPE] = ACTIONS(2531), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2531), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2531), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2531), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2531), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_DOLLAR] = ACTIONS(2527), - [anon_sym_DASH2] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(2527), - [anon_sym_where] = ACTIONS(2529), - [aux_sym_expr_unary_token1] = ACTIONS(2529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2529), - [anon_sym_DOT_DOT_LT] = ACTIONS(2529), - [aux_sym__val_number_decimal_token1] = ACTIONS(2527), - [aux_sym__val_number_decimal_token2] = ACTIONS(2529), - [aux_sym__val_number_decimal_token3] = ACTIONS(2529), - [aux_sym__val_number_decimal_token4] = ACTIONS(2529), - [aux_sym__val_number_token1] = ACTIONS(2529), - [aux_sym__val_number_token2] = ACTIONS(2529), - [aux_sym__val_number_token3] = ACTIONS(2529), - [anon_sym_0b] = ACTIONS(2527), - [anon_sym_0o] = ACTIONS(2527), - [anon_sym_0x] = ACTIONS(2527), - [sym_val_date] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2529), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_BQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2529), - [anon_sym_CARET] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2529), + [anon_sym_in] = ACTIONS(2679), + [sym__newline] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_err_GT_PIPE] = ACTIONS(2679), + [anon_sym_out_GT_PIPE] = ACTIONS(2679), + [anon_sym_e_GT_PIPE] = ACTIONS(2679), + [anon_sym_o_GT_PIPE] = ACTIONS(2679), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2679), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2679), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2679), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_GT2] = ACTIONS(2681), + [anon_sym_DASH2] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_EQ_GT] = ACTIONS(2679), + [anon_sym_STAR2] = ACTIONS(2681), + [anon_sym_and2] = ACTIONS(2679), + [anon_sym_xor2] = ACTIONS(2679), + [anon_sym_or2] = ACTIONS(2679), + [anon_sym_not_DASHin2] = ACTIONS(2679), + [anon_sym_has2] = ACTIONS(2679), + [anon_sym_not_DASHhas2] = ACTIONS(2679), + [anon_sym_starts_DASHwith2] = ACTIONS(2679), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2679), + [anon_sym_ends_DASHwith2] = ACTIONS(2679), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2679), + [anon_sym_EQ_EQ2] = ACTIONS(2679), + [anon_sym_BANG_EQ2] = ACTIONS(2679), + [anon_sym_LT2] = ACTIONS(2681), + [anon_sym_LT_EQ2] = ACTIONS(2679), + [anon_sym_GT_EQ2] = ACTIONS(2679), + [anon_sym_EQ_TILDE2] = ACTIONS(2679), + [anon_sym_BANG_TILDE2] = ACTIONS(2679), + [anon_sym_like2] = ACTIONS(2679), + [anon_sym_not_DASHlike2] = ACTIONS(2679), + [anon_sym_STAR_STAR2] = ACTIONS(2679), + [anon_sym_PLUS_PLUS2] = ACTIONS(2679), + [anon_sym_SLASH2] = ACTIONS(2681), + [anon_sym_mod2] = ACTIONS(2679), + [anon_sym_SLASH_SLASH2] = ACTIONS(2679), + [anon_sym_PLUS2] = ACTIONS(2681), + [anon_sym_bit_DASHshl2] = ACTIONS(2679), + [anon_sym_bit_DASHshr2] = ACTIONS(2679), + [anon_sym_bit_DASHand2] = ACTIONS(2679), + [anon_sym_bit_DASHxor2] = ACTIONS(2679), + [anon_sym_bit_DASHor2] = ACTIONS(2679), + [anon_sym_err_GT] = ACTIONS(2681), + [anon_sym_out_GT] = ACTIONS(2681), + [anon_sym_e_GT] = ACTIONS(2681), + [anon_sym_o_GT] = ACTIONS(2681), + [anon_sym_err_PLUSout_GT] = ACTIONS(2681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2681), + [anon_sym_o_PLUSe_GT] = ACTIONS(2681), + [anon_sym_e_PLUSo_GT] = ACTIONS(2681), + [anon_sym_err_GT_GT] = ACTIONS(2679), + [anon_sym_out_GT_GT] = ACTIONS(2679), + [anon_sym_e_GT_GT] = ACTIONS(2679), + [anon_sym_o_GT_GT] = ACTIONS(2679), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2679), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2679), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2679), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(913)] = { [sym_comment] = STATE(913), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_EQ_GT] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2535), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2533), - [anon_sym_PLUS_PLUS2] = ACTIONS(2533), - [anon_sym_SLASH2] = ACTIONS(2535), - [anon_sym_mod2] = ACTIONS(2533), - [anon_sym_SLASH_SLASH2] = ACTIONS(2533), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2683), + [sym__newline] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_err_GT_PIPE] = ACTIONS(2683), + [anon_sym_out_GT_PIPE] = ACTIONS(2683), + [anon_sym_e_GT_PIPE] = ACTIONS(2683), + [anon_sym_o_GT_PIPE] = ACTIONS(2683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2683), + [anon_sym_RPAREN] = ACTIONS(2683), + [anon_sym_GT2] = ACTIONS(2685), + [anon_sym_DASH2] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_EQ_GT] = ACTIONS(2683), + [anon_sym_STAR2] = ACTIONS(2685), + [anon_sym_and2] = ACTIONS(2683), + [anon_sym_xor2] = ACTIONS(2683), + [anon_sym_or2] = ACTIONS(2683), + [anon_sym_not_DASHin2] = ACTIONS(2683), + [anon_sym_has2] = ACTIONS(2683), + [anon_sym_not_DASHhas2] = ACTIONS(2683), + [anon_sym_starts_DASHwith2] = ACTIONS(2683), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2683), + [anon_sym_ends_DASHwith2] = ACTIONS(2683), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2683), + [anon_sym_EQ_EQ2] = ACTIONS(2683), + [anon_sym_BANG_EQ2] = ACTIONS(2683), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LT_EQ2] = ACTIONS(2683), + [anon_sym_GT_EQ2] = ACTIONS(2683), + [anon_sym_EQ_TILDE2] = ACTIONS(2683), + [anon_sym_BANG_TILDE2] = ACTIONS(2683), + [anon_sym_like2] = ACTIONS(2683), + [anon_sym_not_DASHlike2] = ACTIONS(2683), + [anon_sym_STAR_STAR2] = ACTIONS(2683), + [anon_sym_PLUS_PLUS2] = ACTIONS(2683), + [anon_sym_SLASH2] = ACTIONS(2685), + [anon_sym_mod2] = ACTIONS(2683), + [anon_sym_SLASH_SLASH2] = ACTIONS(2683), + [anon_sym_PLUS2] = ACTIONS(2685), + [anon_sym_bit_DASHshl2] = ACTIONS(2683), + [anon_sym_bit_DASHshr2] = ACTIONS(2683), + [anon_sym_bit_DASHand2] = ACTIONS(2683), + [anon_sym_bit_DASHxor2] = ACTIONS(2683), + [anon_sym_bit_DASHor2] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2683), + [anon_sym_out_GT_GT] = ACTIONS(2683), + [anon_sym_e_GT_GT] = ACTIONS(2683), + [anon_sym_o_GT_GT] = ACTIONS(2683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2683), [anon_sym_POUND] = ACTIONS(3), }, [STATE(914)] = { [sym_comment] = STATE(914), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(915)] = { [sym_comment] = STATE(915), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [sym__newline] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_err_GT_PIPE] = ACTIONS(2294), + [anon_sym_out_GT_PIPE] = ACTIONS(2294), + [anon_sym_e_GT_PIPE] = ACTIONS(2294), + [anon_sym_o_GT_PIPE] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), + [anon_sym_GT2] = ACTIONS(2296), + [anon_sym_DASH2] = ACTIONS(2294), + [anon_sym_STAR2] = ACTIONS(2296), + [anon_sym_and2] = ACTIONS(2294), + [anon_sym_xor2] = ACTIONS(2294), + [anon_sym_or2] = ACTIONS(2294), + [anon_sym_not_DASHin2] = ACTIONS(2294), + [anon_sym_has2] = ACTIONS(2294), + [anon_sym_not_DASHhas2] = ACTIONS(2294), + [anon_sym_starts_DASHwith2] = ACTIONS(2294), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2294), + [anon_sym_ends_DASHwith2] = ACTIONS(2294), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2294), + [anon_sym_EQ_EQ2] = ACTIONS(2294), + [anon_sym_BANG_EQ2] = ACTIONS(2294), + [anon_sym_LT2] = ACTIONS(2296), + [anon_sym_LT_EQ2] = ACTIONS(2294), + [anon_sym_GT_EQ2] = ACTIONS(2294), + [anon_sym_EQ_TILDE2] = ACTIONS(2294), + [anon_sym_BANG_TILDE2] = ACTIONS(2294), + [anon_sym_like2] = ACTIONS(2294), + [anon_sym_not_DASHlike2] = ACTIONS(2294), + [anon_sym_STAR_STAR2] = ACTIONS(2294), + [anon_sym_PLUS_PLUS2] = ACTIONS(2294), + [anon_sym_SLASH2] = ACTIONS(2296), + [anon_sym_mod2] = ACTIONS(2294), + [anon_sym_SLASH_SLASH2] = ACTIONS(2294), + [anon_sym_PLUS2] = ACTIONS(2296), + [anon_sym_bit_DASHshl2] = ACTIONS(2294), + [anon_sym_bit_DASHshr2] = ACTIONS(2294), + [anon_sym_bit_DASHand2] = ACTIONS(2294), + [anon_sym_bit_DASHxor2] = ACTIONS(2294), + [anon_sym_bit_DASHor2] = ACTIONS(2294), + [anon_sym_DOT_DOT2] = ACTIONS(2687), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2689), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2689), + [anon_sym_err_GT] = ACTIONS(2296), + [anon_sym_out_GT] = ACTIONS(2296), + [anon_sym_e_GT] = ACTIONS(2296), + [anon_sym_o_GT] = ACTIONS(2296), + [anon_sym_err_PLUSout_GT] = ACTIONS(2296), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2296), + [anon_sym_o_PLUSe_GT] = ACTIONS(2296), + [anon_sym_e_PLUSo_GT] = ACTIONS(2296), + [anon_sym_err_GT_GT] = ACTIONS(2294), + [anon_sym_out_GT_GT] = ACTIONS(2294), + [anon_sym_e_GT_GT] = ACTIONS(2294), + [anon_sym_o_GT_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2294), [anon_sym_POUND] = ACTIONS(3), }, [STATE(916)] = { [sym_comment] = STATE(916), - [anon_sym_in] = ACTIONS(2537), - [sym__newline] = ACTIONS(2537), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_PIPE] = ACTIONS(2537), - [anon_sym_err_GT_PIPE] = ACTIONS(2537), - [anon_sym_out_GT_PIPE] = ACTIONS(2537), - [anon_sym_e_GT_PIPE] = ACTIONS(2537), - [anon_sym_o_GT_PIPE] = ACTIONS(2537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2537), - [anon_sym_RPAREN] = ACTIONS(2537), - [anon_sym_GT2] = ACTIONS(2539), - [anon_sym_DASH2] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_EQ_GT] = ACTIONS(2537), - [anon_sym_STAR2] = ACTIONS(2539), - [anon_sym_and2] = ACTIONS(2537), - [anon_sym_xor2] = ACTIONS(2537), - [anon_sym_or2] = ACTIONS(2537), - [anon_sym_not_DASHin2] = ACTIONS(2537), - [anon_sym_has2] = ACTIONS(2537), - [anon_sym_not_DASHhas2] = ACTIONS(2537), - [anon_sym_starts_DASHwith2] = ACTIONS(2537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2537), - [anon_sym_ends_DASHwith2] = ACTIONS(2537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2537), - [anon_sym_EQ_EQ2] = ACTIONS(2537), - [anon_sym_BANG_EQ2] = ACTIONS(2537), - [anon_sym_LT2] = ACTIONS(2539), - [anon_sym_LT_EQ2] = ACTIONS(2537), - [anon_sym_GT_EQ2] = ACTIONS(2537), - [anon_sym_EQ_TILDE2] = ACTIONS(2537), - [anon_sym_BANG_TILDE2] = ACTIONS(2537), - [anon_sym_like2] = ACTIONS(2537), - [anon_sym_not_DASHlike2] = ACTIONS(2537), - [anon_sym_STAR_STAR2] = ACTIONS(2537), - [anon_sym_PLUS_PLUS2] = ACTIONS(2537), - [anon_sym_SLASH2] = ACTIONS(2539), - [anon_sym_mod2] = ACTIONS(2537), - [anon_sym_SLASH_SLASH2] = ACTIONS(2537), - [anon_sym_PLUS2] = ACTIONS(2539), - [anon_sym_bit_DASHshl2] = ACTIONS(2537), - [anon_sym_bit_DASHshr2] = ACTIONS(2537), - [anon_sym_bit_DASHand2] = ACTIONS(2537), - [anon_sym_bit_DASHxor2] = ACTIONS(2537), - [anon_sym_bit_DASHor2] = ACTIONS(2537), - [anon_sym_err_GT] = ACTIONS(2539), - [anon_sym_out_GT] = ACTIONS(2539), - [anon_sym_e_GT] = ACTIONS(2539), - [anon_sym_o_GT] = ACTIONS(2539), - [anon_sym_err_PLUSout_GT] = ACTIONS(2539), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2539), - [anon_sym_o_PLUSe_GT] = ACTIONS(2539), - [anon_sym_e_PLUSo_GT] = ACTIONS(2539), - [anon_sym_err_GT_GT] = ACTIONS(2537), - [anon_sym_out_GT_GT] = ACTIONS(2537), - [anon_sym_e_GT_GT] = ACTIONS(2537), - [anon_sym_o_GT_GT] = ACTIONS(2537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2537), + [ts_builtin_sym_end] = ACTIONS(2094), + [anon_sym_in] = ACTIONS(2094), + [sym__newline] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_err_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_GT_PIPE] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), + [anon_sym_GT2] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_STAR2] = ACTIONS(2096), + [anon_sym_and2] = ACTIONS(2094), + [anon_sym_xor2] = ACTIONS(2094), + [anon_sym_or2] = ACTIONS(2094), + [anon_sym_not_DASHin2] = ACTIONS(2094), + [anon_sym_has2] = ACTIONS(2094), + [anon_sym_not_DASHhas2] = ACTIONS(2094), + [anon_sym_starts_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2094), + [anon_sym_ends_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2094), + [anon_sym_EQ_EQ2] = ACTIONS(2094), + [anon_sym_BANG_EQ2] = ACTIONS(2094), + [anon_sym_LT2] = ACTIONS(2096), + [anon_sym_LT_EQ2] = ACTIONS(2094), + [anon_sym_GT_EQ2] = ACTIONS(2094), + [anon_sym_EQ_TILDE2] = ACTIONS(2094), + [anon_sym_BANG_TILDE2] = ACTIONS(2094), + [anon_sym_like2] = ACTIONS(2094), + [anon_sym_not_DASHlike2] = ACTIONS(2094), + [anon_sym_STAR_STAR2] = ACTIONS(2094), + [anon_sym_PLUS_PLUS2] = ACTIONS(2094), + [anon_sym_SLASH2] = ACTIONS(2096), + [anon_sym_mod2] = ACTIONS(2094), + [anon_sym_SLASH_SLASH2] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2096), + [anon_sym_bit_DASHshl2] = ACTIONS(2094), + [anon_sym_bit_DASHshr2] = ACTIONS(2094), + [anon_sym_bit_DASHand2] = ACTIONS(2094), + [anon_sym_bit_DASHxor2] = ACTIONS(2094), + [anon_sym_bit_DASHor2] = ACTIONS(2094), + [anon_sym_DOT_DOT2] = ACTIONS(2691), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2693), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(2096), + [anon_sym_out_GT] = ACTIONS(2096), + [anon_sym_e_GT] = ACTIONS(2096), + [anon_sym_o_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT] = ACTIONS(2096), + [anon_sym_err_GT_GT] = ACTIONS(2094), + [anon_sym_out_GT_GT] = ACTIONS(2094), + [anon_sym_e_GT_GT] = ACTIONS(2094), + [anon_sym_o_GT_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), [anon_sym_POUND] = ACTIONS(3), }, [STATE(917)] = { + [aux_sym__repeat_newline] = STATE(933), [sym_comment] = STATE(917), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2695), + [anon_sym_alias] = ACTIONS(2697), + [anon_sym_let] = ACTIONS(2697), + [anon_sym_mut] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [aux_sym_cmd_identifier_token1] = ACTIONS(2695), + [anon_sym_def] = ACTIONS(2697), + [anon_sym_use] = ACTIONS(2697), + [anon_sym_export_DASHenv] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym_module] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_loop] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_else] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [anon_sym_catch] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_in] = ACTIONS(2695), + [anon_sym_true] = ACTIONS(2697), + [anon_sym_false] = ACTIONS(2697), + [anon_sym_null] = ACTIONS(2697), + [aux_sym_cmd_identifier_token3] = ACTIONS(2697), + [aux_sym_cmd_identifier_token4] = ACTIONS(2697), + [aux_sym_cmd_identifier_token5] = ACTIONS(2697), + [sym__newline] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2699), + [anon_sym_err_GT_PIPE] = ACTIONS(2699), + [anon_sym_out_GT_PIPE] = ACTIONS(2699), + [anon_sym_e_GT_PIPE] = ACTIONS(2699), + [anon_sym_o_GT_PIPE] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2697), + [anon_sym_DOLLAR] = ACTIONS(2695), + [anon_sym_DASH2] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2697), + [anon_sym_DOT_DOT] = ACTIONS(2695), + [anon_sym_where] = ACTIONS(2697), + [aux_sym_expr_unary_token1] = ACTIONS(2697), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2697), + [anon_sym_DOT_DOT_LT] = ACTIONS(2697), + [aux_sym__val_number_decimal_token1] = ACTIONS(2695), + [aux_sym__val_number_decimal_token2] = ACTIONS(2697), + [aux_sym__val_number_decimal_token3] = ACTIONS(2697), + [aux_sym__val_number_decimal_token4] = ACTIONS(2697), + [aux_sym__val_number_token1] = ACTIONS(2697), + [aux_sym__val_number_token2] = ACTIONS(2697), + [aux_sym__val_number_token3] = ACTIONS(2697), + [anon_sym_0b] = ACTIONS(2695), + [anon_sym_0o] = ACTIONS(2695), + [anon_sym_0x] = ACTIONS(2695), + [sym_val_date] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2697), + [anon_sym_SQUOTE] = ACTIONS(2697), + [anon_sym_BQUOTE] = ACTIONS(2697), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2697), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2697), + [anon_sym_CARET] = ACTIONS(2697), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2697), }, [STATE(918)] = { - [sym_comment] = STATE(918), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_DOT_DOT2] = ACTIONS(2541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2543), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(919)] = { - [sym_comment] = STATE(919), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(920)] = { - [sym_comment] = STATE(920), - [ts_builtin_sym_end] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_DOT_DOT2] = ACTIONS(2545), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(921)] = { - [aux_sym__repeat_newline] = STATE(978), - [sym__expression_parenthesized] = STATE(4280), + [aux_sym__repeat_newline] = STATE(1091), + [sym__expression_parenthesized] = STATE(4538), [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), + [sym__expr_unary_minus] = STATE(961), [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), + [sym__expr_binary_expression_parenthesized] = STATE(2349), + [sym_expr_parenthesized] = STATE(866), [sym_val_range] = STATE(1202), [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(921), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [sym__newline] = ACTIONS(2557), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_comment] = STATE(918), + [aux_sym_cmd_identifier_token2] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), + [anon_sym_null] = ACTIONS(2705), + [aux_sym_cmd_identifier_token3] = ACTIONS(2707), + [aux_sym_cmd_identifier_token4] = ACTIONS(2707), + [aux_sym_cmd_identifier_token5] = ACTIONS(2707), + [sym__newline] = ACTIONS(2709), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2711), + [aux_sym__val_number_decimal_token4] = ACTIONS(2711), + [aux_sym__val_number_token1] = ACTIONS(2707), + [aux_sym__val_number_token2] = ACTIONS(2707), + [aux_sym__val_number_token3] = ACTIONS(2707), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2713), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -116072,22762 +119731,24403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(919)] = { + [sym_comment] = STATE(919), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(920)] = { + [sym_comment] = STATE(920), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(921)] = { + [sym_comment] = STATE(921), + [anon_sym_in] = ACTIONS(2715), + [sym__newline] = ACTIONS(2715), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_err_GT_PIPE] = ACTIONS(2715), + [anon_sym_out_GT_PIPE] = ACTIONS(2715), + [anon_sym_e_GT_PIPE] = ACTIONS(2715), + [anon_sym_o_GT_PIPE] = ACTIONS(2715), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2715), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2715), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2715), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2715), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_GT2] = ACTIONS(2717), + [anon_sym_DASH2] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_EQ_GT] = ACTIONS(2715), + [anon_sym_STAR2] = ACTIONS(2717), + [anon_sym_and2] = ACTIONS(2715), + [anon_sym_xor2] = ACTIONS(2715), + [anon_sym_or2] = ACTIONS(2715), + [anon_sym_not_DASHin2] = ACTIONS(2715), + [anon_sym_has2] = ACTIONS(2715), + [anon_sym_not_DASHhas2] = ACTIONS(2715), + [anon_sym_starts_DASHwith2] = ACTIONS(2715), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2715), + [anon_sym_ends_DASHwith2] = ACTIONS(2715), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2715), + [anon_sym_EQ_EQ2] = ACTIONS(2715), + [anon_sym_BANG_EQ2] = ACTIONS(2715), + [anon_sym_LT2] = ACTIONS(2717), + [anon_sym_LT_EQ2] = ACTIONS(2715), + [anon_sym_GT_EQ2] = ACTIONS(2715), + [anon_sym_EQ_TILDE2] = ACTIONS(2715), + [anon_sym_BANG_TILDE2] = ACTIONS(2715), + [anon_sym_like2] = ACTIONS(2715), + [anon_sym_not_DASHlike2] = ACTIONS(2715), + [anon_sym_STAR_STAR2] = ACTIONS(2715), + [anon_sym_PLUS_PLUS2] = ACTIONS(2715), + [anon_sym_SLASH2] = ACTIONS(2717), + [anon_sym_mod2] = ACTIONS(2715), + [anon_sym_SLASH_SLASH2] = ACTIONS(2715), + [anon_sym_PLUS2] = ACTIONS(2717), + [anon_sym_bit_DASHshl2] = ACTIONS(2715), + [anon_sym_bit_DASHshr2] = ACTIONS(2715), + [anon_sym_bit_DASHand2] = ACTIONS(2715), + [anon_sym_bit_DASHxor2] = ACTIONS(2715), + [anon_sym_bit_DASHor2] = ACTIONS(2715), + [anon_sym_err_GT] = ACTIONS(2717), + [anon_sym_out_GT] = ACTIONS(2717), + [anon_sym_e_GT] = ACTIONS(2717), + [anon_sym_o_GT] = ACTIONS(2717), + [anon_sym_err_PLUSout_GT] = ACTIONS(2717), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2717), + [anon_sym_o_PLUSe_GT] = ACTIONS(2717), + [anon_sym_e_PLUSo_GT] = ACTIONS(2717), + [anon_sym_err_GT_GT] = ACTIONS(2715), + [anon_sym_out_GT_GT] = ACTIONS(2715), + [anon_sym_e_GT_GT] = ACTIONS(2715), + [anon_sym_o_GT_GT] = ACTIONS(2715), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2715), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2715), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2715), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(922)] = { [sym_comment] = STATE(922), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(923)] = { [sym_comment] = STATE(923), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_EQ_GT] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(924)] = { + [aux_sym__repeat_newline] = STATE(1060), + [sym__expression_parenthesized] = STATE(4488), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2349), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_comment] = STATE(924), - [anon_sym_in] = ACTIONS(2563), - [sym__newline] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2563), - [anon_sym_err_GT_PIPE] = ACTIONS(2563), - [anon_sym_out_GT_PIPE] = ACTIONS(2563), - [anon_sym_e_GT_PIPE] = ACTIONS(2563), - [anon_sym_o_GT_PIPE] = ACTIONS(2563), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2563), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2563), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2563), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_GT2] = ACTIONS(2565), - [anon_sym_DASH2] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_EQ_GT] = ACTIONS(2563), - [anon_sym_STAR2] = ACTIONS(2565), - [anon_sym_and2] = ACTIONS(2563), - [anon_sym_xor2] = ACTIONS(2563), - [anon_sym_or2] = ACTIONS(2563), - [anon_sym_not_DASHin2] = ACTIONS(2563), - [anon_sym_has2] = ACTIONS(2563), - [anon_sym_not_DASHhas2] = ACTIONS(2563), - [anon_sym_starts_DASHwith2] = ACTIONS(2563), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2563), - [anon_sym_ends_DASHwith2] = ACTIONS(2563), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2563), - [anon_sym_EQ_EQ2] = ACTIONS(2563), - [anon_sym_BANG_EQ2] = ACTIONS(2563), - [anon_sym_LT2] = ACTIONS(2565), - [anon_sym_LT_EQ2] = ACTIONS(2563), - [anon_sym_GT_EQ2] = ACTIONS(2563), - [anon_sym_EQ_TILDE2] = ACTIONS(2563), - [anon_sym_BANG_TILDE2] = ACTIONS(2563), - [anon_sym_like2] = ACTIONS(2563), - [anon_sym_not_DASHlike2] = ACTIONS(2563), - [anon_sym_STAR_STAR2] = ACTIONS(2563), - [anon_sym_PLUS_PLUS2] = ACTIONS(2563), - [anon_sym_SLASH2] = ACTIONS(2565), - [anon_sym_mod2] = ACTIONS(2563), - [anon_sym_SLASH_SLASH2] = ACTIONS(2563), - [anon_sym_PLUS2] = ACTIONS(2565), - [anon_sym_bit_DASHshl2] = ACTIONS(2563), - [anon_sym_bit_DASHshr2] = ACTIONS(2563), - [anon_sym_bit_DASHand2] = ACTIONS(2563), - [anon_sym_bit_DASHxor2] = ACTIONS(2563), - [anon_sym_bit_DASHor2] = ACTIONS(2563), - [anon_sym_err_GT] = ACTIONS(2565), - [anon_sym_out_GT] = ACTIONS(2565), - [anon_sym_e_GT] = ACTIONS(2565), - [anon_sym_o_GT] = ACTIONS(2565), - [anon_sym_err_PLUSout_GT] = ACTIONS(2565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2565), - [anon_sym_o_PLUSe_GT] = ACTIONS(2565), - [anon_sym_e_PLUSo_GT] = ACTIONS(2565), - [anon_sym_err_GT_GT] = ACTIONS(2563), - [anon_sym_out_GT_GT] = ACTIONS(2563), - [anon_sym_e_GT_GT] = ACTIONS(2563), - [anon_sym_o_GT_GT] = ACTIONS(2563), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2563), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2563), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2563), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2563), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), + [anon_sym_null] = ACTIONS(2705), + [aux_sym_cmd_identifier_token3] = ACTIONS(2707), + [aux_sym_cmd_identifier_token4] = ACTIONS(2707), + [aux_sym_cmd_identifier_token5] = ACTIONS(2707), + [sym__newline] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2711), + [aux_sym__val_number_decimal_token4] = ACTIONS(2711), + [aux_sym__val_number_token1] = ACTIONS(2707), + [aux_sym__val_number_token2] = ACTIONS(2707), + [aux_sym__val_number_token3] = ACTIONS(2707), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2713), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(925)] = { [sym_comment] = STATE(925), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_EQ_GT] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(926)] = { [sym_comment] = STATE(926), - [anon_sym_in] = ACTIONS(2571), - [sym__newline] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_PIPE] = ACTIONS(2571), - [anon_sym_err_GT_PIPE] = ACTIONS(2571), - [anon_sym_out_GT_PIPE] = ACTIONS(2571), - [anon_sym_e_GT_PIPE] = ACTIONS(2571), - [anon_sym_o_GT_PIPE] = ACTIONS(2571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2571), - [anon_sym_RPAREN] = ACTIONS(2571), - [anon_sym_GT2] = ACTIONS(2573), - [anon_sym_DASH2] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_EQ_GT] = ACTIONS(2571), - [anon_sym_STAR2] = ACTIONS(2573), - [anon_sym_and2] = ACTIONS(2571), - [anon_sym_xor2] = ACTIONS(2571), - [anon_sym_or2] = ACTIONS(2571), - [anon_sym_not_DASHin2] = ACTIONS(2571), - [anon_sym_has2] = ACTIONS(2571), - [anon_sym_not_DASHhas2] = ACTIONS(2571), - [anon_sym_starts_DASHwith2] = ACTIONS(2571), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2571), - [anon_sym_ends_DASHwith2] = ACTIONS(2571), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2571), - [anon_sym_EQ_EQ2] = ACTIONS(2571), - [anon_sym_BANG_EQ2] = ACTIONS(2571), - [anon_sym_LT2] = ACTIONS(2573), - [anon_sym_LT_EQ2] = ACTIONS(2571), - [anon_sym_GT_EQ2] = ACTIONS(2571), - [anon_sym_EQ_TILDE2] = ACTIONS(2571), - [anon_sym_BANG_TILDE2] = ACTIONS(2571), - [anon_sym_like2] = ACTIONS(2571), - [anon_sym_not_DASHlike2] = ACTIONS(2571), - [anon_sym_STAR_STAR2] = ACTIONS(2571), - [anon_sym_PLUS_PLUS2] = ACTIONS(2571), - [anon_sym_SLASH2] = ACTIONS(2573), - [anon_sym_mod2] = ACTIONS(2571), - [anon_sym_SLASH_SLASH2] = ACTIONS(2571), - [anon_sym_PLUS2] = ACTIONS(2573), - [anon_sym_bit_DASHshl2] = ACTIONS(2571), - [anon_sym_bit_DASHshr2] = ACTIONS(2571), - [anon_sym_bit_DASHand2] = ACTIONS(2571), - [anon_sym_bit_DASHxor2] = ACTIONS(2571), - [anon_sym_bit_DASHor2] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2571), - [anon_sym_out_GT_GT] = ACTIONS(2571), - [anon_sym_e_GT_GT] = ACTIONS(2571), - [anon_sym_o_GT_GT] = ACTIONS(2571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2719), + [sym__newline] = ACTIONS(2719), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2719), + [anon_sym_err_GT_PIPE] = ACTIONS(2719), + [anon_sym_out_GT_PIPE] = ACTIONS(2719), + [anon_sym_e_GT_PIPE] = ACTIONS(2719), + [anon_sym_o_GT_PIPE] = ACTIONS(2719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2719), + [anon_sym_GT2] = ACTIONS(2721), + [anon_sym_DASH2] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_EQ_GT] = ACTIONS(2719), + [anon_sym_STAR2] = ACTIONS(2721), + [anon_sym_and2] = ACTIONS(2719), + [anon_sym_xor2] = ACTIONS(2719), + [anon_sym_or2] = ACTIONS(2719), + [anon_sym_not_DASHin2] = ACTIONS(2719), + [anon_sym_has2] = ACTIONS(2719), + [anon_sym_not_DASHhas2] = ACTIONS(2719), + [anon_sym_starts_DASHwith2] = ACTIONS(2719), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2719), + [anon_sym_ends_DASHwith2] = ACTIONS(2719), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2719), + [anon_sym_EQ_EQ2] = ACTIONS(2719), + [anon_sym_BANG_EQ2] = ACTIONS(2719), + [anon_sym_LT2] = ACTIONS(2721), + [anon_sym_LT_EQ2] = ACTIONS(2719), + [anon_sym_GT_EQ2] = ACTIONS(2719), + [anon_sym_EQ_TILDE2] = ACTIONS(2719), + [anon_sym_BANG_TILDE2] = ACTIONS(2719), + [anon_sym_like2] = ACTIONS(2719), + [anon_sym_not_DASHlike2] = ACTIONS(2719), + [anon_sym_STAR_STAR2] = ACTIONS(2719), + [anon_sym_PLUS_PLUS2] = ACTIONS(2719), + [anon_sym_SLASH2] = ACTIONS(2721), + [anon_sym_mod2] = ACTIONS(2719), + [anon_sym_SLASH_SLASH2] = ACTIONS(2719), + [anon_sym_PLUS2] = ACTIONS(2721), + [anon_sym_bit_DASHshl2] = ACTIONS(2719), + [anon_sym_bit_DASHshr2] = ACTIONS(2719), + [anon_sym_bit_DASHand2] = ACTIONS(2719), + [anon_sym_bit_DASHxor2] = ACTIONS(2719), + [anon_sym_bit_DASHor2] = ACTIONS(2719), + [anon_sym_err_GT] = ACTIONS(2721), + [anon_sym_out_GT] = ACTIONS(2721), + [anon_sym_e_GT] = ACTIONS(2721), + [anon_sym_o_GT] = ACTIONS(2721), + [anon_sym_err_PLUSout_GT] = ACTIONS(2721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2721), + [anon_sym_o_PLUSe_GT] = ACTIONS(2721), + [anon_sym_e_PLUSo_GT] = ACTIONS(2721), + [anon_sym_err_GT_GT] = ACTIONS(2719), + [anon_sym_out_GT_GT] = ACTIONS(2719), + [anon_sym_e_GT_GT] = ACTIONS(2719), + [anon_sym_o_GT_GT] = ACTIONS(2719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2719), [anon_sym_POUND] = ACTIONS(3), }, [STATE(927)] = { [sym_comment] = STATE(927), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_EQ_GT] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [anon_sym_in] = ACTIONS(2723), + [sym__newline] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_err_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_GT_PIPE] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_GT2] = ACTIONS(2725), + [anon_sym_DASH2] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_EQ_GT] = ACTIONS(2723), + [anon_sym_STAR2] = ACTIONS(2725), + [anon_sym_and2] = ACTIONS(2723), + [anon_sym_xor2] = ACTIONS(2723), + [anon_sym_or2] = ACTIONS(2723), + [anon_sym_not_DASHin2] = ACTIONS(2723), + [anon_sym_has2] = ACTIONS(2723), + [anon_sym_not_DASHhas2] = ACTIONS(2723), + [anon_sym_starts_DASHwith2] = ACTIONS(2723), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2723), + [anon_sym_ends_DASHwith2] = ACTIONS(2723), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2723), + [anon_sym_EQ_EQ2] = ACTIONS(2723), + [anon_sym_BANG_EQ2] = ACTIONS(2723), + [anon_sym_LT2] = ACTIONS(2725), + [anon_sym_LT_EQ2] = ACTIONS(2723), + [anon_sym_GT_EQ2] = ACTIONS(2723), + [anon_sym_EQ_TILDE2] = ACTIONS(2723), + [anon_sym_BANG_TILDE2] = ACTIONS(2723), + [anon_sym_like2] = ACTIONS(2723), + [anon_sym_not_DASHlike2] = ACTIONS(2723), + [anon_sym_STAR_STAR2] = ACTIONS(2723), + [anon_sym_PLUS_PLUS2] = ACTIONS(2723), + [anon_sym_SLASH2] = ACTIONS(2725), + [anon_sym_mod2] = ACTIONS(2723), + [anon_sym_SLASH_SLASH2] = ACTIONS(2723), + [anon_sym_PLUS2] = ACTIONS(2725), + [anon_sym_bit_DASHshl2] = ACTIONS(2723), + [anon_sym_bit_DASHshr2] = ACTIONS(2723), + [anon_sym_bit_DASHand2] = ACTIONS(2723), + [anon_sym_bit_DASHxor2] = ACTIONS(2723), + [anon_sym_bit_DASHor2] = ACTIONS(2723), + [anon_sym_err_GT] = ACTIONS(2725), + [anon_sym_out_GT] = ACTIONS(2725), + [anon_sym_e_GT] = ACTIONS(2725), + [anon_sym_o_GT] = ACTIONS(2725), + [anon_sym_err_PLUSout_GT] = ACTIONS(2725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2725), + [anon_sym_o_PLUSe_GT] = ACTIONS(2725), + [anon_sym_e_PLUSo_GT] = ACTIONS(2725), + [anon_sym_err_GT_GT] = ACTIONS(2723), + [anon_sym_out_GT_GT] = ACTIONS(2723), + [anon_sym_e_GT_GT] = ACTIONS(2723), + [anon_sym_o_GT_GT] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2723), [anon_sym_POUND] = ACTIONS(3), }, [STATE(928)] = { [sym_comment] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [ts_builtin_sym_end] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [sym__newline] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_err_GT_PIPE] = ACTIONS(2318), + [anon_sym_out_GT_PIPE] = ACTIONS(2318), + [anon_sym_e_GT_PIPE] = ACTIONS(2318), + [anon_sym_o_GT_PIPE] = ACTIONS(2318), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2318), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2318), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2318), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2318), + [anon_sym_GT2] = ACTIONS(2320), + [anon_sym_DASH2] = ACTIONS(2318), + [anon_sym_STAR2] = ACTIONS(2320), + [anon_sym_and2] = ACTIONS(2318), + [anon_sym_xor2] = ACTIONS(2318), + [anon_sym_or2] = ACTIONS(2318), + [anon_sym_not_DASHin2] = ACTIONS(2318), + [anon_sym_has2] = ACTIONS(2318), + [anon_sym_not_DASHhas2] = ACTIONS(2318), + [anon_sym_starts_DASHwith2] = ACTIONS(2318), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2318), + [anon_sym_ends_DASHwith2] = ACTIONS(2318), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2318), + [anon_sym_EQ_EQ2] = ACTIONS(2318), + [anon_sym_BANG_EQ2] = ACTIONS(2318), + [anon_sym_LT2] = ACTIONS(2320), + [anon_sym_LT_EQ2] = ACTIONS(2318), + [anon_sym_GT_EQ2] = ACTIONS(2318), + [anon_sym_EQ_TILDE2] = ACTIONS(2318), + [anon_sym_BANG_TILDE2] = ACTIONS(2318), + [anon_sym_like2] = ACTIONS(2318), + [anon_sym_not_DASHlike2] = ACTIONS(2318), + [anon_sym_STAR_STAR2] = ACTIONS(2318), + [anon_sym_PLUS_PLUS2] = ACTIONS(2318), + [anon_sym_SLASH2] = ACTIONS(2320), + [anon_sym_mod2] = ACTIONS(2318), + [anon_sym_SLASH_SLASH2] = ACTIONS(2318), + [anon_sym_PLUS2] = ACTIONS(2320), + [anon_sym_bit_DASHshl2] = ACTIONS(2318), + [anon_sym_bit_DASHshr2] = ACTIONS(2318), + [anon_sym_bit_DASHand2] = ACTIONS(2318), + [anon_sym_bit_DASHxor2] = ACTIONS(2318), + [anon_sym_bit_DASHor2] = ACTIONS(2318), + [anon_sym_DOT_DOT2] = ACTIONS(2727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2729), + [anon_sym_err_GT] = ACTIONS(2320), + [anon_sym_out_GT] = ACTIONS(2320), + [anon_sym_e_GT] = ACTIONS(2320), + [anon_sym_o_GT] = ACTIONS(2320), + [anon_sym_err_PLUSout_GT] = ACTIONS(2320), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2320), + [anon_sym_o_PLUSe_GT] = ACTIONS(2320), + [anon_sym_e_PLUSo_GT] = ACTIONS(2320), + [anon_sym_err_GT_GT] = ACTIONS(2318), + [anon_sym_out_GT_GT] = ACTIONS(2318), + [anon_sym_e_GT_GT] = ACTIONS(2318), + [anon_sym_o_GT_GT] = ACTIONS(2318), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2318), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2318), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2318), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2318), [anon_sym_POUND] = ACTIONS(3), }, [STATE(929)] = { [sym_comment] = STATE(929), - [ts_builtin_sym_end] = ACTIONS(2120), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), - [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2579), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2581), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(930)] = { [sym_comment] = STATE(930), - [anon_sym_in] = ACTIONS(1858), - [sym__newline] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_RPAREN] = ACTIONS(1858), - [anon_sym_GT2] = ACTIONS(1860), - [anon_sym_DASH2] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_EQ_GT] = ACTIONS(1858), - [anon_sym_STAR2] = ACTIONS(1860), - [anon_sym_and2] = ACTIONS(1858), - [anon_sym_xor2] = ACTIONS(1858), - [anon_sym_or2] = ACTIONS(1858), - [anon_sym_not_DASHin2] = ACTIONS(1858), - [anon_sym_has2] = ACTIONS(1858), - [anon_sym_not_DASHhas2] = ACTIONS(1858), - [anon_sym_starts_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), - [anon_sym_ends_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), - [anon_sym_EQ_EQ2] = ACTIONS(1858), - [anon_sym_BANG_EQ2] = ACTIONS(1858), - [anon_sym_LT2] = ACTIONS(1860), - [anon_sym_LT_EQ2] = ACTIONS(1858), - [anon_sym_GT_EQ2] = ACTIONS(1858), - [anon_sym_EQ_TILDE2] = ACTIONS(1858), - [anon_sym_BANG_TILDE2] = ACTIONS(1858), - [anon_sym_like2] = ACTIONS(1858), - [anon_sym_not_DASHlike2] = ACTIONS(1858), - [anon_sym_STAR_STAR2] = ACTIONS(1858), - [anon_sym_PLUS_PLUS2] = ACTIONS(1858), - [anon_sym_SLASH2] = ACTIONS(1860), - [anon_sym_mod2] = ACTIONS(1858), - [anon_sym_SLASH_SLASH2] = ACTIONS(1858), - [anon_sym_PLUS2] = ACTIONS(1860), - [anon_sym_bit_DASHshl2] = ACTIONS(1858), - [anon_sym_bit_DASHshr2] = ACTIONS(1858), - [anon_sym_bit_DASHand2] = ACTIONS(1858), - [anon_sym_bit_DASHxor2] = ACTIONS(1858), - [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_err_GT] = ACTIONS(1860), - [anon_sym_out_GT] = ACTIONS(1860), - [anon_sym_e_GT] = ACTIONS(1860), - [anon_sym_o_GT] = ACTIONS(1860), - [anon_sym_err_PLUSout_GT] = ACTIONS(1860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), - [anon_sym_o_PLUSe_GT] = ACTIONS(1860), - [anon_sym_e_PLUSo_GT] = ACTIONS(1860), - [anon_sym_err_GT_GT] = ACTIONS(1858), - [anon_sym_out_GT_GT] = ACTIONS(1858), - [anon_sym_e_GT_GT] = ACTIONS(1858), - [anon_sym_o_GT_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), + [ts_builtin_sym_end] = ACTIONS(2278), + [anon_sym_in] = ACTIONS(2278), + [sym__newline] = ACTIONS(2278), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_err_GT_PIPE] = ACTIONS(2278), + [anon_sym_out_GT_PIPE] = ACTIONS(2278), + [anon_sym_e_GT_PIPE] = ACTIONS(2278), + [anon_sym_o_GT_PIPE] = ACTIONS(2278), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2278), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2278), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2278), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2278), + [anon_sym_GT2] = ACTIONS(2280), + [anon_sym_DASH2] = ACTIONS(2278), + [anon_sym_STAR2] = ACTIONS(2280), + [anon_sym_and2] = ACTIONS(2278), + [anon_sym_xor2] = ACTIONS(2278), + [anon_sym_or2] = ACTIONS(2278), + [anon_sym_not_DASHin2] = ACTIONS(2278), + [anon_sym_has2] = ACTIONS(2278), + [anon_sym_not_DASHhas2] = ACTIONS(2278), + [anon_sym_starts_DASHwith2] = ACTIONS(2278), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2278), + [anon_sym_ends_DASHwith2] = ACTIONS(2278), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2278), + [anon_sym_EQ_EQ2] = ACTIONS(2278), + [anon_sym_BANG_EQ2] = ACTIONS(2278), + [anon_sym_LT2] = ACTIONS(2280), + [anon_sym_LT_EQ2] = ACTIONS(2278), + [anon_sym_GT_EQ2] = ACTIONS(2278), + [anon_sym_EQ_TILDE2] = ACTIONS(2278), + [anon_sym_BANG_TILDE2] = ACTIONS(2278), + [anon_sym_like2] = ACTIONS(2278), + [anon_sym_not_DASHlike2] = ACTIONS(2278), + [anon_sym_STAR_STAR2] = ACTIONS(2278), + [anon_sym_PLUS_PLUS2] = ACTIONS(2278), + [anon_sym_SLASH2] = ACTIONS(2280), + [anon_sym_mod2] = ACTIONS(2278), + [anon_sym_SLASH_SLASH2] = ACTIONS(2278), + [anon_sym_PLUS2] = ACTIONS(2280), + [anon_sym_bit_DASHshl2] = ACTIONS(2278), + [anon_sym_bit_DASHshr2] = ACTIONS(2278), + [anon_sym_bit_DASHand2] = ACTIONS(2278), + [anon_sym_bit_DASHxor2] = ACTIONS(2278), + [anon_sym_bit_DASHor2] = ACTIONS(2278), + [anon_sym_DOT_DOT2] = ACTIONS(2731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2733), + [anon_sym_err_GT] = ACTIONS(2280), + [anon_sym_out_GT] = ACTIONS(2280), + [anon_sym_e_GT] = ACTIONS(2280), + [anon_sym_o_GT] = ACTIONS(2280), + [anon_sym_err_PLUSout_GT] = ACTIONS(2280), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2280), + [anon_sym_o_PLUSe_GT] = ACTIONS(2280), + [anon_sym_e_PLUSo_GT] = ACTIONS(2280), + [anon_sym_err_GT_GT] = ACTIONS(2278), + [anon_sym_out_GT_GT] = ACTIONS(2278), + [anon_sym_e_GT_GT] = ACTIONS(2278), + [anon_sym_o_GT_GT] = ACTIONS(2278), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2278), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2278), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2278), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2278), [anon_sym_POUND] = ACTIONS(3), }, [STATE(931)] = { [sym_comment] = STATE(931), - [anon_sym_in] = ACTIONS(1018), - [sym__newline] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_err_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_GT_PIPE] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1018), - [anon_sym_xor2] = ACTIONS(1018), - [anon_sym_or2] = ACTIONS(1018), - [anon_sym_not_DASHin2] = ACTIONS(1018), - [anon_sym_has2] = ACTIONS(1018), - [anon_sym_not_DASHhas2] = ACTIONS(1018), - [anon_sym_starts_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), - [anon_sym_ends_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), - [anon_sym_EQ_EQ2] = ACTIONS(1018), - [anon_sym_BANG_EQ2] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1018), - [anon_sym_GT_EQ2] = ACTIONS(1018), - [anon_sym_EQ_TILDE2] = ACTIONS(1018), - [anon_sym_BANG_TILDE2] = ACTIONS(1018), - [anon_sym_like2] = ACTIONS(1018), - [anon_sym_not_DASHlike2] = ACTIONS(1018), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(1018), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1018), - [anon_sym_SLASH_SLASH2] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1018), - [anon_sym_bit_DASHshr2] = ACTIONS(1018), - [anon_sym_bit_DASHand2] = ACTIONS(1018), - [anon_sym_bit_DASHxor2] = ACTIONS(1018), - [anon_sym_bit_DASHor2] = ACTIONS(1018), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1018), - [anon_sym_out_GT_GT] = ACTIONS(1018), - [anon_sym_e_GT_GT] = ACTIONS(1018), - [anon_sym_o_GT_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), - [sym__unquoted_pattern] = ACTIONS(2585), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(932)] = { [sym_comment] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(933)] = { + [aux_sym__repeat_newline] = STATE(933), [sym_comment] = STATE(933), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1558), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_alias] = ACTIONS(2217), + [anon_sym_let] = ACTIONS(2217), + [anon_sym_mut] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [aux_sym_cmd_identifier_token1] = ACTIONS(2222), + [anon_sym_def] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_export_DASHenv] = ACTIONS(2217), + [anon_sym_extern] = ACTIONS(2217), + [anon_sym_module] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_loop] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_else] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2217), + [anon_sym_catch] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_in] = ACTIONS(2222), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [anon_sym_null] = ACTIONS(2217), + [aux_sym_cmd_identifier_token3] = ACTIONS(2217), + [aux_sym_cmd_identifier_token4] = ACTIONS(2217), + [aux_sym_cmd_identifier_token5] = ACTIONS(2217), + [sym__newline] = ACTIONS(2735), + [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_err_GT_PIPE] = ACTIONS(2217), + [anon_sym_out_GT_PIPE] = ACTIONS(2217), + [anon_sym_e_GT_PIPE] = ACTIONS(2217), + [anon_sym_o_GT_PIPE] = ACTIONS(2217), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2217), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2217), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2217), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_DOT_DOT] = ACTIONS(2222), + [anon_sym_where] = ACTIONS(2217), + [aux_sym_expr_unary_token1] = ACTIONS(2217), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2217), + [anon_sym_DOT_DOT_LT] = ACTIONS(2217), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [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_0b] = ACTIONS(2222), + [anon_sym_0o] = ACTIONS(2222), + [anon_sym_0x] = ACTIONS(2222), + [sym_val_date] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_BQUOTE] = ACTIONS(2217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2217), + [anon_sym_CARET] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2217), }, [STATE(934)] = { [sym_comment] = STATE(934), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2589), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), + [ts_builtin_sym_end] = ACTIONS(1716), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1714), + [anon_sym_DASH2] = ACTIONS(1716), + [anon_sym_STAR2] = ACTIONS(1714), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1714), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1716), + [anon_sym_SLASH2] = ACTIONS(1714), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1714), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_DOT_DOT2] = ACTIONS(1714), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1716), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1716), + [anon_sym_err_GT] = ACTIONS(1714), + [anon_sym_out_GT] = ACTIONS(1714), + [anon_sym_e_GT] = ACTIONS(1714), + [anon_sym_o_GT] = ACTIONS(1714), + [anon_sym_err_PLUSout_GT] = ACTIONS(1714), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1714), + [anon_sym_o_PLUSe_GT] = ACTIONS(1714), + [anon_sym_e_PLUSo_GT] = ACTIONS(1714), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), [anon_sym_POUND] = ACTIONS(3), }, [STATE(935)] = { [sym_comment] = STATE(935), - [ts_builtin_sym_end] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_err_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_GT_PIPE] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), - [anon_sym_GT2] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1822), - [anon_sym_STAR2] = ACTIONS(1824), - [anon_sym_and2] = ACTIONS(1822), - [anon_sym_xor2] = ACTIONS(1822), - [anon_sym_or2] = ACTIONS(1822), - [anon_sym_not_DASHin2] = ACTIONS(1822), - [anon_sym_has2] = ACTIONS(1822), - [anon_sym_not_DASHhas2] = ACTIONS(1822), - [anon_sym_starts_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1822), - [anon_sym_ends_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1822), - [anon_sym_EQ_EQ2] = ACTIONS(1822), - [anon_sym_BANG_EQ2] = ACTIONS(1822), - [anon_sym_LT2] = ACTIONS(1824), - [anon_sym_LT_EQ2] = ACTIONS(1822), - [anon_sym_GT_EQ2] = ACTIONS(1822), - [anon_sym_EQ_TILDE2] = ACTIONS(1822), - [anon_sym_BANG_TILDE2] = ACTIONS(1822), - [anon_sym_like2] = ACTIONS(1822), - [anon_sym_not_DASHlike2] = ACTIONS(1822), - [anon_sym_STAR_STAR2] = ACTIONS(1822), - [anon_sym_PLUS_PLUS2] = ACTIONS(1822), - [anon_sym_SLASH2] = ACTIONS(1824), - [anon_sym_mod2] = ACTIONS(1822), - [anon_sym_SLASH_SLASH2] = ACTIONS(1822), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_bit_DASHshl2] = ACTIONS(1822), - [anon_sym_bit_DASHshr2] = ACTIONS(1822), - [anon_sym_bit_DASHand2] = ACTIONS(1822), - [anon_sym_bit_DASHxor2] = ACTIONS(1822), - [anon_sym_bit_DASHor2] = ACTIONS(1822), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(2738), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2740), + [anon_sym_DASH2] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_EQ_GT] = ACTIONS(2738), + [anon_sym_STAR2] = ACTIONS(2740), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2738), + [anon_sym_has2] = ACTIONS(2738), + [anon_sym_not_DASHhas2] = ACTIONS(2738), + [anon_sym_starts_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), + [anon_sym_ends_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), + [anon_sym_EQ_EQ2] = ACTIONS(2738), + [anon_sym_BANG_EQ2] = ACTIONS(2738), + [anon_sym_LT2] = ACTIONS(2740), + [anon_sym_LT_EQ2] = ACTIONS(2738), + [anon_sym_GT_EQ2] = ACTIONS(2738), + [anon_sym_EQ_TILDE2] = ACTIONS(2738), + [anon_sym_BANG_TILDE2] = ACTIONS(2738), + [anon_sym_like2] = ACTIONS(2738), + [anon_sym_not_DASHlike2] = ACTIONS(2738), + [anon_sym_STAR_STAR2] = ACTIONS(2738), + [anon_sym_PLUS_PLUS2] = ACTIONS(2738), + [anon_sym_SLASH2] = ACTIONS(2740), + [anon_sym_mod2] = ACTIONS(2738), + [anon_sym_SLASH_SLASH2] = ACTIONS(2738), + [anon_sym_PLUS2] = ACTIONS(2740), + [anon_sym_bit_DASHshl2] = ACTIONS(2738), + [anon_sym_bit_DASHshr2] = ACTIONS(2738), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(936)] = { [sym_comment] = STATE(936), - [anon_sym_in] = ACTIONS(2591), - [sym__newline] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_PIPE] = ACTIONS(2591), - [anon_sym_err_GT_PIPE] = ACTIONS(2591), - [anon_sym_out_GT_PIPE] = ACTIONS(2591), - [anon_sym_e_GT_PIPE] = ACTIONS(2591), - [anon_sym_o_GT_PIPE] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2591), - [anon_sym_GT2] = ACTIONS(2593), - [anon_sym_DASH2] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_RBRACE] = ACTIONS(2591), - [anon_sym_EQ_GT] = ACTIONS(2591), - [anon_sym_STAR2] = ACTIONS(2593), - [anon_sym_and2] = ACTIONS(2591), - [anon_sym_xor2] = ACTIONS(2591), - [anon_sym_or2] = ACTIONS(2591), - [anon_sym_not_DASHin2] = ACTIONS(2591), - [anon_sym_has2] = ACTIONS(2591), - [anon_sym_not_DASHhas2] = ACTIONS(2591), - [anon_sym_starts_DASHwith2] = ACTIONS(2591), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2591), - [anon_sym_ends_DASHwith2] = ACTIONS(2591), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2591), - [anon_sym_EQ_EQ2] = ACTIONS(2591), - [anon_sym_BANG_EQ2] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2593), - [anon_sym_LT_EQ2] = ACTIONS(2591), - [anon_sym_GT_EQ2] = ACTIONS(2591), - [anon_sym_EQ_TILDE2] = ACTIONS(2591), - [anon_sym_BANG_TILDE2] = ACTIONS(2591), - [anon_sym_like2] = ACTIONS(2591), - [anon_sym_not_DASHlike2] = ACTIONS(2591), - [anon_sym_STAR_STAR2] = ACTIONS(2591), - [anon_sym_PLUS_PLUS2] = ACTIONS(2591), - [anon_sym_SLASH2] = ACTIONS(2593), - [anon_sym_mod2] = ACTIONS(2591), - [anon_sym_SLASH_SLASH2] = ACTIONS(2591), - [anon_sym_PLUS2] = ACTIONS(2593), - [anon_sym_bit_DASHshl2] = ACTIONS(2591), - [anon_sym_bit_DASHshr2] = ACTIONS(2591), - [anon_sym_bit_DASHand2] = ACTIONS(2591), - [anon_sym_bit_DASHxor2] = ACTIONS(2591), - [anon_sym_bit_DASHor2] = ACTIONS(2591), - [anon_sym_err_GT] = ACTIONS(2593), - [anon_sym_out_GT] = ACTIONS(2593), - [anon_sym_e_GT] = ACTIONS(2593), - [anon_sym_o_GT] = ACTIONS(2593), - [anon_sym_err_PLUSout_GT] = ACTIONS(2593), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), - [anon_sym_o_PLUSe_GT] = ACTIONS(2593), - [anon_sym_e_PLUSo_GT] = ACTIONS(2593), - [anon_sym_err_GT_GT] = ACTIONS(2591), - [anon_sym_out_GT_GT] = ACTIONS(2591), - [anon_sym_e_GT_GT] = ACTIONS(2591), - [anon_sym_o_GT_GT] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_EQ_GT] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, [STATE(937)] = { [sym_comment] = STATE(937), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(2595), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [sym__unquoted_pattern] = ACTIONS(2597), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(938)] = { [sym_comment] = STATE(938), - [ts_builtin_sym_end] = ACTIONS(1874), - [anon_sym_in] = ACTIONS(1874), - [sym__newline] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_err_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_GT_PIPE] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), - [anon_sym_GT2] = ACTIONS(1876), - [anon_sym_DASH2] = ACTIONS(1874), - [anon_sym_STAR2] = ACTIONS(1876), - [anon_sym_and2] = ACTIONS(1874), - [anon_sym_xor2] = ACTIONS(1874), - [anon_sym_or2] = ACTIONS(1874), - [anon_sym_not_DASHin2] = ACTIONS(1874), - [anon_sym_has2] = ACTIONS(1874), - [anon_sym_not_DASHhas2] = ACTIONS(1874), - [anon_sym_starts_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), - [anon_sym_ends_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), - [anon_sym_EQ_EQ2] = ACTIONS(1874), - [anon_sym_BANG_EQ2] = ACTIONS(1874), - [anon_sym_LT2] = ACTIONS(1876), - [anon_sym_LT_EQ2] = ACTIONS(1874), - [anon_sym_GT_EQ2] = ACTIONS(1874), - [anon_sym_EQ_TILDE2] = ACTIONS(1874), - [anon_sym_BANG_TILDE2] = ACTIONS(1874), - [anon_sym_like2] = ACTIONS(1874), - [anon_sym_not_DASHlike2] = ACTIONS(1874), - [anon_sym_STAR_STAR2] = ACTIONS(1874), - [anon_sym_PLUS_PLUS2] = ACTIONS(1874), - [anon_sym_SLASH2] = ACTIONS(1876), - [anon_sym_mod2] = ACTIONS(1874), - [anon_sym_SLASH_SLASH2] = ACTIONS(1874), - [anon_sym_PLUS2] = ACTIONS(1876), - [anon_sym_bit_DASHshl2] = ACTIONS(1874), - [anon_sym_bit_DASHshr2] = ACTIONS(1874), - [anon_sym_bit_DASHand2] = ACTIONS(1874), - [anon_sym_bit_DASHxor2] = ACTIONS(1874), - [anon_sym_bit_DASHor2] = ACTIONS(1874), - [anon_sym_DOT_DOT2] = ACTIONS(1876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), - [anon_sym_err_GT] = ACTIONS(1876), - [anon_sym_out_GT] = ACTIONS(1876), - [anon_sym_e_GT] = ACTIONS(1876), - [anon_sym_o_GT] = ACTIONS(1876), - [anon_sym_err_PLUSout_GT] = ACTIONS(1876), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), - [anon_sym_o_PLUSe_GT] = ACTIONS(1876), - [anon_sym_e_PLUSo_GT] = ACTIONS(1876), - [anon_sym_err_GT_GT] = ACTIONS(1874), - [anon_sym_out_GT_GT] = ACTIONS(1874), - [anon_sym_e_GT_GT] = ACTIONS(1874), - [anon_sym_o_GT_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(1990), + [anon_sym_in] = ACTIONS(1990), + [sym__newline] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_err_GT_PIPE] = ACTIONS(1990), + [anon_sym_out_GT_PIPE] = ACTIONS(1990), + [anon_sym_e_GT_PIPE] = ACTIONS(1990), + [anon_sym_o_GT_PIPE] = ACTIONS(1990), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1990), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1990), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1990), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1990), + [anon_sym_GT2] = ACTIONS(1992), + [anon_sym_DASH2] = ACTIONS(1990), + [anon_sym_STAR2] = ACTIONS(1992), + [anon_sym_and2] = ACTIONS(1990), + [anon_sym_xor2] = ACTIONS(1990), + [anon_sym_or2] = ACTIONS(1990), + [anon_sym_not_DASHin2] = ACTIONS(1990), + [anon_sym_has2] = ACTIONS(1990), + [anon_sym_not_DASHhas2] = ACTIONS(1990), + [anon_sym_starts_DASHwith2] = ACTIONS(1990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1990), + [anon_sym_ends_DASHwith2] = ACTIONS(1990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1990), + [anon_sym_EQ_EQ2] = ACTIONS(1990), + [anon_sym_BANG_EQ2] = ACTIONS(1990), + [anon_sym_LT2] = ACTIONS(1992), + [anon_sym_LT_EQ2] = ACTIONS(1990), + [anon_sym_GT_EQ2] = ACTIONS(1990), + [anon_sym_EQ_TILDE2] = ACTIONS(1990), + [anon_sym_BANG_TILDE2] = ACTIONS(1990), + [anon_sym_like2] = ACTIONS(1990), + [anon_sym_not_DASHlike2] = ACTIONS(1990), + [anon_sym_STAR_STAR2] = ACTIONS(1990), + [anon_sym_PLUS_PLUS2] = ACTIONS(1990), + [anon_sym_SLASH2] = ACTIONS(1992), + [anon_sym_mod2] = ACTIONS(1990), + [anon_sym_SLASH_SLASH2] = ACTIONS(1990), + [anon_sym_PLUS2] = ACTIONS(1992), + [anon_sym_bit_DASHshl2] = ACTIONS(1990), + [anon_sym_bit_DASHshr2] = ACTIONS(1990), + [anon_sym_bit_DASHand2] = ACTIONS(1990), + [anon_sym_bit_DASHxor2] = ACTIONS(1990), + [anon_sym_bit_DASHor2] = ACTIONS(1990), + [anon_sym_DOT_DOT2] = ACTIONS(1992), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1990), + [anon_sym_err_GT] = ACTIONS(1992), + [anon_sym_out_GT] = ACTIONS(1992), + [anon_sym_e_GT] = ACTIONS(1992), + [anon_sym_o_GT] = ACTIONS(1992), + [anon_sym_err_PLUSout_GT] = ACTIONS(1992), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1992), + [anon_sym_o_PLUSe_GT] = ACTIONS(1992), + [anon_sym_e_PLUSo_GT] = ACTIONS(1992), + [anon_sym_err_GT_GT] = ACTIONS(1990), + [anon_sym_out_GT_GT] = ACTIONS(1990), + [anon_sym_e_GT_GT] = ACTIONS(1990), + [anon_sym_o_GT_GT] = ACTIONS(1990), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1990), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1990), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1990), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1990), [anon_sym_POUND] = ACTIONS(3), }, [STATE(939)] = { [sym_comment] = STATE(939), - [ts_builtin_sym_end] = ACTIONS(2136), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_STAR2] = ACTIONS(1750), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1750), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_LPAREN2] = ACTIONS(2746), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1856), + [anon_sym_SLASH2] = ACTIONS(1750), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1750), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_err_GT] = ACTIONS(1750), + [anon_sym_out_GT] = ACTIONS(1750), + [anon_sym_e_GT] = ACTIONS(1750), + [anon_sym_o_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT] = ACTIONS(1750), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [sym__unquoted_pattern] = ACTIONS(2748), [anon_sym_POUND] = ACTIONS(3), }, [STATE(940)] = { [sym_comment] = STATE(940), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(2307), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(2094), + [sym__newline] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_err_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_GT_PIPE] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(2094), + [anon_sym_GT2] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_STAR2] = ACTIONS(2096), + [anon_sym_and2] = ACTIONS(2094), + [anon_sym_xor2] = ACTIONS(2094), + [anon_sym_or2] = ACTIONS(2094), + [anon_sym_not_DASHin2] = ACTIONS(2094), + [anon_sym_has2] = ACTIONS(2094), + [anon_sym_not_DASHhas2] = ACTIONS(2094), + [anon_sym_starts_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2094), + [anon_sym_ends_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2094), + [anon_sym_EQ_EQ2] = ACTIONS(2094), + [anon_sym_BANG_EQ2] = ACTIONS(2094), + [anon_sym_LT2] = ACTIONS(2096), + [anon_sym_LT_EQ2] = ACTIONS(2094), + [anon_sym_GT_EQ2] = ACTIONS(2094), + [anon_sym_EQ_TILDE2] = ACTIONS(2094), + [anon_sym_BANG_TILDE2] = ACTIONS(2094), + [anon_sym_like2] = ACTIONS(2094), + [anon_sym_not_DASHlike2] = ACTIONS(2094), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2094), + [anon_sym_PLUS_PLUS2] = ACTIONS(2094), + [anon_sym_SLASH2] = ACTIONS(2096), + [anon_sym_mod2] = ACTIONS(2094), + [anon_sym_SLASH_SLASH2] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2096), + [anon_sym_bit_DASHshl2] = ACTIONS(2094), + [anon_sym_bit_DASHshr2] = ACTIONS(2094), + [anon_sym_bit_DASHand2] = ACTIONS(2094), + [anon_sym_bit_DASHxor2] = ACTIONS(2094), + [anon_sym_bit_DASHor2] = ACTIONS(2094), + [anon_sym_err_GT] = ACTIONS(2096), + [anon_sym_out_GT] = ACTIONS(2096), + [anon_sym_e_GT] = ACTIONS(2096), + [anon_sym_o_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT] = ACTIONS(2096), + [anon_sym_err_GT_GT] = ACTIONS(2094), + [anon_sym_out_GT_GT] = ACTIONS(2094), + [anon_sym_e_GT_GT] = ACTIONS(2094), + [anon_sym_o_GT_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), + [sym__unquoted_pattern] = ACTIONS(1774), [anon_sym_POUND] = ACTIONS(3), }, [STATE(941)] = { [sym_comment] = STATE(941), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), + [ts_builtin_sym_end] = ACTIONS(2000), + [anon_sym_in] = ACTIONS(2000), + [sym__newline] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_err_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_GT_PIPE] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2000), + [anon_sym_GT2] = ACTIONS(2002), + [anon_sym_DASH2] = ACTIONS(2000), + [anon_sym_STAR2] = ACTIONS(2002), + [anon_sym_and2] = ACTIONS(2000), + [anon_sym_xor2] = ACTIONS(2000), + [anon_sym_or2] = ACTIONS(2000), + [anon_sym_not_DASHin2] = ACTIONS(2000), + [anon_sym_has2] = ACTIONS(2000), + [anon_sym_not_DASHhas2] = ACTIONS(2000), + [anon_sym_starts_DASHwith2] = ACTIONS(2000), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2000), + [anon_sym_ends_DASHwith2] = ACTIONS(2000), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2000), + [anon_sym_EQ_EQ2] = ACTIONS(2000), + [anon_sym_BANG_EQ2] = ACTIONS(2000), + [anon_sym_LT2] = ACTIONS(2002), + [anon_sym_LT_EQ2] = ACTIONS(2000), + [anon_sym_GT_EQ2] = ACTIONS(2000), + [anon_sym_EQ_TILDE2] = ACTIONS(2000), + [anon_sym_BANG_TILDE2] = ACTIONS(2000), + [anon_sym_like2] = ACTIONS(2000), + [anon_sym_not_DASHlike2] = ACTIONS(2000), + [anon_sym_STAR_STAR2] = ACTIONS(2000), + [anon_sym_PLUS_PLUS2] = ACTIONS(2000), + [anon_sym_SLASH2] = ACTIONS(2002), + [anon_sym_mod2] = ACTIONS(2000), + [anon_sym_SLASH_SLASH2] = ACTIONS(2000), + [anon_sym_PLUS2] = ACTIONS(2002), + [anon_sym_bit_DASHshl2] = ACTIONS(2000), + [anon_sym_bit_DASHshr2] = ACTIONS(2000), + [anon_sym_bit_DASHand2] = ACTIONS(2000), + [anon_sym_bit_DASHxor2] = ACTIONS(2000), + [anon_sym_bit_DASHor2] = ACTIONS(2000), + [anon_sym_DOT_DOT2] = ACTIONS(2002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2000), + [anon_sym_err_GT] = ACTIONS(2002), + [anon_sym_out_GT] = ACTIONS(2002), + [anon_sym_e_GT] = ACTIONS(2002), + [anon_sym_o_GT] = ACTIONS(2002), + [anon_sym_err_PLUSout_GT] = ACTIONS(2002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2002), + [anon_sym_o_PLUSe_GT] = ACTIONS(2002), + [anon_sym_e_PLUSo_GT] = ACTIONS(2002), + [anon_sym_err_GT_GT] = ACTIONS(2000), + [anon_sym_out_GT_GT] = ACTIONS(2000), + [anon_sym_e_GT_GT] = ACTIONS(2000), + [anon_sym_o_GT_GT] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2000), [anon_sym_POUND] = ACTIONS(3), }, [STATE(942)] = { [sym_comment] = STATE(942), - [ts_builtin_sym_end] = ACTIONS(1886), - [anon_sym_in] = ACTIONS(1886), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_GT2] = ACTIONS(1888), - [anon_sym_DASH2] = ACTIONS(1886), - [anon_sym_STAR2] = ACTIONS(1888), - [anon_sym_and2] = ACTIONS(1886), - [anon_sym_xor2] = ACTIONS(1886), - [anon_sym_or2] = ACTIONS(1886), - [anon_sym_not_DASHin2] = ACTIONS(1886), - [anon_sym_has2] = ACTIONS(1886), - [anon_sym_not_DASHhas2] = ACTIONS(1886), - [anon_sym_starts_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1886), - [anon_sym_ends_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1886), - [anon_sym_EQ_EQ2] = ACTIONS(1886), - [anon_sym_BANG_EQ2] = ACTIONS(1886), - [anon_sym_LT2] = ACTIONS(1888), - [anon_sym_LT_EQ2] = ACTIONS(1886), - [anon_sym_GT_EQ2] = ACTIONS(1886), - [anon_sym_EQ_TILDE2] = ACTIONS(1886), - [anon_sym_BANG_TILDE2] = ACTIONS(1886), - [anon_sym_like2] = ACTIONS(1886), - [anon_sym_not_DASHlike2] = ACTIONS(1886), - [anon_sym_STAR_STAR2] = ACTIONS(1886), - [anon_sym_PLUS_PLUS2] = ACTIONS(1886), - [anon_sym_SLASH2] = ACTIONS(1888), - [anon_sym_mod2] = ACTIONS(1886), - [anon_sym_SLASH_SLASH2] = ACTIONS(1886), - [anon_sym_PLUS2] = ACTIONS(1888), - [anon_sym_bit_DASHshl2] = ACTIONS(1886), - [anon_sym_bit_DASHshr2] = ACTIONS(1886), - [anon_sym_bit_DASHand2] = ACTIONS(1886), - [anon_sym_bit_DASHxor2] = ACTIONS(1886), - [anon_sym_bit_DASHor2] = ACTIONS(1886), - [anon_sym_DOT_DOT2] = ACTIONS(1888), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1886), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1888), - [anon_sym_out_GT] = ACTIONS(1888), - [anon_sym_e_GT] = ACTIONS(1888), - [anon_sym_o_GT] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT] = ACTIONS(1888), - [anon_sym_err_GT_GT] = ACTIONS(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), + [ts_builtin_sym_end] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [sym__newline] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2004), + [anon_sym_err_GT_PIPE] = ACTIONS(2004), + [anon_sym_out_GT_PIPE] = ACTIONS(2004), + [anon_sym_e_GT_PIPE] = ACTIONS(2004), + [anon_sym_o_GT_PIPE] = ACTIONS(2004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2004), + [anon_sym_GT2] = ACTIONS(2006), + [anon_sym_DASH2] = ACTIONS(2004), + [anon_sym_STAR2] = ACTIONS(2006), + [anon_sym_and2] = ACTIONS(2004), + [anon_sym_xor2] = ACTIONS(2004), + [anon_sym_or2] = ACTIONS(2004), + [anon_sym_not_DASHin2] = ACTIONS(2004), + [anon_sym_has2] = ACTIONS(2004), + [anon_sym_not_DASHhas2] = ACTIONS(2004), + [anon_sym_starts_DASHwith2] = ACTIONS(2004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2004), + [anon_sym_ends_DASHwith2] = ACTIONS(2004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2004), + [anon_sym_EQ_EQ2] = ACTIONS(2004), + [anon_sym_BANG_EQ2] = ACTIONS(2004), + [anon_sym_LT2] = ACTIONS(2006), + [anon_sym_LT_EQ2] = ACTIONS(2004), + [anon_sym_GT_EQ2] = ACTIONS(2004), + [anon_sym_EQ_TILDE2] = ACTIONS(2004), + [anon_sym_BANG_TILDE2] = ACTIONS(2004), + [anon_sym_like2] = ACTIONS(2004), + [anon_sym_not_DASHlike2] = ACTIONS(2004), + [anon_sym_STAR_STAR2] = ACTIONS(2004), + [anon_sym_PLUS_PLUS2] = ACTIONS(2004), + [anon_sym_SLASH2] = ACTIONS(2006), + [anon_sym_mod2] = ACTIONS(2004), + [anon_sym_SLASH_SLASH2] = ACTIONS(2004), + [anon_sym_PLUS2] = ACTIONS(2006), + [anon_sym_bit_DASHshl2] = ACTIONS(2004), + [anon_sym_bit_DASHshr2] = ACTIONS(2004), + [anon_sym_bit_DASHand2] = ACTIONS(2004), + [anon_sym_bit_DASHxor2] = ACTIONS(2004), + [anon_sym_bit_DASHor2] = ACTIONS(2004), + [anon_sym_DOT_DOT2] = ACTIONS(2006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2004), + [anon_sym_err_GT] = ACTIONS(2006), + [anon_sym_out_GT] = ACTIONS(2006), + [anon_sym_e_GT] = ACTIONS(2006), + [anon_sym_o_GT] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT] = ACTIONS(2006), + [anon_sym_err_GT_GT] = ACTIONS(2004), + [anon_sym_out_GT_GT] = ACTIONS(2004), + [anon_sym_e_GT_GT] = ACTIONS(2004), + [anon_sym_o_GT_GT] = ACTIONS(2004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2004), [anon_sym_POUND] = ACTIONS(3), }, [STATE(943)] = { [sym_comment] = STATE(943), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_EQ_GT] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(2750), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2752), + [anon_sym_DASH2] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_STAR2] = ACTIONS(2752), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2750), + [anon_sym_has2] = ACTIONS(2750), + [anon_sym_not_DASHhas2] = ACTIONS(2750), + [anon_sym_starts_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), + [anon_sym_ends_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), + [anon_sym_EQ_EQ2] = ACTIONS(2750), + [anon_sym_BANG_EQ2] = ACTIONS(2750), + [anon_sym_LT2] = ACTIONS(2752), + [anon_sym_LT_EQ2] = ACTIONS(2750), + [anon_sym_GT_EQ2] = ACTIONS(2750), + [anon_sym_EQ_TILDE2] = ACTIONS(2750), + [anon_sym_BANG_TILDE2] = ACTIONS(2750), + [anon_sym_like2] = ACTIONS(2750), + [anon_sym_not_DASHlike2] = ACTIONS(2750), + [anon_sym_LPAREN2] = ACTIONS(2108), + [anon_sym_STAR_STAR2] = ACTIONS(2750), + [anon_sym_PLUS_PLUS2] = ACTIONS(2750), + [anon_sym_SLASH2] = ACTIONS(2752), + [anon_sym_mod2] = ACTIONS(2750), + [anon_sym_SLASH_SLASH2] = ACTIONS(2750), + [anon_sym_PLUS2] = ACTIONS(2752), + [anon_sym_bit_DASHshl2] = ACTIONS(2750), + [anon_sym_bit_DASHshr2] = ACTIONS(2750), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [sym__unquoted_pattern] = ACTIONS(2114), [anon_sym_POUND] = ACTIONS(3), }, [STATE(944)] = { [sym_comment] = STATE(944), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_EQ_GT] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [anon_sym_in] = ACTIONS(2104), + [sym__newline] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_err_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_GT_PIPE] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2104), + [anon_sym_GT2] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_STAR2] = ACTIONS(2106), + [anon_sym_and2] = ACTIONS(2104), + [anon_sym_xor2] = ACTIONS(2104), + [anon_sym_or2] = ACTIONS(2104), + [anon_sym_not_DASHin2] = ACTIONS(2104), + [anon_sym_has2] = ACTIONS(2104), + [anon_sym_not_DASHhas2] = ACTIONS(2104), + [anon_sym_starts_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2104), + [anon_sym_ends_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2104), + [anon_sym_EQ_EQ2] = ACTIONS(2104), + [anon_sym_BANG_EQ2] = ACTIONS(2104), + [anon_sym_LT2] = ACTIONS(2106), + [anon_sym_LT_EQ2] = ACTIONS(2104), + [anon_sym_GT_EQ2] = ACTIONS(2104), + [anon_sym_EQ_TILDE2] = ACTIONS(2104), + [anon_sym_BANG_TILDE2] = ACTIONS(2104), + [anon_sym_like2] = ACTIONS(2104), + [anon_sym_not_DASHlike2] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2108), + [anon_sym_STAR_STAR2] = ACTIONS(2104), + [anon_sym_PLUS_PLUS2] = ACTIONS(2104), + [anon_sym_SLASH2] = ACTIONS(2106), + [anon_sym_mod2] = ACTIONS(2104), + [anon_sym_SLASH_SLASH2] = ACTIONS(2104), + [anon_sym_PLUS2] = ACTIONS(2106), + [anon_sym_bit_DASHshl2] = ACTIONS(2104), + [anon_sym_bit_DASHshr2] = ACTIONS(2104), + [anon_sym_bit_DASHand2] = ACTIONS(2104), + [anon_sym_bit_DASHxor2] = ACTIONS(2104), + [anon_sym_bit_DASHor2] = ACTIONS(2104), + [anon_sym_err_GT] = ACTIONS(2106), + [anon_sym_out_GT] = ACTIONS(2106), + [anon_sym_e_GT] = ACTIONS(2106), + [anon_sym_o_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_err_GT_GT] = ACTIONS(2104), + [anon_sym_out_GT_GT] = ACTIONS(2104), + [anon_sym_e_GT_GT] = ACTIONS(2104), + [anon_sym_o_GT_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), + [sym__unquoted_pattern] = ACTIONS(2114), [anon_sym_POUND] = ACTIONS(3), }, [STATE(945)] = { [sym_comment] = STATE(945), - [anon_sym_in] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_PIPE] = ACTIONS(2599), - [anon_sym_err_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_GT_PIPE] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2599), - [anon_sym_RPAREN] = ACTIONS(2599), - [anon_sym_GT2] = ACTIONS(2601), - [anon_sym_DASH2] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2599), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_EQ_GT] = ACTIONS(2599), - [anon_sym_STAR2] = ACTIONS(2601), - [anon_sym_and2] = ACTIONS(2599), - [anon_sym_xor2] = ACTIONS(2599), - [anon_sym_or2] = ACTIONS(2599), - [anon_sym_not_DASHin2] = ACTIONS(2599), - [anon_sym_has2] = ACTIONS(2599), - [anon_sym_not_DASHhas2] = ACTIONS(2599), - [anon_sym_starts_DASHwith2] = ACTIONS(2599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2599), - [anon_sym_ends_DASHwith2] = ACTIONS(2599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2599), - [anon_sym_EQ_EQ2] = ACTIONS(2599), - [anon_sym_BANG_EQ2] = ACTIONS(2599), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LT_EQ2] = ACTIONS(2599), - [anon_sym_GT_EQ2] = ACTIONS(2599), - [anon_sym_EQ_TILDE2] = ACTIONS(2599), - [anon_sym_BANG_TILDE2] = ACTIONS(2599), - [anon_sym_like2] = ACTIONS(2599), - [anon_sym_not_DASHlike2] = ACTIONS(2599), - [anon_sym_STAR_STAR2] = ACTIONS(2599), - [anon_sym_PLUS_PLUS2] = ACTIONS(2599), - [anon_sym_SLASH2] = ACTIONS(2601), - [anon_sym_mod2] = ACTIONS(2599), - [anon_sym_SLASH_SLASH2] = ACTIONS(2599), - [anon_sym_PLUS2] = ACTIONS(2601), - [anon_sym_bit_DASHshl2] = ACTIONS(2599), - [anon_sym_bit_DASHshr2] = ACTIONS(2599), - [anon_sym_bit_DASHand2] = ACTIONS(2599), - [anon_sym_bit_DASHxor2] = ACTIONS(2599), - [anon_sym_bit_DASHor2] = ACTIONS(2599), - [anon_sym_err_GT] = ACTIONS(2601), - [anon_sym_out_GT] = ACTIONS(2601), - [anon_sym_e_GT] = ACTIONS(2601), - [anon_sym_o_GT] = ACTIONS(2601), - [anon_sym_err_PLUSout_GT] = ACTIONS(2601), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2601), - [anon_sym_o_PLUSe_GT] = ACTIONS(2601), - [anon_sym_e_PLUSo_GT] = ACTIONS(2601), - [anon_sym_err_GT_GT] = ACTIONS(2599), - [anon_sym_out_GT_GT] = ACTIONS(2599), - [anon_sym_e_GT_GT] = ACTIONS(2599), - [anon_sym_o_GT_GT] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2599), + [anon_sym_in] = ACTIONS(2754), + [sym__newline] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2756), + [anon_sym_DASH2] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_EQ_GT] = ACTIONS(2754), + [anon_sym_STAR2] = ACTIONS(2756), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2754), + [anon_sym_has2] = ACTIONS(2754), + [anon_sym_not_DASHhas2] = ACTIONS(2754), + [anon_sym_starts_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), + [anon_sym_ends_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), + [anon_sym_EQ_EQ2] = ACTIONS(2754), + [anon_sym_BANG_EQ2] = ACTIONS(2754), + [anon_sym_LT2] = ACTIONS(2756), + [anon_sym_LT_EQ2] = ACTIONS(2754), + [anon_sym_GT_EQ2] = ACTIONS(2754), + [anon_sym_EQ_TILDE2] = ACTIONS(2754), + [anon_sym_BANG_TILDE2] = ACTIONS(2754), + [anon_sym_like2] = ACTIONS(2754), + [anon_sym_not_DASHlike2] = ACTIONS(2754), + [anon_sym_STAR_STAR2] = ACTIONS(2754), + [anon_sym_PLUS_PLUS2] = ACTIONS(2754), + [anon_sym_SLASH2] = ACTIONS(2756), + [anon_sym_mod2] = ACTIONS(2754), + [anon_sym_SLASH_SLASH2] = ACTIONS(2754), + [anon_sym_PLUS2] = ACTIONS(2756), + [anon_sym_bit_DASHshl2] = ACTIONS(2754), + [anon_sym_bit_DASHshr2] = ACTIONS(2754), + [anon_sym_bit_DASHand2] = ACTIONS(2754), + [anon_sym_bit_DASHxor2] = ACTIONS(2754), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), [anon_sym_POUND] = ACTIONS(3), }, [STATE(946)] = { [sym_comment] = STATE(946), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_EQ_GT] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), + [sym__unquoted_pattern] = ACTIONS(2760), [anon_sym_POUND] = ACTIONS(3), }, [STATE(947)] = { [sym_comment] = STATE(947), - [anon_sym_in] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_PIPE] = ACTIONS(2603), - [anon_sym_err_GT_PIPE] = ACTIONS(2603), - [anon_sym_out_GT_PIPE] = ACTIONS(2603), - [anon_sym_e_GT_PIPE] = ACTIONS(2603), - [anon_sym_o_GT_PIPE] = ACTIONS(2603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2603), - [anon_sym_RPAREN] = ACTIONS(2603), - [anon_sym_GT2] = ACTIONS(2605), - [anon_sym_DASH2] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_EQ_GT] = ACTIONS(2603), - [anon_sym_STAR2] = ACTIONS(2605), - [anon_sym_and2] = ACTIONS(2603), - [anon_sym_xor2] = ACTIONS(2603), - [anon_sym_or2] = ACTIONS(2603), - [anon_sym_not_DASHin2] = ACTIONS(2603), - [anon_sym_has2] = ACTIONS(2603), - [anon_sym_not_DASHhas2] = ACTIONS(2603), - [anon_sym_starts_DASHwith2] = ACTIONS(2603), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2603), - [anon_sym_ends_DASHwith2] = ACTIONS(2603), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2603), - [anon_sym_EQ_EQ2] = ACTIONS(2603), - [anon_sym_BANG_EQ2] = ACTIONS(2603), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LT_EQ2] = ACTIONS(2603), - [anon_sym_GT_EQ2] = ACTIONS(2603), - [anon_sym_EQ_TILDE2] = ACTIONS(2603), - [anon_sym_BANG_TILDE2] = ACTIONS(2603), - [anon_sym_like2] = ACTIONS(2603), - [anon_sym_not_DASHlike2] = ACTIONS(2603), - [anon_sym_STAR_STAR2] = ACTIONS(2603), - [anon_sym_PLUS_PLUS2] = ACTIONS(2603), - [anon_sym_SLASH2] = ACTIONS(2605), - [anon_sym_mod2] = ACTIONS(2603), - [anon_sym_SLASH_SLASH2] = ACTIONS(2603), - [anon_sym_PLUS2] = ACTIONS(2605), - [anon_sym_bit_DASHshl2] = ACTIONS(2603), - [anon_sym_bit_DASHshr2] = ACTIONS(2603), - [anon_sym_bit_DASHand2] = ACTIONS(2603), - [anon_sym_bit_DASHxor2] = ACTIONS(2603), - [anon_sym_bit_DASHor2] = ACTIONS(2603), - [anon_sym_err_GT] = ACTIONS(2605), - [anon_sym_out_GT] = ACTIONS(2605), - [anon_sym_e_GT] = ACTIONS(2605), - [anon_sym_o_GT] = ACTIONS(2605), - [anon_sym_err_PLUSout_GT] = ACTIONS(2605), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2605), - [anon_sym_o_PLUSe_GT] = ACTIONS(2605), - [anon_sym_e_PLUSo_GT] = ACTIONS(2605), - [anon_sym_err_GT_GT] = ACTIONS(2603), - [anon_sym_out_GT_GT] = ACTIONS(2603), - [anon_sym_e_GT_GT] = ACTIONS(2603), - [anon_sym_o_GT_GT] = ACTIONS(2603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2603), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2762), + [anon_sym_RBRACE] = ACTIONS(2762), + [anon_sym_STAR2] = ACTIONS(2764), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2766), + [anon_sym_STAR_STAR2] = ACTIONS(2762), + [anon_sym_PLUS_PLUS2] = ACTIONS(2762), + [anon_sym_SLASH2] = ACTIONS(2764), + [anon_sym_mod2] = ACTIONS(2762), + [anon_sym_SLASH_SLASH2] = ACTIONS(2762), + [anon_sym_PLUS2] = ACTIONS(2764), + [anon_sym_bit_DASHshl2] = ACTIONS(2762), + [anon_sym_bit_DASHshr2] = ACTIONS(2762), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [sym__unquoted_pattern] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(948)] = { [sym_comment] = STATE(948), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [sym__unquoted_pattern] = ACTIONS(1984), + [ts_builtin_sym_end] = ACTIONS(1821), + [anon_sym_in] = ACTIONS(1821), + [sym__newline] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1821), + [anon_sym_err_GT_PIPE] = ACTIONS(1821), + [anon_sym_out_GT_PIPE] = ACTIONS(1821), + [anon_sym_e_GT_PIPE] = ACTIONS(1821), + [anon_sym_o_GT_PIPE] = ACTIONS(1821), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1821), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1821), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1821), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1821), + [anon_sym_GT2] = ACTIONS(1823), + [anon_sym_DASH2] = ACTIONS(1821), + [anon_sym_STAR2] = ACTIONS(1823), + [anon_sym_and2] = ACTIONS(1821), + [anon_sym_xor2] = ACTIONS(1821), + [anon_sym_or2] = ACTIONS(1821), + [anon_sym_not_DASHin2] = ACTIONS(1821), + [anon_sym_has2] = ACTIONS(1821), + [anon_sym_not_DASHhas2] = ACTIONS(1821), + [anon_sym_starts_DASHwith2] = ACTIONS(1821), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1821), + [anon_sym_ends_DASHwith2] = ACTIONS(1821), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1821), + [anon_sym_EQ_EQ2] = ACTIONS(1821), + [anon_sym_BANG_EQ2] = ACTIONS(1821), + [anon_sym_LT2] = ACTIONS(1823), + [anon_sym_LT_EQ2] = ACTIONS(1821), + [anon_sym_GT_EQ2] = ACTIONS(1821), + [anon_sym_EQ_TILDE2] = ACTIONS(1821), + [anon_sym_BANG_TILDE2] = ACTIONS(1821), + [anon_sym_like2] = ACTIONS(1821), + [anon_sym_not_DASHlike2] = ACTIONS(1821), + [anon_sym_STAR_STAR2] = ACTIONS(1821), + [anon_sym_PLUS_PLUS2] = ACTIONS(1821), + [anon_sym_SLASH2] = ACTIONS(1823), + [anon_sym_mod2] = ACTIONS(1821), + [anon_sym_SLASH_SLASH2] = ACTIONS(1821), + [anon_sym_PLUS2] = ACTIONS(1823), + [anon_sym_bit_DASHshl2] = ACTIONS(1821), + [anon_sym_bit_DASHshr2] = ACTIONS(1821), + [anon_sym_bit_DASHand2] = ACTIONS(1821), + [anon_sym_bit_DASHxor2] = ACTIONS(1821), + [anon_sym_bit_DASHor2] = ACTIONS(1821), + [anon_sym_DOT_DOT2] = ACTIONS(1823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1821), + [anon_sym_err_GT] = ACTIONS(1823), + [anon_sym_out_GT] = ACTIONS(1823), + [anon_sym_e_GT] = ACTIONS(1823), + [anon_sym_o_GT] = ACTIONS(1823), + [anon_sym_err_PLUSout_GT] = ACTIONS(1823), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1823), + [anon_sym_o_PLUSe_GT] = ACTIONS(1823), + [anon_sym_e_PLUSo_GT] = ACTIONS(1823), + [anon_sym_err_GT_GT] = ACTIONS(1821), + [anon_sym_out_GT_GT] = ACTIONS(1821), + [anon_sym_e_GT_GT] = ACTIONS(1821), + [anon_sym_o_GT_GT] = ACTIONS(1821), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1821), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1821), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1821), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1821), [anon_sym_POUND] = ACTIONS(3), }, [STATE(949)] = { [sym_comment] = STATE(949), - [anon_sym_in] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_PIPE] = ACTIONS(2607), - [anon_sym_err_GT_PIPE] = ACTIONS(2607), - [anon_sym_out_GT_PIPE] = ACTIONS(2607), - [anon_sym_e_GT_PIPE] = ACTIONS(2607), - [anon_sym_o_GT_PIPE] = ACTIONS(2607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2607), - [anon_sym_RPAREN] = ACTIONS(2607), - [anon_sym_GT2] = ACTIONS(2609), - [anon_sym_DASH2] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_EQ_GT] = ACTIONS(2607), - [anon_sym_STAR2] = ACTIONS(2609), - [anon_sym_and2] = ACTIONS(2607), - [anon_sym_xor2] = ACTIONS(2607), - [anon_sym_or2] = ACTIONS(2607), - [anon_sym_not_DASHin2] = ACTIONS(2607), - [anon_sym_has2] = ACTIONS(2607), - [anon_sym_not_DASHhas2] = ACTIONS(2607), - [anon_sym_starts_DASHwith2] = ACTIONS(2607), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2607), - [anon_sym_ends_DASHwith2] = ACTIONS(2607), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2607), - [anon_sym_EQ_EQ2] = ACTIONS(2607), - [anon_sym_BANG_EQ2] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LT_EQ2] = ACTIONS(2607), - [anon_sym_GT_EQ2] = ACTIONS(2607), - [anon_sym_EQ_TILDE2] = ACTIONS(2607), - [anon_sym_BANG_TILDE2] = ACTIONS(2607), - [anon_sym_like2] = ACTIONS(2607), - [anon_sym_not_DASHlike2] = ACTIONS(2607), - [anon_sym_STAR_STAR2] = ACTIONS(2607), - [anon_sym_PLUS_PLUS2] = ACTIONS(2607), - [anon_sym_SLASH2] = ACTIONS(2609), - [anon_sym_mod2] = ACTIONS(2607), - [anon_sym_SLASH_SLASH2] = ACTIONS(2607), - [anon_sym_PLUS2] = ACTIONS(2609), - [anon_sym_bit_DASHshl2] = ACTIONS(2607), - [anon_sym_bit_DASHshr2] = ACTIONS(2607), - [anon_sym_bit_DASHand2] = ACTIONS(2607), - [anon_sym_bit_DASHxor2] = ACTIONS(2607), - [anon_sym_bit_DASHor2] = ACTIONS(2607), - [anon_sym_err_GT] = ACTIONS(2609), - [anon_sym_out_GT] = ACTIONS(2609), - [anon_sym_e_GT] = ACTIONS(2609), - [anon_sym_o_GT] = ACTIONS(2609), - [anon_sym_err_PLUSout_GT] = ACTIONS(2609), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2609), - [anon_sym_o_PLUSe_GT] = ACTIONS(2609), - [anon_sym_e_PLUSo_GT] = ACTIONS(2609), - [anon_sym_err_GT_GT] = ACTIONS(2607), - [anon_sym_out_GT_GT] = ACTIONS(2607), - [anon_sym_e_GT_GT] = ACTIONS(2607), - [anon_sym_o_GT_GT] = ACTIONS(2607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2607), + [anon_sym_in] = ACTIONS(1014), + [sym__newline] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_err_GT_PIPE] = ACTIONS(1014), + [anon_sym_out_GT_PIPE] = ACTIONS(1014), + [anon_sym_e_GT_PIPE] = ACTIONS(1014), + [anon_sym_o_GT_PIPE] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1014), + [anon_sym_RPAREN] = ACTIONS(1014), + [anon_sym_GT2] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_STAR2] = ACTIONS(1016), + [anon_sym_and2] = ACTIONS(1014), + [anon_sym_xor2] = ACTIONS(1014), + [anon_sym_or2] = ACTIONS(1014), + [anon_sym_not_DASHin2] = ACTIONS(1014), + [anon_sym_has2] = ACTIONS(1014), + [anon_sym_not_DASHhas2] = ACTIONS(1014), + [anon_sym_starts_DASHwith2] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1014), + [anon_sym_ends_DASHwith2] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1014), + [anon_sym_EQ_EQ2] = ACTIONS(1014), + [anon_sym_BANG_EQ2] = ACTIONS(1014), + [anon_sym_LT2] = ACTIONS(1016), + [anon_sym_LT_EQ2] = ACTIONS(1014), + [anon_sym_GT_EQ2] = ACTIONS(1014), + [anon_sym_EQ_TILDE2] = ACTIONS(1014), + [anon_sym_BANG_TILDE2] = ACTIONS(1014), + [anon_sym_like2] = ACTIONS(1014), + [anon_sym_not_DASHlike2] = ACTIONS(1014), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_STAR_STAR2] = ACTIONS(1014), + [anon_sym_PLUS_PLUS2] = ACTIONS(1014), + [anon_sym_SLASH2] = ACTIONS(1016), + [anon_sym_mod2] = ACTIONS(1014), + [anon_sym_SLASH_SLASH2] = ACTIONS(1014), + [anon_sym_PLUS2] = ACTIONS(1016), + [anon_sym_bit_DASHshl2] = ACTIONS(1014), + [anon_sym_bit_DASHshr2] = ACTIONS(1014), + [anon_sym_bit_DASHand2] = ACTIONS(1014), + [anon_sym_bit_DASHxor2] = ACTIONS(1014), + [anon_sym_bit_DASHor2] = ACTIONS(1014), + [anon_sym_err_GT] = ACTIONS(1016), + [anon_sym_out_GT] = ACTIONS(1016), + [anon_sym_e_GT] = ACTIONS(1016), + [anon_sym_o_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT] = ACTIONS(1016), + [anon_sym_err_GT_GT] = ACTIONS(1014), + [anon_sym_out_GT_GT] = ACTIONS(1014), + [anon_sym_e_GT_GT] = ACTIONS(1014), + [anon_sym_o_GT_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1014), + [sym__unquoted_pattern] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(950)] = { [sym_comment] = STATE(950), - [ts_builtin_sym_end] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(2611), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2613), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2613), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(1032), + [sym__newline] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_RPAREN] = ACTIONS(1032), + [anon_sym_GT2] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1032), + [anon_sym_RBRACE] = ACTIONS(1032), + [anon_sym_STAR2] = ACTIONS(1024), + [anon_sym_and2] = ACTIONS(1032), + [anon_sym_xor2] = ACTIONS(1032), + [anon_sym_or2] = ACTIONS(1032), + [anon_sym_not_DASHin2] = ACTIONS(1032), + [anon_sym_has2] = ACTIONS(1032), + [anon_sym_not_DASHhas2] = ACTIONS(1032), + [anon_sym_starts_DASHwith2] = ACTIONS(1032), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1032), + [anon_sym_ends_DASHwith2] = ACTIONS(1032), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1032), + [anon_sym_EQ_EQ2] = ACTIONS(1032), + [anon_sym_BANG_EQ2] = ACTIONS(1032), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ2] = ACTIONS(1032), + [anon_sym_GT_EQ2] = ACTIONS(1032), + [anon_sym_EQ_TILDE2] = ACTIONS(1032), + [anon_sym_BANG_TILDE2] = ACTIONS(1032), + [anon_sym_like2] = ACTIONS(1032), + [anon_sym_not_DASHlike2] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_STAR_STAR2] = ACTIONS(1032), + [anon_sym_PLUS_PLUS2] = ACTIONS(1032), + [anon_sym_SLASH2] = ACTIONS(1024), + [anon_sym_mod2] = ACTIONS(1032), + [anon_sym_SLASH_SLASH2] = ACTIONS(1032), + [anon_sym_PLUS2] = ACTIONS(1024), + [anon_sym_bit_DASHshl2] = ACTIONS(1032), + [anon_sym_bit_DASHshr2] = ACTIONS(1032), + [anon_sym_bit_DASHand2] = ACTIONS(1032), + [anon_sym_bit_DASHxor2] = ACTIONS(1032), + [anon_sym_bit_DASHor2] = ACTIONS(1032), + [anon_sym_err_GT] = ACTIONS(1024), + [anon_sym_out_GT] = ACTIONS(1024), + [anon_sym_e_GT] = ACTIONS(1024), + [anon_sym_o_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT] = ACTIONS(1024), + [anon_sym_err_GT_GT] = ACTIONS(1032), + [anon_sym_out_GT_GT] = ACTIONS(1032), + [anon_sym_e_GT_GT] = ACTIONS(1032), + [anon_sym_o_GT_GT] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [sym__unquoted_pattern] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(951)] = { [sym_comment] = STATE(951), - [anon_sym_in] = ACTIONS(2615), - [sym__newline] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_PIPE] = ACTIONS(2615), - [anon_sym_err_GT_PIPE] = ACTIONS(2615), - [anon_sym_out_GT_PIPE] = ACTIONS(2615), - [anon_sym_e_GT_PIPE] = ACTIONS(2615), - [anon_sym_o_GT_PIPE] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2615), - [anon_sym_RPAREN] = ACTIONS(2615), - [anon_sym_GT2] = ACTIONS(2617), - [anon_sym_DASH2] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_EQ_GT] = ACTIONS(2615), - [anon_sym_STAR2] = ACTIONS(2617), - [anon_sym_and2] = ACTIONS(2615), - [anon_sym_xor2] = ACTIONS(2615), - [anon_sym_or2] = ACTIONS(2615), - [anon_sym_not_DASHin2] = ACTIONS(2615), - [anon_sym_has2] = ACTIONS(2615), - [anon_sym_not_DASHhas2] = ACTIONS(2615), - [anon_sym_starts_DASHwith2] = ACTIONS(2615), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2615), - [anon_sym_ends_DASHwith2] = ACTIONS(2615), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2615), - [anon_sym_EQ_EQ2] = ACTIONS(2615), - [anon_sym_BANG_EQ2] = ACTIONS(2615), - [anon_sym_LT2] = ACTIONS(2617), - [anon_sym_LT_EQ2] = ACTIONS(2615), - [anon_sym_GT_EQ2] = ACTIONS(2615), - [anon_sym_EQ_TILDE2] = ACTIONS(2615), - [anon_sym_BANG_TILDE2] = ACTIONS(2615), - [anon_sym_like2] = ACTIONS(2615), - [anon_sym_not_DASHlike2] = ACTIONS(2615), - [anon_sym_STAR_STAR2] = ACTIONS(2615), - [anon_sym_PLUS_PLUS2] = ACTIONS(2615), - [anon_sym_SLASH2] = ACTIONS(2617), - [anon_sym_mod2] = ACTIONS(2615), - [anon_sym_SLASH_SLASH2] = ACTIONS(2615), - [anon_sym_PLUS2] = ACTIONS(2617), - [anon_sym_bit_DASHshl2] = ACTIONS(2615), - [anon_sym_bit_DASHshr2] = ACTIONS(2615), - [anon_sym_bit_DASHand2] = ACTIONS(2615), - [anon_sym_bit_DASHxor2] = ACTIONS(2615), - [anon_sym_bit_DASHor2] = ACTIONS(2615), - [anon_sym_err_GT] = ACTIONS(2617), - [anon_sym_out_GT] = ACTIONS(2617), - [anon_sym_e_GT] = ACTIONS(2617), - [anon_sym_o_GT] = ACTIONS(2617), - [anon_sym_err_PLUSout_GT] = ACTIONS(2617), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2617), - [anon_sym_o_PLUSe_GT] = ACTIONS(2617), - [anon_sym_e_PLUSo_GT] = ACTIONS(2617), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [ts_builtin_sym_end] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(1882), + [sym__newline] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_err_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_GT_PIPE] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), + [anon_sym_GT2] = ACTIONS(1884), + [anon_sym_DASH2] = ACTIONS(1882), + [anon_sym_STAR2] = ACTIONS(1884), + [anon_sym_and2] = ACTIONS(1882), + [anon_sym_xor2] = ACTIONS(1882), + [anon_sym_or2] = ACTIONS(1882), + [anon_sym_not_DASHin2] = ACTIONS(1882), + [anon_sym_has2] = ACTIONS(1882), + [anon_sym_not_DASHhas2] = ACTIONS(1882), + [anon_sym_starts_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), + [anon_sym_ends_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), + [anon_sym_EQ_EQ2] = ACTIONS(1882), + [anon_sym_BANG_EQ2] = ACTIONS(1882), + [anon_sym_LT2] = ACTIONS(1884), + [anon_sym_LT_EQ2] = ACTIONS(1882), + [anon_sym_GT_EQ2] = ACTIONS(1882), + [anon_sym_EQ_TILDE2] = ACTIONS(1882), + [anon_sym_BANG_TILDE2] = ACTIONS(1882), + [anon_sym_like2] = ACTIONS(1882), + [anon_sym_not_DASHlike2] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(1882), + [anon_sym_STAR_STAR2] = ACTIONS(1882), + [anon_sym_PLUS_PLUS2] = ACTIONS(1882), + [anon_sym_SLASH2] = ACTIONS(1884), + [anon_sym_mod2] = ACTIONS(1882), + [anon_sym_SLASH_SLASH2] = ACTIONS(1882), + [anon_sym_PLUS2] = ACTIONS(1884), + [anon_sym_bit_DASHshl2] = ACTIONS(1882), + [anon_sym_bit_DASHshr2] = ACTIONS(1882), + [anon_sym_bit_DASHand2] = ACTIONS(1882), + [anon_sym_bit_DASHxor2] = ACTIONS(1882), + [anon_sym_bit_DASHor2] = ACTIONS(1882), + [aux_sym__immediate_decimal_token5] = ACTIONS(2464), + [anon_sym_err_GT] = ACTIONS(1884), + [anon_sym_out_GT] = ACTIONS(1884), + [anon_sym_e_GT] = ACTIONS(1884), + [anon_sym_o_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT] = ACTIONS(1884), + [anon_sym_err_GT_GT] = ACTIONS(1882), + [anon_sym_out_GT_GT] = ACTIONS(1882), + [anon_sym_e_GT_GT] = ACTIONS(1882), + [anon_sym_o_GT_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [sym__unquoted_pattern] = ACTIONS(1884), [anon_sym_POUND] = ACTIONS(3), }, [STATE(952)] = { [sym_comment] = STATE(952), - [ts_builtin_sym_end] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [ts_builtin_sym_end] = ACTIONS(1856), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1856), + [anon_sym_STAR2] = ACTIONS(1750), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1750), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1856), + [anon_sym_SLASH2] = ACTIONS(1750), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1750), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1906), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1908), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1908), + [anon_sym_err_GT] = ACTIONS(1750), + [anon_sym_out_GT] = ACTIONS(1750), + [anon_sym_e_GT] = ACTIONS(1750), + [anon_sym_o_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT] = ACTIONS(1750), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(3), }, [STATE(953)] = { [sym_comment] = STATE(953), - [anon_sym_in] = ACTIONS(2619), - [sym__newline] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2619), - [anon_sym_PIPE] = ACTIONS(2619), - [anon_sym_err_GT_PIPE] = ACTIONS(2619), - [anon_sym_out_GT_PIPE] = ACTIONS(2619), - [anon_sym_e_GT_PIPE] = ACTIONS(2619), - [anon_sym_o_GT_PIPE] = ACTIONS(2619), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2619), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2619), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2619), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2619), - [anon_sym_GT2] = ACTIONS(2621), - [anon_sym_DASH2] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_RBRACE] = ACTIONS(2619), - [anon_sym_EQ_GT] = ACTIONS(2619), - [anon_sym_STAR2] = ACTIONS(2621), - [anon_sym_and2] = ACTIONS(2619), - [anon_sym_xor2] = ACTIONS(2619), - [anon_sym_or2] = ACTIONS(2619), - [anon_sym_not_DASHin2] = ACTIONS(2619), - [anon_sym_has2] = ACTIONS(2619), - [anon_sym_not_DASHhas2] = ACTIONS(2619), - [anon_sym_starts_DASHwith2] = ACTIONS(2619), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2619), - [anon_sym_ends_DASHwith2] = ACTIONS(2619), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2619), - [anon_sym_EQ_EQ2] = ACTIONS(2619), - [anon_sym_BANG_EQ2] = ACTIONS(2619), - [anon_sym_LT2] = ACTIONS(2621), - [anon_sym_LT_EQ2] = ACTIONS(2619), - [anon_sym_GT_EQ2] = ACTIONS(2619), - [anon_sym_EQ_TILDE2] = ACTIONS(2619), - [anon_sym_BANG_TILDE2] = ACTIONS(2619), - [anon_sym_like2] = ACTIONS(2619), - [anon_sym_not_DASHlike2] = ACTIONS(2619), - [anon_sym_STAR_STAR2] = ACTIONS(2619), - [anon_sym_PLUS_PLUS2] = ACTIONS(2619), - [anon_sym_SLASH2] = ACTIONS(2621), - [anon_sym_mod2] = ACTIONS(2619), - [anon_sym_SLASH_SLASH2] = ACTIONS(2619), - [anon_sym_PLUS2] = ACTIONS(2621), - [anon_sym_bit_DASHshl2] = ACTIONS(2619), - [anon_sym_bit_DASHshr2] = ACTIONS(2619), - [anon_sym_bit_DASHand2] = ACTIONS(2619), - [anon_sym_bit_DASHxor2] = ACTIONS(2619), - [anon_sym_bit_DASHor2] = ACTIONS(2619), - [anon_sym_err_GT] = ACTIONS(2621), - [anon_sym_out_GT] = ACTIONS(2621), - [anon_sym_e_GT] = ACTIONS(2621), - [anon_sym_o_GT] = ACTIONS(2621), - [anon_sym_err_PLUSout_GT] = ACTIONS(2621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2621), - [anon_sym_o_PLUSe_GT] = ACTIONS(2621), - [anon_sym_e_PLUSo_GT] = ACTIONS(2621), - [anon_sym_err_GT_GT] = ACTIONS(2619), - [anon_sym_out_GT_GT] = ACTIONS(2619), - [anon_sym_e_GT_GT] = ACTIONS(2619), - [anon_sym_o_GT_GT] = ACTIONS(2619), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2619), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2619), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2619), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2619), + [ts_builtin_sym_end] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [sym__newline] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_err_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_GT_PIPE] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2232), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2232), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2232), + [anon_sym_xor2] = ACTIONS(2232), + [anon_sym_or2] = ACTIONS(2232), + [anon_sym_not_DASHin2] = ACTIONS(2232), + [anon_sym_has2] = ACTIONS(2232), + [anon_sym_not_DASHhas2] = ACTIONS(2232), + [anon_sym_starts_DASHwith2] = ACTIONS(2232), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2232), + [anon_sym_ends_DASHwith2] = ACTIONS(2232), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2232), + [anon_sym_EQ_EQ2] = ACTIONS(2232), + [anon_sym_BANG_EQ2] = ACTIONS(2232), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2232), + [anon_sym_GT_EQ2] = ACTIONS(2232), + [anon_sym_EQ_TILDE2] = ACTIONS(2232), + [anon_sym_BANG_TILDE2] = ACTIONS(2232), + [anon_sym_like2] = ACTIONS(2232), + [anon_sym_not_DASHlike2] = ACTIONS(2232), + [anon_sym_STAR_STAR2] = ACTIONS(2232), + [anon_sym_PLUS_PLUS2] = ACTIONS(2232), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2232), + [anon_sym_SLASH_SLASH2] = ACTIONS(2232), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2232), + [anon_sym_bit_DASHshr2] = ACTIONS(2232), + [anon_sym_bit_DASHand2] = ACTIONS(2232), + [anon_sym_bit_DASHxor2] = ACTIONS(2232), + [anon_sym_bit_DASHor2] = ACTIONS(2232), + [anon_sym_DOT_DOT2] = ACTIONS(2774), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2776), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2234), + [anon_sym_out_GT] = ACTIONS(2234), + [anon_sym_e_GT] = ACTIONS(2234), + [anon_sym_o_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT] = ACTIONS(2234), + [anon_sym_err_GT_GT] = ACTIONS(2232), + [anon_sym_out_GT_GT] = ACTIONS(2232), + [anon_sym_e_GT_GT] = ACTIONS(2232), + [anon_sym_o_GT_GT] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2232), [anon_sym_POUND] = ACTIONS(3), }, [STATE(954)] = { [sym_comment] = STATE(954), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [ts_builtin_sym_end] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2104), + [sym__newline] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_err_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_GT_PIPE] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), + [anon_sym_GT2] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2104), + [anon_sym_STAR2] = ACTIONS(2106), + [anon_sym_and2] = ACTIONS(2104), + [anon_sym_xor2] = ACTIONS(2104), + [anon_sym_or2] = ACTIONS(2104), + [anon_sym_not_DASHin2] = ACTIONS(2104), + [anon_sym_has2] = ACTIONS(2104), + [anon_sym_not_DASHhas2] = ACTIONS(2104), + [anon_sym_starts_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2104), + [anon_sym_ends_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2104), + [anon_sym_EQ_EQ2] = ACTIONS(2104), + [anon_sym_BANG_EQ2] = ACTIONS(2104), + [anon_sym_LT2] = ACTIONS(2106), + [anon_sym_LT_EQ2] = ACTIONS(2104), + [anon_sym_GT_EQ2] = ACTIONS(2104), + [anon_sym_EQ_TILDE2] = ACTIONS(2104), + [anon_sym_BANG_TILDE2] = ACTIONS(2104), + [anon_sym_like2] = ACTIONS(2104), + [anon_sym_not_DASHlike2] = ACTIONS(2104), + [anon_sym_STAR_STAR2] = ACTIONS(2104), + [anon_sym_PLUS_PLUS2] = ACTIONS(2104), + [anon_sym_SLASH2] = ACTIONS(2106), + [anon_sym_mod2] = ACTIONS(2104), + [anon_sym_SLASH_SLASH2] = ACTIONS(2104), + [anon_sym_PLUS2] = ACTIONS(2106), + [anon_sym_bit_DASHshl2] = ACTIONS(2104), + [anon_sym_bit_DASHshr2] = ACTIONS(2104), + [anon_sym_bit_DASHand2] = ACTIONS(2104), + [anon_sym_bit_DASHxor2] = ACTIONS(2104), + [anon_sym_bit_DASHor2] = ACTIONS(2104), + [anon_sym_DOT_DOT2] = ACTIONS(2778), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2780), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2780), + [anon_sym_err_GT] = ACTIONS(2106), + [anon_sym_out_GT] = ACTIONS(2106), + [anon_sym_e_GT] = ACTIONS(2106), + [anon_sym_o_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_err_GT_GT] = ACTIONS(2104), + [anon_sym_out_GT_GT] = ACTIONS(2104), + [anon_sym_e_GT_GT] = ACTIONS(2104), + [anon_sym_o_GT_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), [anon_sym_POUND] = ACTIONS(3), }, [STATE(955)] = { [sym_comment] = STATE(955), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), + [ts_builtin_sym_end] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [aux_sym__immediate_decimal_token5] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [sym__unquoted_pattern] = ACTIONS(1958), [anon_sym_POUND] = ACTIONS(3), }, [STATE(956)] = { [sym_comment] = STATE(956), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), + [anon_sym_in] = ACTIONS(2750), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2752), + [anon_sym_DASH2] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_EQ_GT] = ACTIONS(2750), + [anon_sym_STAR2] = ACTIONS(2752), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2750), + [anon_sym_has2] = ACTIONS(2750), + [anon_sym_not_DASHhas2] = ACTIONS(2750), + [anon_sym_starts_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), + [anon_sym_ends_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), + [anon_sym_EQ_EQ2] = ACTIONS(2750), + [anon_sym_BANG_EQ2] = ACTIONS(2750), + [anon_sym_LT2] = ACTIONS(2752), + [anon_sym_LT_EQ2] = ACTIONS(2750), + [anon_sym_GT_EQ2] = ACTIONS(2750), + [anon_sym_EQ_TILDE2] = ACTIONS(2750), + [anon_sym_BANG_TILDE2] = ACTIONS(2750), + [anon_sym_like2] = ACTIONS(2750), + [anon_sym_not_DASHlike2] = ACTIONS(2750), + [anon_sym_STAR_STAR2] = ACTIONS(2750), + [anon_sym_PLUS_PLUS2] = ACTIONS(2750), + [anon_sym_SLASH2] = ACTIONS(2752), + [anon_sym_mod2] = ACTIONS(2750), + [anon_sym_SLASH_SLASH2] = ACTIONS(2750), + [anon_sym_PLUS2] = ACTIONS(2752), + [anon_sym_bit_DASHshl2] = ACTIONS(2750), + [anon_sym_bit_DASHshr2] = ACTIONS(2750), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), [anon_sym_POUND] = ACTIONS(3), }, [STATE(957)] = { [sym_comment] = STATE(957), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(2627), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [ts_builtin_sym_end] = ACTIONS(2254), + [anon_sym_in] = ACTIONS(2244), + [sym__newline] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2244), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2244), + [anon_sym_xor2] = ACTIONS(2244), + [anon_sym_or2] = ACTIONS(2244), + [anon_sym_not_DASHin2] = ACTIONS(2244), + [anon_sym_has2] = ACTIONS(2244), + [anon_sym_not_DASHhas2] = ACTIONS(2244), + [anon_sym_starts_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2244), + [anon_sym_ends_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2244), + [anon_sym_EQ_EQ2] = ACTIONS(2244), + [anon_sym_BANG_EQ2] = ACTIONS(2244), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2244), + [anon_sym_GT_EQ2] = ACTIONS(2244), + [anon_sym_EQ_TILDE2] = ACTIONS(2244), + [anon_sym_BANG_TILDE2] = ACTIONS(2244), + [anon_sym_like2] = ACTIONS(2244), + [anon_sym_not_DASHlike2] = ACTIONS(2244), + [anon_sym_STAR_STAR2] = ACTIONS(2244), + [anon_sym_PLUS_PLUS2] = ACTIONS(2244), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2244), + [anon_sym_SLASH_SLASH2] = ACTIONS(2244), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2244), + [anon_sym_bit_DASHshr2] = ACTIONS(2244), + [anon_sym_bit_DASHand2] = ACTIONS(2244), + [anon_sym_bit_DASHxor2] = ACTIONS(2244), + [anon_sym_bit_DASHor2] = ACTIONS(2244), + [anon_sym_DOT_DOT2] = ACTIONS(1906), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1908), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1908), + [anon_sym_err_GT] = ACTIONS(2256), + [anon_sym_out_GT] = ACTIONS(2256), + [anon_sym_e_GT] = ACTIONS(2256), + [anon_sym_o_GT] = ACTIONS(2256), + [anon_sym_err_PLUSout_GT] = ACTIONS(2256), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2256), + [anon_sym_o_PLUSe_GT] = ACTIONS(2256), + [anon_sym_e_PLUSo_GT] = ACTIONS(2256), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), [anon_sym_POUND] = ACTIONS(3), }, [STATE(958)] = { [sym_comment] = STATE(958), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_RPAREN] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), - [sym__unquoted_pattern] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(2244), + [sym__newline] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_err_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_GT_PIPE] = ACTIONS(2244), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2244), + [anon_sym_RPAREN] = ACTIONS(2244), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_EQ_GT] = ACTIONS(2244), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2244), + [anon_sym_xor2] = ACTIONS(2244), + [anon_sym_or2] = ACTIONS(2244), + [anon_sym_not_DASHin2] = ACTIONS(2244), + [anon_sym_has2] = ACTIONS(2244), + [anon_sym_not_DASHhas2] = ACTIONS(2244), + [anon_sym_starts_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2244), + [anon_sym_ends_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2244), + [anon_sym_EQ_EQ2] = ACTIONS(2244), + [anon_sym_BANG_EQ2] = ACTIONS(2244), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2244), + [anon_sym_GT_EQ2] = ACTIONS(2244), + [anon_sym_EQ_TILDE2] = ACTIONS(2244), + [anon_sym_BANG_TILDE2] = ACTIONS(2244), + [anon_sym_like2] = ACTIONS(2244), + [anon_sym_not_DASHlike2] = ACTIONS(2244), + [anon_sym_STAR_STAR2] = ACTIONS(2244), + [anon_sym_PLUS_PLUS2] = ACTIONS(2244), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2244), + [anon_sym_SLASH_SLASH2] = ACTIONS(2244), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2244), + [anon_sym_bit_DASHshr2] = ACTIONS(2244), + [anon_sym_bit_DASHand2] = ACTIONS(2244), + [anon_sym_bit_DASHxor2] = ACTIONS(2244), + [anon_sym_bit_DASHor2] = ACTIONS(2244), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2244), + [anon_sym_out_GT_GT] = ACTIONS(2244), + [anon_sym_e_GT_GT] = ACTIONS(2244), + [anon_sym_o_GT_GT] = ACTIONS(2244), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2244), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2244), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2244), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2244), [anon_sym_POUND] = ACTIONS(3), }, [STATE(959)] = { [sym_comment] = STATE(959), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), - [sym__unquoted_pattern] = ACTIONS(2633), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_EQ_GT] = ACTIONS(1856), + [anon_sym_STAR2] = ACTIONS(1750), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1750), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1856), + [anon_sym_SLASH2] = ACTIONS(1750), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1750), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_err_GT] = ACTIONS(1750), + [anon_sym_out_GT] = ACTIONS(1750), + [anon_sym_e_GT] = ACTIONS(1750), + [anon_sym_o_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT] = ACTIONS(1750), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(3), }, [STATE(960)] = { [sym_comment] = STATE(960), - [anon_sym_in] = ACTIONS(2635), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2635), - [anon_sym_xor2] = ACTIONS(2635), - [anon_sym_or2] = ACTIONS(2635), - [anon_sym_not_DASHin2] = ACTIONS(2635), - [anon_sym_has2] = ACTIONS(2635), - [anon_sym_not_DASHhas2] = ACTIONS(2635), - [anon_sym_starts_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2635), - [anon_sym_ends_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2635), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2635), - [anon_sym_like2] = ACTIONS(2635), - [anon_sym_not_DASHlike2] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_STAR_STAR2] = ACTIONS(2635), - [anon_sym_PLUS_PLUS2] = ACTIONS(2635), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2635), - [anon_sym_SLASH_SLASH2] = ACTIONS(2635), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2635), - [anon_sym_bit_DASHshr2] = ACTIONS(2635), - [anon_sym_bit_DASHand2] = ACTIONS(2635), - [anon_sym_bit_DASHxor2] = ACTIONS(2635), - [anon_sym_bit_DASHor2] = ACTIONS(2635), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [sym__unquoted_pattern] = ACTIONS(2641), + [anon_sym_in] = ACTIONS(2244), + [sym__newline] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_EQ_GT] = ACTIONS(2254), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2244), + [anon_sym_xor2] = ACTIONS(2244), + [anon_sym_or2] = ACTIONS(2244), + [anon_sym_not_DASHin2] = ACTIONS(2244), + [anon_sym_has2] = ACTIONS(2244), + [anon_sym_not_DASHhas2] = ACTIONS(2244), + [anon_sym_starts_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2244), + [anon_sym_ends_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2244), + [anon_sym_EQ_EQ2] = ACTIONS(2244), + [anon_sym_BANG_EQ2] = ACTIONS(2244), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2244), + [anon_sym_GT_EQ2] = ACTIONS(2244), + [anon_sym_EQ_TILDE2] = ACTIONS(2244), + [anon_sym_BANG_TILDE2] = ACTIONS(2244), + [anon_sym_like2] = ACTIONS(2244), + [anon_sym_not_DASHlike2] = ACTIONS(2244), + [anon_sym_STAR_STAR2] = ACTIONS(2244), + [anon_sym_PLUS_PLUS2] = ACTIONS(2244), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2244), + [anon_sym_SLASH_SLASH2] = ACTIONS(2244), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2244), + [anon_sym_bit_DASHshr2] = ACTIONS(2244), + [anon_sym_bit_DASHand2] = ACTIONS(2244), + [anon_sym_bit_DASHxor2] = ACTIONS(2244), + [anon_sym_bit_DASHor2] = ACTIONS(2244), + [anon_sym_err_GT] = ACTIONS(2256), + [anon_sym_out_GT] = ACTIONS(2256), + [anon_sym_e_GT] = ACTIONS(2256), + [anon_sym_o_GT] = ACTIONS(2256), + [anon_sym_err_PLUSout_GT] = ACTIONS(2256), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2256), + [anon_sym_o_PLUSe_GT] = ACTIONS(2256), + [anon_sym_e_PLUSo_GT] = ACTIONS(2256), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), [anon_sym_POUND] = ACTIONS(3), }, [STATE(961)] = { [sym_comment] = STATE(961), - [anon_sym_in] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_like2] = ACTIONS(994), - [anon_sym_not_DASHlike2] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [sym__unquoted_pattern] = ACTIONS(2585), + [anon_sym_in] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_GT2] = ACTIONS(2786), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2784), + [anon_sym_RBRACE] = ACTIONS(2784), + [anon_sym_EQ_GT] = ACTIONS(2784), + [anon_sym_STAR2] = ACTIONS(2786), + [anon_sym_and2] = ACTIONS(2784), + [anon_sym_xor2] = ACTIONS(2784), + [anon_sym_or2] = ACTIONS(2784), + [anon_sym_not_DASHin2] = ACTIONS(2784), + [anon_sym_has2] = ACTIONS(2784), + [anon_sym_not_DASHhas2] = ACTIONS(2784), + [anon_sym_starts_DASHwith2] = ACTIONS(2784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2784), + [anon_sym_ends_DASHwith2] = ACTIONS(2784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2784), + [anon_sym_EQ_EQ2] = ACTIONS(2784), + [anon_sym_BANG_EQ2] = ACTIONS(2784), + [anon_sym_LT2] = ACTIONS(2786), + [anon_sym_LT_EQ2] = ACTIONS(2784), + [anon_sym_GT_EQ2] = ACTIONS(2784), + [anon_sym_EQ_TILDE2] = ACTIONS(2784), + [anon_sym_BANG_TILDE2] = ACTIONS(2784), + [anon_sym_like2] = ACTIONS(2784), + [anon_sym_not_DASHlike2] = ACTIONS(2784), + [anon_sym_STAR_STAR2] = ACTIONS(2784), + [anon_sym_PLUS_PLUS2] = ACTIONS(2784), + [anon_sym_SLASH2] = ACTIONS(2786), + [anon_sym_mod2] = ACTIONS(2784), + [anon_sym_SLASH_SLASH2] = ACTIONS(2784), + [anon_sym_PLUS2] = ACTIONS(2786), + [anon_sym_bit_DASHshl2] = ACTIONS(2784), + [anon_sym_bit_DASHshr2] = ACTIONS(2784), + [anon_sym_bit_DASHand2] = ACTIONS(2784), + [anon_sym_bit_DASHxor2] = ACTIONS(2784), + [anon_sym_bit_DASHor2] = ACTIONS(2784), + [anon_sym_err_GT] = ACTIONS(2786), + [anon_sym_out_GT] = ACTIONS(2786), + [anon_sym_e_GT] = ACTIONS(2786), + [anon_sym_o_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT] = ACTIONS(2786), + [anon_sym_err_GT_GT] = ACTIONS(2784), + [anon_sym_out_GT_GT] = ACTIONS(2784), + [anon_sym_e_GT_GT] = ACTIONS(2784), + [anon_sym_o_GT_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), [anon_sym_POUND] = ACTIONS(3), }, [STATE(962)] = { - [aux_sym__repeat_newline] = STATE(1129), - [sym__expression_parenthesized] = STATE(4352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), [sym_comment] = STATE(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [sym__newline] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_err_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_GT_PIPE] = ACTIONS(2244), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2244), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2244), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2244), + [anon_sym_xor2] = ACTIONS(2244), + [anon_sym_or2] = ACTIONS(2244), + [anon_sym_not_DASHin2] = ACTIONS(2244), + [anon_sym_has2] = ACTIONS(2244), + [anon_sym_not_DASHhas2] = ACTIONS(2244), + [anon_sym_starts_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2244), + [anon_sym_ends_DASHwith2] = ACTIONS(2244), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2244), + [anon_sym_EQ_EQ2] = ACTIONS(2244), + [anon_sym_BANG_EQ2] = ACTIONS(2244), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2244), + [anon_sym_GT_EQ2] = ACTIONS(2244), + [anon_sym_EQ_TILDE2] = ACTIONS(2244), + [anon_sym_BANG_TILDE2] = ACTIONS(2244), + [anon_sym_like2] = ACTIONS(2244), + [anon_sym_not_DASHlike2] = ACTIONS(2244), + [anon_sym_STAR_STAR2] = ACTIONS(2244), + [anon_sym_PLUS_PLUS2] = ACTIONS(2244), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2244), + [anon_sym_SLASH_SLASH2] = ACTIONS(2244), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2244), + [anon_sym_bit_DASHshr2] = ACTIONS(2244), + [anon_sym_bit_DASHand2] = ACTIONS(2244), + [anon_sym_bit_DASHxor2] = ACTIONS(2244), + [anon_sym_bit_DASHor2] = ACTIONS(2244), + [anon_sym_DOT_DOT2] = ACTIONS(1906), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1908), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1908), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2244), + [anon_sym_out_GT_GT] = ACTIONS(2244), + [anon_sym_e_GT_GT] = ACTIONS(2244), + [anon_sym_o_GT_GT] = ACTIONS(2244), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2244), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2244), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2244), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2244), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(963)] = { - [aux_sym__repeat_newline] = STATE(1005), - [sym__expression_parenthesized] = STATE(4360), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), [sym_comment] = STATE(963), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2104), + [sym__newline] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_err_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_GT_PIPE] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2104), + [anon_sym_GT2] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_EQ_GT] = ACTIONS(2104), + [anon_sym_STAR2] = ACTIONS(2106), + [anon_sym_and2] = ACTIONS(2104), + [anon_sym_xor2] = ACTIONS(2104), + [anon_sym_or2] = ACTIONS(2104), + [anon_sym_not_DASHin2] = ACTIONS(2104), + [anon_sym_has2] = ACTIONS(2104), + [anon_sym_not_DASHhas2] = ACTIONS(2104), + [anon_sym_starts_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2104), + [anon_sym_ends_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2104), + [anon_sym_EQ_EQ2] = ACTIONS(2104), + [anon_sym_BANG_EQ2] = ACTIONS(2104), + [anon_sym_LT2] = ACTIONS(2106), + [anon_sym_LT_EQ2] = ACTIONS(2104), + [anon_sym_GT_EQ2] = ACTIONS(2104), + [anon_sym_EQ_TILDE2] = ACTIONS(2104), + [anon_sym_BANG_TILDE2] = ACTIONS(2104), + [anon_sym_like2] = ACTIONS(2104), + [anon_sym_not_DASHlike2] = ACTIONS(2104), + [anon_sym_STAR_STAR2] = ACTIONS(2104), + [anon_sym_PLUS_PLUS2] = ACTIONS(2104), + [anon_sym_SLASH2] = ACTIONS(2106), + [anon_sym_mod2] = ACTIONS(2104), + [anon_sym_SLASH_SLASH2] = ACTIONS(2104), + [anon_sym_PLUS2] = ACTIONS(2106), + [anon_sym_bit_DASHshl2] = ACTIONS(2104), + [anon_sym_bit_DASHshr2] = ACTIONS(2104), + [anon_sym_bit_DASHand2] = ACTIONS(2104), + [anon_sym_bit_DASHxor2] = ACTIONS(2104), + [anon_sym_bit_DASHor2] = ACTIONS(2104), + [anon_sym_err_GT] = ACTIONS(2106), + [anon_sym_out_GT] = ACTIONS(2106), + [anon_sym_e_GT] = ACTIONS(2106), + [anon_sym_o_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_err_GT_GT] = ACTIONS(2104), + [anon_sym_out_GT_GT] = ACTIONS(2104), + [anon_sym_e_GT_GT] = ACTIONS(2104), + [anon_sym_o_GT_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(964)] = { - [aux_sym__repeat_newline] = STATE(964), [sym_comment] = STATE(964), - [anon_sym_export] = ACTIONS(1960), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1960), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1960), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [sym__newline] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_DASH2] = ACTIONS(1960), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1960), - [anon_sym_where] = ACTIONS(1955), - [aux_sym_expr_unary_token1] = ACTIONS(1955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [anon_sym_0b] = ACTIONS(1960), - [anon_sym_0o] = ACTIONS(1960), - [anon_sym_0x] = ACTIONS(1960), - [sym_val_date] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [anon_sym_SQUOTE] = ACTIONS(1955), - [anon_sym_BQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1955), + [anon_sym_in] = ACTIONS(2788), + [sym__newline] = ACTIONS(2788), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_err_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_GT_PIPE] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_GT2] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2788), + [anon_sym_RBRACE] = ACTIONS(2788), + [anon_sym_EQ_GT] = ACTIONS(2788), + [anon_sym_STAR2] = ACTIONS(2790), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2788), + [anon_sym_has2] = ACTIONS(2788), + [anon_sym_not_DASHhas2] = ACTIONS(2788), + [anon_sym_starts_DASHwith2] = ACTIONS(2788), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), + [anon_sym_ends_DASHwith2] = ACTIONS(2788), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), + [anon_sym_EQ_EQ2] = ACTIONS(2788), + [anon_sym_BANG_EQ2] = ACTIONS(2788), + [anon_sym_LT2] = ACTIONS(2790), + [anon_sym_LT_EQ2] = ACTIONS(2788), + [anon_sym_GT_EQ2] = ACTIONS(2788), + [anon_sym_EQ_TILDE2] = ACTIONS(2788), + [anon_sym_BANG_TILDE2] = ACTIONS(2788), + [anon_sym_like2] = ACTIONS(2788), + [anon_sym_not_DASHlike2] = ACTIONS(2788), + [anon_sym_STAR_STAR2] = ACTIONS(2788), + [anon_sym_PLUS_PLUS2] = ACTIONS(2788), + [anon_sym_SLASH2] = ACTIONS(2790), + [anon_sym_mod2] = ACTIONS(2788), + [anon_sym_SLASH_SLASH2] = ACTIONS(2788), + [anon_sym_PLUS2] = ACTIONS(2790), + [anon_sym_bit_DASHshl2] = ACTIONS(2788), + [anon_sym_bit_DASHshr2] = ACTIONS(2788), + [anon_sym_bit_DASHand2] = ACTIONS(2788), + [anon_sym_bit_DASHxor2] = ACTIONS(2788), + [anon_sym_bit_DASHor2] = ACTIONS(2788), + [anon_sym_err_GT] = ACTIONS(2790), + [anon_sym_out_GT] = ACTIONS(2790), + [anon_sym_e_GT] = ACTIONS(2790), + [anon_sym_o_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT] = ACTIONS(2790), + [anon_sym_err_GT_GT] = ACTIONS(2788), + [anon_sym_out_GT_GT] = ACTIONS(2788), + [anon_sym_e_GT_GT] = ACTIONS(2788), + [anon_sym_o_GT_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(965)] = { [sym_comment] = STATE(965), - [anon_sym_export] = ACTIONS(2646), - [anon_sym_alias] = ACTIONS(2648), - [anon_sym_let] = ACTIONS(2648), - [anon_sym_mut] = ACTIONS(2648), - [anon_sym_const] = ACTIONS(2648), - [aux_sym_cmd_identifier_token1] = ACTIONS(2646), - [anon_sym_def] = ACTIONS(2648), - [anon_sym_use] = ACTIONS(2648), - [anon_sym_export_DASHenv] = ACTIONS(2648), - [anon_sym_extern] = ACTIONS(2648), - [anon_sym_module] = ACTIONS(2648), - [anon_sym_for] = ACTIONS(2648), - [anon_sym_loop] = ACTIONS(2648), - [anon_sym_while] = ACTIONS(2648), - [anon_sym_if] = ACTIONS(2648), - [anon_sym_else] = ACTIONS(2648), - [anon_sym_try] = ACTIONS(2648), - [anon_sym_catch] = ACTIONS(2648), - [anon_sym_match] = ACTIONS(2648), - [anon_sym_in] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_null] = ACTIONS(2648), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [sym__newline] = ACTIONS(2648), - [anon_sym_PIPE] = ACTIONS(2648), - [anon_sym_err_GT_PIPE] = ACTIONS(2648), - [anon_sym_out_GT_PIPE] = ACTIONS(2648), - [anon_sym_e_GT_PIPE] = ACTIONS(2648), - [anon_sym_o_GT_PIPE] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(2648), - [anon_sym_LPAREN] = ACTIONS(2648), - [anon_sym_DOLLAR] = ACTIONS(2646), - [anon_sym_DASH2] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_DOT_DOT] = ACTIONS(2646), - [anon_sym_where] = ACTIONS(2648), - [aux_sym_expr_unary_token1] = ACTIONS(2648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2648), - [anon_sym_DOT_DOT_LT] = ACTIONS(2648), - [aux_sym__val_number_decimal_token1] = ACTIONS(2646), - [aux_sym__val_number_decimal_token2] = ACTIONS(2648), - [aux_sym__val_number_decimal_token3] = ACTIONS(2648), - [aux_sym__val_number_decimal_token4] = ACTIONS(2648), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(2646), - [anon_sym_0o] = ACTIONS(2646), - [anon_sym_0x] = ACTIONS(2646), - [sym_val_date] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_BQUOTE] = ACTIONS(2648), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2648), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), - [anon_sym_CARET] = ACTIONS(2648), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2648), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_err_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_GT_PIPE] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), + [anon_sym_RPAREN] = ACTIONS(2792), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_RBRACE] = ACTIONS(2792), + [anon_sym_EQ_GT] = ACTIONS(2792), + [anon_sym_STAR2] = ACTIONS(2794), + [anon_sym_and2] = ACTIONS(2792), + [anon_sym_xor2] = ACTIONS(2792), + [anon_sym_or2] = ACTIONS(2792), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2792), + [anon_sym_BANG_EQ2] = ACTIONS(2792), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2792), + [anon_sym_GT_EQ2] = ACTIONS(2792), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2794), + [anon_sym_mod2] = ACTIONS(2792), + [anon_sym_SLASH_SLASH2] = ACTIONS(2792), + [anon_sym_PLUS2] = ACTIONS(2794), + [anon_sym_bit_DASHshl2] = ACTIONS(2792), + [anon_sym_bit_DASHshr2] = ACTIONS(2792), + [anon_sym_bit_DASHand2] = ACTIONS(2792), + [anon_sym_bit_DASHxor2] = ACTIONS(2792), + [anon_sym_bit_DASHor2] = ACTIONS(2792), + [anon_sym_err_GT] = ACTIONS(2794), + [anon_sym_out_GT] = ACTIONS(2794), + [anon_sym_e_GT] = ACTIONS(2794), + [anon_sym_o_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT] = ACTIONS(2794), + [anon_sym_err_GT_GT] = ACTIONS(2792), + [anon_sym_out_GT_GT] = ACTIONS(2792), + [anon_sym_e_GT_GT] = ACTIONS(2792), + [anon_sym_o_GT_GT] = ACTIONS(2792), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(966)] = { [sym_comment] = STATE(966), - [anon_sym_export] = ACTIONS(2098), - [anon_sym_alias] = ACTIONS(2096), - [anon_sym_let] = ACTIONS(2096), - [anon_sym_mut] = ACTIONS(2096), - [anon_sym_const] = ACTIONS(2096), - [aux_sym_cmd_identifier_token1] = ACTIONS(2098), - [anon_sym_def] = ACTIONS(2096), - [anon_sym_use] = ACTIONS(2096), - [anon_sym_export_DASHenv] = ACTIONS(2096), - [anon_sym_extern] = ACTIONS(2096), - [anon_sym_module] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_loop] = ACTIONS(2096), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_else] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2096), - [anon_sym_catch] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_in] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_null] = ACTIONS(2096), - [aux_sym_cmd_identifier_token3] = ACTIONS(2096), - [aux_sym_cmd_identifier_token4] = ACTIONS(2096), - [aux_sym_cmd_identifier_token5] = ACTIONS(2096), - [sym__newline] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_where] = ACTIONS(2096), - [aux_sym_expr_unary_token1] = ACTIONS(2096), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2096), - [anon_sym_DOT_DOT_LT] = ACTIONS(2096), - [aux_sym__val_number_decimal_token1] = ACTIONS(2098), - [aux_sym__val_number_decimal_token2] = ACTIONS(2096), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2096), - [aux_sym__val_number_token1] = ACTIONS(2096), - [aux_sym__val_number_token2] = ACTIONS(2096), - [aux_sym__val_number_token3] = ACTIONS(2096), - [anon_sym_0b] = ACTIONS(2098), - [anon_sym_0o] = ACTIONS(2098), - [anon_sym_0x] = ACTIONS(2098), - [sym_val_date] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [anon_sym_SQUOTE] = ACTIONS(2096), - [anon_sym_BQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2094), + [sym__newline] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_err_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_GT_PIPE] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(2094), + [anon_sym_GT2] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_EQ_GT] = ACTIONS(2094), + [anon_sym_STAR2] = ACTIONS(2096), + [anon_sym_and2] = ACTIONS(2094), + [anon_sym_xor2] = ACTIONS(2094), + [anon_sym_or2] = ACTIONS(2094), + [anon_sym_not_DASHin2] = ACTIONS(2094), + [anon_sym_has2] = ACTIONS(2094), + [anon_sym_not_DASHhas2] = ACTIONS(2094), + [anon_sym_starts_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2094), + [anon_sym_ends_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2094), + [anon_sym_EQ_EQ2] = ACTIONS(2094), + [anon_sym_BANG_EQ2] = ACTIONS(2094), + [anon_sym_LT2] = ACTIONS(2096), + [anon_sym_LT_EQ2] = ACTIONS(2094), + [anon_sym_GT_EQ2] = ACTIONS(2094), + [anon_sym_EQ_TILDE2] = ACTIONS(2094), + [anon_sym_BANG_TILDE2] = ACTIONS(2094), + [anon_sym_like2] = ACTIONS(2094), + [anon_sym_not_DASHlike2] = ACTIONS(2094), + [anon_sym_STAR_STAR2] = ACTIONS(2094), + [anon_sym_PLUS_PLUS2] = ACTIONS(2094), + [anon_sym_SLASH2] = ACTIONS(2096), + [anon_sym_mod2] = ACTIONS(2094), + [anon_sym_SLASH_SLASH2] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2096), + [anon_sym_bit_DASHshl2] = ACTIONS(2094), + [anon_sym_bit_DASHshr2] = ACTIONS(2094), + [anon_sym_bit_DASHand2] = ACTIONS(2094), + [anon_sym_bit_DASHxor2] = ACTIONS(2094), + [anon_sym_bit_DASHor2] = ACTIONS(2094), + [anon_sym_err_GT] = ACTIONS(2096), + [anon_sym_out_GT] = ACTIONS(2096), + [anon_sym_e_GT] = ACTIONS(2096), + [anon_sym_o_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT] = ACTIONS(2096), + [anon_sym_err_GT_GT] = ACTIONS(2094), + [anon_sym_out_GT_GT] = ACTIONS(2094), + [anon_sym_e_GT_GT] = ACTIONS(2094), + [anon_sym_o_GT_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(967)] = { [sym_comment] = STATE(967), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(2796), + [sym__newline] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_err_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_GT_PIPE] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), + [anon_sym_RPAREN] = ACTIONS(2796), + [anon_sym_GT2] = ACTIONS(2798), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_LBRACE] = ACTIONS(2796), + [anon_sym_RBRACE] = ACTIONS(2796), + [anon_sym_EQ_GT] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2796), + [anon_sym_xor2] = ACTIONS(2796), + [anon_sym_or2] = ACTIONS(2796), + [anon_sym_not_DASHin2] = ACTIONS(2796), + [anon_sym_has2] = ACTIONS(2796), + [anon_sym_not_DASHhas2] = ACTIONS(2796), + [anon_sym_starts_DASHwith2] = ACTIONS(2796), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2796), + [anon_sym_ends_DASHwith2] = ACTIONS(2796), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2796), + [anon_sym_EQ_EQ2] = ACTIONS(2796), + [anon_sym_BANG_EQ2] = ACTIONS(2796), + [anon_sym_LT2] = ACTIONS(2798), + [anon_sym_LT_EQ2] = ACTIONS(2796), + [anon_sym_GT_EQ2] = ACTIONS(2796), + [anon_sym_EQ_TILDE2] = ACTIONS(2796), + [anon_sym_BANG_TILDE2] = ACTIONS(2796), + [anon_sym_like2] = ACTIONS(2796), + [anon_sym_not_DASHlike2] = ACTIONS(2796), + [anon_sym_STAR_STAR2] = ACTIONS(2796), + [anon_sym_PLUS_PLUS2] = ACTIONS(2796), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2796), + [anon_sym_SLASH_SLASH2] = ACTIONS(2796), + [anon_sym_PLUS2] = ACTIONS(2798), + [anon_sym_bit_DASHshl2] = ACTIONS(2796), + [anon_sym_bit_DASHshr2] = ACTIONS(2796), + [anon_sym_bit_DASHand2] = ACTIONS(2796), + [anon_sym_bit_DASHxor2] = ACTIONS(2796), + [anon_sym_bit_DASHor2] = ACTIONS(2796), + [anon_sym_err_GT] = ACTIONS(2798), + [anon_sym_out_GT] = ACTIONS(2798), + [anon_sym_e_GT] = ACTIONS(2798), + [anon_sym_o_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT] = ACTIONS(2798), + [anon_sym_err_GT_GT] = ACTIONS(2796), + [anon_sym_out_GT_GT] = ACTIONS(2796), + [anon_sym_e_GT_GT] = ACTIONS(2796), + [anon_sym_o_GT_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), [anon_sym_POUND] = ACTIONS(3), }, [STATE(968)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(968), - [ts_builtin_sym_end] = ACTIONS(2170), - [anon_sym_in] = ACTIONS(2170), - [sym__newline] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_err_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_GT_PIPE] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2170), - [anon_sym_GT2] = ACTIONS(2172), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_STAR2] = ACTIONS(2172), - [anon_sym_and2] = ACTIONS(2170), - [anon_sym_xor2] = ACTIONS(2170), - [anon_sym_or2] = ACTIONS(2170), - [anon_sym_not_DASHin2] = ACTIONS(2170), - [anon_sym_has2] = ACTIONS(2170), - [anon_sym_not_DASHhas2] = ACTIONS(2170), - [anon_sym_starts_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2170), - [anon_sym_ends_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2170), - [anon_sym_EQ_EQ2] = ACTIONS(2170), - [anon_sym_BANG_EQ2] = ACTIONS(2170), - [anon_sym_LT2] = ACTIONS(2172), - [anon_sym_LT_EQ2] = ACTIONS(2170), - [anon_sym_GT_EQ2] = ACTIONS(2170), - [anon_sym_EQ_TILDE2] = ACTIONS(2170), - [anon_sym_BANG_TILDE2] = ACTIONS(2170), - [anon_sym_like2] = ACTIONS(2170), - [anon_sym_not_DASHlike2] = ACTIONS(2170), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2170), - [anon_sym_PLUS_PLUS2] = ACTIONS(2170), - [anon_sym_SLASH2] = ACTIONS(2172), - [anon_sym_mod2] = ACTIONS(2170), - [anon_sym_SLASH_SLASH2] = ACTIONS(2170), - [anon_sym_PLUS2] = ACTIONS(2172), - [anon_sym_bit_DASHshl2] = ACTIONS(2170), - [anon_sym_bit_DASHshr2] = ACTIONS(2170), - [anon_sym_bit_DASHand2] = ACTIONS(2170), - [anon_sym_bit_DASHxor2] = ACTIONS(2170), - [anon_sym_bit_DASHor2] = ACTIONS(2170), - [anon_sym_err_GT] = ACTIONS(2172), - [anon_sym_out_GT] = ACTIONS(2172), - [anon_sym_e_GT] = ACTIONS(2172), - [anon_sym_o_GT] = ACTIONS(2172), - [anon_sym_err_PLUSout_GT] = ACTIONS(2172), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2172), - [anon_sym_o_PLUSe_GT] = ACTIONS(2172), - [anon_sym_e_PLUSo_GT] = ACTIONS(2172), - [anon_sym_err_GT_GT] = ACTIONS(2170), - [anon_sym_out_GT_GT] = ACTIONS(2170), - [anon_sym_e_GT_GT] = ACTIONS(2170), - [anon_sym_o_GT_GT] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2170), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(969)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(969), - [ts_builtin_sym_end] = ACTIONS(2072), - [anon_sym_in] = ACTIONS(2072), - [sym__newline] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_err_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_GT_PIPE] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), - [anon_sym_GT2] = ACTIONS(2074), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_STAR2] = ACTIONS(2074), - [anon_sym_and2] = ACTIONS(2072), - [anon_sym_xor2] = ACTIONS(2072), - [anon_sym_or2] = ACTIONS(2072), - [anon_sym_not_DASHin2] = ACTIONS(2072), - [anon_sym_has2] = ACTIONS(2072), - [anon_sym_not_DASHhas2] = ACTIONS(2072), - [anon_sym_starts_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2072), - [anon_sym_ends_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2072), - [anon_sym_EQ_EQ2] = ACTIONS(2072), - [anon_sym_BANG_EQ2] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LT_EQ2] = ACTIONS(2072), - [anon_sym_GT_EQ2] = ACTIONS(2072), - [anon_sym_EQ_TILDE2] = ACTIONS(2072), - [anon_sym_BANG_TILDE2] = ACTIONS(2072), - [anon_sym_like2] = ACTIONS(2072), - [anon_sym_not_DASHlike2] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2072), - [anon_sym_PLUS_PLUS2] = ACTIONS(2072), - [anon_sym_SLASH2] = ACTIONS(2074), - [anon_sym_mod2] = ACTIONS(2072), - [anon_sym_SLASH_SLASH2] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2074), - [anon_sym_bit_DASHshl2] = ACTIONS(2072), - [anon_sym_bit_DASHshr2] = ACTIONS(2072), - [anon_sym_bit_DASHand2] = ACTIONS(2072), - [anon_sym_bit_DASHxor2] = ACTIONS(2072), - [anon_sym_bit_DASHor2] = ACTIONS(2072), - [anon_sym_err_GT] = ACTIONS(2074), - [anon_sym_out_GT] = ACTIONS(2074), - [anon_sym_e_GT] = ACTIONS(2074), - [anon_sym_o_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT] = ACTIONS(2074), - [anon_sym_err_GT_GT] = ACTIONS(2072), - [anon_sym_out_GT_GT] = ACTIONS(2072), - [anon_sym_e_GT_GT] = ACTIONS(2072), - [anon_sym_o_GT_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_EQ_GT] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(970)] = { [sym_comment] = STATE(970), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(1920), + [sym__newline] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_err_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_GT_PIPE] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1920), + [anon_sym_RPAREN] = ACTIONS(1920), + [anon_sym_GT2] = ACTIONS(1922), + [anon_sym_DASH2] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_STAR2] = ACTIONS(1922), + [anon_sym_and2] = ACTIONS(1920), + [anon_sym_xor2] = ACTIONS(1920), + [anon_sym_or2] = ACTIONS(1920), + [anon_sym_not_DASHin2] = ACTIONS(1920), + [anon_sym_has2] = ACTIONS(1920), + [anon_sym_not_DASHhas2] = ACTIONS(1920), + [anon_sym_starts_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1920), + [anon_sym_ends_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1920), + [anon_sym_EQ_EQ2] = ACTIONS(1920), + [anon_sym_BANG_EQ2] = ACTIONS(1920), + [anon_sym_LT2] = ACTIONS(1922), + [anon_sym_LT_EQ2] = ACTIONS(1920), + [anon_sym_GT_EQ2] = ACTIONS(1920), + [anon_sym_EQ_TILDE2] = ACTIONS(1920), + [anon_sym_BANG_TILDE2] = ACTIONS(1920), + [anon_sym_like2] = ACTIONS(1920), + [anon_sym_not_DASHlike2] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1920), + [anon_sym_STAR_STAR2] = ACTIONS(1920), + [anon_sym_PLUS_PLUS2] = ACTIONS(1920), + [anon_sym_SLASH2] = ACTIONS(1922), + [anon_sym_mod2] = ACTIONS(1920), + [anon_sym_SLASH_SLASH2] = ACTIONS(1920), + [anon_sym_PLUS2] = ACTIONS(1922), + [anon_sym_bit_DASHshl2] = ACTIONS(1920), + [anon_sym_bit_DASHshr2] = ACTIONS(1920), + [anon_sym_bit_DASHand2] = ACTIONS(1920), + [anon_sym_bit_DASHxor2] = ACTIONS(1920), + [anon_sym_bit_DASHor2] = ACTIONS(1920), + [anon_sym_err_GT] = ACTIONS(1922), + [anon_sym_out_GT] = ACTIONS(1922), + [anon_sym_e_GT] = ACTIONS(1922), + [anon_sym_o_GT] = ACTIONS(1922), + [anon_sym_err_PLUSout_GT] = ACTIONS(1922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1922), + [anon_sym_o_PLUSe_GT] = ACTIONS(1922), + [anon_sym_e_PLUSo_GT] = ACTIONS(1922), + [anon_sym_err_GT_GT] = ACTIONS(1920), + [anon_sym_out_GT_GT] = ACTIONS(1920), + [anon_sym_e_GT_GT] = ACTIONS(1920), + [anon_sym_o_GT_GT] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1920), + [sym__unquoted_pattern] = ACTIONS(1922), [anon_sym_POUND] = ACTIONS(3), }, [STATE(971)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4465), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(4840), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4515), - [sym__val_range] = STATE(4853), - [sym_val_nothing] = STATE(4517), - [sym_val_bool] = STATE(4134), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4517), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4517), - [sym_val_filesize] = STATE(4517), - [sym_val_binary] = STATE(4517), - [sym_val_string] = STATE(4517), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(4951), - [sym__table_head] = STATE(3665), - [sym_val_table] = STATE(4517), - [sym__unquoted_in_list] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(4853), [sym_comment] = STATE(971), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3958), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2660), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [sym__unquoted_pattern] = ACTIONS(1958), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(972)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), [sym_comment] = STATE(972), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2050), + [sym__newline] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_err_GT_PIPE] = ACTIONS(2050), + [anon_sym_out_GT_PIPE] = ACTIONS(2050), + [anon_sym_e_GT_PIPE] = ACTIONS(2050), + [anon_sym_o_GT_PIPE] = ACTIONS(2050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2050), + [anon_sym_RPAREN] = ACTIONS(2050), + [anon_sym_GT2] = ACTIONS(2052), + [anon_sym_DASH2] = ACTIONS(2050), + [anon_sym_RBRACE] = ACTIONS(2050), + [anon_sym_STAR2] = ACTIONS(2052), + [anon_sym_and2] = ACTIONS(2050), + [anon_sym_xor2] = ACTIONS(2050), + [anon_sym_or2] = ACTIONS(2050), + [anon_sym_not_DASHin2] = ACTIONS(2050), + [anon_sym_has2] = ACTIONS(2050), + [anon_sym_not_DASHhas2] = ACTIONS(2050), + [anon_sym_starts_DASHwith2] = ACTIONS(2050), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2050), + [anon_sym_ends_DASHwith2] = ACTIONS(2050), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2050), + [anon_sym_EQ_EQ2] = ACTIONS(2050), + [anon_sym_BANG_EQ2] = ACTIONS(2050), + [anon_sym_LT2] = ACTIONS(2052), + [anon_sym_LT_EQ2] = ACTIONS(2050), + [anon_sym_GT_EQ2] = ACTIONS(2050), + [anon_sym_EQ_TILDE2] = ACTIONS(2050), + [anon_sym_BANG_TILDE2] = ACTIONS(2050), + [anon_sym_like2] = ACTIONS(2050), + [anon_sym_not_DASHlike2] = ACTIONS(2050), + [anon_sym_LPAREN2] = ACTIONS(2050), + [anon_sym_STAR_STAR2] = ACTIONS(2050), + [anon_sym_PLUS_PLUS2] = ACTIONS(2050), + [anon_sym_SLASH2] = ACTIONS(2052), + [anon_sym_mod2] = ACTIONS(2050), + [anon_sym_SLASH_SLASH2] = ACTIONS(2050), + [anon_sym_PLUS2] = ACTIONS(2052), + [anon_sym_bit_DASHshl2] = ACTIONS(2050), + [anon_sym_bit_DASHshr2] = ACTIONS(2050), + [anon_sym_bit_DASHand2] = ACTIONS(2050), + [anon_sym_bit_DASHxor2] = ACTIONS(2050), + [anon_sym_bit_DASHor2] = ACTIONS(2050), + [anon_sym_err_GT] = ACTIONS(2052), + [anon_sym_out_GT] = ACTIONS(2052), + [anon_sym_e_GT] = ACTIONS(2052), + [anon_sym_o_GT] = ACTIONS(2052), + [anon_sym_err_PLUSout_GT] = ACTIONS(2052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2052), + [anon_sym_o_PLUSe_GT] = ACTIONS(2052), + [anon_sym_e_PLUSo_GT] = ACTIONS(2052), + [anon_sym_err_GT_GT] = ACTIONS(2050), + [anon_sym_out_GT_GT] = ACTIONS(2050), + [anon_sym_e_GT_GT] = ACTIONS(2050), + [anon_sym_o_GT_GT] = ACTIONS(2050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2050), + [sym__unquoted_pattern] = ACTIONS(2052), [anon_sym_POUND] = ACTIONS(3), }, [STATE(973)] = { [sym_comment] = STATE(973), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(2016), + [sym__newline] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_err_GT_PIPE] = ACTIONS(2016), + [anon_sym_out_GT_PIPE] = ACTIONS(2016), + [anon_sym_e_GT_PIPE] = ACTIONS(2016), + [anon_sym_o_GT_PIPE] = ACTIONS(2016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2016), + [anon_sym_RPAREN] = ACTIONS(2016), + [anon_sym_GT2] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_EQ_GT] = ACTIONS(2016), + [anon_sym_STAR2] = ACTIONS(2018), + [anon_sym_and2] = ACTIONS(2016), + [anon_sym_xor2] = ACTIONS(2016), + [anon_sym_or2] = ACTIONS(2016), + [anon_sym_not_DASHin2] = ACTIONS(2016), + [anon_sym_has2] = ACTIONS(2016), + [anon_sym_not_DASHhas2] = ACTIONS(2016), + [anon_sym_starts_DASHwith2] = ACTIONS(2016), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2016), + [anon_sym_ends_DASHwith2] = ACTIONS(2016), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2016), + [anon_sym_EQ_EQ2] = ACTIONS(2016), + [anon_sym_BANG_EQ2] = ACTIONS(2016), + [anon_sym_LT2] = ACTIONS(2018), + [anon_sym_LT_EQ2] = ACTIONS(2016), + [anon_sym_GT_EQ2] = ACTIONS(2016), + [anon_sym_EQ_TILDE2] = ACTIONS(2016), + [anon_sym_BANG_TILDE2] = ACTIONS(2016), + [anon_sym_like2] = ACTIONS(2016), + [anon_sym_not_DASHlike2] = ACTIONS(2016), + [anon_sym_STAR_STAR2] = ACTIONS(2016), + [anon_sym_PLUS_PLUS2] = ACTIONS(2016), + [anon_sym_SLASH2] = ACTIONS(2018), + [anon_sym_mod2] = ACTIONS(2016), + [anon_sym_SLASH_SLASH2] = ACTIONS(2016), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_bit_DASHshl2] = ACTIONS(2016), + [anon_sym_bit_DASHshr2] = ACTIONS(2016), + [anon_sym_bit_DASHand2] = ACTIONS(2016), + [anon_sym_bit_DASHxor2] = ACTIONS(2016), + [anon_sym_bit_DASHor2] = ACTIONS(2016), + [anon_sym_err_GT] = ACTIONS(2018), + [anon_sym_out_GT] = ACTIONS(2018), + [anon_sym_e_GT] = ACTIONS(2018), + [anon_sym_o_GT] = ACTIONS(2018), + [anon_sym_err_PLUSout_GT] = ACTIONS(2018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2018), + [anon_sym_o_PLUSe_GT] = ACTIONS(2018), + [anon_sym_e_PLUSo_GT] = ACTIONS(2018), + [anon_sym_err_GT_GT] = ACTIONS(2016), + [anon_sym_out_GT_GT] = ACTIONS(2016), + [anon_sym_e_GT_GT] = ACTIONS(2016), + [anon_sym_o_GT_GT] = ACTIONS(2016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2016), [anon_sym_POUND] = ACTIONS(3), }, [STATE(974)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), [sym_comment] = STATE(974), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2046), + [sym__newline] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_PIPE] = ACTIONS(2046), + [anon_sym_err_GT_PIPE] = ACTIONS(2046), + [anon_sym_out_GT_PIPE] = ACTIONS(2046), + [anon_sym_e_GT_PIPE] = ACTIONS(2046), + [anon_sym_o_GT_PIPE] = ACTIONS(2046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2046), + [anon_sym_RPAREN] = ACTIONS(2046), + [anon_sym_GT2] = ACTIONS(2048), + [anon_sym_DASH2] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_EQ_GT] = ACTIONS(2046), + [anon_sym_STAR2] = ACTIONS(2048), + [anon_sym_and2] = ACTIONS(2046), + [anon_sym_xor2] = ACTIONS(2046), + [anon_sym_or2] = ACTIONS(2046), + [anon_sym_not_DASHin2] = ACTIONS(2046), + [anon_sym_has2] = ACTIONS(2046), + [anon_sym_not_DASHhas2] = ACTIONS(2046), + [anon_sym_starts_DASHwith2] = ACTIONS(2046), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2046), + [anon_sym_ends_DASHwith2] = ACTIONS(2046), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2046), + [anon_sym_EQ_EQ2] = ACTIONS(2046), + [anon_sym_BANG_EQ2] = ACTIONS(2046), + [anon_sym_LT2] = ACTIONS(2048), + [anon_sym_LT_EQ2] = ACTIONS(2046), + [anon_sym_GT_EQ2] = ACTIONS(2046), + [anon_sym_EQ_TILDE2] = ACTIONS(2046), + [anon_sym_BANG_TILDE2] = ACTIONS(2046), + [anon_sym_like2] = ACTIONS(2046), + [anon_sym_not_DASHlike2] = ACTIONS(2046), + [anon_sym_STAR_STAR2] = ACTIONS(2046), + [anon_sym_PLUS_PLUS2] = ACTIONS(2046), + [anon_sym_SLASH2] = ACTIONS(2048), + [anon_sym_mod2] = ACTIONS(2046), + [anon_sym_SLASH_SLASH2] = ACTIONS(2046), + [anon_sym_PLUS2] = ACTIONS(2048), + [anon_sym_bit_DASHshl2] = ACTIONS(2046), + [anon_sym_bit_DASHshr2] = ACTIONS(2046), + [anon_sym_bit_DASHand2] = ACTIONS(2046), + [anon_sym_bit_DASHxor2] = ACTIONS(2046), + [anon_sym_bit_DASHor2] = ACTIONS(2046), + [anon_sym_err_GT] = ACTIONS(2048), + [anon_sym_out_GT] = ACTIONS(2048), + [anon_sym_e_GT] = ACTIONS(2048), + [anon_sym_o_GT] = ACTIONS(2048), + [anon_sym_err_PLUSout_GT] = ACTIONS(2048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2048), + [anon_sym_o_PLUSe_GT] = ACTIONS(2048), + [anon_sym_e_PLUSo_GT] = ACTIONS(2048), + [anon_sym_err_GT_GT] = ACTIONS(2046), + [anon_sym_out_GT_GT] = ACTIONS(2046), + [anon_sym_e_GT_GT] = ACTIONS(2046), + [anon_sym_o_GT_GT] = ACTIONS(2046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2046), [anon_sym_POUND] = ACTIONS(3), }, [STATE(975)] = { [sym_comment] = STATE(975), - [ts_builtin_sym_end] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(2800), + [sym__newline] = ACTIONS(2800), + [anon_sym_SEMI] = ACTIONS(2800), + [anon_sym_PIPE] = ACTIONS(2800), + [anon_sym_err_GT_PIPE] = ACTIONS(2800), + [anon_sym_out_GT_PIPE] = ACTIONS(2800), + [anon_sym_e_GT_PIPE] = ACTIONS(2800), + [anon_sym_o_GT_PIPE] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2800), + [anon_sym_RPAREN] = ACTIONS(2800), + [anon_sym_GT2] = ACTIONS(2802), + [anon_sym_DASH2] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2800), + [anon_sym_RBRACE] = ACTIONS(2800), + [anon_sym_EQ_GT] = ACTIONS(2800), + [anon_sym_STAR2] = ACTIONS(2802), + [anon_sym_and2] = ACTIONS(2800), + [anon_sym_xor2] = ACTIONS(2800), + [anon_sym_or2] = ACTIONS(2800), + [anon_sym_not_DASHin2] = ACTIONS(2800), + [anon_sym_has2] = ACTIONS(2800), + [anon_sym_not_DASHhas2] = ACTIONS(2800), + [anon_sym_starts_DASHwith2] = ACTIONS(2800), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2800), + [anon_sym_ends_DASHwith2] = ACTIONS(2800), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2800), + [anon_sym_EQ_EQ2] = ACTIONS(2800), + [anon_sym_BANG_EQ2] = ACTIONS(2800), + [anon_sym_LT2] = ACTIONS(2802), + [anon_sym_LT_EQ2] = ACTIONS(2800), + [anon_sym_GT_EQ2] = ACTIONS(2800), + [anon_sym_EQ_TILDE2] = ACTIONS(2800), + [anon_sym_BANG_TILDE2] = ACTIONS(2800), + [anon_sym_like2] = ACTIONS(2800), + [anon_sym_not_DASHlike2] = ACTIONS(2800), + [anon_sym_STAR_STAR2] = ACTIONS(2800), + [anon_sym_PLUS_PLUS2] = ACTIONS(2800), + [anon_sym_SLASH2] = ACTIONS(2802), + [anon_sym_mod2] = ACTIONS(2800), + [anon_sym_SLASH_SLASH2] = ACTIONS(2800), + [anon_sym_PLUS2] = ACTIONS(2802), + [anon_sym_bit_DASHshl2] = ACTIONS(2800), + [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_bit_DASHand2] = ACTIONS(2800), + [anon_sym_bit_DASHxor2] = ACTIONS(2800), + [anon_sym_bit_DASHor2] = ACTIONS(2800), + [anon_sym_err_GT] = ACTIONS(2802), + [anon_sym_out_GT] = ACTIONS(2802), + [anon_sym_e_GT] = ACTIONS(2802), + [anon_sym_o_GT] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT] = ACTIONS(2802), + [anon_sym_err_GT_GT] = ACTIONS(2800), + [anon_sym_out_GT_GT] = ACTIONS(2800), + [anon_sym_e_GT_GT] = ACTIONS(2800), + [anon_sym_o_GT_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2800), [anon_sym_POUND] = ACTIONS(3), }, [STATE(976)] = { - [sym__expression] = STATE(4724), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(1143), + [sym__expression_parenthesized] = STATE(4525), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2349), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_comment] = STATE(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [aux_sym_cmd_identifier_token2] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), + [anon_sym_null] = ACTIONS(2705), + [aux_sym_cmd_identifier_token3] = ACTIONS(2707), + [aux_sym_cmd_identifier_token4] = ACTIONS(2707), + [aux_sym_cmd_identifier_token5] = ACTIONS(2707), + [sym__newline] = ACTIONS(2709), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2711), + [aux_sym__val_number_decimal_token4] = ACTIONS(2711), + [aux_sym__val_number_token1] = ACTIONS(2707), + [aux_sym__val_number_token2] = ACTIONS(2707), + [aux_sym__val_number_token3] = ACTIONS(2707), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2713), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_COLON2] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(977)] = { - [sym__expression] = STATE(4726), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), [sym_comment] = STATE(977), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_COLON2] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2715), + [sym__newline] = ACTIONS(2715), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_err_GT_PIPE] = ACTIONS(2715), + [anon_sym_out_GT_PIPE] = ACTIONS(2715), + [anon_sym_e_GT_PIPE] = ACTIONS(2715), + [anon_sym_o_GT_PIPE] = ACTIONS(2715), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2715), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2715), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2715), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2715), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_GT2] = ACTIONS(2717), + [anon_sym_DASH2] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_STAR2] = ACTIONS(2717), + [anon_sym_and2] = ACTIONS(2715), + [anon_sym_xor2] = ACTIONS(2715), + [anon_sym_or2] = ACTIONS(2715), + [anon_sym_not_DASHin2] = ACTIONS(2715), + [anon_sym_has2] = ACTIONS(2715), + [anon_sym_not_DASHhas2] = ACTIONS(2715), + [anon_sym_starts_DASHwith2] = ACTIONS(2715), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2715), + [anon_sym_ends_DASHwith2] = ACTIONS(2715), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2715), + [anon_sym_EQ_EQ2] = ACTIONS(2715), + [anon_sym_BANG_EQ2] = ACTIONS(2715), + [anon_sym_LT2] = ACTIONS(2717), + [anon_sym_LT_EQ2] = ACTIONS(2715), + [anon_sym_GT_EQ2] = ACTIONS(2715), + [anon_sym_EQ_TILDE2] = ACTIONS(2715), + [anon_sym_BANG_TILDE2] = ACTIONS(2715), + [anon_sym_like2] = ACTIONS(2715), + [anon_sym_not_DASHlike2] = ACTIONS(2715), + [anon_sym_LPAREN2] = ACTIONS(2804), + [anon_sym_STAR_STAR2] = ACTIONS(2715), + [anon_sym_PLUS_PLUS2] = ACTIONS(2715), + [anon_sym_SLASH2] = ACTIONS(2717), + [anon_sym_mod2] = ACTIONS(2715), + [anon_sym_SLASH_SLASH2] = ACTIONS(2715), + [anon_sym_PLUS2] = ACTIONS(2717), + [anon_sym_bit_DASHshl2] = ACTIONS(2715), + [anon_sym_bit_DASHshr2] = ACTIONS(2715), + [anon_sym_bit_DASHand2] = ACTIONS(2715), + [anon_sym_bit_DASHxor2] = ACTIONS(2715), + [anon_sym_bit_DASHor2] = ACTIONS(2715), + [anon_sym_err_GT] = ACTIONS(2717), + [anon_sym_out_GT] = ACTIONS(2717), + [anon_sym_e_GT] = ACTIONS(2717), + [anon_sym_o_GT] = ACTIONS(2717), + [anon_sym_err_PLUSout_GT] = ACTIONS(2717), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2717), + [anon_sym_o_PLUSe_GT] = ACTIONS(2717), + [anon_sym_e_PLUSo_GT] = ACTIONS(2717), + [anon_sym_err_GT_GT] = ACTIONS(2715), + [anon_sym_out_GT_GT] = ACTIONS(2715), + [anon_sym_e_GT_GT] = ACTIONS(2715), + [anon_sym_o_GT_GT] = ACTIONS(2715), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2715), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2715), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2715), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2715), + [sym__unquoted_pattern] = ACTIONS(1819), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(978)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4271), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(1069), [sym_comment] = STATE(978), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_in] = ACTIONS(2806), + [sym__newline] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2808), + [anon_sym_DASH2] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_STAR2] = ACTIONS(2808), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2806), + [anon_sym_has2] = ACTIONS(2806), + [anon_sym_not_DASHhas2] = ACTIONS(2806), + [anon_sym_starts_DASHwith2] = ACTIONS(2806), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), + [anon_sym_ends_DASHwith2] = ACTIONS(2806), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), + [anon_sym_EQ_EQ2] = ACTIONS(2806), + [anon_sym_BANG_EQ2] = ACTIONS(2806), + [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT_EQ2] = ACTIONS(2806), + [anon_sym_GT_EQ2] = ACTIONS(2806), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2806), + [anon_sym_PLUS_PLUS2] = ACTIONS(2806), + [anon_sym_SLASH2] = ACTIONS(2808), + [anon_sym_mod2] = ACTIONS(2806), + [anon_sym_SLASH_SLASH2] = ACTIONS(2806), + [anon_sym_PLUS2] = ACTIONS(2808), + [anon_sym_bit_DASHshl2] = ACTIONS(2806), + [anon_sym_bit_DASHshr2] = ACTIONS(2806), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(979)] = { - [aux_sym__repeat_newline] = STATE(1034), + [aux_sym__repeat_newline] = STATE(990), [sym_comment] = STATE(979), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(980)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1050), [sym_comment] = STATE(980), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(981)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), [sym_comment] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(1014), + [anon_sym_in] = ACTIONS(1014), + [sym__newline] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_err_GT_PIPE] = ACTIONS(1014), + [anon_sym_out_GT_PIPE] = ACTIONS(1014), + [anon_sym_e_GT_PIPE] = ACTIONS(1014), + [anon_sym_o_GT_PIPE] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1014), + [anon_sym_GT2] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_STAR2] = ACTIONS(1016), + [anon_sym_and2] = ACTIONS(1014), + [anon_sym_xor2] = ACTIONS(1014), + [anon_sym_or2] = ACTIONS(1014), + [anon_sym_not_DASHin2] = ACTIONS(1014), + [anon_sym_has2] = ACTIONS(1014), + [anon_sym_not_DASHhas2] = ACTIONS(1014), + [anon_sym_starts_DASHwith2] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1014), + [anon_sym_ends_DASHwith2] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1014), + [anon_sym_EQ_EQ2] = ACTIONS(1014), + [anon_sym_BANG_EQ2] = ACTIONS(1014), + [anon_sym_LT2] = ACTIONS(1016), + [anon_sym_LT_EQ2] = ACTIONS(1014), + [anon_sym_GT_EQ2] = ACTIONS(1014), + [anon_sym_EQ_TILDE2] = ACTIONS(1014), + [anon_sym_BANG_TILDE2] = ACTIONS(1014), + [anon_sym_like2] = ACTIONS(1014), + [anon_sym_not_DASHlike2] = ACTIONS(1014), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_STAR_STAR2] = ACTIONS(1014), + [anon_sym_PLUS_PLUS2] = ACTIONS(1014), + [anon_sym_SLASH2] = ACTIONS(1016), + [anon_sym_mod2] = ACTIONS(1014), + [anon_sym_SLASH_SLASH2] = ACTIONS(1014), + [anon_sym_PLUS2] = ACTIONS(1016), + [anon_sym_bit_DASHshl2] = ACTIONS(1014), + [anon_sym_bit_DASHshr2] = ACTIONS(1014), + [anon_sym_bit_DASHand2] = ACTIONS(1014), + [anon_sym_bit_DASHxor2] = ACTIONS(1014), + [anon_sym_bit_DASHor2] = ACTIONS(1014), + [anon_sym_err_GT] = ACTIONS(1016), + [anon_sym_out_GT] = ACTIONS(1016), + [anon_sym_e_GT] = ACTIONS(1016), + [anon_sym_o_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT] = ACTIONS(1016), + [anon_sym_err_GT_GT] = ACTIONS(1014), + [anon_sym_out_GT_GT] = ACTIONS(1014), + [anon_sym_e_GT_GT] = ACTIONS(1014), + [anon_sym_o_GT_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1014), + [sym__unquoted_pattern] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(982)] = { - [aux_sym__repeat_newline] = STATE(1035), + [aux_sym__repeat_newline] = STATE(1053), [sym_comment] = STATE(982), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(983)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(983), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [ts_builtin_sym_end] = ACTIONS(1032), + [anon_sym_in] = ACTIONS(1032), + [sym__newline] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_GT2] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1032), + [anon_sym_STAR2] = ACTIONS(1024), + [anon_sym_and2] = ACTIONS(1032), + [anon_sym_xor2] = ACTIONS(1032), + [anon_sym_or2] = ACTIONS(1032), + [anon_sym_not_DASHin2] = ACTIONS(1032), + [anon_sym_has2] = ACTIONS(1032), + [anon_sym_not_DASHhas2] = ACTIONS(1032), + [anon_sym_starts_DASHwith2] = ACTIONS(1032), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1032), + [anon_sym_ends_DASHwith2] = ACTIONS(1032), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1032), + [anon_sym_EQ_EQ2] = ACTIONS(1032), + [anon_sym_BANG_EQ2] = ACTIONS(1032), + [anon_sym_LT2] = ACTIONS(1024), + [anon_sym_LT_EQ2] = ACTIONS(1032), + [anon_sym_GT_EQ2] = ACTIONS(1032), + [anon_sym_EQ_TILDE2] = ACTIONS(1032), + [anon_sym_BANG_TILDE2] = ACTIONS(1032), + [anon_sym_like2] = ACTIONS(1032), + [anon_sym_not_DASHlike2] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_STAR_STAR2] = ACTIONS(1032), + [anon_sym_PLUS_PLUS2] = ACTIONS(1032), + [anon_sym_SLASH2] = ACTIONS(1024), + [anon_sym_mod2] = ACTIONS(1032), + [anon_sym_SLASH_SLASH2] = ACTIONS(1032), + [anon_sym_PLUS2] = ACTIONS(1024), + [anon_sym_bit_DASHshl2] = ACTIONS(1032), + [anon_sym_bit_DASHshr2] = ACTIONS(1032), + [anon_sym_bit_DASHand2] = ACTIONS(1032), + [anon_sym_bit_DASHxor2] = ACTIONS(1032), + [anon_sym_bit_DASHor2] = ACTIONS(1032), + [anon_sym_err_GT] = ACTIONS(1024), + [anon_sym_out_GT] = ACTIONS(1024), + [anon_sym_e_GT] = ACTIONS(1024), + [anon_sym_o_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT] = ACTIONS(1024), + [anon_sym_err_GT_GT] = ACTIONS(1032), + [anon_sym_out_GT_GT] = ACTIONS(1032), + [anon_sym_e_GT_GT] = ACTIONS(1032), + [anon_sym_o_GT_GT] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [sym__unquoted_pattern] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(984)] = { - [aux_sym__repeat_newline] = STATE(1036), + [aux_sym__repeat_newline] = STATE(1085), [sym_comment] = STATE(984), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(985)] = { - [sym_expr_unary] = STATE(2779), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2475), - [sym_val_range] = STATE(2779), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(2779), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2547), - [sym__unquoted_with_expr] = STATE(2780), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(985), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2810), + [anon_sym_PLUS_PLUS2] = ACTIONS(2810), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(986)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(986), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2810), + [anon_sym_PLUS_PLUS2] = ACTIONS(2810), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(987)] = { - [sym_expr_unary] = STATE(2782), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2481), - [sym_val_range] = STATE(2782), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(2782), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2581), - [sym__unquoted_with_expr] = STATE(2783), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(987), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2810), + [anon_sym_PLUS_PLUS2] = ACTIONS(2810), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(988)] = { - [sym_expr_unary] = STATE(2786), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2497), - [sym_val_range] = STATE(2786), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(2786), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2567), - [sym__unquoted_with_expr] = STATE(2797), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(988), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2810), + [anon_sym_PLUS_PLUS2] = ACTIONS(2810), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(989)] = { - [aux_sym__repeat_newline] = STATE(1037), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(989), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2810), + [anon_sym_PLUS_PLUS2] = ACTIONS(2810), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(990)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(990), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2810), + [anon_sym_PLUS_PLUS2] = ACTIONS(2810), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(991)] = { - [aux_sym__repeat_newline] = STATE(1038), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(991), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2810), + [anon_sym_PLUS_PLUS2] = ACTIONS(2810), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(992)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(992), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2810), + [anon_sym_PLUS_PLUS2] = ACTIONS(2810), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(993)] = { - [aux_sym__repeat_newline] = STATE(1039), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(993), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2814), + [sym__newline] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_err_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_GT_PIPE] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_GT2] = ACTIONS(2816), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2814), + [anon_sym_xor2] = ACTIONS(2814), + [anon_sym_or2] = ACTIONS(2814), + [anon_sym_not_DASHin2] = ACTIONS(2814), + [anon_sym_has2] = ACTIONS(2814), + [anon_sym_not_DASHhas2] = ACTIONS(2814), + [anon_sym_starts_DASHwith2] = ACTIONS(2814), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2814), + [anon_sym_ends_DASHwith2] = ACTIONS(2814), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2814), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2816), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2814), + [anon_sym_BANG_TILDE2] = ACTIONS(2814), + [anon_sym_like2] = ACTIONS(2814), + [anon_sym_not_DASHlike2] = ACTIONS(2814), + [anon_sym_STAR_STAR2] = ACTIONS(2814), + [anon_sym_PLUS_PLUS2] = ACTIONS(2814), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2814), + [anon_sym_SLASH_SLASH2] = ACTIONS(2814), + [anon_sym_PLUS2] = ACTIONS(2816), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2814), + [anon_sym_bit_DASHxor2] = ACTIONS(2814), + [anon_sym_bit_DASHor2] = ACTIONS(2814), + [anon_sym_err_GT] = ACTIONS(2816), + [anon_sym_out_GT] = ACTIONS(2816), + [anon_sym_e_GT] = ACTIONS(2816), + [anon_sym_o_GT] = ACTIONS(2816), + [anon_sym_err_PLUSout_GT] = ACTIONS(2816), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2816), + [anon_sym_o_PLUSe_GT] = ACTIONS(2816), + [anon_sym_e_PLUSo_GT] = ACTIONS(2816), + [anon_sym_err_GT_GT] = ACTIONS(2814), + [anon_sym_out_GT_GT] = ACTIONS(2814), + [anon_sym_e_GT_GT] = ACTIONS(2814), + [anon_sym_o_GT_GT] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(994)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(994), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2810), + [anon_sym_PLUS_PLUS2] = ACTIONS(2810), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(995)] = { - [aux_sym__repeat_newline] = STATE(1040), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(995), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2810), + [anon_sym_PLUS_PLUS2] = ACTIONS(2810), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(996)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(996), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2810), + [anon_sym_PLUS_PLUS2] = ACTIONS(2810), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(997)] = { - [aux_sym__repeat_newline] = STATE(1041), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(997), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2810), + [anon_sym_PLUS_PLUS2] = ACTIONS(2810), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(998)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(998), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2810), + [anon_sym_PLUS_PLUS2] = ACTIONS(2810), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(999)] = { - [aux_sym__repeat_newline] = STATE(1042), [sym_comment] = STATE(999), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2704), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2702), - [anon_sym_PLUS_PLUS2] = ACTIONS(2702), - [anon_sym_SLASH2] = ACTIONS(2704), - [anon_sym_mod2] = ACTIONS(2702), - [anon_sym_SLASH_SLASH2] = ACTIONS(2702), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(815), + [sym__newline] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_PIPE] = ACTIONS(904), + [anon_sym_err_GT_PIPE] = ACTIONS(904), + [anon_sym_out_GT_PIPE] = ACTIONS(904), + [anon_sym_e_GT_PIPE] = ACTIONS(904), + [anon_sym_o_GT_PIPE] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(904), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(815), + [anon_sym_xor2] = ACTIONS(815), + [anon_sym_or2] = ACTIONS(815), + [anon_sym_not_DASHin2] = ACTIONS(815), + [anon_sym_has2] = ACTIONS(815), + [anon_sym_not_DASHhas2] = ACTIONS(815), + [anon_sym_starts_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(815), + [anon_sym_ends_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(815), + [anon_sym_EQ_EQ2] = ACTIONS(904), + [anon_sym_BANG_EQ2] = ACTIONS(904), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(904), + [anon_sym_GT_EQ2] = ACTIONS(904), + [anon_sym_EQ_TILDE2] = ACTIONS(904), + [anon_sym_BANG_TILDE2] = ACTIONS(815), + [anon_sym_like2] = ACTIONS(815), + [anon_sym_not_DASHlike2] = ACTIONS(815), + [anon_sym_STAR_STAR2] = ACTIONS(815), + [anon_sym_PLUS_PLUS2] = ACTIONS(815), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(815), + [anon_sym_SLASH_SLASH2] = ACTIONS(815), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(815), + [anon_sym_bit_DASHshr2] = ACTIONS(815), + [anon_sym_bit_DASHand2] = ACTIONS(815), + [anon_sym_bit_DASHxor2] = ACTIONS(815), + [anon_sym_bit_DASHor2] = ACTIONS(815), + [anon_sym_COLON2] = ACTIONS(904), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [anon_sym_err_GT_GT] = ACTIONS(904), + [anon_sym_out_GT_GT] = ACTIONS(904), + [anon_sym_e_GT_GT] = ACTIONS(904), + [anon_sym_o_GT_GT] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(904), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1000)] = { - [aux_sym__repeat_newline] = STATE(1130), + [aux_sym__repeat_newline] = STATE(1122), [sym_comment] = STATE(1000), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2820), + [sym__newline] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_err_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_GT_PIPE] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_GT2] = ACTIONS(2822), + [anon_sym_DASH2] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2820), + [anon_sym_STAR2] = ACTIONS(2822), + [anon_sym_and2] = ACTIONS(2820), + [anon_sym_xor2] = ACTIONS(2820), + [anon_sym_or2] = ACTIONS(2820), + [anon_sym_not_DASHin2] = ACTIONS(2820), + [anon_sym_has2] = ACTIONS(2820), + [anon_sym_not_DASHhas2] = ACTIONS(2820), + [anon_sym_starts_DASHwith2] = ACTIONS(2820), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2820), + [anon_sym_ends_DASHwith2] = ACTIONS(2820), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2820), + [anon_sym_EQ_EQ2] = ACTIONS(2820), + [anon_sym_BANG_EQ2] = ACTIONS(2820), + [anon_sym_LT2] = ACTIONS(2822), + [anon_sym_LT_EQ2] = ACTIONS(2820), + [anon_sym_GT_EQ2] = ACTIONS(2820), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2820), + [anon_sym_PLUS_PLUS2] = ACTIONS(2820), + [anon_sym_SLASH2] = ACTIONS(2822), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2820), + [anon_sym_bit_DASHshr2] = ACTIONS(2820), + [anon_sym_bit_DASHand2] = ACTIONS(2820), + [anon_sym_bit_DASHxor2] = ACTIONS(2820), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2822), + [anon_sym_out_GT] = ACTIONS(2822), + [anon_sym_e_GT] = ACTIONS(2822), + [anon_sym_o_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT] = ACTIONS(2822), + [anon_sym_err_GT_GT] = ACTIONS(2820), + [anon_sym_out_GT_GT] = ACTIONS(2820), + [anon_sym_e_GT_GT] = ACTIONS(2820), + [anon_sym_o_GT_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2820), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1001)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1061), [sym_comment] = STATE(1001), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2708), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2706), - [anon_sym_PLUS_PLUS2] = ACTIONS(2706), - [anon_sym_SLASH2] = ACTIONS(2708), - [anon_sym_mod2] = ACTIONS(2706), - [anon_sym_SLASH_SLASH2] = ACTIONS(2706), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1002)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1002), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_err_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_GT_PIPE] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2824), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_STAR2] = ACTIONS(2826), + [anon_sym_and2] = ACTIONS(2824), + [anon_sym_xor2] = ACTIONS(2824), + [anon_sym_or2] = ACTIONS(2824), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2824), + [anon_sym_BANG_EQ2] = ACTIONS(2824), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2824), + [anon_sym_GT_EQ2] = ACTIONS(2824), + [anon_sym_EQ_TILDE2] = ACTIONS(2824), + [anon_sym_BANG_TILDE2] = ACTIONS(2824), + [anon_sym_like2] = ACTIONS(2824), + [anon_sym_not_DASHlike2] = ACTIONS(2824), + [anon_sym_STAR_STAR2] = ACTIONS(2824), + [anon_sym_PLUS_PLUS2] = ACTIONS(2824), + [anon_sym_SLASH2] = ACTIONS(2826), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2824), + [anon_sym_bit_DASHxor2] = ACTIONS(2824), + [anon_sym_bit_DASHor2] = ACTIONS(2824), + [anon_sym_err_GT] = ACTIONS(2826), + [anon_sym_out_GT] = ACTIONS(2826), + [anon_sym_e_GT] = ACTIONS(2826), + [anon_sym_o_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT] = ACTIONS(2826), + [anon_sym_err_GT_GT] = ACTIONS(2824), + [anon_sym_out_GT_GT] = ACTIONS(2824), + [anon_sym_e_GT_GT] = ACTIONS(2824), + [anon_sym_o_GT_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2824), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1003)] = { - [aux_sym__repeat_newline] = STATE(1044), [sym_comment] = STATE(1003), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2750), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2752), + [anon_sym_DASH2] = ACTIONS(2750), + [anon_sym_STAR2] = ACTIONS(2752), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2750), + [anon_sym_has2] = ACTIONS(2750), + [anon_sym_not_DASHhas2] = ACTIONS(2750), + [anon_sym_starts_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), + [anon_sym_ends_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), + [anon_sym_EQ_EQ2] = ACTIONS(2750), + [anon_sym_BANG_EQ2] = ACTIONS(2750), + [anon_sym_LT2] = ACTIONS(2752), + [anon_sym_LT_EQ2] = ACTIONS(2750), + [anon_sym_GT_EQ2] = ACTIONS(2750), + [anon_sym_EQ_TILDE2] = ACTIONS(2750), + [anon_sym_BANG_TILDE2] = ACTIONS(2750), + [anon_sym_like2] = ACTIONS(2750), + [anon_sym_not_DASHlike2] = ACTIONS(2750), + [anon_sym_LPAREN2] = ACTIONS(2108), + [anon_sym_STAR_STAR2] = ACTIONS(2750), + [anon_sym_PLUS_PLUS2] = ACTIONS(2750), + [anon_sym_SLASH2] = ACTIONS(2752), + [anon_sym_mod2] = ACTIONS(2750), + [anon_sym_SLASH_SLASH2] = ACTIONS(2750), + [anon_sym_PLUS2] = ACTIONS(2752), + [anon_sym_bit_DASHshl2] = ACTIONS(2750), + [anon_sym_bit_DASHshr2] = ACTIONS(2750), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [sym__unquoted_pattern] = ACTIONS(2114), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1004)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(995), [sym_comment] = STATE(1004), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1005)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4361), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), [sym_comment] = STATE(1005), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [ts_builtin_sym_end] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2104), + [sym__newline] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_err_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_GT_PIPE] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), + [anon_sym_GT2] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2104), + [anon_sym_STAR2] = ACTIONS(2106), + [anon_sym_and2] = ACTIONS(2104), + [anon_sym_xor2] = ACTIONS(2104), + [anon_sym_or2] = ACTIONS(2104), + [anon_sym_not_DASHin2] = ACTIONS(2104), + [anon_sym_has2] = ACTIONS(2104), + [anon_sym_not_DASHhas2] = ACTIONS(2104), + [anon_sym_starts_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2104), + [anon_sym_ends_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2104), + [anon_sym_EQ_EQ2] = ACTIONS(2104), + [anon_sym_BANG_EQ2] = ACTIONS(2104), + [anon_sym_LT2] = ACTIONS(2106), + [anon_sym_LT_EQ2] = ACTIONS(2104), + [anon_sym_GT_EQ2] = ACTIONS(2104), + [anon_sym_EQ_TILDE2] = ACTIONS(2104), + [anon_sym_BANG_TILDE2] = ACTIONS(2104), + [anon_sym_like2] = ACTIONS(2104), + [anon_sym_not_DASHlike2] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2108), + [anon_sym_STAR_STAR2] = ACTIONS(2104), + [anon_sym_PLUS_PLUS2] = ACTIONS(2104), + [anon_sym_SLASH2] = ACTIONS(2106), + [anon_sym_mod2] = ACTIONS(2104), + [anon_sym_SLASH_SLASH2] = ACTIONS(2104), + [anon_sym_PLUS2] = ACTIONS(2106), + [anon_sym_bit_DASHshl2] = ACTIONS(2104), + [anon_sym_bit_DASHshr2] = ACTIONS(2104), + [anon_sym_bit_DASHand2] = ACTIONS(2104), + [anon_sym_bit_DASHxor2] = ACTIONS(2104), + [anon_sym_bit_DASHor2] = ACTIONS(2104), + [anon_sym_err_GT] = ACTIONS(2106), + [anon_sym_out_GT] = ACTIONS(2106), + [anon_sym_e_GT] = ACTIONS(2106), + [anon_sym_o_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_err_GT_GT] = ACTIONS(2104), + [anon_sym_out_GT_GT] = ACTIONS(2104), + [anon_sym_e_GT_GT] = ACTIONS(2104), + [anon_sym_o_GT_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), + [sym__unquoted_pattern] = ACTIONS(2114), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1006)] = { - [aux_sym__repeat_newline] = STATE(1045), [sym_comment] = STATE(1006), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(2715), + [anon_sym_in] = ACTIONS(2715), + [sym__newline] = ACTIONS(2715), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_err_GT_PIPE] = ACTIONS(2715), + [anon_sym_out_GT_PIPE] = ACTIONS(2715), + [anon_sym_e_GT_PIPE] = ACTIONS(2715), + [anon_sym_o_GT_PIPE] = ACTIONS(2715), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2715), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2715), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2715), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2715), + [anon_sym_GT2] = ACTIONS(2717), + [anon_sym_DASH2] = ACTIONS(2715), + [anon_sym_STAR2] = ACTIONS(2717), + [anon_sym_and2] = ACTIONS(2715), + [anon_sym_xor2] = ACTIONS(2715), + [anon_sym_or2] = ACTIONS(2715), + [anon_sym_not_DASHin2] = ACTIONS(2715), + [anon_sym_has2] = ACTIONS(2715), + [anon_sym_not_DASHhas2] = ACTIONS(2715), + [anon_sym_starts_DASHwith2] = ACTIONS(2715), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2715), + [anon_sym_ends_DASHwith2] = ACTIONS(2715), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2715), + [anon_sym_EQ_EQ2] = ACTIONS(2715), + [anon_sym_BANG_EQ2] = ACTIONS(2715), + [anon_sym_LT2] = ACTIONS(2717), + [anon_sym_LT_EQ2] = ACTIONS(2715), + [anon_sym_GT_EQ2] = ACTIONS(2715), + [anon_sym_EQ_TILDE2] = ACTIONS(2715), + [anon_sym_BANG_TILDE2] = ACTIONS(2715), + [anon_sym_like2] = ACTIONS(2715), + [anon_sym_not_DASHlike2] = ACTIONS(2715), + [anon_sym_LPAREN2] = ACTIONS(2804), + [anon_sym_STAR_STAR2] = ACTIONS(2715), + [anon_sym_PLUS_PLUS2] = ACTIONS(2715), + [anon_sym_SLASH2] = ACTIONS(2717), + [anon_sym_mod2] = ACTIONS(2715), + [anon_sym_SLASH_SLASH2] = ACTIONS(2715), + [anon_sym_PLUS2] = ACTIONS(2717), + [anon_sym_bit_DASHshl2] = ACTIONS(2715), + [anon_sym_bit_DASHshr2] = ACTIONS(2715), + [anon_sym_bit_DASHand2] = ACTIONS(2715), + [anon_sym_bit_DASHxor2] = ACTIONS(2715), + [anon_sym_bit_DASHor2] = ACTIONS(2715), + [anon_sym_err_GT] = ACTIONS(2717), + [anon_sym_out_GT] = ACTIONS(2717), + [anon_sym_e_GT] = ACTIONS(2717), + [anon_sym_o_GT] = ACTIONS(2717), + [anon_sym_err_PLUSout_GT] = ACTIONS(2717), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2717), + [anon_sym_o_PLUSe_GT] = ACTIONS(2717), + [anon_sym_e_PLUSo_GT] = ACTIONS(2717), + [anon_sym_err_GT_GT] = ACTIONS(2715), + [anon_sym_out_GT_GT] = ACTIONS(2715), + [anon_sym_e_GT_GT] = ACTIONS(2715), + [anon_sym_o_GT_GT] = ACTIONS(2715), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2715), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2715), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2715), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2715), + [sym__unquoted_pattern] = ACTIONS(1819), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1007)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1131), [sym_comment] = STATE(1007), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1008)] = { - [aux_sym__repeat_newline] = STATE(1052), [sym_comment] = STATE(1008), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(2742), + [anon_sym_in] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_GT2] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2744), + [anon_sym_and2] = ACTIONS(2742), + [anon_sym_xor2] = ACTIONS(2742), + [anon_sym_or2] = ACTIONS(2742), + [anon_sym_not_DASHin2] = ACTIONS(2742), + [anon_sym_has2] = ACTIONS(2742), + [anon_sym_not_DASHhas2] = ACTIONS(2742), + [anon_sym_starts_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), + [anon_sym_ends_DASHwith2] = ACTIONS(2742), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), + [anon_sym_EQ_EQ2] = ACTIONS(2742), + [anon_sym_BANG_EQ2] = ACTIONS(2742), + [anon_sym_LT2] = ACTIONS(2744), + [anon_sym_LT_EQ2] = ACTIONS(2742), + [anon_sym_GT_EQ2] = ACTIONS(2742), + [anon_sym_EQ_TILDE2] = ACTIONS(2742), + [anon_sym_BANG_TILDE2] = ACTIONS(2742), + [anon_sym_like2] = ACTIONS(2742), + [anon_sym_not_DASHlike2] = ACTIONS(2742), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_STAR_STAR2] = ACTIONS(2742), + [anon_sym_PLUS_PLUS2] = ACTIONS(2742), + [anon_sym_SLASH2] = ACTIONS(2744), + [anon_sym_mod2] = ACTIONS(2742), + [anon_sym_SLASH_SLASH2] = ACTIONS(2742), + [anon_sym_PLUS2] = ACTIONS(2744), + [anon_sym_bit_DASHshl2] = ACTIONS(2742), + [anon_sym_bit_DASHshr2] = ACTIONS(2742), + [anon_sym_bit_DASHand2] = ACTIONS(2742), + [anon_sym_bit_DASHxor2] = ACTIONS(2742), + [anon_sym_bit_DASHor2] = ACTIONS(2742), + [anon_sym_err_GT] = ACTIONS(2744), + [anon_sym_out_GT] = ACTIONS(2744), + [anon_sym_e_GT] = ACTIONS(2744), + [anon_sym_o_GT] = ACTIONS(2744), + [anon_sym_err_PLUSout_GT] = ACTIONS(2744), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), + [anon_sym_o_PLUSe_GT] = ACTIONS(2744), + [anon_sym_e_PLUSo_GT] = ACTIONS(2744), + [anon_sym_err_GT_GT] = ACTIONS(2742), + [anon_sym_out_GT_GT] = ACTIONS(2742), + [anon_sym_e_GT_GT] = ACTIONS(2742), + [anon_sym_o_GT_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), + [sym__unquoted_pattern] = ACTIONS(2760), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1009)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expression] = STATE(4966), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2440), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_comment] = STATE(1009), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2818), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), + [anon_sym_null] = ACTIONS(2705), + [aux_sym_cmd_identifier_token3] = ACTIONS(2707), + [aux_sym_cmd_identifier_token4] = ACTIONS(2707), + [aux_sym_cmd_identifier_token5] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2711), + [aux_sym__val_number_decimal_token4] = ACTIONS(2711), + [aux_sym__val_number_token1] = ACTIONS(2707), + [aux_sym__val_number_token2] = ACTIONS(2707), + [aux_sym__val_number_token3] = ACTIONS(2707), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2713), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_COLON2] = ACTIONS(2828), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1010)] = { - [aux_sym__repeat_newline] = STATE(1053), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1010), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1011)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1010), [sym_comment] = STATE(1011), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1012)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1012), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1013)] = { - [aux_sym__repeat_newline] = STATE(1055), + [sym__expression] = STATE(4831), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2440), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_comment] = STATE(1013), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2818), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), + [anon_sym_null] = ACTIONS(2705), + [aux_sym_cmd_identifier_token3] = ACTIONS(2707), + [aux_sym_cmd_identifier_token4] = ACTIONS(2707), + [aux_sym_cmd_identifier_token5] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2711), + [aux_sym__val_number_decimal_token4] = ACTIONS(2711), + [aux_sym__val_number_token1] = ACTIONS(2707), + [aux_sym__val_number_token2] = ACTIONS(2707), + [aux_sym__val_number_token3] = ACTIONS(2707), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2713), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_COLON2] = ACTIONS(2828), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1014)] = { - [aux_sym__repeat_newline] = STATE(1057), + [aux_sym__repeat_newline] = STATE(996), [sym_comment] = STATE(1014), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1015)] = { - [aux_sym__repeat_newline] = STATE(1060), + [aux_sym__repeat_newline] = STATE(1016), [sym_comment] = STATE(1015), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1016)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1016), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1017)] = { [aux_sym__repeat_newline] = STATE(1062), [sym_comment] = STATE(1017), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1018)] = { - [aux_sym__repeat_newline] = STATE(1065), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1018), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_err_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_GT_PIPE] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2824), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_STAR2] = ACTIONS(2826), + [anon_sym_and2] = ACTIONS(2824), + [anon_sym_xor2] = ACTIONS(2824), + [anon_sym_or2] = ACTIONS(2824), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2824), + [anon_sym_BANG_EQ2] = ACTIONS(2824), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2824), + [anon_sym_GT_EQ2] = ACTIONS(2824), + [anon_sym_EQ_TILDE2] = ACTIONS(2824), + [anon_sym_BANG_TILDE2] = ACTIONS(2824), + [anon_sym_like2] = ACTIONS(2824), + [anon_sym_not_DASHlike2] = ACTIONS(2824), + [anon_sym_STAR_STAR2] = ACTIONS(2824), + [anon_sym_PLUS_PLUS2] = ACTIONS(2824), + [anon_sym_SLASH2] = ACTIONS(2826), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2824), + [anon_sym_bit_DASHxor2] = ACTIONS(2824), + [anon_sym_bit_DASHor2] = ACTIONS(2824), + [anon_sym_err_GT] = ACTIONS(2826), + [anon_sym_out_GT] = ACTIONS(2826), + [anon_sym_e_GT] = ACTIONS(2826), + [anon_sym_o_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT] = ACTIONS(2826), + [anon_sym_err_GT_GT] = ACTIONS(2824), + [anon_sym_out_GT_GT] = ACTIONS(2824), + [anon_sym_e_GT_GT] = ACTIONS(2824), + [anon_sym_o_GT_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2824), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1019)] = { - [aux_sym__repeat_newline] = STATE(1067), + [aux_sym__repeat_newline] = STATE(1031), [sym_comment] = STATE(1019), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1020)] = { - [aux_sym__repeat_newline] = STATE(1070), + [aux_sym__repeat_newline] = STATE(1063), [sym_comment] = STATE(1020), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1021)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4515), - [sym__val_range] = STATE(4853), - [sym_val_nothing] = STATE(4517), - [sym_val_bool] = STATE(4134), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4517), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4517), - [sym_val_filesize] = STATE(4517), - [sym_val_binary] = STATE(4517), - [sym_val_string] = STATE(4517), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(4951), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4517), - [sym__unquoted_in_list] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(4853), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1021), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3958), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_err_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_GT_PIPE] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2824), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_STAR2] = ACTIONS(2826), + [anon_sym_and2] = ACTIONS(2824), + [anon_sym_xor2] = ACTIONS(2824), + [anon_sym_or2] = ACTIONS(2824), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2824), + [anon_sym_BANG_EQ2] = ACTIONS(2824), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2824), + [anon_sym_GT_EQ2] = ACTIONS(2824), + [anon_sym_EQ_TILDE2] = ACTIONS(2824), + [anon_sym_BANG_TILDE2] = ACTIONS(2824), + [anon_sym_like2] = ACTIONS(2824), + [anon_sym_not_DASHlike2] = ACTIONS(2824), + [anon_sym_STAR_STAR2] = ACTIONS(2824), + [anon_sym_PLUS_PLUS2] = ACTIONS(2824), + [anon_sym_SLASH2] = ACTIONS(2826), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2824), + [anon_sym_bit_DASHxor2] = ACTIONS(2824), + [anon_sym_bit_DASHor2] = ACTIONS(2824), + [anon_sym_err_GT] = ACTIONS(2826), + [anon_sym_out_GT] = ACTIONS(2826), + [anon_sym_e_GT] = ACTIONS(2826), + [anon_sym_o_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT] = ACTIONS(2826), + [anon_sym_err_GT_GT] = ACTIONS(2824), + [anon_sym_out_GT_GT] = ACTIONS(2824), + [anon_sym_e_GT_GT] = ACTIONS(2824), + [anon_sym_o_GT_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2824), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1022)] = { - [aux_sym__repeat_newline] = STATE(1073), + [sym__expr_parenthesized_immediate] = STATE(5247), [sym_comment] = STATE(1022), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [ts_builtin_sym_end] = ACTIONS(2224), + [anon_sym_in] = ACTIONS(2224), + [sym__newline] = ACTIONS(2224), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_err_GT_PIPE] = ACTIONS(2224), + [anon_sym_out_GT_PIPE] = ACTIONS(2224), + [anon_sym_e_GT_PIPE] = ACTIONS(2224), + [anon_sym_o_GT_PIPE] = ACTIONS(2224), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2224), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2224), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2224), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2224), + [anon_sym_GT2] = ACTIONS(2226), + [anon_sym_DASH2] = ACTIONS(2224), + [anon_sym_STAR2] = ACTIONS(2226), + [anon_sym_and2] = ACTIONS(2224), + [anon_sym_xor2] = ACTIONS(2224), + [anon_sym_or2] = ACTIONS(2224), + [anon_sym_not_DASHin2] = ACTIONS(2224), + [anon_sym_has2] = ACTIONS(2224), + [anon_sym_not_DASHhas2] = ACTIONS(2224), + [anon_sym_starts_DASHwith2] = ACTIONS(2224), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2224), + [anon_sym_ends_DASHwith2] = ACTIONS(2224), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2224), + [anon_sym_EQ_EQ2] = ACTIONS(2224), + [anon_sym_BANG_EQ2] = ACTIONS(2224), + [anon_sym_LT2] = ACTIONS(2226), + [anon_sym_LT_EQ2] = ACTIONS(2224), + [anon_sym_GT_EQ2] = ACTIONS(2224), + [anon_sym_EQ_TILDE2] = ACTIONS(2224), + [anon_sym_BANG_TILDE2] = ACTIONS(2224), + [anon_sym_like2] = ACTIONS(2224), + [anon_sym_not_DASHlike2] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2224), + [anon_sym_PLUS_PLUS2] = ACTIONS(2224), + [anon_sym_SLASH2] = ACTIONS(2226), + [anon_sym_mod2] = ACTIONS(2224), + [anon_sym_SLASH_SLASH2] = ACTIONS(2224), + [anon_sym_PLUS2] = ACTIONS(2226), + [anon_sym_bit_DASHshl2] = ACTIONS(2224), + [anon_sym_bit_DASHshr2] = ACTIONS(2224), + [anon_sym_bit_DASHand2] = ACTIONS(2224), + [anon_sym_bit_DASHxor2] = ACTIONS(2224), + [anon_sym_bit_DASHor2] = ACTIONS(2224), + [anon_sym_err_GT] = ACTIONS(2226), + [anon_sym_out_GT] = ACTIONS(2226), + [anon_sym_e_GT] = ACTIONS(2226), + [anon_sym_o_GT] = ACTIONS(2226), + [anon_sym_err_PLUSout_GT] = ACTIONS(2226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2226), + [anon_sym_o_PLUSe_GT] = ACTIONS(2226), + [anon_sym_e_PLUSo_GT] = ACTIONS(2226), + [anon_sym_err_GT_GT] = ACTIONS(2224), + [anon_sym_out_GT_GT] = ACTIONS(2224), + [anon_sym_e_GT_GT] = ACTIONS(2224), + [anon_sym_o_GT_GT] = ACTIONS(2224), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2224), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2224), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2224), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2224), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1023)] = { - [aux_sym__repeat_newline] = STATE(1077), + [aux_sym__repeat_newline] = STATE(1064), [sym_comment] = STATE(1023), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2712), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2714), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2712), - [anon_sym_PLUS_PLUS2] = ACTIONS(2712), - [anon_sym_SLASH2] = ACTIONS(2714), - [anon_sym_mod2] = ACTIONS(2712), - [anon_sym_SLASH_SLASH2] = ACTIONS(2712), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1024)] = { - [aux_sym__repeat_newline] = STATE(1078), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1024), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_err_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_GT_PIPE] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2824), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_STAR2] = ACTIONS(2826), + [anon_sym_and2] = ACTIONS(2824), + [anon_sym_xor2] = ACTIONS(2824), + [anon_sym_or2] = ACTIONS(2824), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2824), + [anon_sym_BANG_EQ2] = ACTIONS(2824), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2824), + [anon_sym_GT_EQ2] = ACTIONS(2824), + [anon_sym_EQ_TILDE2] = ACTIONS(2824), + [anon_sym_BANG_TILDE2] = ACTIONS(2824), + [anon_sym_like2] = ACTIONS(2824), + [anon_sym_not_DASHlike2] = ACTIONS(2824), + [anon_sym_STAR_STAR2] = ACTIONS(2824), + [anon_sym_PLUS_PLUS2] = ACTIONS(2824), + [anon_sym_SLASH2] = ACTIONS(2826), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2824), + [anon_sym_bit_DASHxor2] = ACTIONS(2824), + [anon_sym_bit_DASHor2] = ACTIONS(2824), + [anon_sym_err_GT] = ACTIONS(2826), + [anon_sym_out_GT] = ACTIONS(2826), + [anon_sym_e_GT] = ACTIONS(2826), + [anon_sym_o_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT] = ACTIONS(2826), + [anon_sym_err_GT_GT] = ACTIONS(2824), + [anon_sym_out_GT_GT] = ACTIONS(2824), + [anon_sym_e_GT_GT] = ACTIONS(2824), + [anon_sym_o_GT_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2824), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1025)] = { + [aux_sym__repeat_newline] = STATE(1042), [sym_comment] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(2501), - [anon_sym_in] = ACTIONS(2501), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2501), - [anon_sym_xor2] = ACTIONS(2501), - [anon_sym_or2] = ACTIONS(2501), - [anon_sym_not_DASHin2] = ACTIONS(2501), - [anon_sym_has2] = ACTIONS(2501), - [anon_sym_not_DASHhas2] = ACTIONS(2501), - [anon_sym_starts_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2501), - [anon_sym_ends_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2501), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2501), - [anon_sym_like2] = ACTIONS(2501), - [anon_sym_not_DASHlike2] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_STAR_STAR2] = ACTIONS(2501), - [anon_sym_PLUS_PLUS2] = ACTIONS(2501), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2501), - [anon_sym_SLASH_SLASH2] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2501), - [anon_sym_bit_DASHshr2] = ACTIONS(2501), - [anon_sym_bit_DASHand2] = ACTIONS(2501), - [anon_sym_bit_DASHxor2] = ACTIONS(2501), - [anon_sym_bit_DASHor2] = ACTIONS(2501), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [sym__unquoted_pattern] = ACTIONS(2503), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1026)] = { + [aux_sym__repeat_newline] = STATE(1065), [sym_comment] = STATE(1026), - [ts_builtin_sym_end] = ACTIONS(2635), - [anon_sym_in] = ACTIONS(2635), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2635), - [anon_sym_xor2] = ACTIONS(2635), - [anon_sym_or2] = ACTIONS(2635), - [anon_sym_not_DASHin2] = ACTIONS(2635), - [anon_sym_has2] = ACTIONS(2635), - [anon_sym_not_DASHhas2] = ACTIONS(2635), - [anon_sym_starts_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2635), - [anon_sym_ends_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2635), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2635), - [anon_sym_like2] = ACTIONS(2635), - [anon_sym_not_DASHlike2] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_STAR_STAR2] = ACTIONS(2635), - [anon_sym_PLUS_PLUS2] = ACTIONS(2635), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2635), - [anon_sym_SLASH_SLASH2] = ACTIONS(2635), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2635), - [anon_sym_bit_DASHshr2] = ACTIONS(2635), - [anon_sym_bit_DASHand2] = ACTIONS(2635), - [anon_sym_bit_DASHxor2] = ACTIONS(2635), - [anon_sym_bit_DASHor2] = ACTIONS(2635), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [sym__unquoted_pattern] = ACTIONS(2641), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1027)] = { - [aux_sym__repeat_newline] = STATE(1080), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1027), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_err_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_GT_PIPE] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2824), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_STAR2] = ACTIONS(2826), + [anon_sym_and2] = ACTIONS(2824), + [anon_sym_xor2] = ACTIONS(2824), + [anon_sym_or2] = ACTIONS(2824), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2824), + [anon_sym_BANG_EQ2] = ACTIONS(2824), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2824), + [anon_sym_GT_EQ2] = ACTIONS(2824), + [anon_sym_EQ_TILDE2] = ACTIONS(2824), + [anon_sym_BANG_TILDE2] = ACTIONS(2824), + [anon_sym_like2] = ACTIONS(2824), + [anon_sym_not_DASHlike2] = ACTIONS(2824), + [anon_sym_STAR_STAR2] = ACTIONS(2824), + [anon_sym_PLUS_PLUS2] = ACTIONS(2824), + [anon_sym_SLASH2] = ACTIONS(2826), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2824), + [anon_sym_bit_DASHxor2] = ACTIONS(2824), + [anon_sym_bit_DASHor2] = ACTIONS(2824), + [anon_sym_err_GT] = ACTIONS(2826), + [anon_sym_out_GT] = ACTIONS(2826), + [anon_sym_e_GT] = ACTIONS(2826), + [anon_sym_o_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT] = ACTIONS(2826), + [anon_sym_err_GT_GT] = ACTIONS(2824), + [anon_sym_out_GT_GT] = ACTIONS(2824), + [anon_sym_e_GT_GT] = ACTIONS(2824), + [anon_sym_o_GT_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2824), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1028)] = { + [aux_sym__repeat_newline] = STATE(997), [sym_comment] = STATE(1028), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(2595), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [sym__unquoted_pattern] = ACTIONS(2597), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1029)] = { - [aux_sym__repeat_newline] = STATE(1082), + [aux_sym__repeat_newline] = STATE(1144), [sym_comment] = STATE(1029), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1030)] = { - [aux_sym__repeat_newline] = STATE(980), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1030), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_err_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_GT_PIPE] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2824), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_STAR2] = ACTIONS(2826), + [anon_sym_and2] = ACTIONS(2824), + [anon_sym_xor2] = ACTIONS(2824), + [anon_sym_or2] = ACTIONS(2824), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2824), + [anon_sym_BANG_EQ2] = ACTIONS(2824), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2824), + [anon_sym_GT_EQ2] = ACTIONS(2824), + [anon_sym_EQ_TILDE2] = ACTIONS(2824), + [anon_sym_BANG_TILDE2] = ACTIONS(2824), + [anon_sym_like2] = ACTIONS(2824), + [anon_sym_not_DASHlike2] = ACTIONS(2824), + [anon_sym_STAR_STAR2] = ACTIONS(2824), + [anon_sym_PLUS_PLUS2] = ACTIONS(2824), + [anon_sym_SLASH2] = ACTIONS(2826), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2824), + [anon_sym_bit_DASHxor2] = ACTIONS(2824), + [anon_sym_bit_DASHor2] = ACTIONS(2824), + [anon_sym_err_GT] = ACTIONS(2826), + [anon_sym_out_GT] = ACTIONS(2826), + [anon_sym_e_GT] = ACTIONS(2826), + [anon_sym_o_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT] = ACTIONS(2826), + [anon_sym_err_GT_GT] = ACTIONS(2824), + [anon_sym_out_GT_GT] = ACTIONS(2824), + [anon_sym_e_GT_GT] = ACTIONS(2824), + [anon_sym_o_GT_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2824), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1031)] = { - [aux_sym__repeat_newline] = STATE(1085), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1031), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1032)] = { - [aux_sym__repeat_newline] = STATE(1088), + [aux_sym__repeat_newline] = STATE(1067), [sym_comment] = STATE(1032), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1033)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1033), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_err_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_GT_PIPE] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2824), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_STAR2] = ACTIONS(2826), + [anon_sym_and2] = ACTIONS(2824), + [anon_sym_xor2] = ACTIONS(2824), + [anon_sym_or2] = ACTIONS(2824), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2824), + [anon_sym_BANG_EQ2] = ACTIONS(2824), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2824), + [anon_sym_GT_EQ2] = ACTIONS(2824), + [anon_sym_EQ_TILDE2] = ACTIONS(2824), + [anon_sym_BANG_TILDE2] = ACTIONS(2824), + [anon_sym_like2] = ACTIONS(2824), + [anon_sym_not_DASHlike2] = ACTIONS(2824), + [anon_sym_STAR_STAR2] = ACTIONS(2824), + [anon_sym_PLUS_PLUS2] = ACTIONS(2824), + [anon_sym_SLASH2] = ACTIONS(2826), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2824), + [anon_sym_bit_DASHxor2] = ACTIONS(2824), + [anon_sym_bit_DASHor2] = ACTIONS(2824), + [anon_sym_err_GT] = ACTIONS(2826), + [anon_sym_out_GT] = ACTIONS(2826), + [anon_sym_e_GT] = ACTIONS(2826), + [anon_sym_o_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT] = ACTIONS(2826), + [anon_sym_err_GT_GT] = ACTIONS(2824), + [anon_sym_out_GT_GT] = ACTIONS(2824), + [anon_sym_e_GT_GT] = ACTIONS(2824), + [anon_sym_o_GT_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2824), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1034)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(5247), [sym_comment] = STATE(1034), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [ts_builtin_sym_end] = ACTIONS(2286), + [anon_sym_in] = ACTIONS(2286), + [sym__newline] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_err_GT_PIPE] = ACTIONS(2286), + [anon_sym_out_GT_PIPE] = ACTIONS(2286), + [anon_sym_e_GT_PIPE] = ACTIONS(2286), + [anon_sym_o_GT_PIPE] = ACTIONS(2286), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2286), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2286), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2286), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2286), + [anon_sym_GT2] = ACTIONS(2288), + [anon_sym_DASH2] = ACTIONS(2286), + [anon_sym_STAR2] = ACTIONS(2288), + [anon_sym_and2] = ACTIONS(2286), + [anon_sym_xor2] = ACTIONS(2286), + [anon_sym_or2] = ACTIONS(2286), + [anon_sym_not_DASHin2] = ACTIONS(2286), + [anon_sym_has2] = ACTIONS(2286), + [anon_sym_not_DASHhas2] = ACTIONS(2286), + [anon_sym_starts_DASHwith2] = ACTIONS(2286), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2286), + [anon_sym_ends_DASHwith2] = ACTIONS(2286), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2286), + [anon_sym_EQ_EQ2] = ACTIONS(2286), + [anon_sym_BANG_EQ2] = ACTIONS(2286), + [anon_sym_LT2] = ACTIONS(2288), + [anon_sym_LT_EQ2] = ACTIONS(2286), + [anon_sym_GT_EQ2] = ACTIONS(2286), + [anon_sym_EQ_TILDE2] = ACTIONS(2286), + [anon_sym_BANG_TILDE2] = ACTIONS(2286), + [anon_sym_like2] = ACTIONS(2286), + [anon_sym_not_DASHlike2] = ACTIONS(2286), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2286), + [anon_sym_PLUS_PLUS2] = ACTIONS(2286), + [anon_sym_SLASH2] = ACTIONS(2288), + [anon_sym_mod2] = ACTIONS(2286), + [anon_sym_SLASH_SLASH2] = ACTIONS(2286), + [anon_sym_PLUS2] = ACTIONS(2288), + [anon_sym_bit_DASHshl2] = ACTIONS(2286), + [anon_sym_bit_DASHshr2] = ACTIONS(2286), + [anon_sym_bit_DASHand2] = ACTIONS(2286), + [anon_sym_bit_DASHxor2] = ACTIONS(2286), + [anon_sym_bit_DASHor2] = ACTIONS(2286), + [anon_sym_err_GT] = ACTIONS(2288), + [anon_sym_out_GT] = ACTIONS(2288), + [anon_sym_e_GT] = ACTIONS(2288), + [anon_sym_o_GT] = ACTIONS(2288), + [anon_sym_err_PLUSout_GT] = ACTIONS(2288), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2288), + [anon_sym_o_PLUSe_GT] = ACTIONS(2288), + [anon_sym_e_PLUSo_GT] = ACTIONS(2288), + [anon_sym_err_GT_GT] = ACTIONS(2286), + [anon_sym_out_GT_GT] = ACTIONS(2286), + [anon_sym_e_GT_GT] = ACTIONS(2286), + [anon_sym_o_GT_GT] = ACTIONS(2286), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2286), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2286), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2286), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2286), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1035)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1068), [sym_comment] = STATE(1035), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1036)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1036), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_err_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_GT_PIPE] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2824), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_STAR2] = ACTIONS(2826), + [anon_sym_and2] = ACTIONS(2824), + [anon_sym_xor2] = ACTIONS(2824), + [anon_sym_or2] = ACTIONS(2824), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2824), + [anon_sym_BANG_EQ2] = ACTIONS(2824), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2824), + [anon_sym_GT_EQ2] = ACTIONS(2824), + [anon_sym_EQ_TILDE2] = ACTIONS(2824), + [anon_sym_BANG_TILDE2] = ACTIONS(2824), + [anon_sym_like2] = ACTIONS(2824), + [anon_sym_not_DASHlike2] = ACTIONS(2824), + [anon_sym_STAR_STAR2] = ACTIONS(2824), + [anon_sym_PLUS_PLUS2] = ACTIONS(2824), + [anon_sym_SLASH2] = ACTIONS(2826), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2824), + [anon_sym_bit_DASHxor2] = ACTIONS(2824), + [anon_sym_bit_DASHor2] = ACTIONS(2824), + [anon_sym_err_GT] = ACTIONS(2826), + [anon_sym_out_GT] = ACTIONS(2826), + [anon_sym_e_GT] = ACTIONS(2826), + [anon_sym_o_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT] = ACTIONS(2826), + [anon_sym_err_GT_GT] = ACTIONS(2824), + [anon_sym_out_GT_GT] = ACTIONS(2824), + [anon_sym_e_GT_GT] = ACTIONS(2824), + [anon_sym_o_GT_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2824), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1037)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(4959), [sym_comment] = STATE(1037), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [ts_builtin_sym_end] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1038)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(998), [sym_comment] = STATE(1038), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1039)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1070), [sym_comment] = STATE(1039), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1040)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1040), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2834), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_STAR2] = ACTIONS(2836), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2834), + [anon_sym_has2] = ACTIONS(2834), + [anon_sym_not_DASHhas2] = ACTIONS(2834), + [anon_sym_starts_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2834), + [anon_sym_ends_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2834), + [anon_sym_EQ_EQ2] = ACTIONS(2834), + [anon_sym_BANG_EQ2] = ACTIONS(2834), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2834), + [anon_sym_GT_EQ2] = ACTIONS(2834), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2834), + [anon_sym_PLUS_PLUS2] = ACTIONS(2834), + [anon_sym_SLASH2] = ACTIONS(2836), + [anon_sym_mod2] = ACTIONS(2834), + [anon_sym_SLASH_SLASH2] = ACTIONS(2834), + [anon_sym_PLUS2] = ACTIONS(2836), + [anon_sym_bit_DASHshl2] = ACTIONS(2834), + [anon_sym_bit_DASHshr2] = ACTIONS(2834), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1041)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1041), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_err_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_GT_PIPE] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2824), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_STAR2] = ACTIONS(2826), + [anon_sym_and2] = ACTIONS(2824), + [anon_sym_xor2] = ACTIONS(2824), + [anon_sym_or2] = ACTIONS(2824), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2824), + [anon_sym_BANG_EQ2] = ACTIONS(2824), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2824), + [anon_sym_GT_EQ2] = ACTIONS(2824), + [anon_sym_EQ_TILDE2] = ACTIONS(2824), + [anon_sym_BANG_TILDE2] = ACTIONS(2824), + [anon_sym_like2] = ACTIONS(2824), + [anon_sym_not_DASHlike2] = ACTIONS(2824), + [anon_sym_STAR_STAR2] = ACTIONS(2824), + [anon_sym_PLUS_PLUS2] = ACTIONS(2824), + [anon_sym_SLASH2] = ACTIONS(2826), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2824), + [anon_sym_bit_DASHxor2] = ACTIONS(2824), + [anon_sym_bit_DASHor2] = ACTIONS(2824), + [anon_sym_err_GT] = ACTIONS(2826), + [anon_sym_out_GT] = ACTIONS(2826), + [anon_sym_e_GT] = ACTIONS(2826), + [anon_sym_o_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT] = ACTIONS(2826), + [anon_sym_err_GT_GT] = ACTIONS(2824), + [anon_sym_out_GT_GT] = ACTIONS(2824), + [anon_sym_e_GT_GT] = ACTIONS(2824), + [anon_sym_o_GT_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2824), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1042)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1042), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2722), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2720), - [anon_sym_PLUS_PLUS2] = ACTIONS(2720), - [anon_sym_SLASH2] = ACTIONS(2722), - [anon_sym_mod2] = ACTIONS(2720), - [anon_sym_SLASH_SLASH2] = ACTIONS(2720), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1043)] = { + [aux_sym__repeat_newline] = STATE(1071), [sym_comment] = STATE(1043), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1044)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1044), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_err_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_GT_PIPE] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2824), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_STAR2] = ACTIONS(2826), + [anon_sym_and2] = ACTIONS(2824), + [anon_sym_xor2] = ACTIONS(2824), + [anon_sym_or2] = ACTIONS(2824), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2824), + [anon_sym_BANG_EQ2] = ACTIONS(2824), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2824), + [anon_sym_GT_EQ2] = ACTIONS(2824), + [anon_sym_EQ_TILDE2] = ACTIONS(2824), + [anon_sym_BANG_TILDE2] = ACTIONS(2824), + [anon_sym_like2] = ACTIONS(2824), + [anon_sym_not_DASHlike2] = ACTIONS(2824), + [anon_sym_STAR_STAR2] = ACTIONS(2824), + [anon_sym_PLUS_PLUS2] = ACTIONS(2824), + [anon_sym_SLASH2] = ACTIONS(2826), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2824), + [anon_sym_bit_DASHxor2] = ACTIONS(2824), + [anon_sym_bit_DASHor2] = ACTIONS(2824), + [anon_sym_err_GT] = ACTIONS(2826), + [anon_sym_out_GT] = ACTIONS(2826), + [anon_sym_e_GT] = ACTIONS(2826), + [anon_sym_o_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT] = ACTIONS(2826), + [anon_sym_err_GT_GT] = ACTIONS(2824), + [anon_sym_out_GT_GT] = ACTIONS(2824), + [anon_sym_e_GT_GT] = ACTIONS(2824), + [anon_sym_o_GT_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2824), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1045)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1045), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2312), + [anon_sym_alias] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_mut] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [aux_sym_cmd_identifier_token1] = ACTIONS(2312), + [anon_sym_def] = ACTIONS(2310), + [anon_sym_use] = ACTIONS(2310), + [anon_sym_export_DASHenv] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_loop] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_catch] = ACTIONS(2310), + [anon_sym_match] = ACTIONS(2310), + [anon_sym_in] = ACTIONS(2312), + [anon_sym_true] = ACTIONS(2310), + [anon_sym_false] = ACTIONS(2310), + [anon_sym_null] = ACTIONS(2310), + [aux_sym_cmd_identifier_token3] = ACTIONS(2310), + [aux_sym_cmd_identifier_token4] = ACTIONS(2310), + [aux_sym_cmd_identifier_token5] = ACTIONS(2310), + [sym__newline] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_err_GT_PIPE] = ACTIONS(2310), + [anon_sym_out_GT_PIPE] = ACTIONS(2310), + [anon_sym_e_GT_PIPE] = ACTIONS(2310), + [anon_sym_o_GT_PIPE] = ACTIONS(2310), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2310), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2310), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2310), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_DOLLAR] = ACTIONS(2312), + [anon_sym_DASH2] = ACTIONS(2312), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_DOT_DOT] = ACTIONS(2312), + [anon_sym_where] = ACTIONS(2310), + [aux_sym_expr_unary_token1] = ACTIONS(2310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2310), + [anon_sym_DOT_DOT_LT] = ACTIONS(2310), + [aux_sym__val_number_decimal_token1] = ACTIONS(2312), + [aux_sym__val_number_decimal_token2] = ACTIONS(2310), + [aux_sym__val_number_decimal_token3] = ACTIONS(2310), + [aux_sym__val_number_decimal_token4] = ACTIONS(2310), + [aux_sym__val_number_token1] = ACTIONS(2310), + [aux_sym__val_number_token2] = ACTIONS(2310), + [aux_sym__val_number_token3] = ACTIONS(2310), + [anon_sym_0b] = ACTIONS(2312), + [anon_sym_0o] = ACTIONS(2312), + [anon_sym_0x] = ACTIONS(2312), + [sym_val_date] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_BQUOTE] = ACTIONS(2310), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2310), + [anon_sym_CARET] = ACTIONS(2310), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2310), }, [STATE(1046)] = { - [aux_sym__repeat_newline] = STATE(983), + [aux_sym__repeat_newline] = STATE(1072), [sym_comment] = STATE(1046), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1047)] = { + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_err_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_GT_PIPE] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2824), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_STAR2] = ACTIONS(2826), + [anon_sym_and2] = ACTIONS(2824), + [anon_sym_xor2] = ACTIONS(2824), + [anon_sym_or2] = ACTIONS(2824), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2824), + [anon_sym_BANG_EQ2] = ACTIONS(2824), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2824), + [anon_sym_GT_EQ2] = ACTIONS(2824), + [anon_sym_EQ_TILDE2] = ACTIONS(2824), + [anon_sym_BANG_TILDE2] = ACTIONS(2824), + [anon_sym_like2] = ACTIONS(2824), + [anon_sym_not_DASHlike2] = ACTIONS(2824), + [anon_sym_STAR_STAR2] = ACTIONS(2824), + [anon_sym_PLUS_PLUS2] = ACTIONS(2824), + [anon_sym_SLASH2] = ACTIONS(2826), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2824), + [anon_sym_bit_DASHxor2] = ACTIONS(2824), + [anon_sym_bit_DASHor2] = ACTIONS(2824), + [anon_sym_err_GT] = ACTIONS(2826), + [anon_sym_out_GT] = ACTIONS(2826), + [anon_sym_e_GT] = ACTIONS(2826), + [anon_sym_o_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT] = ACTIONS(2826), + [anon_sym_err_GT_GT] = ACTIONS(2824), + [anon_sym_out_GT_GT] = ACTIONS(2824), + [anon_sym_e_GT_GT] = ACTIONS(2824), + [anon_sym_o_GT_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2824), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1048)] = { - [aux_sym__repeat_newline] = STATE(986), + [sym__expr_parenthesized_immediate] = STATE(5247), [sym_comment] = STATE(1048), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [ts_builtin_sym_end] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [sym__newline] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_err_GT_PIPE] = ACTIONS(2314), + [anon_sym_out_GT_PIPE] = ACTIONS(2314), + [anon_sym_e_GT_PIPE] = ACTIONS(2314), + [anon_sym_o_GT_PIPE] = ACTIONS(2314), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2314), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2314), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2314), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2314), + [anon_sym_GT2] = ACTIONS(2316), + [anon_sym_DASH2] = ACTIONS(2314), + [anon_sym_STAR2] = ACTIONS(2316), + [anon_sym_and2] = ACTIONS(2314), + [anon_sym_xor2] = ACTIONS(2314), + [anon_sym_or2] = ACTIONS(2314), + [anon_sym_not_DASHin2] = ACTIONS(2314), + [anon_sym_has2] = ACTIONS(2314), + [anon_sym_not_DASHhas2] = ACTIONS(2314), + [anon_sym_starts_DASHwith2] = ACTIONS(2314), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2314), + [anon_sym_ends_DASHwith2] = ACTIONS(2314), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2314), + [anon_sym_EQ_EQ2] = ACTIONS(2314), + [anon_sym_BANG_EQ2] = ACTIONS(2314), + [anon_sym_LT2] = ACTIONS(2316), + [anon_sym_LT_EQ2] = ACTIONS(2314), + [anon_sym_GT_EQ2] = ACTIONS(2314), + [anon_sym_EQ_TILDE2] = ACTIONS(2314), + [anon_sym_BANG_TILDE2] = ACTIONS(2314), + [anon_sym_like2] = ACTIONS(2314), + [anon_sym_not_DASHlike2] = ACTIONS(2314), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2314), + [anon_sym_PLUS_PLUS2] = ACTIONS(2314), + [anon_sym_SLASH2] = ACTIONS(2316), + [anon_sym_mod2] = ACTIONS(2314), + [anon_sym_SLASH_SLASH2] = ACTIONS(2314), + [anon_sym_PLUS2] = ACTIONS(2316), + [anon_sym_bit_DASHshl2] = ACTIONS(2314), + [anon_sym_bit_DASHshr2] = ACTIONS(2314), + [anon_sym_bit_DASHand2] = ACTIONS(2314), + [anon_sym_bit_DASHxor2] = ACTIONS(2314), + [anon_sym_bit_DASHor2] = ACTIONS(2314), + [anon_sym_err_GT] = ACTIONS(2316), + [anon_sym_out_GT] = ACTIONS(2316), + [anon_sym_e_GT] = ACTIONS(2316), + [anon_sym_o_GT] = ACTIONS(2316), + [anon_sym_err_PLUSout_GT] = ACTIONS(2316), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2316), + [anon_sym_o_PLUSe_GT] = ACTIONS(2316), + [anon_sym_e_PLUSo_GT] = ACTIONS(2316), + [anon_sym_err_GT_GT] = ACTIONS(2314), + [anon_sym_out_GT_GT] = ACTIONS(2314), + [anon_sym_e_GT_GT] = ACTIONS(2314), + [anon_sym_o_GT_GT] = ACTIONS(2314), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2314), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2314), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2314), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2314), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1049)] = { + [aux_sym__repeat_newline] = STATE(1073), [sym_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_like2] = ACTIONS(994), - [anon_sym_not_DASHlike2] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [sym__unquoted_pattern] = ACTIONS(2585), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1050)] = { + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1018), - [sym__newline] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_err_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_GT_PIPE] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1018), - [anon_sym_xor2] = ACTIONS(1018), - [anon_sym_or2] = ACTIONS(1018), - [anon_sym_not_DASHin2] = ACTIONS(1018), - [anon_sym_has2] = ACTIONS(1018), - [anon_sym_not_DASHhas2] = ACTIONS(1018), - [anon_sym_starts_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), - [anon_sym_ends_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), - [anon_sym_EQ_EQ2] = ACTIONS(1018), - [anon_sym_BANG_EQ2] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1018), - [anon_sym_GT_EQ2] = ACTIONS(1018), - [anon_sym_EQ_TILDE2] = ACTIONS(1018), - [anon_sym_BANG_TILDE2] = ACTIONS(1018), - [anon_sym_like2] = ACTIONS(1018), - [anon_sym_not_DASHlike2] = ACTIONS(1018), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(1018), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1018), - [anon_sym_SLASH_SLASH2] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1018), - [anon_sym_bit_DASHshr2] = ACTIONS(1018), - [anon_sym_bit_DASHand2] = ACTIONS(1018), - [anon_sym_bit_DASHxor2] = ACTIONS(1018), - [anon_sym_bit_DASHor2] = ACTIONS(1018), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1018), - [anon_sym_out_GT_GT] = ACTIONS(1018), - [anon_sym_e_GT_GT] = ACTIONS(1018), - [anon_sym_o_GT_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), - [sym__unquoted_pattern] = ACTIONS(2585), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_err_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_GT_PIPE] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2824), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_STAR2] = ACTIONS(2826), + [anon_sym_and2] = ACTIONS(2824), + [anon_sym_xor2] = ACTIONS(2824), + [anon_sym_or2] = ACTIONS(2824), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2824), + [anon_sym_BANG_EQ2] = ACTIONS(2824), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2824), + [anon_sym_GT_EQ2] = ACTIONS(2824), + [anon_sym_EQ_TILDE2] = ACTIONS(2824), + [anon_sym_BANG_TILDE2] = ACTIONS(2824), + [anon_sym_like2] = ACTIONS(2824), + [anon_sym_not_DASHlike2] = ACTIONS(2824), + [anon_sym_STAR_STAR2] = ACTIONS(2824), + [anon_sym_PLUS_PLUS2] = ACTIONS(2824), + [anon_sym_SLASH2] = ACTIONS(2826), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2824), + [anon_sym_bit_DASHxor2] = ACTIONS(2824), + [anon_sym_bit_DASHor2] = ACTIONS(2824), + [anon_sym_err_GT] = ACTIONS(2826), + [anon_sym_out_GT] = ACTIONS(2826), + [anon_sym_e_GT] = ACTIONS(2826), + [anon_sym_o_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT] = ACTIONS(2826), + [anon_sym_err_GT_GT] = ACTIONS(2824), + [anon_sym_out_GT_GT] = ACTIONS(2824), + [anon_sym_e_GT_GT] = ACTIONS(2824), + [anon_sym_o_GT_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2824), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1051)] = { - [aux_sym__repeat_newline] = STATE(990), + [sym_expr_unary] = STATE(2936), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_parenthesized] = STATE(2705), + [sym_val_range] = STATE(2936), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(2936), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2799), + [sym_val_variable] = STATE(2723), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2553), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(2768), + [sym__unquoted_with_expr] = STATE(2869), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(1051), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_true] = ACTIONS(2838), + [anon_sym_false] = ACTIONS(2838), + [anon_sym_null] = ACTIONS(2840), + [aux_sym_cmd_identifier_token3] = ACTIONS(2842), + [aux_sym_cmd_identifier_token4] = ACTIONS(2842), + [aux_sym_cmd_identifier_token5] = ACTIONS(2842), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_DOLLAR] = ACTIONS(2848), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_DOT_DOT] = ACTIONS(2852), + [aux_sym_expr_unary_token1] = ACTIONS(2854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2856), + [anon_sym_DOT_DOT_LT] = ACTIONS(2856), + [aux_sym__val_number_decimal_token1] = ACTIONS(2858), + [aux_sym__val_number_decimal_token2] = ACTIONS(2860), + [aux_sym__val_number_decimal_token3] = ACTIONS(2862), + [aux_sym__val_number_decimal_token4] = ACTIONS(2862), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1952), }, [STATE(1052)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1074), [sym_comment] = STATE(1052), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1053)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1053), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_err_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_GT_PIPE] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2824), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_STAR2] = ACTIONS(2826), + [anon_sym_and2] = ACTIONS(2824), + [anon_sym_xor2] = ACTIONS(2824), + [anon_sym_or2] = ACTIONS(2824), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2824), + [anon_sym_BANG_EQ2] = ACTIONS(2824), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2824), + [anon_sym_GT_EQ2] = ACTIONS(2824), + [anon_sym_EQ_TILDE2] = ACTIONS(2824), + [anon_sym_BANG_TILDE2] = ACTIONS(2824), + [anon_sym_like2] = ACTIONS(2824), + [anon_sym_not_DASHlike2] = ACTIONS(2824), + [anon_sym_STAR_STAR2] = ACTIONS(2824), + [anon_sym_PLUS_PLUS2] = ACTIONS(2824), + [anon_sym_SLASH2] = ACTIONS(2826), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2824), + [anon_sym_bit_DASHxor2] = ACTIONS(2824), + [anon_sym_bit_DASHor2] = ACTIONS(2824), + [anon_sym_err_GT] = ACTIONS(2826), + [anon_sym_out_GT] = ACTIONS(2826), + [anon_sym_e_GT] = ACTIONS(2826), + [anon_sym_o_GT] = ACTIONS(2826), + [anon_sym_err_PLUSout_GT] = ACTIONS(2826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2826), + [anon_sym_o_PLUSe_GT] = ACTIONS(2826), + [anon_sym_e_PLUSo_GT] = ACTIONS(2826), + [anon_sym_err_GT_GT] = ACTIONS(2824), + [anon_sym_out_GT_GT] = ACTIONS(2824), + [anon_sym_e_GT_GT] = ACTIONS(2824), + [anon_sym_o_GT_GT] = ACTIONS(2824), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2824), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2824), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2824), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2824), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1054)] = { - [aux_sym__repeat_newline] = STATE(1091), [sym_comment] = STATE(1054), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(904), + [sym__newline] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_PIPE] = ACTIONS(904), + [anon_sym_err_GT_PIPE] = ACTIONS(904), + [anon_sym_out_GT_PIPE] = ACTIONS(904), + [anon_sym_e_GT_PIPE] = ACTIONS(904), + [anon_sym_o_GT_PIPE] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(904), + [anon_sym_RPAREN] = ACTIONS(904), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(904), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(904), + [anon_sym_xor2] = ACTIONS(904), + [anon_sym_or2] = ACTIONS(904), + [anon_sym_not_DASHin2] = ACTIONS(904), + [anon_sym_has2] = ACTIONS(904), + [anon_sym_not_DASHhas2] = ACTIONS(904), + [anon_sym_starts_DASHwith2] = ACTIONS(904), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(904), + [anon_sym_ends_DASHwith2] = ACTIONS(904), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(904), + [anon_sym_EQ_EQ2] = ACTIONS(904), + [anon_sym_BANG_EQ2] = ACTIONS(904), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(904), + [anon_sym_GT_EQ2] = ACTIONS(904), + [anon_sym_EQ_TILDE2] = ACTIONS(904), + [anon_sym_BANG_TILDE2] = ACTIONS(904), + [anon_sym_like2] = ACTIONS(904), + [anon_sym_not_DASHlike2] = ACTIONS(904), + [anon_sym_STAR_STAR2] = ACTIONS(904), + [anon_sym_PLUS_PLUS2] = ACTIONS(904), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(904), + [anon_sym_SLASH_SLASH2] = ACTIONS(904), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(904), + [anon_sym_bit_DASHshr2] = ACTIONS(904), + [anon_sym_bit_DASHand2] = ACTIONS(904), + [anon_sym_bit_DASHxor2] = ACTIONS(904), + [anon_sym_bit_DASHor2] = ACTIONS(904), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [anon_sym_err_GT_GT] = ACTIONS(904), + [anon_sym_out_GT_GT] = ACTIONS(904), + [anon_sym_e_GT_GT] = ACTIONS(904), + [anon_sym_o_GT_GT] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(904), + [sym__unquoted_pattern] = ACTIONS(1900), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1055)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1055), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2866), + [anon_sym_alias] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_mut] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [aux_sym_cmd_identifier_token1] = ACTIONS(2866), + [anon_sym_def] = ACTIONS(2868), + [anon_sym_use] = ACTIONS(2868), + [anon_sym_export_DASHenv] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym_module] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_loop] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_catch] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [anon_sym_in] = ACTIONS(2866), + [anon_sym_true] = ACTIONS(2868), + [anon_sym_false] = ACTIONS(2868), + [anon_sym_null] = ACTIONS(2868), + [aux_sym_cmd_identifier_token3] = ACTIONS(2868), + [aux_sym_cmd_identifier_token4] = ACTIONS(2868), + [aux_sym_cmd_identifier_token5] = ACTIONS(2868), + [sym__newline] = ACTIONS(2868), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_err_GT_PIPE] = ACTIONS(2868), + [anon_sym_out_GT_PIPE] = ACTIONS(2868), + [anon_sym_e_GT_PIPE] = ACTIONS(2868), + [anon_sym_o_GT_PIPE] = ACTIONS(2868), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2868), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2868), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2868), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_DOLLAR] = ACTIONS(2866), + [anon_sym_DASH2] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_DOT_DOT] = ACTIONS(2866), + [anon_sym_where] = ACTIONS(2868), + [aux_sym_expr_unary_token1] = ACTIONS(2868), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2868), + [anon_sym_DOT_DOT_LT] = ACTIONS(2868), + [aux_sym__val_number_decimal_token1] = ACTIONS(2866), + [aux_sym__val_number_decimal_token2] = ACTIONS(2868), + [aux_sym__val_number_decimal_token3] = ACTIONS(2868), + [aux_sym__val_number_decimal_token4] = ACTIONS(2868), + [aux_sym__val_number_token1] = ACTIONS(2868), + [aux_sym__val_number_token2] = ACTIONS(2868), + [aux_sym__val_number_token3] = ACTIONS(2868), + [anon_sym_0b] = ACTIONS(2866), + [anon_sym_0o] = ACTIONS(2866), + [anon_sym_0x] = ACTIONS(2866), + [sym_val_date] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_SQUOTE] = ACTIONS(2868), + [anon_sym_BQUOTE] = ACTIONS(2868), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_CARET] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2868), }, [STATE(1056)] = { - [aux_sym__repeat_newline] = STATE(1092), + [aux_sym__repeat_newline] = STATE(1002), [sym_comment] = STATE(1056), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1057)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1057), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1058)] = { - [aux_sym__repeat_newline] = STATE(992), + [sym__expr_parenthesized_immediate] = STATE(5247), [sym_comment] = STATE(1058), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [ts_builtin_sym_end] = ACTIONS(2330), + [anon_sym_in] = ACTIONS(2330), + [sym__newline] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_PIPE] = ACTIONS(2330), + [anon_sym_err_GT_PIPE] = ACTIONS(2330), + [anon_sym_out_GT_PIPE] = ACTIONS(2330), + [anon_sym_e_GT_PIPE] = ACTIONS(2330), + [anon_sym_o_GT_PIPE] = ACTIONS(2330), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2330), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2330), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2330), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2330), + [anon_sym_GT2] = ACTIONS(2332), + [anon_sym_DASH2] = ACTIONS(2330), + [anon_sym_STAR2] = ACTIONS(2332), + [anon_sym_and2] = ACTIONS(2330), + [anon_sym_xor2] = ACTIONS(2330), + [anon_sym_or2] = ACTIONS(2330), + [anon_sym_not_DASHin2] = ACTIONS(2330), + [anon_sym_has2] = ACTIONS(2330), + [anon_sym_not_DASHhas2] = ACTIONS(2330), + [anon_sym_starts_DASHwith2] = ACTIONS(2330), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2330), + [anon_sym_ends_DASHwith2] = ACTIONS(2330), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2330), + [anon_sym_EQ_EQ2] = ACTIONS(2330), + [anon_sym_BANG_EQ2] = ACTIONS(2330), + [anon_sym_LT2] = ACTIONS(2332), + [anon_sym_LT_EQ2] = ACTIONS(2330), + [anon_sym_GT_EQ2] = ACTIONS(2330), + [anon_sym_EQ_TILDE2] = ACTIONS(2330), + [anon_sym_BANG_TILDE2] = ACTIONS(2330), + [anon_sym_like2] = ACTIONS(2330), + [anon_sym_not_DASHlike2] = ACTIONS(2330), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2330), + [anon_sym_PLUS_PLUS2] = ACTIONS(2330), + [anon_sym_SLASH2] = ACTIONS(2332), + [anon_sym_mod2] = ACTIONS(2330), + [anon_sym_SLASH_SLASH2] = ACTIONS(2330), + [anon_sym_PLUS2] = ACTIONS(2332), + [anon_sym_bit_DASHshl2] = ACTIONS(2330), + [anon_sym_bit_DASHshr2] = ACTIONS(2330), + [anon_sym_bit_DASHand2] = ACTIONS(2330), + [anon_sym_bit_DASHxor2] = ACTIONS(2330), + [anon_sym_bit_DASHor2] = ACTIONS(2330), + [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(2330), + [anon_sym_out_GT_GT] = ACTIONS(2330), + [anon_sym_e_GT_GT] = ACTIONS(2330), + [anon_sym_o_GT_GT] = ACTIONS(2330), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2330), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2330), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2330), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2330), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1059)] = { - [aux_sym__repeat_newline] = STATE(1093), + [aux_sym__repeat_newline] = STATE(1018), [sym_comment] = STATE(1059), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1060)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1387), + [sym__expression_parenthesized] = STATE(4384), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2349), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_comment] = STATE(1060), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2870), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1061)] = { - [aux_sym__repeat_newline] = STATE(1094), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1061), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_err_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_GT_PIPE] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2872), + [anon_sym_GT2] = ACTIONS(2874), + [anon_sym_DASH2] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_STAR2] = ACTIONS(2874), + [anon_sym_and2] = ACTIONS(2872), + [anon_sym_xor2] = ACTIONS(2872), + [anon_sym_or2] = ACTIONS(2872), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2872), + [anon_sym_BANG_EQ2] = ACTIONS(2872), + [anon_sym_LT2] = ACTIONS(2874), + [anon_sym_LT_EQ2] = ACTIONS(2872), + [anon_sym_GT_EQ2] = ACTIONS(2872), + [anon_sym_EQ_TILDE2] = ACTIONS(2872), + [anon_sym_BANG_TILDE2] = ACTIONS(2872), + [anon_sym_like2] = ACTIONS(2872), + [anon_sym_not_DASHlike2] = ACTIONS(2872), + [anon_sym_STAR_STAR2] = ACTIONS(2872), + [anon_sym_PLUS_PLUS2] = ACTIONS(2872), + [anon_sym_SLASH2] = ACTIONS(2874), + [anon_sym_mod2] = ACTIONS(2872), + [anon_sym_SLASH_SLASH2] = ACTIONS(2872), + [anon_sym_PLUS2] = ACTIONS(2874), + [anon_sym_bit_DASHshl2] = ACTIONS(2872), + [anon_sym_bit_DASHshr2] = ACTIONS(2872), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2872), + [anon_sym_err_GT] = ACTIONS(2874), + [anon_sym_out_GT] = ACTIONS(2874), + [anon_sym_e_GT] = ACTIONS(2874), + [anon_sym_o_GT] = ACTIONS(2874), + [anon_sym_err_PLUSout_GT] = ACTIONS(2874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2874), + [anon_sym_o_PLUSe_GT] = ACTIONS(2874), + [anon_sym_e_PLUSo_GT] = ACTIONS(2874), + [anon_sym_err_GT_GT] = ACTIONS(2872), + [anon_sym_out_GT_GT] = ACTIONS(2872), + [anon_sym_e_GT_GT] = ACTIONS(2872), + [anon_sym_o_GT_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1062)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1062), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_err_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_GT_PIPE] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2872), + [anon_sym_GT2] = ACTIONS(2874), + [anon_sym_DASH2] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_STAR2] = ACTIONS(2874), + [anon_sym_and2] = ACTIONS(2872), + [anon_sym_xor2] = ACTIONS(2872), + [anon_sym_or2] = ACTIONS(2872), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2872), + [anon_sym_BANG_EQ2] = ACTIONS(2872), + [anon_sym_LT2] = ACTIONS(2874), + [anon_sym_LT_EQ2] = ACTIONS(2872), + [anon_sym_GT_EQ2] = ACTIONS(2872), + [anon_sym_EQ_TILDE2] = ACTIONS(2872), + [anon_sym_BANG_TILDE2] = ACTIONS(2872), + [anon_sym_like2] = ACTIONS(2872), + [anon_sym_not_DASHlike2] = ACTIONS(2872), + [anon_sym_STAR_STAR2] = ACTIONS(2872), + [anon_sym_PLUS_PLUS2] = ACTIONS(2872), + [anon_sym_SLASH2] = ACTIONS(2874), + [anon_sym_mod2] = ACTIONS(2872), + [anon_sym_SLASH_SLASH2] = ACTIONS(2872), + [anon_sym_PLUS2] = ACTIONS(2874), + [anon_sym_bit_DASHshl2] = ACTIONS(2872), + [anon_sym_bit_DASHshr2] = ACTIONS(2872), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2872), + [anon_sym_err_GT] = ACTIONS(2874), + [anon_sym_out_GT] = ACTIONS(2874), + [anon_sym_e_GT] = ACTIONS(2874), + [anon_sym_o_GT] = ACTIONS(2874), + [anon_sym_err_PLUSout_GT] = ACTIONS(2874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2874), + [anon_sym_o_PLUSe_GT] = ACTIONS(2874), + [anon_sym_e_PLUSo_GT] = ACTIONS(2874), + [anon_sym_err_GT_GT] = ACTIONS(2872), + [anon_sym_out_GT_GT] = ACTIONS(2872), + [anon_sym_e_GT_GT] = ACTIONS(2872), + [anon_sym_o_GT_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1063)] = { + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1063), - [ts_builtin_sym_end] = ACTIONS(2575), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_err_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_GT_PIPE] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2872), + [anon_sym_GT2] = ACTIONS(2874), + [anon_sym_DASH2] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_STAR2] = ACTIONS(2874), + [anon_sym_and2] = ACTIONS(2872), + [anon_sym_xor2] = ACTIONS(2872), + [anon_sym_or2] = ACTIONS(2872), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2872), + [anon_sym_BANG_EQ2] = ACTIONS(2872), + [anon_sym_LT2] = ACTIONS(2874), + [anon_sym_LT_EQ2] = ACTIONS(2872), + [anon_sym_GT_EQ2] = ACTIONS(2872), + [anon_sym_EQ_TILDE2] = ACTIONS(2872), + [anon_sym_BANG_TILDE2] = ACTIONS(2872), + [anon_sym_like2] = ACTIONS(2872), + [anon_sym_not_DASHlike2] = ACTIONS(2872), + [anon_sym_STAR_STAR2] = ACTIONS(2872), + [anon_sym_PLUS_PLUS2] = ACTIONS(2872), + [anon_sym_SLASH2] = ACTIONS(2874), + [anon_sym_mod2] = ACTIONS(2872), + [anon_sym_SLASH_SLASH2] = ACTIONS(2872), + [anon_sym_PLUS2] = ACTIONS(2874), + [anon_sym_bit_DASHshl2] = ACTIONS(2872), + [anon_sym_bit_DASHshr2] = ACTIONS(2872), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2872), + [anon_sym_err_GT] = ACTIONS(2874), + [anon_sym_out_GT] = ACTIONS(2874), + [anon_sym_e_GT] = ACTIONS(2874), + [anon_sym_o_GT] = ACTIONS(2874), + [anon_sym_err_PLUSout_GT] = ACTIONS(2874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2874), + [anon_sym_o_PLUSe_GT] = ACTIONS(2874), + [anon_sym_e_PLUSo_GT] = ACTIONS(2874), + [anon_sym_err_GT_GT] = ACTIONS(2872), + [anon_sym_out_GT_GT] = ACTIONS(2872), + [anon_sym_e_GT_GT] = ACTIONS(2872), + [anon_sym_o_GT_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1064)] = { - [aux_sym__repeat_newline] = STATE(1095), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1064), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_err_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_GT_PIPE] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2872), + [anon_sym_GT2] = ACTIONS(2874), + [anon_sym_DASH2] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_STAR2] = ACTIONS(2874), + [anon_sym_and2] = ACTIONS(2872), + [anon_sym_xor2] = ACTIONS(2872), + [anon_sym_or2] = ACTIONS(2872), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2872), + [anon_sym_BANG_EQ2] = ACTIONS(2872), + [anon_sym_LT2] = ACTIONS(2874), + [anon_sym_LT_EQ2] = ACTIONS(2872), + [anon_sym_GT_EQ2] = ACTIONS(2872), + [anon_sym_EQ_TILDE2] = ACTIONS(2872), + [anon_sym_BANG_TILDE2] = ACTIONS(2872), + [anon_sym_like2] = ACTIONS(2872), + [anon_sym_not_DASHlike2] = ACTIONS(2872), + [anon_sym_STAR_STAR2] = ACTIONS(2872), + [anon_sym_PLUS_PLUS2] = ACTIONS(2872), + [anon_sym_SLASH2] = ACTIONS(2874), + [anon_sym_mod2] = ACTIONS(2872), + [anon_sym_SLASH_SLASH2] = ACTIONS(2872), + [anon_sym_PLUS2] = ACTIONS(2874), + [anon_sym_bit_DASHshl2] = ACTIONS(2872), + [anon_sym_bit_DASHshr2] = ACTIONS(2872), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2872), + [anon_sym_err_GT] = ACTIONS(2874), + [anon_sym_out_GT] = ACTIONS(2874), + [anon_sym_e_GT] = ACTIONS(2874), + [anon_sym_o_GT] = ACTIONS(2874), + [anon_sym_err_PLUSout_GT] = ACTIONS(2874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2874), + [anon_sym_o_PLUSe_GT] = ACTIONS(2874), + [anon_sym_e_PLUSo_GT] = ACTIONS(2874), + [anon_sym_err_GT_GT] = ACTIONS(2872), + [anon_sym_out_GT_GT] = ACTIONS(2872), + [anon_sym_e_GT_GT] = ACTIONS(2872), + [anon_sym_o_GT_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1065)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1065), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_err_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_GT_PIPE] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2872), + [anon_sym_GT2] = ACTIONS(2874), + [anon_sym_DASH2] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_STAR2] = ACTIONS(2874), + [anon_sym_and2] = ACTIONS(2872), + [anon_sym_xor2] = ACTIONS(2872), + [anon_sym_or2] = ACTIONS(2872), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2872), + [anon_sym_BANG_EQ2] = ACTIONS(2872), + [anon_sym_LT2] = ACTIONS(2874), + [anon_sym_LT_EQ2] = ACTIONS(2872), + [anon_sym_GT_EQ2] = ACTIONS(2872), + [anon_sym_EQ_TILDE2] = ACTIONS(2872), + [anon_sym_BANG_TILDE2] = ACTIONS(2872), + [anon_sym_like2] = ACTIONS(2872), + [anon_sym_not_DASHlike2] = ACTIONS(2872), + [anon_sym_STAR_STAR2] = ACTIONS(2872), + [anon_sym_PLUS_PLUS2] = ACTIONS(2872), + [anon_sym_SLASH2] = ACTIONS(2874), + [anon_sym_mod2] = ACTIONS(2872), + [anon_sym_SLASH_SLASH2] = ACTIONS(2872), + [anon_sym_PLUS2] = ACTIONS(2874), + [anon_sym_bit_DASHshl2] = ACTIONS(2872), + [anon_sym_bit_DASHshr2] = ACTIONS(2872), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2872), + [anon_sym_err_GT] = ACTIONS(2874), + [anon_sym_out_GT] = ACTIONS(2874), + [anon_sym_e_GT] = ACTIONS(2874), + [anon_sym_o_GT] = ACTIONS(2874), + [anon_sym_err_PLUSout_GT] = ACTIONS(2874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2874), + [anon_sym_o_PLUSe_GT] = ACTIONS(2874), + [anon_sym_e_PLUSo_GT] = ACTIONS(2874), + [anon_sym_err_GT_GT] = ACTIONS(2872), + [anon_sym_out_GT_GT] = ACTIONS(2872), + [anon_sym_e_GT_GT] = ACTIONS(2872), + [anon_sym_o_GT_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1066)] = { - [aux_sym__repeat_newline] = STATE(1096), + [aux_sym__repeat_newline] = STATE(1047), [sym_comment] = STATE(1066), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1067)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1067), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_err_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_GT_PIPE] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2872), + [anon_sym_GT2] = ACTIONS(2874), + [anon_sym_DASH2] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_STAR2] = ACTIONS(2874), + [anon_sym_and2] = ACTIONS(2872), + [anon_sym_xor2] = ACTIONS(2872), + [anon_sym_or2] = ACTIONS(2872), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2872), + [anon_sym_BANG_EQ2] = ACTIONS(2872), + [anon_sym_LT2] = ACTIONS(2874), + [anon_sym_LT_EQ2] = ACTIONS(2872), + [anon_sym_GT_EQ2] = ACTIONS(2872), + [anon_sym_EQ_TILDE2] = ACTIONS(2872), + [anon_sym_BANG_TILDE2] = ACTIONS(2872), + [anon_sym_like2] = ACTIONS(2872), + [anon_sym_not_DASHlike2] = ACTIONS(2872), + [anon_sym_STAR_STAR2] = ACTIONS(2872), + [anon_sym_PLUS_PLUS2] = ACTIONS(2872), + [anon_sym_SLASH2] = ACTIONS(2874), + [anon_sym_mod2] = ACTIONS(2872), + [anon_sym_SLASH_SLASH2] = ACTIONS(2872), + [anon_sym_PLUS2] = ACTIONS(2874), + [anon_sym_bit_DASHshl2] = ACTIONS(2872), + [anon_sym_bit_DASHshr2] = ACTIONS(2872), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2872), + [anon_sym_err_GT] = ACTIONS(2874), + [anon_sym_out_GT] = ACTIONS(2874), + [anon_sym_e_GT] = ACTIONS(2874), + [anon_sym_o_GT] = ACTIONS(2874), + [anon_sym_err_PLUSout_GT] = ACTIONS(2874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2874), + [anon_sym_o_PLUSe_GT] = ACTIONS(2874), + [anon_sym_e_PLUSo_GT] = ACTIONS(2874), + [anon_sym_err_GT_GT] = ACTIONS(2872), + [anon_sym_out_GT_GT] = ACTIONS(2872), + [anon_sym_e_GT_GT] = ACTIONS(2872), + [anon_sym_o_GT_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1068)] = { + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_err_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_GT_PIPE] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2872), + [anon_sym_GT2] = ACTIONS(2874), + [anon_sym_DASH2] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_STAR2] = ACTIONS(2874), + [anon_sym_and2] = ACTIONS(2872), + [anon_sym_xor2] = ACTIONS(2872), + [anon_sym_or2] = ACTIONS(2872), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2872), + [anon_sym_BANG_EQ2] = ACTIONS(2872), + [anon_sym_LT2] = ACTIONS(2874), + [anon_sym_LT_EQ2] = ACTIONS(2872), + [anon_sym_GT_EQ2] = ACTIONS(2872), + [anon_sym_EQ_TILDE2] = ACTIONS(2872), + [anon_sym_BANG_TILDE2] = ACTIONS(2872), + [anon_sym_like2] = ACTIONS(2872), + [anon_sym_not_DASHlike2] = ACTIONS(2872), + [anon_sym_STAR_STAR2] = ACTIONS(2872), + [anon_sym_PLUS_PLUS2] = ACTIONS(2872), + [anon_sym_SLASH2] = ACTIONS(2874), + [anon_sym_mod2] = ACTIONS(2872), + [anon_sym_SLASH_SLASH2] = ACTIONS(2872), + [anon_sym_PLUS2] = ACTIONS(2874), + [anon_sym_bit_DASHshl2] = ACTIONS(2872), + [anon_sym_bit_DASHshr2] = ACTIONS(2872), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2872), + [anon_sym_err_GT] = ACTIONS(2874), + [anon_sym_out_GT] = ACTIONS(2874), + [anon_sym_e_GT] = ACTIONS(2874), + [anon_sym_o_GT] = ACTIONS(2874), + [anon_sym_err_PLUSout_GT] = ACTIONS(2874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2874), + [anon_sym_o_PLUSe_GT] = ACTIONS(2874), + [anon_sym_e_PLUSo_GT] = ACTIONS(2874), + [anon_sym_err_GT_GT] = ACTIONS(2872), + [anon_sym_out_GT_GT] = ACTIONS(2872), + [anon_sym_e_GT_GT] = ACTIONS(2872), + [anon_sym_o_GT_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1069)] = { - [aux_sym__repeat_newline] = STATE(1097), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1069), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_err_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_GT_PIPE] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_GT2] = ACTIONS(2878), + [anon_sym_DASH2] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_STAR2] = ACTIONS(2878), + [anon_sym_and2] = ACTIONS(2876), + [anon_sym_xor2] = ACTIONS(2876), + [anon_sym_or2] = ACTIONS(2876), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2876), + [anon_sym_BANG_EQ2] = ACTIONS(2876), + [anon_sym_LT2] = ACTIONS(2878), + [anon_sym_LT_EQ2] = ACTIONS(2876), + [anon_sym_GT_EQ2] = ACTIONS(2876), + [anon_sym_EQ_TILDE2] = ACTIONS(2876), + [anon_sym_BANG_TILDE2] = ACTIONS(2876), + [anon_sym_like2] = ACTIONS(2876), + [anon_sym_not_DASHlike2] = ACTIONS(2876), + [anon_sym_STAR_STAR2] = ACTIONS(2876), + [anon_sym_PLUS_PLUS2] = ACTIONS(2876), + [anon_sym_SLASH2] = ACTIONS(2878), + [anon_sym_mod2] = ACTIONS(2876), + [anon_sym_SLASH_SLASH2] = ACTIONS(2876), + [anon_sym_PLUS2] = ACTIONS(2878), + [anon_sym_bit_DASHshl2] = ACTIONS(2876), + [anon_sym_bit_DASHshr2] = ACTIONS(2876), + [anon_sym_bit_DASHand2] = ACTIONS(2876), + [anon_sym_bit_DASHxor2] = ACTIONS(2876), + [anon_sym_bit_DASHor2] = ACTIONS(2876), + [anon_sym_err_GT] = ACTIONS(2878), + [anon_sym_out_GT] = ACTIONS(2878), + [anon_sym_e_GT] = ACTIONS(2878), + [anon_sym_o_GT] = ACTIONS(2878), + [anon_sym_err_PLUSout_GT] = ACTIONS(2878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), + [anon_sym_o_PLUSe_GT] = ACTIONS(2878), + [anon_sym_e_PLUSo_GT] = ACTIONS(2878), + [anon_sym_err_GT_GT] = ACTIONS(2876), + [anon_sym_out_GT_GT] = ACTIONS(2876), + [anon_sym_e_GT_GT] = ACTIONS(2876), + [anon_sym_o_GT_GT] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2876), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1070)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1070), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_err_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_GT_PIPE] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2872), + [anon_sym_GT2] = ACTIONS(2874), + [anon_sym_DASH2] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_STAR2] = ACTIONS(2874), + [anon_sym_and2] = ACTIONS(2872), + [anon_sym_xor2] = ACTIONS(2872), + [anon_sym_or2] = ACTIONS(2872), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2872), + [anon_sym_BANG_EQ2] = ACTIONS(2872), + [anon_sym_LT2] = ACTIONS(2874), + [anon_sym_LT_EQ2] = ACTIONS(2872), + [anon_sym_GT_EQ2] = ACTIONS(2872), + [anon_sym_EQ_TILDE2] = ACTIONS(2872), + [anon_sym_BANG_TILDE2] = ACTIONS(2872), + [anon_sym_like2] = ACTIONS(2872), + [anon_sym_not_DASHlike2] = ACTIONS(2872), + [anon_sym_STAR_STAR2] = ACTIONS(2872), + [anon_sym_PLUS_PLUS2] = ACTIONS(2872), + [anon_sym_SLASH2] = ACTIONS(2874), + [anon_sym_mod2] = ACTIONS(2872), + [anon_sym_SLASH_SLASH2] = ACTIONS(2872), + [anon_sym_PLUS2] = ACTIONS(2874), + [anon_sym_bit_DASHshl2] = ACTIONS(2872), + [anon_sym_bit_DASHshr2] = ACTIONS(2872), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2872), + [anon_sym_err_GT] = ACTIONS(2874), + [anon_sym_out_GT] = ACTIONS(2874), + [anon_sym_e_GT] = ACTIONS(2874), + [anon_sym_o_GT] = ACTIONS(2874), + [anon_sym_err_PLUSout_GT] = ACTIONS(2874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2874), + [anon_sym_o_PLUSe_GT] = ACTIONS(2874), + [anon_sym_e_PLUSo_GT] = ACTIONS(2874), + [anon_sym_err_GT_GT] = ACTIONS(2872), + [anon_sym_out_GT_GT] = ACTIONS(2872), + [anon_sym_e_GT_GT] = ACTIONS(2872), + [anon_sym_o_GT_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1071)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_err_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_GT_PIPE] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2872), + [anon_sym_GT2] = ACTIONS(2874), + [anon_sym_DASH2] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_STAR2] = ACTIONS(2874), + [anon_sym_and2] = ACTIONS(2872), + [anon_sym_xor2] = ACTIONS(2872), + [anon_sym_or2] = ACTIONS(2872), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2872), + [anon_sym_BANG_EQ2] = ACTIONS(2872), + [anon_sym_LT2] = ACTIONS(2874), + [anon_sym_LT_EQ2] = ACTIONS(2872), + [anon_sym_GT_EQ2] = ACTIONS(2872), + [anon_sym_EQ_TILDE2] = ACTIONS(2872), + [anon_sym_BANG_TILDE2] = ACTIONS(2872), + [anon_sym_like2] = ACTIONS(2872), + [anon_sym_not_DASHlike2] = ACTIONS(2872), + [anon_sym_STAR_STAR2] = ACTIONS(2872), + [anon_sym_PLUS_PLUS2] = ACTIONS(2872), + [anon_sym_SLASH2] = ACTIONS(2874), + [anon_sym_mod2] = ACTIONS(2872), + [anon_sym_SLASH_SLASH2] = ACTIONS(2872), + [anon_sym_PLUS2] = ACTIONS(2874), + [anon_sym_bit_DASHshl2] = ACTIONS(2872), + [anon_sym_bit_DASHshr2] = ACTIONS(2872), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2872), + [anon_sym_err_GT] = ACTIONS(2874), + [anon_sym_out_GT] = ACTIONS(2874), + [anon_sym_e_GT] = ACTIONS(2874), + [anon_sym_o_GT] = ACTIONS(2874), + [anon_sym_err_PLUSout_GT] = ACTIONS(2874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2874), + [anon_sym_o_PLUSe_GT] = ACTIONS(2874), + [anon_sym_e_PLUSo_GT] = ACTIONS(2874), + [anon_sym_err_GT_GT] = ACTIONS(2872), + [anon_sym_out_GT_GT] = ACTIONS(2872), + [anon_sym_e_GT_GT] = ACTIONS(2872), + [anon_sym_o_GT_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1072)] = { - [aux_sym__repeat_newline] = STATE(1098), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1072), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_err_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_GT_PIPE] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2872), + [anon_sym_GT2] = ACTIONS(2874), + [anon_sym_DASH2] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_STAR2] = ACTIONS(2874), + [anon_sym_and2] = ACTIONS(2872), + [anon_sym_xor2] = ACTIONS(2872), + [anon_sym_or2] = ACTIONS(2872), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2872), + [anon_sym_BANG_EQ2] = ACTIONS(2872), + [anon_sym_LT2] = ACTIONS(2874), + [anon_sym_LT_EQ2] = ACTIONS(2872), + [anon_sym_GT_EQ2] = ACTIONS(2872), + [anon_sym_EQ_TILDE2] = ACTIONS(2872), + [anon_sym_BANG_TILDE2] = ACTIONS(2872), + [anon_sym_like2] = ACTIONS(2872), + [anon_sym_not_DASHlike2] = ACTIONS(2872), + [anon_sym_STAR_STAR2] = ACTIONS(2872), + [anon_sym_PLUS_PLUS2] = ACTIONS(2872), + [anon_sym_SLASH2] = ACTIONS(2874), + [anon_sym_mod2] = ACTIONS(2872), + [anon_sym_SLASH_SLASH2] = ACTIONS(2872), + [anon_sym_PLUS2] = ACTIONS(2874), + [anon_sym_bit_DASHshl2] = ACTIONS(2872), + [anon_sym_bit_DASHshr2] = ACTIONS(2872), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2872), + [anon_sym_err_GT] = ACTIONS(2874), + [anon_sym_out_GT] = ACTIONS(2874), + [anon_sym_e_GT] = ACTIONS(2874), + [anon_sym_o_GT] = ACTIONS(2874), + [anon_sym_err_PLUSout_GT] = ACTIONS(2874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2874), + [anon_sym_o_PLUSe_GT] = ACTIONS(2874), + [anon_sym_e_PLUSo_GT] = ACTIONS(2874), + [anon_sym_err_GT_GT] = ACTIONS(2872), + [anon_sym_out_GT_GT] = ACTIONS(2872), + [anon_sym_e_GT_GT] = ACTIONS(2872), + [anon_sym_o_GT_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1073)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1073), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_err_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_GT_PIPE] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2872), + [anon_sym_GT2] = ACTIONS(2874), + [anon_sym_DASH2] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_STAR2] = ACTIONS(2874), + [anon_sym_and2] = ACTIONS(2872), + [anon_sym_xor2] = ACTIONS(2872), + [anon_sym_or2] = ACTIONS(2872), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2872), + [anon_sym_BANG_EQ2] = ACTIONS(2872), + [anon_sym_LT2] = ACTIONS(2874), + [anon_sym_LT_EQ2] = ACTIONS(2872), + [anon_sym_GT_EQ2] = ACTIONS(2872), + [anon_sym_EQ_TILDE2] = ACTIONS(2872), + [anon_sym_BANG_TILDE2] = ACTIONS(2872), + [anon_sym_like2] = ACTIONS(2872), + [anon_sym_not_DASHlike2] = ACTIONS(2872), + [anon_sym_STAR_STAR2] = ACTIONS(2872), + [anon_sym_PLUS_PLUS2] = ACTIONS(2872), + [anon_sym_SLASH2] = ACTIONS(2874), + [anon_sym_mod2] = ACTIONS(2872), + [anon_sym_SLASH_SLASH2] = ACTIONS(2872), + [anon_sym_PLUS2] = ACTIONS(2874), + [anon_sym_bit_DASHshl2] = ACTIONS(2872), + [anon_sym_bit_DASHshr2] = ACTIONS(2872), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2872), + [anon_sym_err_GT] = ACTIONS(2874), + [anon_sym_out_GT] = ACTIONS(2874), + [anon_sym_e_GT] = ACTIONS(2874), + [anon_sym_o_GT] = ACTIONS(2874), + [anon_sym_err_PLUSout_GT] = ACTIONS(2874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2874), + [anon_sym_o_PLUSe_GT] = ACTIONS(2874), + [anon_sym_e_PLUSo_GT] = ACTIONS(2874), + [anon_sym_err_GT_GT] = ACTIONS(2872), + [anon_sym_out_GT_GT] = ACTIONS(2872), + [anon_sym_e_GT_GT] = ACTIONS(2872), + [anon_sym_o_GT_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1074)] = { - [aux_sym__repeat_newline] = STATE(1099), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1074), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2728), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2730), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2728), - [anon_sym_PLUS_PLUS2] = ACTIONS(2728), - [anon_sym_SLASH2] = ACTIONS(2730), - [anon_sym_mod2] = ACTIONS(2728), - [anon_sym_SLASH_SLASH2] = ACTIONS(2728), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_err_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_GT_PIPE] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2872), + [anon_sym_GT2] = ACTIONS(2874), + [anon_sym_DASH2] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_STAR2] = ACTIONS(2874), + [anon_sym_and2] = ACTIONS(2872), + [anon_sym_xor2] = ACTIONS(2872), + [anon_sym_or2] = ACTIONS(2872), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2872), + [anon_sym_BANG_EQ2] = ACTIONS(2872), + [anon_sym_LT2] = ACTIONS(2874), + [anon_sym_LT_EQ2] = ACTIONS(2872), + [anon_sym_GT_EQ2] = ACTIONS(2872), + [anon_sym_EQ_TILDE2] = ACTIONS(2872), + [anon_sym_BANG_TILDE2] = ACTIONS(2872), + [anon_sym_like2] = ACTIONS(2872), + [anon_sym_not_DASHlike2] = ACTIONS(2872), + [anon_sym_STAR_STAR2] = ACTIONS(2872), + [anon_sym_PLUS_PLUS2] = ACTIONS(2872), + [anon_sym_SLASH2] = ACTIONS(2874), + [anon_sym_mod2] = ACTIONS(2872), + [anon_sym_SLASH_SLASH2] = ACTIONS(2872), + [anon_sym_PLUS2] = ACTIONS(2874), + [anon_sym_bit_DASHshl2] = ACTIONS(2872), + [anon_sym_bit_DASHshr2] = ACTIONS(2872), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2872), + [anon_sym_err_GT] = ACTIONS(2874), + [anon_sym_out_GT] = ACTIONS(2874), + [anon_sym_e_GT] = ACTIONS(2874), + [anon_sym_o_GT] = ACTIONS(2874), + [anon_sym_err_PLUSout_GT] = ACTIONS(2874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2874), + [anon_sym_o_PLUSe_GT] = ACTIONS(2874), + [anon_sym_e_PLUSo_GT] = ACTIONS(2874), + [anon_sym_err_GT_GT] = ACTIONS(2872), + [anon_sym_out_GT_GT] = ACTIONS(2872), + [anon_sym_e_GT_GT] = ACTIONS(2872), + [anon_sym_o_GT_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1075)] = { - [aux_sym__repeat_newline] = STATE(994), + [aux_sym__repeat_newline] = STATE(991), [sym_comment] = STATE(1075), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1076)] = { - [aux_sym__repeat_newline] = STATE(1100), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1076), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1077)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1021), [sym_comment] = STATE(1077), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_STAR2] = ACTIONS(2734), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2732), - [anon_sym_PLUS_PLUS2] = ACTIONS(2732), - [anon_sym_SLASH2] = ACTIONS(2734), - [anon_sym_mod2] = ACTIONS(2732), - [anon_sym_SLASH_SLASH2] = ACTIONS(2732), - [anon_sym_PLUS2] = ACTIONS(2734), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1078)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(3123), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_parenthesized] = STATE(2744), + [sym_val_range] = STATE(3123), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(3123), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(2820), + [sym_val_variable] = STATE(2795), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(2572), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(2849), + [sym__unquoted_with_expr] = STATE(3056), + [sym__unquoted_anonymous_prefix] = STATE(4783), [sym_comment] = STATE(1078), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_true] = ACTIONS(2880), + [anon_sym_false] = ACTIONS(2880), + [anon_sym_null] = ACTIONS(2882), + [aux_sym_cmd_identifier_token3] = ACTIONS(2884), + [aux_sym_cmd_identifier_token4] = ACTIONS(2884), + [aux_sym_cmd_identifier_token5] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_DOLLAR] = ACTIONS(2890), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_DOT_DOT] = ACTIONS(2894), + [aux_sym_expr_unary_token1] = ACTIONS(2896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2898), + [anon_sym_DOT_DOT_LT] = ACTIONS(2898), + [aux_sym__val_number_decimal_token1] = ACTIONS(2900), + [aux_sym__val_number_decimal_token2] = ACTIONS(2902), + [aux_sym__val_number_decimal_token3] = ACTIONS(2904), + [aux_sym__val_number_decimal_token4] = ACTIONS(2904), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1079)] = { - [aux_sym__repeat_newline] = STATE(1101), + [sym_expr_unary] = STATE(3075), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_parenthesized] = STATE(2757), + [sym_val_range] = STATE(3075), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(3075), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(2820), + [sym_val_variable] = STATE(2795), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(2572), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(2809), + [sym__unquoted_with_expr] = STATE(3112), + [sym__unquoted_anonymous_prefix] = STATE(4783), [sym_comment] = STATE(1079), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_true] = ACTIONS(2880), + [anon_sym_false] = ACTIONS(2880), + [anon_sym_null] = ACTIONS(2882), + [aux_sym_cmd_identifier_token3] = ACTIONS(2884), + [aux_sym_cmd_identifier_token4] = ACTIONS(2884), + [aux_sym_cmd_identifier_token5] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_DOLLAR] = ACTIONS(2890), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_DOT_DOT] = ACTIONS(2894), + [aux_sym_expr_unary_token1] = ACTIONS(2896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2898), + [anon_sym_DOT_DOT_LT] = ACTIONS(2898), + [aux_sym__val_number_decimal_token1] = ACTIONS(2900), + [aux_sym__val_number_decimal_token2] = ACTIONS(2902), + [aux_sym__val_number_decimal_token3] = ACTIONS(2904), + [aux_sym__val_number_decimal_token4] = ACTIONS(2904), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1080)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(3044), + [sym__expr_unary_minus] = STATE(1343), + [sym_expr_parenthesized] = STATE(2761), + [sym_val_range] = STATE(3044), + [sym__val_range] = STATE(4783), + [sym__value] = STATE(3044), + [sym_val_nothing] = STATE(1320), + [sym_val_bool] = STATE(2820), + [sym_val_variable] = STATE(2795), + [sym_val_cellpath] = STATE(1320), + [sym_val_number] = STATE(1320), + [sym__val_number_decimal] = STATE(2572), + [sym__val_number] = STATE(1350), + [sym_val_duration] = STATE(1320), + [sym_val_filesize] = STATE(1320), + [sym_val_binary] = STATE(1320), + [sym_val_string] = STATE(1320), + [sym__raw_str] = STATE(494), + [sym__str_double_quotes] = STATE(494), + [sym__str_single_quotes] = STATE(494), + [sym__str_back_ticks] = STATE(494), + [sym_val_interpolated] = STATE(1320), + [sym__inter_single_quotes] = STATE(1359), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1320), + [sym_val_record] = STATE(1320), + [sym_val_table] = STATE(1320), + [sym_val_closure] = STATE(1320), + [sym_unquoted] = STATE(2845), + [sym__unquoted_with_expr] = STATE(3059), + [sym__unquoted_anonymous_prefix] = STATE(4783), [sym_comment] = STATE(1080), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_true] = ACTIONS(2880), + [anon_sym_false] = ACTIONS(2880), + [anon_sym_null] = ACTIONS(2882), + [aux_sym_cmd_identifier_token3] = ACTIONS(2884), + [aux_sym_cmd_identifier_token4] = ACTIONS(2884), + [aux_sym_cmd_identifier_token5] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_DOLLAR] = ACTIONS(2890), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_DOT_DOT] = ACTIONS(2894), + [aux_sym_expr_unary_token1] = ACTIONS(2896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2898), + [anon_sym_DOT_DOT_LT] = ACTIONS(2898), + [aux_sym__val_number_decimal_token1] = ACTIONS(2900), + [aux_sym__val_number_decimal_token2] = ACTIONS(2902), + [aux_sym__val_number_decimal_token3] = ACTIONS(2904), + [aux_sym__val_number_decimal_token4] = ACTIONS(2904), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1081)] = { - [aux_sym__repeat_newline] = STATE(1102), [sym_comment] = STATE(1081), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [ts_builtin_sym_end] = ACTIONS(2663), + [anon_sym_in] = ACTIONS(2663), + [sym__newline] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2663), + [anon_sym_err_GT_PIPE] = ACTIONS(2663), + [anon_sym_out_GT_PIPE] = ACTIONS(2663), + [anon_sym_e_GT_PIPE] = ACTIONS(2663), + [anon_sym_o_GT_PIPE] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2663), + [anon_sym_GT2] = ACTIONS(2665), + [anon_sym_DASH2] = ACTIONS(2663), + [anon_sym_STAR2] = ACTIONS(2665), + [anon_sym_and2] = ACTIONS(2663), + [anon_sym_xor2] = ACTIONS(2663), + [anon_sym_or2] = ACTIONS(2663), + [anon_sym_not_DASHin2] = ACTIONS(2663), + [anon_sym_has2] = ACTIONS(2663), + [anon_sym_not_DASHhas2] = ACTIONS(2663), + [anon_sym_starts_DASHwith2] = ACTIONS(2663), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2663), + [anon_sym_ends_DASHwith2] = ACTIONS(2663), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2663), + [anon_sym_EQ_EQ2] = ACTIONS(2663), + [anon_sym_BANG_EQ2] = ACTIONS(2663), + [anon_sym_LT2] = ACTIONS(2665), + [anon_sym_LT_EQ2] = ACTIONS(2663), + [anon_sym_GT_EQ2] = ACTIONS(2663), + [anon_sym_EQ_TILDE2] = ACTIONS(2663), + [anon_sym_BANG_TILDE2] = ACTIONS(2663), + [anon_sym_like2] = ACTIONS(2663), + [anon_sym_not_DASHlike2] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2663), + [anon_sym_STAR_STAR2] = ACTIONS(2663), + [anon_sym_PLUS_PLUS2] = ACTIONS(2663), + [anon_sym_SLASH2] = ACTIONS(2665), + [anon_sym_mod2] = ACTIONS(2663), + [anon_sym_SLASH_SLASH2] = ACTIONS(2663), + [anon_sym_PLUS2] = ACTIONS(2665), + [anon_sym_bit_DASHshl2] = ACTIONS(2663), + [anon_sym_bit_DASHshr2] = ACTIONS(2663), + [anon_sym_bit_DASHand2] = ACTIONS(2663), + [anon_sym_bit_DASHxor2] = ACTIONS(2663), + [anon_sym_bit_DASHor2] = ACTIONS(2663), + [anon_sym_err_GT] = ACTIONS(2665), + [anon_sym_out_GT] = ACTIONS(2665), + [anon_sym_e_GT] = ACTIONS(2665), + [anon_sym_o_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT] = ACTIONS(2665), + [anon_sym_err_GT_GT] = ACTIONS(2663), + [anon_sym_out_GT_GT] = ACTIONS(2663), + [anon_sym_e_GT_GT] = ACTIONS(2663), + [anon_sym_o_GT_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2663), + [sym__unquoted_pattern] = ACTIONS(2665), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1082)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(1497), + [sym__immediate_decimal] = STATE(1430), + [sym_val_variable] = STATE(1497), [sym_comment] = STATE(1082), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1734), + [aux_sym_cmd_identifier_token3] = ACTIONS(1734), + [aux_sym_cmd_identifier_token4] = ACTIONS(1734), + [aux_sym_cmd_identifier_token5] = ACTIONS(1734), + [sym__newline] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR] = ACTIONS(2908), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1734), + [anon_sym_DOT] = ACTIONS(2912), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [aux_sym__immediate_decimal_token1] = ACTIONS(2914), + [aux_sym__immediate_decimal_token2] = ACTIONS(2916), + [aux_sym__immediate_decimal_token3] = ACTIONS(2918), + [aux_sym__immediate_decimal_token4] = ACTIONS(2918), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1734), + [aux_sym__val_number_decimal_token1] = ACTIONS(1738), + [aux_sym__val_number_decimal_token2] = ACTIONS(1738), + [aux_sym__val_number_decimal_token3] = ACTIONS(1738), + [aux_sym__val_number_decimal_token4] = ACTIONS(1738), + [aux_sym__val_number_token1] = ACTIONS(1734), + [aux_sym__val_number_token2] = ACTIONS(1734), + [aux_sym__val_number_token3] = ACTIONS(1734), + [anon_sym_0b] = ACTIONS(1738), + [anon_sym_0o] = ACTIONS(1738), + [anon_sym_0x] = ACTIONS(1738), + [sym_val_date] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1734), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1734), + [anon_sym_err_GT] = ACTIONS(1738), + [anon_sym_out_GT] = ACTIONS(1738), + [anon_sym_e_GT] = ACTIONS(1738), + [anon_sym_o_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT] = ACTIONS(1738), + [anon_sym_err_GT_GT] = ACTIONS(1734), + [anon_sym_out_GT_GT] = ACTIONS(1734), + [anon_sym_e_GT_GT] = ACTIONS(1734), + [anon_sym_o_GT_GT] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1734), + [sym__unquoted_pattern] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1734), }, [STATE(1083)] = { + [aux_sym__repeat_newline] = STATE(992), [sym_comment] = STATE(1083), - [ts_builtin_sym_end] = ACTIONS(2523), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), - [sym__unquoted_pattern] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1084)] = { - [aux_sym__repeat_newline] = STATE(1106), + [aux_sym__repeat_newline] = STATE(1110), [sym_comment] = STATE(1084), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1085)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1085), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1086)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1121), [sym_comment] = STATE(1086), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1087)] = { - [aux_sym__repeat_newline] = STATE(1107), + [aux_sym__repeat_newline] = STATE(993), [sym_comment] = STATE(1087), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2920), + [sym__newline] = ACTIONS(2920), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_err_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_GT_PIPE] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_GT2] = ACTIONS(2922), + [anon_sym_DASH2] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_STAR2] = ACTIONS(2922), + [anon_sym_and2] = ACTIONS(2920), + [anon_sym_xor2] = ACTIONS(2920), + [anon_sym_or2] = ACTIONS(2920), + [anon_sym_not_DASHin2] = ACTIONS(2920), + [anon_sym_has2] = ACTIONS(2920), + [anon_sym_not_DASHhas2] = ACTIONS(2920), + [anon_sym_starts_DASHwith2] = ACTIONS(2920), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2920), + [anon_sym_ends_DASHwith2] = ACTIONS(2920), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2920), + [anon_sym_EQ_EQ2] = ACTIONS(2920), + [anon_sym_BANG_EQ2] = ACTIONS(2920), + [anon_sym_LT2] = ACTIONS(2922), + [anon_sym_LT_EQ2] = ACTIONS(2920), + [anon_sym_GT_EQ2] = ACTIONS(2920), + [anon_sym_EQ_TILDE2] = ACTIONS(2920), + [anon_sym_BANG_TILDE2] = ACTIONS(2920), + [anon_sym_like2] = ACTIONS(2920), + [anon_sym_not_DASHlike2] = ACTIONS(2920), + [anon_sym_STAR_STAR2] = ACTIONS(2920), + [anon_sym_PLUS_PLUS2] = ACTIONS(2920), + [anon_sym_SLASH2] = ACTIONS(2922), + [anon_sym_mod2] = ACTIONS(2920), + [anon_sym_SLASH_SLASH2] = ACTIONS(2920), + [anon_sym_PLUS2] = ACTIONS(2922), + [anon_sym_bit_DASHshl2] = ACTIONS(2920), + [anon_sym_bit_DASHshr2] = ACTIONS(2920), + [anon_sym_bit_DASHand2] = ACTIONS(2920), + [anon_sym_bit_DASHxor2] = ACTIONS(2920), + [anon_sym_bit_DASHor2] = ACTIONS(2920), + [anon_sym_err_GT] = ACTIONS(2922), + [anon_sym_out_GT] = ACTIONS(2922), + [anon_sym_e_GT] = ACTIONS(2922), + [anon_sym_o_GT] = ACTIONS(2922), + [anon_sym_err_PLUSout_GT] = ACTIONS(2922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2922), + [anon_sym_o_PLUSe_GT] = ACTIONS(2922), + [anon_sym_e_PLUSo_GT] = ACTIONS(2922), + [anon_sym_err_GT_GT] = ACTIONS(2920), + [anon_sym_out_GT_GT] = ACTIONS(2920), + [anon_sym_e_GT_GT] = ACTIONS(2920), + [anon_sym_o_GT_GT] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2920), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1088)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1124), [sym_comment] = STATE(1088), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1089)] = { - [aux_sym__repeat_newline] = STATE(996), + [sym__expr_parenthesized_immediate] = STATE(4959), [sym_comment] = STATE(1089), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [ts_builtin_sym_end] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1090)] = { [sym_comment] = STATE(1090), - [ts_builtin_sym_end] = ACTIONS(2567), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), - [sym__unquoted_pattern] = ACTIONS(2633), + [ts_builtin_sym_end] = ACTIONS(1920), + [anon_sym_in] = ACTIONS(1920), + [sym__newline] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_err_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_GT_PIPE] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1920), + [anon_sym_GT2] = ACTIONS(1922), + [anon_sym_DASH2] = ACTIONS(1920), + [anon_sym_STAR2] = ACTIONS(1922), + [anon_sym_and2] = ACTIONS(1920), + [anon_sym_xor2] = ACTIONS(1920), + [anon_sym_or2] = ACTIONS(1920), + [anon_sym_not_DASHin2] = ACTIONS(1920), + [anon_sym_has2] = ACTIONS(1920), + [anon_sym_not_DASHhas2] = ACTIONS(1920), + [anon_sym_starts_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1920), + [anon_sym_ends_DASHwith2] = ACTIONS(1920), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1920), + [anon_sym_EQ_EQ2] = ACTIONS(1920), + [anon_sym_BANG_EQ2] = ACTIONS(1920), + [anon_sym_LT2] = ACTIONS(1922), + [anon_sym_LT_EQ2] = ACTIONS(1920), + [anon_sym_GT_EQ2] = ACTIONS(1920), + [anon_sym_EQ_TILDE2] = ACTIONS(1920), + [anon_sym_BANG_TILDE2] = ACTIONS(1920), + [anon_sym_like2] = ACTIONS(1920), + [anon_sym_not_DASHlike2] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1920), + [anon_sym_STAR_STAR2] = ACTIONS(1920), + [anon_sym_PLUS_PLUS2] = ACTIONS(1920), + [anon_sym_SLASH2] = ACTIONS(1922), + [anon_sym_mod2] = ACTIONS(1920), + [anon_sym_SLASH_SLASH2] = ACTIONS(1920), + [anon_sym_PLUS2] = ACTIONS(1922), + [anon_sym_bit_DASHshl2] = ACTIONS(1920), + [anon_sym_bit_DASHshr2] = ACTIONS(1920), + [anon_sym_bit_DASHand2] = ACTIONS(1920), + [anon_sym_bit_DASHxor2] = ACTIONS(1920), + [anon_sym_bit_DASHor2] = ACTIONS(1920), + [anon_sym_err_GT] = ACTIONS(1922), + [anon_sym_out_GT] = ACTIONS(1922), + [anon_sym_e_GT] = ACTIONS(1922), + [anon_sym_o_GT] = ACTIONS(1922), + [anon_sym_err_PLUSout_GT] = ACTIONS(1922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1922), + [anon_sym_o_PLUSe_GT] = ACTIONS(1922), + [anon_sym_e_PLUSo_GT] = ACTIONS(1922), + [anon_sym_err_GT_GT] = ACTIONS(1920), + [anon_sym_out_GT_GT] = ACTIONS(1920), + [anon_sym_e_GT_GT] = ACTIONS(1920), + [anon_sym_o_GT_GT] = ACTIONS(1920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1920), + [sym__unquoted_pattern] = ACTIONS(1922), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1091)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1387), + [sym__expression_parenthesized] = STATE(4539), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2349), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_comment] = STATE(1091), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2870), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1092)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1092), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [ts_builtin_sym_end] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(1956), + [sym__newline] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_err_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_GT_PIPE] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), + [anon_sym_GT2] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1956), + [anon_sym_STAR2] = ACTIONS(1958), + [anon_sym_and2] = ACTIONS(1956), + [anon_sym_xor2] = ACTIONS(1956), + [anon_sym_or2] = ACTIONS(1956), + [anon_sym_not_DASHin2] = ACTIONS(1956), + [anon_sym_has2] = ACTIONS(1956), + [anon_sym_not_DASHhas2] = ACTIONS(1956), + [anon_sym_starts_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), + [anon_sym_ends_DASHwith2] = ACTIONS(1956), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), + [anon_sym_EQ_EQ2] = ACTIONS(1956), + [anon_sym_BANG_EQ2] = ACTIONS(1956), + [anon_sym_LT2] = ACTIONS(1958), + [anon_sym_LT_EQ2] = ACTIONS(1956), + [anon_sym_GT_EQ2] = ACTIONS(1956), + [anon_sym_EQ_TILDE2] = ACTIONS(1956), + [anon_sym_BANG_TILDE2] = ACTIONS(1956), + [anon_sym_like2] = ACTIONS(1956), + [anon_sym_not_DASHlike2] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1956), + [anon_sym_PLUS_PLUS2] = ACTIONS(1956), + [anon_sym_SLASH2] = ACTIONS(1958), + [anon_sym_mod2] = ACTIONS(1956), + [anon_sym_SLASH_SLASH2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(1958), + [anon_sym_bit_DASHshl2] = ACTIONS(1956), + [anon_sym_bit_DASHshr2] = ACTIONS(1956), + [anon_sym_bit_DASHand2] = ACTIONS(1956), + [anon_sym_bit_DASHxor2] = ACTIONS(1956), + [anon_sym_bit_DASHor2] = ACTIONS(1956), + [anon_sym_err_GT] = ACTIONS(1958), + [anon_sym_out_GT] = ACTIONS(1958), + [anon_sym_e_GT] = ACTIONS(1958), + [anon_sym_o_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT] = ACTIONS(1958), + [anon_sym_err_GT_GT] = ACTIONS(1956), + [anon_sym_out_GT_GT] = ACTIONS(1956), + [anon_sym_e_GT_GT] = ACTIONS(1956), + [anon_sym_o_GT_GT] = ACTIONS(1956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [sym__unquoted_pattern] = ACTIONS(1958), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1093)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1093), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [ts_builtin_sym_end] = ACTIONS(2050), + [anon_sym_in] = ACTIONS(2050), + [sym__newline] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_err_GT_PIPE] = ACTIONS(2050), + [anon_sym_out_GT_PIPE] = ACTIONS(2050), + [anon_sym_e_GT_PIPE] = ACTIONS(2050), + [anon_sym_o_GT_PIPE] = ACTIONS(2050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2050), + [anon_sym_GT2] = ACTIONS(2052), + [anon_sym_DASH2] = ACTIONS(2050), + [anon_sym_STAR2] = ACTIONS(2052), + [anon_sym_and2] = ACTIONS(2050), + [anon_sym_xor2] = ACTIONS(2050), + [anon_sym_or2] = ACTIONS(2050), + [anon_sym_not_DASHin2] = ACTIONS(2050), + [anon_sym_has2] = ACTIONS(2050), + [anon_sym_not_DASHhas2] = ACTIONS(2050), + [anon_sym_starts_DASHwith2] = ACTIONS(2050), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2050), + [anon_sym_ends_DASHwith2] = ACTIONS(2050), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2050), + [anon_sym_EQ_EQ2] = ACTIONS(2050), + [anon_sym_BANG_EQ2] = ACTIONS(2050), + [anon_sym_LT2] = ACTIONS(2052), + [anon_sym_LT_EQ2] = ACTIONS(2050), + [anon_sym_GT_EQ2] = ACTIONS(2050), + [anon_sym_EQ_TILDE2] = ACTIONS(2050), + [anon_sym_BANG_TILDE2] = ACTIONS(2050), + [anon_sym_like2] = ACTIONS(2050), + [anon_sym_not_DASHlike2] = ACTIONS(2050), + [anon_sym_LPAREN2] = ACTIONS(2050), + [anon_sym_STAR_STAR2] = ACTIONS(2050), + [anon_sym_PLUS_PLUS2] = ACTIONS(2050), + [anon_sym_SLASH2] = ACTIONS(2052), + [anon_sym_mod2] = ACTIONS(2050), + [anon_sym_SLASH_SLASH2] = ACTIONS(2050), + [anon_sym_PLUS2] = ACTIONS(2052), + [anon_sym_bit_DASHshl2] = ACTIONS(2050), + [anon_sym_bit_DASHshr2] = ACTIONS(2050), + [anon_sym_bit_DASHand2] = ACTIONS(2050), + [anon_sym_bit_DASHxor2] = ACTIONS(2050), + [anon_sym_bit_DASHor2] = ACTIONS(2050), + [anon_sym_err_GT] = ACTIONS(2052), + [anon_sym_out_GT] = ACTIONS(2052), + [anon_sym_e_GT] = ACTIONS(2052), + [anon_sym_o_GT] = ACTIONS(2052), + [anon_sym_err_PLUSout_GT] = ACTIONS(2052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2052), + [anon_sym_o_PLUSe_GT] = ACTIONS(2052), + [anon_sym_e_PLUSo_GT] = ACTIONS(2052), + [anon_sym_err_GT_GT] = ACTIONS(2050), + [anon_sym_out_GT_GT] = ACTIONS(2050), + [anon_sym_e_GT_GT] = ACTIONS(2050), + [anon_sym_o_GT_GT] = ACTIONS(2050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2050), + [sym__unquoted_pattern] = ACTIONS(2052), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1094)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(2939), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_parenthesized] = STATE(2687), + [sym_val_range] = STATE(2939), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(2939), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2799), + [sym_val_variable] = STATE(2723), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2553), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(2774), + [sym__unquoted_with_expr] = STATE(2940), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(1094), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2838), + [anon_sym_false] = ACTIONS(2838), + [anon_sym_null] = ACTIONS(2840), + [aux_sym_cmd_identifier_token3] = ACTIONS(2842), + [aux_sym_cmd_identifier_token4] = ACTIONS(2842), + [aux_sym_cmd_identifier_token5] = ACTIONS(2842), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_DOLLAR] = ACTIONS(2848), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_DOT_DOT] = ACTIONS(2852), + [aux_sym_expr_unary_token1] = ACTIONS(2854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2856), + [anon_sym_DOT_DOT_LT] = ACTIONS(2856), + [aux_sym__val_number_decimal_token1] = ACTIONS(2858), + [aux_sym__val_number_decimal_token2] = ACTIONS(2860), + [aux_sym__val_number_decimal_token3] = ACTIONS(2862), + [aux_sym__val_number_decimal_token4] = ACTIONS(2862), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1952), }, [STATE(1095)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(2934), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_parenthesized] = STATE(2704), + [sym_val_range] = STATE(2934), + [sym__val_range] = STATE(4638), + [sym__value] = STATE(2934), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(2799), + [sym_val_variable] = STATE(2723), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2553), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_unquoted] = STATE(2807), + [sym__unquoted_with_expr] = STATE(2935), + [sym__unquoted_anonymous_prefix] = STATE(4638), [sym_comment] = STATE(1095), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2838), + [anon_sym_false] = ACTIONS(2838), + [anon_sym_null] = ACTIONS(2840), + [aux_sym_cmd_identifier_token3] = ACTIONS(2842), + [aux_sym_cmd_identifier_token4] = ACTIONS(2842), + [aux_sym_cmd_identifier_token5] = ACTIONS(2842), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_DOLLAR] = ACTIONS(2848), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_DOT_DOT] = ACTIONS(2852), + [aux_sym_expr_unary_token1] = ACTIONS(2854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2856), + [anon_sym_DOT_DOT_LT] = ACTIONS(2856), + [aux_sym__val_number_decimal_token1] = ACTIONS(2858), + [aux_sym__val_number_decimal_token2] = ACTIONS(2860), + [aux_sym__val_number_decimal_token3] = ACTIONS(2862), + [aux_sym__val_number_decimal_token4] = ACTIONS(2862), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1952), }, [STATE(1096)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1132), [sym_comment] = STATE(1096), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1097)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(989), [sym_comment] = STATE(1097), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1098)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(994), [sym_comment] = STATE(1098), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1099)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1099), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2742), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2740), - [anon_sym_PLUS_PLUS2] = ACTIONS(2740), - [anon_sym_SLASH2] = ACTIONS(2742), - [anon_sym_mod2] = ACTIONS(2740), - [anon_sym_SLASH_SLASH2] = ACTIONS(2740), - [anon_sym_PLUS2] = ACTIONS(2742), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2701), + [anon_sym_in] = ACTIONS(2665), + [sym__newline] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2663), + [anon_sym_err_GT_PIPE] = ACTIONS(2663), + [anon_sym_out_GT_PIPE] = ACTIONS(2663), + [anon_sym_e_GT_PIPE] = ACTIONS(2663), + [anon_sym_o_GT_PIPE] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2663), + [anon_sym_RPAREN] = ACTIONS(2663), + [anon_sym_GT2] = ACTIONS(2665), + [anon_sym_DASH2] = ACTIONS(2665), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_STAR2] = ACTIONS(2665), + [anon_sym_and2] = ACTIONS(2665), + [anon_sym_xor2] = ACTIONS(2665), + [anon_sym_or2] = ACTIONS(2665), + [anon_sym_not_DASHin2] = ACTIONS(2665), + [anon_sym_has2] = ACTIONS(2665), + [anon_sym_not_DASHhas2] = ACTIONS(2665), + [anon_sym_starts_DASHwith2] = ACTIONS(2665), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2665), + [anon_sym_ends_DASHwith2] = ACTIONS(2665), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2665), + [anon_sym_EQ_EQ2] = ACTIONS(2663), + [anon_sym_BANG_EQ2] = ACTIONS(2663), + [anon_sym_LT2] = ACTIONS(2665), + [anon_sym_LT_EQ2] = ACTIONS(2663), + [anon_sym_GT_EQ2] = ACTIONS(2663), + [anon_sym_EQ_TILDE2] = ACTIONS(2663), + [anon_sym_BANG_TILDE2] = ACTIONS(2665), + [anon_sym_like2] = ACTIONS(2665), + [anon_sym_not_DASHlike2] = ACTIONS(2665), + [anon_sym_STAR_STAR2] = ACTIONS(2665), + [anon_sym_PLUS_PLUS2] = ACTIONS(2665), + [anon_sym_SLASH2] = ACTIONS(2665), + [anon_sym_mod2] = ACTIONS(2665), + [anon_sym_SLASH_SLASH2] = ACTIONS(2665), + [anon_sym_PLUS2] = ACTIONS(2665), + [anon_sym_bit_DASHshl2] = ACTIONS(2665), + [anon_sym_bit_DASHshr2] = ACTIONS(2665), + [anon_sym_bit_DASHand2] = ACTIONS(2665), + [anon_sym_bit_DASHxor2] = ACTIONS(2665), + [anon_sym_bit_DASHor2] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2665), + [anon_sym_out_GT] = ACTIONS(2665), + [anon_sym_e_GT] = ACTIONS(2665), + [anon_sym_o_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT] = ACTIONS(2665), + [anon_sym_err_GT_GT] = ACTIONS(2663), + [anon_sym_out_GT_GT] = ACTIONS(2663), + [anon_sym_e_GT_GT] = ACTIONS(2663), + [anon_sym_o_GT_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2663), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1100)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1100), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2701), + [anon_sym_in] = ACTIONS(2764), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2762), + [anon_sym_STAR2] = ACTIONS(2764), + [anon_sym_and2] = ACTIONS(2764), + [anon_sym_xor2] = ACTIONS(2764), + [anon_sym_or2] = ACTIONS(2764), + [anon_sym_not_DASHin2] = ACTIONS(2764), + [anon_sym_has2] = ACTIONS(2764), + [anon_sym_not_DASHhas2] = ACTIONS(2764), + [anon_sym_starts_DASHwith2] = ACTIONS(2764), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2764), + [anon_sym_ends_DASHwith2] = ACTIONS(2764), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2764), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2764), + [anon_sym_like2] = ACTIONS(2764), + [anon_sym_not_DASHlike2] = ACTIONS(2764), + [anon_sym_STAR_STAR2] = ACTIONS(2764), + [anon_sym_PLUS_PLUS2] = ACTIONS(2764), + [anon_sym_SLASH2] = ACTIONS(2764), + [anon_sym_mod2] = ACTIONS(2764), + [anon_sym_SLASH_SLASH2] = ACTIONS(2764), + [anon_sym_PLUS2] = ACTIONS(2764), + [anon_sym_bit_DASHshl2] = ACTIONS(2764), + [anon_sym_bit_DASHshr2] = ACTIONS(2764), + [anon_sym_bit_DASHand2] = ACTIONS(2764), + [anon_sym_bit_DASHxor2] = ACTIONS(2764), + [anon_sym_bit_DASHor2] = ACTIONS(2764), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1101)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1101), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2701), + [anon_sym_in] = ACTIONS(815), + [sym__newline] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_PIPE] = ACTIONS(904), + [anon_sym_err_GT_PIPE] = ACTIONS(904), + [anon_sym_out_GT_PIPE] = ACTIONS(904), + [anon_sym_e_GT_PIPE] = ACTIONS(904), + [anon_sym_o_GT_PIPE] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(904), + [anon_sym_RPAREN] = ACTIONS(904), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(815), + [anon_sym_xor2] = ACTIONS(815), + [anon_sym_or2] = ACTIONS(815), + [anon_sym_not_DASHin2] = ACTIONS(815), + [anon_sym_has2] = ACTIONS(815), + [anon_sym_not_DASHhas2] = ACTIONS(815), + [anon_sym_starts_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(815), + [anon_sym_ends_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(815), + [anon_sym_EQ_EQ2] = ACTIONS(904), + [anon_sym_BANG_EQ2] = ACTIONS(904), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(904), + [anon_sym_GT_EQ2] = ACTIONS(904), + [anon_sym_EQ_TILDE2] = ACTIONS(904), + [anon_sym_BANG_TILDE2] = ACTIONS(815), + [anon_sym_like2] = ACTIONS(815), + [anon_sym_not_DASHlike2] = ACTIONS(815), + [anon_sym_STAR_STAR2] = ACTIONS(815), + [anon_sym_PLUS_PLUS2] = ACTIONS(815), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(815), + [anon_sym_SLASH_SLASH2] = ACTIONS(815), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(815), + [anon_sym_bit_DASHshr2] = ACTIONS(815), + [anon_sym_bit_DASHand2] = ACTIONS(815), + [anon_sym_bit_DASHxor2] = ACTIONS(815), + [anon_sym_bit_DASHor2] = ACTIONS(815), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [anon_sym_err_GT_GT] = ACTIONS(904), + [anon_sym_out_GT_GT] = ACTIONS(904), + [anon_sym_e_GT_GT] = ACTIONS(904), + [anon_sym_o_GT_GT] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(904), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1102)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1057), [sym_comment] = STATE(1102), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1103)] = { - [aux_sym__repeat_newline] = STATE(998), + [aux_sym__repeat_newline] = STATE(1024), [sym_comment] = STATE(1103), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1104)] = { - [aux_sym__repeat_newline] = STATE(1001), + [aux_sym__repeat_newline] = STATE(4247), + [sym__match_pattern_expression] = STATE(4443), + [sym__match_pattern_value] = STATE(4756), + [sym__match_pattern_list_body] = STATE(4698), + [sym__match_pattern_list] = STATE(4760), + [sym__match_pattern_rest] = STATE(5011), + [sym__match_pattern_record] = STATE(4761), + [sym_expr_parenthesized] = STATE(4021), + [sym_val_range] = STATE(4756), + [sym__val_range] = STATE(5014), + [sym_val_nothing] = STATE(4761), + [sym_val_bool] = STATE(4429), + [sym_val_variable] = STATE(4026), + [sym_val_number] = STATE(4761), + [sym__val_number_decimal] = STATE(3773), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4761), + [sym_val_filesize] = STATE(4761), + [sym_val_binary] = STATE(4761), + [sym_val_string] = STATE(4761), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_list] = STATE(5016), + [sym__table_head] = STATE(3918), + [sym_val_table] = STATE(4761), + [sym__unquoted_in_list] = STATE(4443), + [sym__unquoted_anonymous_prefix] = STATE(5014), [sym_comment] = STATE(1104), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2744), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2746), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2744), - [anon_sym_PLUS_PLUS2] = ACTIONS(2744), - [anon_sym_SLASH2] = ACTIONS(2746), - [anon_sym_mod2] = ACTIONS(2744), - [anon_sym_SLASH_SLASH2] = ACTIONS(2744), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(1516), + [aux_sym_parameter_repeat2] = STATE(4219), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1574), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1532), + [aux_sym_cmd_identifier_token3] = ACTIONS(1534), + [aux_sym_cmd_identifier_token4] = ACTIONS(1534), + [aux_sym_cmd_identifier_token5] = ACTIONS(1534), + [sym__newline] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(2926), + [anon_sym_RBRACK] = ACTIONS(2928), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(2930), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_DOT_DOT] = ACTIONS(2934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT] = ACTIONS(1552), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(2936), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(1105)] = { - [aux_sym__repeat_newline] = STATE(1002), [sym_comment] = STATE(1105), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2653), + [anon_sym_alias] = ACTIONS(2655), + [anon_sym_let] = ACTIONS(2655), + [anon_sym_mut] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [aux_sym_cmd_identifier_token1] = ACTIONS(2653), + [anon_sym_def] = ACTIONS(2655), + [anon_sym_use] = ACTIONS(2655), + [anon_sym_export_DASHenv] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym_module] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_loop] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_catch] = ACTIONS(2655), + [anon_sym_match] = ACTIONS(2655), + [anon_sym_in] = ACTIONS(2653), + [anon_sym_true] = ACTIONS(2655), + [anon_sym_false] = ACTIONS(2655), + [anon_sym_null] = ACTIONS(2655), + [aux_sym_cmd_identifier_token3] = ACTIONS(2655), + [aux_sym_cmd_identifier_token4] = ACTIONS(2655), + [aux_sym_cmd_identifier_token5] = ACTIONS(2655), + [sym__newline] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2655), + [anon_sym_err_GT_PIPE] = ACTIONS(2655), + [anon_sym_out_GT_PIPE] = ACTIONS(2655), + [anon_sym_e_GT_PIPE] = ACTIONS(2655), + [anon_sym_o_GT_PIPE] = ACTIONS(2655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DASH2] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(2653), + [anon_sym_where] = ACTIONS(2655), + [aux_sym_expr_unary_token1] = ACTIONS(2655), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2655), + [anon_sym_DOT_DOT_LT] = ACTIONS(2655), + [aux_sym__val_number_decimal_token1] = ACTIONS(2653), + [aux_sym__val_number_decimal_token2] = ACTIONS(2655), + [aux_sym__val_number_decimal_token3] = ACTIONS(2655), + [aux_sym__val_number_decimal_token4] = ACTIONS(2655), + [aux_sym__val_number_token1] = ACTIONS(2655), + [aux_sym__val_number_token2] = ACTIONS(2655), + [aux_sym__val_number_token3] = ACTIONS(2655), + [anon_sym_0b] = ACTIONS(2653), + [anon_sym_0o] = ACTIONS(2653), + [anon_sym_0x] = ACTIONS(2653), + [sym_val_date] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_BQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2655), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2655), }, [STATE(1106)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1106), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2938), + [anon_sym_alias] = ACTIONS(2940), + [anon_sym_let] = ACTIONS(2940), + [anon_sym_mut] = ACTIONS(2940), + [anon_sym_const] = ACTIONS(2940), + [aux_sym_cmd_identifier_token1] = ACTIONS(2938), + [anon_sym_def] = ACTIONS(2940), + [anon_sym_use] = ACTIONS(2940), + [anon_sym_export_DASHenv] = ACTIONS(2940), + [anon_sym_extern] = ACTIONS(2940), + [anon_sym_module] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_loop] = ACTIONS(2940), + [anon_sym_while] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_else] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2940), + [anon_sym_catch] = ACTIONS(2940), + [anon_sym_match] = ACTIONS(2940), + [anon_sym_in] = ACTIONS(2938), + [anon_sym_true] = ACTIONS(2940), + [anon_sym_false] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2940), + [aux_sym_cmd_identifier_token3] = ACTIONS(2940), + [aux_sym_cmd_identifier_token4] = ACTIONS(2940), + [aux_sym_cmd_identifier_token5] = ACTIONS(2940), + [sym__newline] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_err_GT_PIPE] = ACTIONS(2310), + [anon_sym_out_GT_PIPE] = ACTIONS(2310), + [anon_sym_e_GT_PIPE] = ACTIONS(2310), + [anon_sym_o_GT_PIPE] = ACTIONS(2310), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2310), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2310), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2310), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_LPAREN] = ACTIONS(2940), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_DASH2] = ACTIONS(2938), + [anon_sym_LBRACE] = ACTIONS(2940), + [anon_sym_DOT_DOT] = 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), + [anon_sym_SQUOTE] = ACTIONS(2940), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2940), + [anon_sym_CARET] = ACTIONS(2940), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2940), }, [STATE(1107)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(985), [sym_comment] = STATE(1107), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1108)] = { - [aux_sym__repeat_newline] = STATE(1004), + [aux_sym__repeat_newline] = STATE(1027), [sym_comment] = STATE(1108), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1109)] = { - [sym_expr_unary] = STATE(2841), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2562), - [sym_val_range] = STATE(2841), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(2841), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2613), - [sym__unquoted_with_expr] = STATE(2844), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [sym__expr_parenthesized_immediate] = STATE(4959), [sym_comment] = STATE(1109), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [ts_builtin_sym_end] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1110)] = { - [sym_expr_unary] = STATE(2845), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2574), - [sym_val_range] = STATE(2845), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(2845), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2632), - [sym__unquoted_with_expr] = STATE(2850), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1110), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1111)] = { - [sym_expr_unary] = STATE(2851), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2520), - [sym_val_range] = STATE(2851), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(2851), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2593), - [sym__unquoted_with_expr] = STATE(2853), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(1012), [sym_comment] = STATE(1111), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1112)] = { + [aux_sym__repeat_newline] = STATE(1030), [sym_comment] = STATE(1112), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_RPAREN] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1113)] = { + [sym__expr_parenthesized_immediate] = STATE(4959), [sym_comment] = STATE(1113), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1114)] = { [sym_comment] = STATE(1114), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(1882), + [sym__newline] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_err_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_GT_PIPE] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), + [anon_sym_GT2] = ACTIONS(1884), + [anon_sym_DASH2] = ACTIONS(1882), + [anon_sym_STAR2] = ACTIONS(1884), + [anon_sym_and2] = ACTIONS(1882), + [anon_sym_xor2] = ACTIONS(1882), + [anon_sym_or2] = ACTIONS(1882), + [anon_sym_not_DASHin2] = ACTIONS(1882), + [anon_sym_has2] = ACTIONS(1882), + [anon_sym_not_DASHhas2] = ACTIONS(1882), + [anon_sym_starts_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), + [anon_sym_ends_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), + [anon_sym_EQ_EQ2] = ACTIONS(1882), + [anon_sym_BANG_EQ2] = ACTIONS(1882), + [anon_sym_LT2] = ACTIONS(1884), + [anon_sym_LT_EQ2] = ACTIONS(1882), + [anon_sym_GT_EQ2] = ACTIONS(1882), + [anon_sym_EQ_TILDE2] = ACTIONS(1882), + [anon_sym_BANG_TILDE2] = ACTIONS(1882), + [anon_sym_like2] = ACTIONS(1882), + [anon_sym_not_DASHlike2] = ACTIONS(1882), + [anon_sym_STAR_STAR2] = ACTIONS(1882), + [anon_sym_PLUS_PLUS2] = ACTIONS(1882), + [anon_sym_SLASH2] = ACTIONS(1884), + [anon_sym_mod2] = ACTIONS(1882), + [anon_sym_SLASH_SLASH2] = ACTIONS(1882), + [anon_sym_PLUS2] = ACTIONS(1884), + [anon_sym_bit_DASHshl2] = ACTIONS(1882), + [anon_sym_bit_DASHshr2] = ACTIONS(1882), + [anon_sym_bit_DASHand2] = ACTIONS(1882), + [anon_sym_bit_DASHxor2] = ACTIONS(1882), + [anon_sym_bit_DASHor2] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(2942), + [aux_sym__immediate_decimal_token5] = ACTIONS(2044), + [anon_sym_err_GT] = ACTIONS(1884), + [anon_sym_out_GT] = ACTIONS(1884), + [anon_sym_e_GT] = ACTIONS(1884), + [anon_sym_o_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT] = ACTIONS(1884), + [anon_sym_err_GT_GT] = ACTIONS(1882), + [anon_sym_out_GT_GT] = ACTIONS(1882), + [anon_sym_e_GT_GT] = ACTIONS(1882), + [anon_sym_o_GT_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1115)] = { - [aux_sym__repeat_newline] = STATE(1007), + [sym__expr_parenthesized_immediate] = STATE(4959), [sym_comment] = STATE(1115), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [ts_builtin_sym_end] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1116)] = { - [aux_sym__repeat_newline] = STATE(1009), [sym_comment] = STATE(1116), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [ts_builtin_sym_end] = ACTIONS(2762), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2762), + [anon_sym_STAR2] = ACTIONS(2764), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_LPAREN2] = ACTIONS(2766), + [anon_sym_STAR_STAR2] = ACTIONS(2762), + [anon_sym_PLUS_PLUS2] = ACTIONS(2762), + [anon_sym_SLASH2] = ACTIONS(2764), + [anon_sym_mod2] = ACTIONS(2762), + [anon_sym_SLASH_SLASH2] = ACTIONS(2762), + [anon_sym_PLUS2] = ACTIONS(2764), + [anon_sym_bit_DASHshl2] = ACTIONS(2762), + [anon_sym_bit_DASHshr2] = ACTIONS(2762), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [sym__unquoted_pattern] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1117)] = { + [aux_sym__repeat_newline] = STATE(986), [sym_comment] = STATE(1117), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [sym__newline] = ACTIONS(2493), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_err_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_GT_PIPE] = ACTIONS(2493), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2491), - [anon_sym_where] = ACTIONS(2493), - [aux_sym_expr_unary_token1] = ACTIONS(2493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2493), - [anon_sym_DOT_DOT_LT] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2491), - [aux_sym__val_number_decimal_token2] = ACTIONS(2493), - [aux_sym__val_number_decimal_token3] = ACTIONS(2493), - [aux_sym__val_number_decimal_token4] = ACTIONS(2493), - [aux_sym__val_number_token1] = ACTIONS(2493), - [aux_sym__val_number_token2] = ACTIONS(2493), - [aux_sym__val_number_token3] = ACTIONS(2493), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2491), - [anon_sym_0x] = ACTIONS(2491), - [sym_val_date] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_BQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2493), - [anon_sym_CARET] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2493), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1118)] = { + [aux_sym__repeat_newline] = STATE(1033), [sym_comment] = STATE(1118), - [anon_sym_export] = ACTIONS(2776), - [anon_sym_alias] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2778), - [anon_sym_mut] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [aux_sym_cmd_identifier_token1] = ACTIONS(2776), - [anon_sym_def] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2778), - [anon_sym_export_DASHenv] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym_module] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_loop] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_catch] = ACTIONS(2778), - [anon_sym_match] = ACTIONS(2778), - [anon_sym_in] = ACTIONS(2776), - [anon_sym_true] = ACTIONS(2778), - [anon_sym_false] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2778), - [aux_sym_cmd_identifier_token3] = ACTIONS(2778), - [aux_sym_cmd_identifier_token4] = ACTIONS(2778), - [aux_sym_cmd_identifier_token5] = ACTIONS(2778), - [sym__newline] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2776), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(2776), - [anon_sym_where] = ACTIONS(2778), - [aux_sym_expr_unary_token1] = ACTIONS(2778), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2778), - [anon_sym_DOT_DOT_LT] = ACTIONS(2778), - [aux_sym__val_number_decimal_token1] = ACTIONS(2776), - [aux_sym__val_number_decimal_token2] = ACTIONS(2778), - [aux_sym__val_number_decimal_token3] = ACTIONS(2778), - [aux_sym__val_number_decimal_token4] = ACTIONS(2778), - [aux_sym__val_number_token1] = ACTIONS(2778), - [aux_sym__val_number_token2] = ACTIONS(2778), - [aux_sym__val_number_token3] = ACTIONS(2778), - [anon_sym_0b] = ACTIONS(2776), - [anon_sym_0o] = ACTIONS(2776), - [anon_sym_0x] = ACTIONS(2776), - [sym_val_date] = ACTIONS(2778), - [anon_sym_DQUOTE] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_BQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2778), - [anon_sym_CARET] = ACTIONS(2778), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2778), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1119)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), + [sym__expr_parenthesized_immediate] = STATE(4959), [sym_comment] = STATE(1119), - [ts_builtin_sym_end] = ACTIONS(2144), - [anon_sym_in] = ACTIONS(2144), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2146), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_has2] = ACTIONS(2144), - [anon_sym_not_DASHhas2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2146), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_like2] = ACTIONS(2144), - [anon_sym_not_DASHlike2] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2146), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), + [ts_builtin_sym_end] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1120)] = { - [aux_sym__repeat_newline] = STATE(1011), + [sym__expr_parenthesized_immediate] = STATE(4959), [sym_comment] = STATE(1120), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [ts_builtin_sym_end] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1121)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1121), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1122)] = { + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1122), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2780), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(2944), + [sym__newline] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_err_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_GT_PIPE] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_GT2] = ACTIONS(2946), + [anon_sym_DASH2] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_STAR2] = ACTIONS(2946), + [anon_sym_and2] = ACTIONS(2944), + [anon_sym_xor2] = ACTIONS(2944), + [anon_sym_or2] = ACTIONS(2944), + [anon_sym_not_DASHin2] = ACTIONS(2944), + [anon_sym_has2] = ACTIONS(2944), + [anon_sym_not_DASHhas2] = ACTIONS(2944), + [anon_sym_starts_DASHwith2] = ACTIONS(2944), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2944), + [anon_sym_ends_DASHwith2] = ACTIONS(2944), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2944), + [anon_sym_EQ_EQ2] = ACTIONS(2944), + [anon_sym_BANG_EQ2] = ACTIONS(2944), + [anon_sym_LT2] = ACTIONS(2946), + [anon_sym_LT_EQ2] = ACTIONS(2944), + [anon_sym_GT_EQ2] = ACTIONS(2944), + [anon_sym_EQ_TILDE2] = ACTIONS(2944), + [anon_sym_BANG_TILDE2] = ACTIONS(2944), + [anon_sym_like2] = ACTIONS(2944), + [anon_sym_not_DASHlike2] = ACTIONS(2944), + [anon_sym_STAR_STAR2] = ACTIONS(2944), + [anon_sym_PLUS_PLUS2] = ACTIONS(2944), + [anon_sym_SLASH2] = ACTIONS(2946), + [anon_sym_mod2] = ACTIONS(2944), + [anon_sym_SLASH_SLASH2] = ACTIONS(2944), + [anon_sym_PLUS2] = ACTIONS(2946), + [anon_sym_bit_DASHshl2] = ACTIONS(2944), + [anon_sym_bit_DASHshr2] = ACTIONS(2944), + [anon_sym_bit_DASHand2] = ACTIONS(2944), + [anon_sym_bit_DASHxor2] = ACTIONS(2944), + [anon_sym_bit_DASHor2] = ACTIONS(2944), + [anon_sym_err_GT] = ACTIONS(2946), + [anon_sym_out_GT] = ACTIONS(2946), + [anon_sym_e_GT] = ACTIONS(2946), + [anon_sym_o_GT] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT] = ACTIONS(2946), + [anon_sym_err_GT_GT] = ACTIONS(2944), + [anon_sym_out_GT_GT] = ACTIONS(2944), + [anon_sym_e_GT_GT] = ACTIONS(2944), + [anon_sym_o_GT_GT] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2944), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1123)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(987), [sym_comment] = STATE(1123), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1124)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1124), - [ts_builtin_sym_end] = ACTIONS(2148), - [anon_sym_in] = ACTIONS(2148), - [sym__newline] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_err_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_GT_PIPE] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), - [anon_sym_GT2] = ACTIONS(2150), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_STAR2] = ACTIONS(2150), - [anon_sym_and2] = ACTIONS(2148), - [anon_sym_xor2] = ACTIONS(2148), - [anon_sym_or2] = ACTIONS(2148), - [anon_sym_not_DASHin2] = ACTIONS(2148), - [anon_sym_has2] = ACTIONS(2148), - [anon_sym_not_DASHhas2] = ACTIONS(2148), - [anon_sym_starts_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2148), - [anon_sym_ends_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2148), - [anon_sym_EQ_EQ2] = ACTIONS(2148), - [anon_sym_BANG_EQ2] = ACTIONS(2148), - [anon_sym_LT2] = ACTIONS(2150), - [anon_sym_LT_EQ2] = ACTIONS(2148), - [anon_sym_GT_EQ2] = ACTIONS(2148), - [anon_sym_EQ_TILDE2] = ACTIONS(2148), - [anon_sym_BANG_TILDE2] = ACTIONS(2148), - [anon_sym_like2] = ACTIONS(2148), - [anon_sym_not_DASHlike2] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2148), - [anon_sym_PLUS_PLUS2] = ACTIONS(2148), - [anon_sym_SLASH2] = ACTIONS(2150), - [anon_sym_mod2] = ACTIONS(2148), - [anon_sym_SLASH_SLASH2] = ACTIONS(2148), - [anon_sym_PLUS2] = ACTIONS(2150), - [anon_sym_bit_DASHshl2] = ACTIONS(2148), - [anon_sym_bit_DASHshr2] = ACTIONS(2148), - [anon_sym_bit_DASHand2] = ACTIONS(2148), - [anon_sym_bit_DASHxor2] = ACTIONS(2148), - [anon_sym_bit_DASHor2] = ACTIONS(2148), - [anon_sym_err_GT] = ACTIONS(2150), - [anon_sym_out_GT] = ACTIONS(2150), - [anon_sym_e_GT] = ACTIONS(2150), - [anon_sym_o_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT] = ACTIONS(2150), - [anon_sym_err_GT_GT] = ACTIONS(2148), - [anon_sym_out_GT_GT] = ACTIONS(2148), - [anon_sym_e_GT_GT] = ACTIONS(2148), - [anon_sym_o_GT_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1125)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4515), - [sym__val_range] = STATE(4853), - [sym_val_nothing] = STATE(4517), - [sym_val_bool] = STATE(4134), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4517), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4517), - [sym_val_filesize] = STATE(4517), - [sym_val_binary] = STATE(4517), - [sym_val_string] = STATE(4517), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(4951), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4517), - [sym__unquoted_in_list] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(4853), [sym_comment] = STATE(1125), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3958), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1856), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1856), + [anon_sym_STAR2] = ACTIONS(1750), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1750), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_LPAREN2] = ACTIONS(2746), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1856), + [anon_sym_SLASH2] = ACTIONS(1750), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1750), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_err_GT] = ACTIONS(1750), + [anon_sym_out_GT] = ACTIONS(1750), + [anon_sym_e_GT] = ACTIONS(1750), + [anon_sym_o_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT] = ACTIONS(1750), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [sym__unquoted_pattern] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1126)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1036), [sym_comment] = STATE(1126), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1127)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(4247), + [sym__match_pattern_expression] = STATE(4443), + [sym__match_pattern_value] = STATE(4756), + [sym__match_pattern_list_body] = STATE(4655), + [sym__match_pattern_list] = STATE(4760), + [sym__match_pattern_rest] = STATE(5144), + [sym__match_pattern_record] = STATE(4761), + [sym_expr_parenthesized] = STATE(4021), + [sym_val_range] = STATE(4756), + [sym__val_range] = STATE(5014), + [sym_val_nothing] = STATE(4761), + [sym_val_bool] = STATE(4429), + [sym_val_variable] = STATE(4026), + [sym_val_number] = STATE(4761), + [sym__val_number_decimal] = STATE(3773), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4761), + [sym_val_filesize] = STATE(4761), + [sym_val_binary] = STATE(4761), + [sym_val_string] = STATE(4761), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_list] = STATE(5016), + [sym__table_head] = STATE(3873), + [sym_val_table] = STATE(4761), + [sym__unquoted_in_list] = STATE(4443), + [sym__unquoted_anonymous_prefix] = STATE(5014), [sym_comment] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(1516), + [aux_sym_parameter_repeat2] = STATE(4219), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1574), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1532), + [aux_sym_cmd_identifier_token3] = ACTIONS(1534), + [aux_sym_cmd_identifier_token4] = ACTIONS(1534), + [aux_sym_cmd_identifier_token5] = ACTIONS(1534), + [sym__newline] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(2926), + [anon_sym_RBRACK] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(2930), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_DOT_DOT] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT] = ACTIONS(1552), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(2936), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(1128)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(988), [sym_comment] = STATE(1128), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2458), + [sym__newline] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_err_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_GT_PIPE] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_GT2] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_STAR2] = ACTIONS(2460), + [anon_sym_and2] = ACTIONS(2458), + [anon_sym_xor2] = ACTIONS(2458), + [anon_sym_or2] = ACTIONS(2458), + [anon_sym_not_DASHin2] = ACTIONS(2458), + [anon_sym_has2] = ACTIONS(2458), + [anon_sym_not_DASHhas2] = ACTIONS(2458), + [anon_sym_starts_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2458), + [anon_sym_ends_DASHwith2] = ACTIONS(2458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2458), + [anon_sym_EQ_EQ2] = ACTIONS(2458), + [anon_sym_BANG_EQ2] = ACTIONS(2458), + [anon_sym_LT2] = ACTIONS(2460), + [anon_sym_LT_EQ2] = ACTIONS(2458), + [anon_sym_GT_EQ2] = ACTIONS(2458), + [anon_sym_EQ_TILDE2] = ACTIONS(2458), + [anon_sym_BANG_TILDE2] = ACTIONS(2458), + [anon_sym_like2] = ACTIONS(2458), + [anon_sym_not_DASHlike2] = ACTIONS(2458), + [anon_sym_STAR_STAR2] = ACTIONS(2458), + [anon_sym_PLUS_PLUS2] = ACTIONS(2458), + [anon_sym_SLASH2] = ACTIONS(2460), + [anon_sym_mod2] = ACTIONS(2458), + [anon_sym_SLASH_SLASH2] = ACTIONS(2458), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_bit_DASHshl2] = ACTIONS(2458), + [anon_sym_bit_DASHshr2] = ACTIONS(2458), + [anon_sym_bit_DASHand2] = ACTIONS(2458), + [anon_sym_bit_DASHxor2] = ACTIONS(2458), + [anon_sym_bit_DASHor2] = ACTIONS(2458), + [anon_sym_err_GT] = ACTIONS(2460), + [anon_sym_out_GT] = ACTIONS(2460), + [anon_sym_e_GT] = ACTIONS(2460), + [anon_sym_o_GT] = ACTIONS(2460), + [anon_sym_err_PLUSout_GT] = ACTIONS(2460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2460), + [anon_sym_o_PLUSe_GT] = ACTIONS(2460), + [anon_sym_e_PLUSo_GT] = ACTIONS(2460), + [anon_sym_err_GT_GT] = ACTIONS(2458), + [anon_sym_out_GT_GT] = ACTIONS(2458), + [anon_sym_e_GT_GT] = ACTIONS(2458), + [anon_sym_o_GT_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1129)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4355), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [sym__expr_parenthesized_immediate] = STATE(4959), [sym_comment] = STATE(1129), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [ts_builtin_sym_end] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1130)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1040), [sym_comment] = STATE(1130), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2950), + [sym__newline] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_err_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_GT_PIPE] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_GT2] = ACTIONS(2952), + [anon_sym_DASH2] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_STAR2] = ACTIONS(2952), + [anon_sym_and2] = ACTIONS(2950), + [anon_sym_xor2] = ACTIONS(2950), + [anon_sym_or2] = ACTIONS(2950), + [anon_sym_not_DASHin2] = ACTIONS(2950), + [anon_sym_has2] = ACTIONS(2950), + [anon_sym_not_DASHhas2] = ACTIONS(2950), + [anon_sym_starts_DASHwith2] = ACTIONS(2950), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2950), + [anon_sym_ends_DASHwith2] = ACTIONS(2950), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2950), + [anon_sym_EQ_EQ2] = ACTIONS(2950), + [anon_sym_BANG_EQ2] = ACTIONS(2950), + [anon_sym_LT2] = ACTIONS(2952), + [anon_sym_LT_EQ2] = ACTIONS(2950), + [anon_sym_GT_EQ2] = ACTIONS(2950), + [anon_sym_EQ_TILDE2] = ACTIONS(2950), + [anon_sym_BANG_TILDE2] = ACTIONS(2950), + [anon_sym_like2] = ACTIONS(2950), + [anon_sym_not_DASHlike2] = ACTIONS(2950), + [anon_sym_STAR_STAR2] = ACTIONS(2950), + [anon_sym_PLUS_PLUS2] = ACTIONS(2950), + [anon_sym_SLASH2] = ACTIONS(2952), + [anon_sym_mod2] = ACTIONS(2950), + [anon_sym_SLASH_SLASH2] = ACTIONS(2950), + [anon_sym_PLUS2] = ACTIONS(2952), + [anon_sym_bit_DASHshl2] = ACTIONS(2950), + [anon_sym_bit_DASHshr2] = ACTIONS(2950), + [anon_sym_bit_DASHand2] = ACTIONS(2950), + [anon_sym_bit_DASHxor2] = ACTIONS(2950), + [anon_sym_bit_DASHor2] = ACTIONS(2950), + [anon_sym_err_GT] = ACTIONS(2952), + [anon_sym_out_GT] = ACTIONS(2952), + [anon_sym_e_GT] = ACTIONS(2952), + [anon_sym_o_GT] = ACTIONS(2952), + [anon_sym_err_PLUSout_GT] = ACTIONS(2952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2952), + [anon_sym_o_PLUSe_GT] = ACTIONS(2952), + [anon_sym_e_PLUSo_GT] = ACTIONS(2952), + [anon_sym_err_GT_GT] = ACTIONS(2950), + [anon_sym_out_GT_GT] = ACTIONS(2950), + [anon_sym_e_GT_GT] = ACTIONS(2950), + [anon_sym_o_GT_GT] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1131)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1131), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2742), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1132)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1132), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2830), + [anon_sym_has2] = ACTIONS(2830), + [anon_sym_not_DASHhas2] = ACTIONS(2830), + [anon_sym_starts_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2830), + [anon_sym_ends_DASHwith2] = ACTIONS(2830), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2830), + [anon_sym_EQ_EQ2] = ACTIONS(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1133)] = { + [sym__expr_parenthesized_immediate] = STATE(4959), [sym_comment] = STATE(1133), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [ts_builtin_sym_end] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1134)] = { - [aux_sym__repeat_newline] = STATE(1198), + [sym__expr_parenthesized_immediate] = STATE(4959), [sym_comment] = STATE(1134), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [ts_builtin_sym_end] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1135)] = { - [aux_sym__repeat_newline] = STATE(1190), + [sym__expr_parenthesized_immediate] = STATE(4959), [sym_comment] = STATE(1135), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [ts_builtin_sym_end] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1136)] = { + [aux_sym__repeat_newline] = STATE(4247), + [sym__match_pattern_expression] = STATE(4443), + [sym__match_pattern_value] = STATE(4756), + [sym__match_pattern_list_body] = STATE(4655), + [sym__match_pattern_list] = STATE(4760), + [sym__match_pattern_rest] = STATE(5144), + [sym__match_pattern_record] = STATE(4761), + [sym_expr_parenthesized] = STATE(4021), + [sym_val_range] = STATE(4756), + [sym__val_range] = STATE(5014), + [sym_val_nothing] = STATE(4761), + [sym_val_bool] = STATE(4429), + [sym_val_variable] = STATE(4026), + [sym_val_number] = STATE(4761), + [sym__val_number_decimal] = STATE(3773), + [sym__val_number] = STATE(4330), + [sym_val_duration] = STATE(4761), + [sym_val_filesize] = STATE(4761), + [sym_val_binary] = STATE(4761), + [sym_val_string] = STATE(4761), + [sym__raw_str] = STATE(3705), + [sym__str_double_quotes] = STATE(3705), + [sym__str_single_quotes] = STATE(3705), + [sym__str_back_ticks] = STATE(3705), + [sym_val_list] = STATE(5016), + [sym__table_head] = STATE(3876), + [sym_val_table] = STATE(4761), + [sym__unquoted_in_list] = STATE(4443), + [sym__unquoted_anonymous_prefix] = STATE(5014), [sym_comment] = STATE(1136), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2864), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(1516), + [aux_sym_parameter_repeat2] = STATE(4219), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1574), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1532), + [aux_sym_cmd_identifier_token3] = ACTIONS(1534), + [aux_sym_cmd_identifier_token4] = ACTIONS(1534), + [aux_sym_cmd_identifier_token5] = ACTIONS(1534), + [sym__newline] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(2926), + [anon_sym_RBRACK] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(2930), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_DOT_DOT] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT] = ACTIONS(1552), + [aux_sym__val_number_decimal_token1] = ACTIONS(1554), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_0b] = ACTIONS(1562), + [anon_sym_0o] = ACTIONS(1564), + [anon_sym_0x] = ACTIONS(1564), + [sym_val_date] = ACTIONS(2936), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1572), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1582), }, [STATE(1137)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(4959), [sym_comment] = STATE(1137), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [ts_builtin_sym_end] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1138)] = { + [aux_sym__repeat_newline] = STATE(1041), [sym_comment] = STATE(1138), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2864), - [anon_sym_xor2] = ACTIONS(2866), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1139)] = { - [aux_sym__repeat_newline] = STATE(1200), + [sym__expr_parenthesized_immediate] = STATE(4959), [sym_comment] = STATE(1139), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [ts_builtin_sym_end] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2228), + [anon_sym_xor2] = ACTIONS(2228), + [anon_sym_or2] = ACTIONS(2228), + [anon_sym_not_DASHin2] = ACTIONS(2228), + [anon_sym_has2] = ACTIONS(2228), + [anon_sym_not_DASHhas2] = ACTIONS(2228), + [anon_sym_starts_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), + [anon_sym_ends_DASHwith2] = ACTIONS(2228), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), + [anon_sym_EQ_EQ2] = ACTIONS(2228), + [anon_sym_BANG_EQ2] = ACTIONS(2228), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2228), + [anon_sym_GT_EQ2] = ACTIONS(2228), + [anon_sym_EQ_TILDE2] = ACTIONS(2228), + [anon_sym_BANG_TILDE2] = ACTIONS(2228), + [anon_sym_like2] = ACTIONS(2228), + [anon_sym_not_DASHlike2] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_STAR_STAR2] = ACTIONS(2228), + [anon_sym_PLUS_PLUS2] = ACTIONS(2228), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2228), + [anon_sym_SLASH_SLASH2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2228), + [anon_sym_bit_DASHshr2] = ACTIONS(2228), + [anon_sym_bit_DASHand2] = ACTIONS(2228), + [anon_sym_bit_DASHxor2] = ACTIONS(2228), + [anon_sym_bit_DASHor2] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1140)] = { + [aux_sym__repeat_newline] = STATE(1076), [sym_comment] = STATE(1140), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2440), + [sym__newline] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_err_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_GT_PIPE] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2440), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_GT2] = ACTIONS(2442), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_STAR2] = ACTIONS(2442), + [anon_sym_and2] = ACTIONS(2440), + [anon_sym_xor2] = ACTIONS(2440), + [anon_sym_or2] = ACTIONS(2440), + [anon_sym_not_DASHin2] = ACTIONS(2440), + [anon_sym_has2] = ACTIONS(2440), + [anon_sym_not_DASHhas2] = ACTIONS(2440), + [anon_sym_starts_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2440), + [anon_sym_ends_DASHwith2] = ACTIONS(2440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2440), + [anon_sym_EQ_EQ2] = ACTIONS(2440), + [anon_sym_BANG_EQ2] = ACTIONS(2440), + [anon_sym_LT2] = ACTIONS(2442), + [anon_sym_LT_EQ2] = ACTIONS(2440), + [anon_sym_GT_EQ2] = ACTIONS(2440), + [anon_sym_EQ_TILDE2] = ACTIONS(2440), + [anon_sym_BANG_TILDE2] = ACTIONS(2440), + [anon_sym_like2] = ACTIONS(2440), + [anon_sym_not_DASHlike2] = ACTIONS(2440), + [anon_sym_STAR_STAR2] = ACTIONS(2440), + [anon_sym_PLUS_PLUS2] = ACTIONS(2440), + [anon_sym_SLASH2] = ACTIONS(2442), + [anon_sym_mod2] = ACTIONS(2440), + [anon_sym_SLASH_SLASH2] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2442), + [anon_sym_bit_DASHshl2] = ACTIONS(2440), + [anon_sym_bit_DASHshr2] = ACTIONS(2440), + [anon_sym_bit_DASHand2] = ACTIONS(2440), + [anon_sym_bit_DASHxor2] = ACTIONS(2440), + [anon_sym_bit_DASHor2] = ACTIONS(2440), + [anon_sym_err_GT] = ACTIONS(2442), + [anon_sym_out_GT] = ACTIONS(2442), + [anon_sym_e_GT] = ACTIONS(2442), + [anon_sym_o_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT] = ACTIONS(2442), + [anon_sym_err_GT_GT] = ACTIONS(2440), + [anon_sym_out_GT_GT] = ACTIONS(2440), + [anon_sym_e_GT_GT] = ACTIONS(2440), + [anon_sym_o_GT_GT] = ACTIONS(2440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2440), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1141)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1044), [sym_comment] = STATE(1141), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2468), + [sym__newline] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_err_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_GT_PIPE] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2468), + [anon_sym_RPAREN] = ACTIONS(2468), + [anon_sym_GT2] = ACTIONS(2470), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_STAR2] = ACTIONS(2470), + [anon_sym_and2] = ACTIONS(2468), + [anon_sym_xor2] = ACTIONS(2468), + [anon_sym_or2] = ACTIONS(2468), + [anon_sym_not_DASHin2] = ACTIONS(2468), + [anon_sym_has2] = ACTIONS(2468), + [anon_sym_not_DASHhas2] = ACTIONS(2468), + [anon_sym_starts_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2468), + [anon_sym_ends_DASHwith2] = ACTIONS(2468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2468), + [anon_sym_EQ_EQ2] = ACTIONS(2468), + [anon_sym_BANG_EQ2] = ACTIONS(2468), + [anon_sym_LT2] = ACTIONS(2470), + [anon_sym_LT_EQ2] = ACTIONS(2468), + [anon_sym_GT_EQ2] = ACTIONS(2468), + [anon_sym_EQ_TILDE2] = ACTIONS(2468), + [anon_sym_BANG_TILDE2] = ACTIONS(2468), + [anon_sym_like2] = ACTIONS(2468), + [anon_sym_not_DASHlike2] = ACTIONS(2468), + [anon_sym_STAR_STAR2] = ACTIONS(2468), + [anon_sym_PLUS_PLUS2] = ACTIONS(2468), + [anon_sym_SLASH2] = ACTIONS(2470), + [anon_sym_mod2] = ACTIONS(2468), + [anon_sym_SLASH_SLASH2] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2470), + [anon_sym_bit_DASHshl2] = ACTIONS(2468), + [anon_sym_bit_DASHshr2] = ACTIONS(2468), + [anon_sym_bit_DASHand2] = ACTIONS(2468), + [anon_sym_bit_DASHxor2] = ACTIONS(2468), + [anon_sym_bit_DASHor2] = ACTIONS(2468), + [anon_sym_err_GT] = ACTIONS(2470), + [anon_sym_out_GT] = ACTIONS(2470), + [anon_sym_e_GT] = ACTIONS(2470), + [anon_sym_o_GT] = ACTIONS(2470), + [anon_sym_err_PLUSout_GT] = ACTIONS(2470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2470), + [anon_sym_o_PLUSe_GT] = ACTIONS(2470), + [anon_sym_e_PLUSo_GT] = ACTIONS(2470), + [anon_sym_err_GT_GT] = ACTIONS(2468), + [anon_sym_out_GT_GT] = ACTIONS(2468), + [anon_sym_e_GT_GT] = ACTIONS(2468), + [anon_sym_o_GT_GT] = ACTIONS(2468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1142)] = { [sym_comment] = STATE(1142), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [ts_builtin_sym_end] = ACTIONS(2094), + [anon_sym_in] = ACTIONS(2094), + [sym__newline] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_err_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_GT_PIPE] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), + [anon_sym_GT2] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_STAR2] = ACTIONS(2096), + [anon_sym_and2] = ACTIONS(2094), + [anon_sym_xor2] = ACTIONS(2094), + [anon_sym_or2] = ACTIONS(2094), + [anon_sym_not_DASHin2] = ACTIONS(2094), + [anon_sym_has2] = ACTIONS(2094), + [anon_sym_not_DASHhas2] = ACTIONS(2094), + [anon_sym_starts_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2094), + [anon_sym_ends_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2094), + [anon_sym_EQ_EQ2] = ACTIONS(2094), + [anon_sym_BANG_EQ2] = ACTIONS(2094), + [anon_sym_LT2] = ACTIONS(2096), + [anon_sym_LT_EQ2] = ACTIONS(2094), + [anon_sym_GT_EQ2] = ACTIONS(2094), + [anon_sym_EQ_TILDE2] = ACTIONS(2094), + [anon_sym_BANG_TILDE2] = ACTIONS(2094), + [anon_sym_like2] = ACTIONS(2094), + [anon_sym_not_DASHlike2] = ACTIONS(2094), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2094), + [anon_sym_PLUS_PLUS2] = ACTIONS(2094), + [anon_sym_SLASH2] = ACTIONS(2096), + [anon_sym_mod2] = ACTIONS(2094), + [anon_sym_SLASH_SLASH2] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2096), + [anon_sym_bit_DASHshl2] = ACTIONS(2094), + [anon_sym_bit_DASHshr2] = ACTIONS(2094), + [anon_sym_bit_DASHand2] = ACTIONS(2094), + [anon_sym_bit_DASHxor2] = ACTIONS(2094), + [anon_sym_bit_DASHor2] = ACTIONS(2094), + [anon_sym_err_GT] = ACTIONS(2096), + [anon_sym_out_GT] = ACTIONS(2096), + [anon_sym_e_GT] = ACTIONS(2096), + [anon_sym_o_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT] = ACTIONS(2096), + [anon_sym_err_GT_GT] = ACTIONS(2094), + [anon_sym_out_GT_GT] = ACTIONS(2094), + [anon_sym_e_GT_GT] = ACTIONS(2094), + [anon_sym_o_GT_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), + [sym__unquoted_pattern] = ACTIONS(1774), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1143)] = { - [aux_sym__repeat_newline] = STATE(1131), + [aux_sym__repeat_newline] = STATE(1387), + [sym__expression_parenthesized] = STATE(4530), + [sym_expr_unary] = STATE(1202), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary_parenthesized] = STATE(1202), + [sym__expr_binary_expression_parenthesized] = STATE(2349), + [sym_expr_parenthesized] = STATE(866), + [sym_val_range] = STATE(1202), + [sym__value] = STATE(1202), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_comment] = STATE(1143), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2870), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1144)] = { + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1144), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_err_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_GT_PIPE] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2872), + [anon_sym_GT2] = ACTIONS(2874), + [anon_sym_DASH2] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_STAR2] = ACTIONS(2874), + [anon_sym_and2] = ACTIONS(2872), + [anon_sym_xor2] = ACTIONS(2872), + [anon_sym_or2] = ACTIONS(2872), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2872), + [anon_sym_BANG_EQ2] = ACTIONS(2872), + [anon_sym_LT2] = ACTIONS(2874), + [anon_sym_LT_EQ2] = ACTIONS(2872), + [anon_sym_GT_EQ2] = ACTIONS(2872), + [anon_sym_EQ_TILDE2] = ACTIONS(2872), + [anon_sym_BANG_TILDE2] = ACTIONS(2872), + [anon_sym_like2] = ACTIONS(2872), + [anon_sym_not_DASHlike2] = ACTIONS(2872), + [anon_sym_STAR_STAR2] = ACTIONS(2872), + [anon_sym_PLUS_PLUS2] = ACTIONS(2872), + [anon_sym_SLASH2] = ACTIONS(2874), + [anon_sym_mod2] = ACTIONS(2872), + [anon_sym_SLASH_SLASH2] = ACTIONS(2872), + [anon_sym_PLUS2] = ACTIONS(2874), + [anon_sym_bit_DASHshl2] = ACTIONS(2872), + [anon_sym_bit_DASHshr2] = ACTIONS(2872), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2872), + [anon_sym_bit_DASHor2] = ACTIONS(2872), + [anon_sym_err_GT] = ACTIONS(2874), + [anon_sym_out_GT] = ACTIONS(2874), + [anon_sym_e_GT] = ACTIONS(2874), + [anon_sym_o_GT] = ACTIONS(2874), + [anon_sym_err_PLUSout_GT] = ACTIONS(2874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2874), + [anon_sym_o_PLUSe_GT] = ACTIONS(2874), + [anon_sym_e_PLUSo_GT] = ACTIONS(2874), + [anon_sym_err_GT_GT] = ACTIONS(2872), + [anon_sym_out_GT_GT] = ACTIONS(2872), + [anon_sym_e_GT_GT] = ACTIONS(2872), + [anon_sym_o_GT_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1145)] = { + [sym__expression] = STATE(4949), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2440), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_comment] = STATE(1145), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2954), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), + [anon_sym_null] = ACTIONS(2705), + [aux_sym_cmd_identifier_token3] = ACTIONS(2707), + [aux_sym_cmd_identifier_token4] = ACTIONS(2707), + [aux_sym_cmd_identifier_token5] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2711), + [aux_sym__val_number_decimal_token4] = ACTIONS(2711), + [aux_sym__val_number_token1] = ACTIONS(2707), + [aux_sym__val_number_token2] = ACTIONS(2707), + [aux_sym__val_number_token3] = ACTIONS(2707), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2713), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1146)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1207), [sym_comment] = STATE(1146), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2732), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2734), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2920), + [sym__newline] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_err_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_GT_PIPE] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_GT2] = ACTIONS(2922), + [anon_sym_DASH2] = ACTIONS(2920), + [anon_sym_STAR2] = ACTIONS(2922), + [anon_sym_and2] = ACTIONS(2920), + [anon_sym_xor2] = ACTIONS(2920), + [anon_sym_or2] = ACTIONS(2920), + [anon_sym_not_DASHin2] = ACTIONS(2920), + [anon_sym_has2] = ACTIONS(2920), + [anon_sym_not_DASHhas2] = ACTIONS(2920), + [anon_sym_starts_DASHwith2] = ACTIONS(2920), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2920), + [anon_sym_ends_DASHwith2] = ACTIONS(2920), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2920), + [anon_sym_EQ_EQ2] = ACTIONS(2920), + [anon_sym_BANG_EQ2] = ACTIONS(2920), + [anon_sym_LT2] = ACTIONS(2922), + [anon_sym_LT_EQ2] = ACTIONS(2920), + [anon_sym_GT_EQ2] = ACTIONS(2920), + [anon_sym_EQ_TILDE2] = ACTIONS(2920), + [anon_sym_BANG_TILDE2] = ACTIONS(2920), + [anon_sym_like2] = ACTIONS(2920), + [anon_sym_not_DASHlike2] = ACTIONS(2920), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2922), + [anon_sym_mod2] = ACTIONS(2920), + [anon_sym_SLASH_SLASH2] = ACTIONS(2920), + [anon_sym_PLUS2] = ACTIONS(2922), + [anon_sym_bit_DASHshl2] = ACTIONS(2920), + [anon_sym_bit_DASHshr2] = ACTIONS(2920), + [anon_sym_bit_DASHand2] = ACTIONS(2920), + [anon_sym_bit_DASHxor2] = ACTIONS(2920), + [anon_sym_bit_DASHor2] = ACTIONS(2920), + [anon_sym_err_GT] = ACTIONS(2922), + [anon_sym_out_GT] = ACTIONS(2922), + [anon_sym_e_GT] = ACTIONS(2922), + [anon_sym_o_GT] = ACTIONS(2922), + [anon_sym_err_PLUSout_GT] = ACTIONS(2922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2922), + [anon_sym_o_PLUSe_GT] = ACTIONS(2922), + [anon_sym_e_PLUSo_GT] = ACTIONS(2922), + [anon_sym_err_GT_GT] = ACTIONS(2920), + [anon_sym_out_GT_GT] = ACTIONS(2920), + [anon_sym_e_GT_GT] = ACTIONS(2920), + [anon_sym_o_GT_GT] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2920), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1147)] = { + [aux_sym__repeat_newline] = STATE(1148), [sym_comment] = STATE(1147), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_in] = ACTIONS(2820), + [sym__newline] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_err_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_GT_PIPE] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_GT2] = ACTIONS(2822), + [anon_sym_DASH2] = ACTIONS(2820), + [anon_sym_STAR2] = ACTIONS(2822), + [anon_sym_and2] = ACTIONS(2820), + [anon_sym_xor2] = ACTIONS(2820), + [anon_sym_or2] = ACTIONS(2820), + [anon_sym_not_DASHin2] = ACTIONS(2820), + [anon_sym_has2] = ACTIONS(2820), + [anon_sym_not_DASHhas2] = ACTIONS(2820), + [anon_sym_starts_DASHwith2] = ACTIONS(2820), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2820), + [anon_sym_ends_DASHwith2] = ACTIONS(2820), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2820), + [anon_sym_EQ_EQ2] = ACTIONS(2820), + [anon_sym_BANG_EQ2] = ACTIONS(2820), + [anon_sym_LT2] = ACTIONS(2822), + [anon_sym_LT_EQ2] = ACTIONS(2820), + [anon_sym_GT_EQ2] = ACTIONS(2820), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2822), [anon_sym_mod2] = ACTIONS(2820), [anon_sym_SLASH_SLASH2] = ACTIONS(2820), [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_bit_DASHshl2] = ACTIONS(2820), + [anon_sym_bit_DASHshr2] = ACTIONS(2820), + [anon_sym_bit_DASHand2] = ACTIONS(2820), + [anon_sym_bit_DASHxor2] = ACTIONS(2820), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2822), + [anon_sym_out_GT] = ACTIONS(2822), + [anon_sym_e_GT] = ACTIONS(2822), + [anon_sym_o_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT] = ACTIONS(2822), + [anon_sym_err_GT_GT] = ACTIONS(2820), + [anon_sym_out_GT_GT] = ACTIONS(2820), + [anon_sym_e_GT_GT] = ACTIONS(2820), + [anon_sym_o_GT_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2820), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1148)] = { - [aux_sym__repeat_newline] = STATE(1204), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1148), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2730), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2730), - [anon_sym_mod2] = ACTIONS(2728), - [anon_sym_SLASH_SLASH2] = ACTIONS(2728), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2944), + [sym__newline] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_err_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_GT_PIPE] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_GT2] = ACTIONS(2946), + [anon_sym_DASH2] = ACTIONS(2944), + [anon_sym_STAR2] = ACTIONS(2946), + [anon_sym_and2] = ACTIONS(2944), + [anon_sym_xor2] = ACTIONS(2944), + [anon_sym_or2] = ACTIONS(2944), + [anon_sym_not_DASHin2] = ACTIONS(2944), + [anon_sym_has2] = ACTIONS(2944), + [anon_sym_not_DASHhas2] = ACTIONS(2944), + [anon_sym_starts_DASHwith2] = ACTIONS(2944), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2944), + [anon_sym_ends_DASHwith2] = ACTIONS(2944), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2944), + [anon_sym_EQ_EQ2] = ACTIONS(2944), + [anon_sym_BANG_EQ2] = ACTIONS(2944), + [anon_sym_LT2] = ACTIONS(2946), + [anon_sym_LT_EQ2] = ACTIONS(2944), + [anon_sym_GT_EQ2] = ACTIONS(2944), + [anon_sym_EQ_TILDE2] = ACTIONS(2944), + [anon_sym_BANG_TILDE2] = ACTIONS(2944), + [anon_sym_like2] = ACTIONS(2944), + [anon_sym_not_DASHlike2] = ACTIONS(2944), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2946), + [anon_sym_mod2] = ACTIONS(2944), + [anon_sym_SLASH_SLASH2] = ACTIONS(2944), + [anon_sym_PLUS2] = ACTIONS(2946), + [anon_sym_bit_DASHshl2] = ACTIONS(2944), + [anon_sym_bit_DASHshr2] = ACTIONS(2944), + [anon_sym_bit_DASHand2] = ACTIONS(2944), + [anon_sym_bit_DASHxor2] = ACTIONS(2944), + [anon_sym_bit_DASHor2] = ACTIONS(2944), + [anon_sym_err_GT] = ACTIONS(2946), + [anon_sym_out_GT] = ACTIONS(2946), + [anon_sym_e_GT] = ACTIONS(2946), + [anon_sym_o_GT] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT] = ACTIONS(2946), + [anon_sym_err_GT_GT] = ACTIONS(2944), + [anon_sym_out_GT_GT] = ACTIONS(2944), + [anon_sym_e_GT_GT] = ACTIONS(2944), + [anon_sym_o_GT_GT] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2944), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1149)] = { - [sym__ctrl_match_body] = STATE(4904), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), + [aux_sym__repeat_newline] = STATE(1208), [sym_comment] = STATE(1149), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2882), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_err_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_GT_PIPE] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2920), + [anon_sym_xor2] = ACTIONS(2920), + [anon_sym_or2] = ACTIONS(2920), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2988), + [anon_sym_err_GT] = ACTIONS(2922), + [anon_sym_out_GT] = ACTIONS(2922), + [anon_sym_e_GT] = ACTIONS(2922), + [anon_sym_o_GT] = ACTIONS(2922), + [anon_sym_err_PLUSout_GT] = ACTIONS(2922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2922), + [anon_sym_o_PLUSe_GT] = ACTIONS(2922), + [anon_sym_e_PLUSo_GT] = ACTIONS(2922), + [anon_sym_err_GT_GT] = ACTIONS(2920), + [anon_sym_out_GT_GT] = ACTIONS(2920), + [anon_sym_e_GT_GT] = ACTIONS(2920), + [anon_sym_o_GT_GT] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2920), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1150)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1150), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2732), - [anon_sym_STAR2] = ACTIONS(2734), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2734), - [anon_sym_mod2] = ACTIONS(2732), - [anon_sym_SLASH_SLASH2] = ACTIONS(2732), - [anon_sym_PLUS2] = ACTIONS(2734), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_err_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_GT_PIPE] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2944), + [anon_sym_xor2] = ACTIONS(2944), + [anon_sym_or2] = ACTIONS(2944), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(3012), + [anon_sym_err_GT] = ACTIONS(2946), + [anon_sym_out_GT] = ACTIONS(2946), + [anon_sym_e_GT] = ACTIONS(2946), + [anon_sym_o_GT] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT] = ACTIONS(2946), + [anon_sym_err_GT_GT] = ACTIONS(2944), + [anon_sym_out_GT_GT] = ACTIONS(2944), + [anon_sym_e_GT_GT] = ACTIONS(2944), + [anon_sym_o_GT_GT] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2944), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1151)] = { - [sym__ctrl_match_body] = STATE(4907), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), + [aux_sym__repeat_newline] = STATE(1209), [sym_comment] = STATE(1151), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_err_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_GT_PIPE] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(3014), + [anon_sym_xor2] = ACTIONS(2920), + [anon_sym_or2] = ACTIONS(2920), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2988), + [anon_sym_err_GT] = ACTIONS(2922), + [anon_sym_out_GT] = ACTIONS(2922), + [anon_sym_e_GT] = ACTIONS(2922), + [anon_sym_o_GT] = ACTIONS(2922), + [anon_sym_err_PLUSout_GT] = ACTIONS(2922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2922), + [anon_sym_o_PLUSe_GT] = ACTIONS(2922), + [anon_sym_e_PLUSo_GT] = ACTIONS(2922), + [anon_sym_err_GT_GT] = ACTIONS(2920), + [anon_sym_out_GT_GT] = ACTIONS(2920), + [anon_sym_e_GT_GT] = ACTIONS(2920), + [anon_sym_o_GT_GT] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2920), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1152)] = { - [aux_sym__repeat_newline] = STATE(1206), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1152), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_err_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_GT_PIPE] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(3016), + [anon_sym_xor2] = ACTIONS(2944), + [anon_sym_or2] = ACTIONS(2944), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(3012), + [anon_sym_err_GT] = ACTIONS(2946), + [anon_sym_out_GT] = ACTIONS(2946), + [anon_sym_e_GT] = ACTIONS(2946), + [anon_sym_o_GT] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT] = ACTIONS(2946), + [anon_sym_err_GT_GT] = ACTIONS(2944), + [anon_sym_out_GT_GT] = ACTIONS(2944), + [anon_sym_e_GT_GT] = ACTIONS(2944), + [anon_sym_o_GT_GT] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2944), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1153)] = { + [aux_sym__repeat_newline] = STATE(1210), [sym_comment] = STATE(1153), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_err_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_GT_PIPE] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(3014), + [anon_sym_xor2] = ACTIONS(3020), + [anon_sym_or2] = ACTIONS(2920), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2988), + [anon_sym_err_GT] = ACTIONS(2922), + [anon_sym_out_GT] = ACTIONS(2922), + [anon_sym_e_GT] = ACTIONS(2922), + [anon_sym_o_GT] = ACTIONS(2922), + [anon_sym_err_PLUSout_GT] = ACTIONS(2922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2922), + [anon_sym_o_PLUSe_GT] = ACTIONS(2922), + [anon_sym_e_PLUSo_GT] = ACTIONS(2922), + [anon_sym_err_GT_GT] = ACTIONS(2920), + [anon_sym_out_GT_GT] = ACTIONS(2920), + [anon_sym_e_GT_GT] = ACTIONS(2920), + [anon_sym_o_GT_GT] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2920), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1154)] = { [aux_sym__repeat_newline] = STATE(1150), [sym_comment] = STATE(1154), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2714), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2714), - [anon_sym_mod2] = ACTIONS(2712), - [anon_sym_SLASH_SLASH2] = ACTIONS(2712), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_err_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_GT_PIPE] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2820), + [anon_sym_xor2] = ACTIONS(2820), + [anon_sym_or2] = ACTIONS(2820), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2988), + [anon_sym_err_GT] = ACTIONS(2822), + [anon_sym_out_GT] = ACTIONS(2822), + [anon_sym_e_GT] = ACTIONS(2822), + [anon_sym_o_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT] = ACTIONS(2822), + [anon_sym_err_GT_GT] = ACTIONS(2820), + [anon_sym_out_GT_GT] = ACTIONS(2820), + [anon_sym_e_GT_GT] = ACTIONS(2820), + [anon_sym_o_GT_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2820), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1155)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1155), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_err_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_GT_PIPE] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(3016), + [anon_sym_xor2] = ACTIONS(3022), + [anon_sym_or2] = ACTIONS(2944), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(3012), + [anon_sym_err_GT] = ACTIONS(2946), + [anon_sym_out_GT] = ACTIONS(2946), + [anon_sym_e_GT] = ACTIONS(2946), + [anon_sym_o_GT] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT] = ACTIONS(2946), + [anon_sym_err_GT_GT] = ACTIONS(2944), + [anon_sym_out_GT_GT] = ACTIONS(2944), + [anon_sym_e_GT_GT] = ACTIONS(2944), + [anon_sym_o_GT_GT] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2944), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1156)] = { - [aux_sym__repeat_newline] = STATE(1213), + [aux_sym__repeat_newline] = STATE(1211), [sym_comment] = STATE(1156), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_err_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_GT_PIPE] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2920), + [anon_sym_xor2] = ACTIONS(2920), + [anon_sym_or2] = ACTIONS(2920), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2920), + [anon_sym_BANG_TILDE2] = ACTIONS(2920), + [anon_sym_like2] = ACTIONS(2920), + [anon_sym_not_DASHlike2] = ACTIONS(2920), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2920), + [anon_sym_bit_DASHxor2] = ACTIONS(2920), + [anon_sym_bit_DASHor2] = ACTIONS(2920), + [anon_sym_err_GT] = ACTIONS(2922), + [anon_sym_out_GT] = ACTIONS(2922), + [anon_sym_e_GT] = ACTIONS(2922), + [anon_sym_o_GT] = ACTIONS(2922), + [anon_sym_err_PLUSout_GT] = ACTIONS(2922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2922), + [anon_sym_o_PLUSe_GT] = ACTIONS(2922), + [anon_sym_e_PLUSo_GT] = ACTIONS(2922), + [anon_sym_err_GT_GT] = ACTIONS(2920), + [anon_sym_out_GT_GT] = ACTIONS(2920), + [anon_sym_e_GT_GT] = ACTIONS(2920), + [anon_sym_o_GT_GT] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2920), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1157)] = { - [aux_sym__repeat_newline] = STATE(1208), + [aux_sym__repeat_newline] = STATE(1152), [sym_comment] = STATE(1157), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_err_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_GT_PIPE] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(3014), + [anon_sym_xor2] = ACTIONS(2820), + [anon_sym_or2] = ACTIONS(2820), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2988), + [anon_sym_err_GT] = ACTIONS(2822), + [anon_sym_out_GT] = ACTIONS(2822), + [anon_sym_e_GT] = ACTIONS(2822), + [anon_sym_o_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT] = ACTIONS(2822), + [anon_sym_err_GT_GT] = ACTIONS(2820), + [anon_sym_out_GT_GT] = ACTIONS(2820), + [anon_sym_e_GT_GT] = ACTIONS(2820), + [anon_sym_o_GT_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2820), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1158)] = { - [aux_sym__repeat_newline] = STATE(1214), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1158), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_err_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_GT_PIPE] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2944), + [anon_sym_xor2] = ACTIONS(2944), + [anon_sym_or2] = ACTIONS(2944), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(2944), + [anon_sym_BANG_TILDE2] = ACTIONS(2944), + [anon_sym_like2] = ACTIONS(2944), + [anon_sym_not_DASHlike2] = ACTIONS(2944), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2944), + [anon_sym_bit_DASHxor2] = ACTIONS(2944), + [anon_sym_bit_DASHor2] = ACTIONS(2944), + [anon_sym_err_GT] = ACTIONS(2946), + [anon_sym_out_GT] = ACTIONS(2946), + [anon_sym_e_GT] = ACTIONS(2946), + [anon_sym_o_GT] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT] = ACTIONS(2946), + [anon_sym_err_GT_GT] = ACTIONS(2944), + [anon_sym_out_GT_GT] = ACTIONS(2944), + [anon_sym_e_GT_GT] = ACTIONS(2944), + [anon_sym_o_GT_GT] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2944), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1159)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1212), [sym_comment] = STATE(1159), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2920), + [sym__newline] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_err_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_GT_PIPE] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_GT2] = ACTIONS(2922), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2920), + [anon_sym_xor2] = ACTIONS(2920), + [anon_sym_or2] = ACTIONS(2920), + [anon_sym_not_DASHin2] = ACTIONS(2920), + [anon_sym_has2] = ACTIONS(2920), + [anon_sym_not_DASHhas2] = ACTIONS(2920), + [anon_sym_starts_DASHwith2] = ACTIONS(2920), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2920), + [anon_sym_ends_DASHwith2] = ACTIONS(2920), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2920), + [anon_sym_EQ_EQ2] = ACTIONS(2920), + [anon_sym_BANG_EQ2] = ACTIONS(2920), + [anon_sym_LT2] = ACTIONS(2922), + [anon_sym_LT_EQ2] = ACTIONS(2920), + [anon_sym_GT_EQ2] = ACTIONS(2920), + [anon_sym_EQ_TILDE2] = ACTIONS(2920), + [anon_sym_BANG_TILDE2] = ACTIONS(2920), + [anon_sym_like2] = ACTIONS(2920), + [anon_sym_not_DASHlike2] = ACTIONS(2920), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2920), + [anon_sym_bit_DASHshr2] = ACTIONS(2920), + [anon_sym_bit_DASHand2] = ACTIONS(2920), + [anon_sym_bit_DASHxor2] = ACTIONS(2920), + [anon_sym_bit_DASHor2] = ACTIONS(2920), + [anon_sym_err_GT] = ACTIONS(2922), + [anon_sym_out_GT] = ACTIONS(2922), + [anon_sym_e_GT] = ACTIONS(2922), + [anon_sym_o_GT] = ACTIONS(2922), + [anon_sym_err_PLUSout_GT] = ACTIONS(2922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2922), + [anon_sym_o_PLUSe_GT] = ACTIONS(2922), + [anon_sym_e_PLUSo_GT] = ACTIONS(2922), + [anon_sym_err_GT_GT] = ACTIONS(2920), + [anon_sym_out_GT_GT] = ACTIONS(2920), + [anon_sym_e_GT_GT] = ACTIONS(2920), + [anon_sym_o_GT_GT] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2920), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1160)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1155), [sym_comment] = STATE(1160), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_err_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_GT_PIPE] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(3014), + [anon_sym_xor2] = ACTIONS(3020), + [anon_sym_or2] = ACTIONS(2820), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2988), + [anon_sym_err_GT] = ACTIONS(2822), + [anon_sym_out_GT] = ACTIONS(2822), + [anon_sym_e_GT] = ACTIONS(2822), + [anon_sym_o_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT] = ACTIONS(2822), + [anon_sym_err_GT_GT] = ACTIONS(2820), + [anon_sym_out_GT_GT] = ACTIONS(2820), + [anon_sym_e_GT_GT] = ACTIONS(2820), + [anon_sym_o_GT_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2820), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1161)] = { - [aux_sym__repeat_newline] = STATE(1155), + [sym__expr_parenthesized_immediate] = STATE(1492), + [sym__immediate_decimal] = STATE(1496), + [sym_val_variable] = STATE(1492), [sym_comment] = STATE(1161), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1783), + [anon_sym_false] = ACTIONS(1783), + [anon_sym_null] = ACTIONS(1783), + [aux_sym_cmd_identifier_token3] = ACTIONS(1783), + [aux_sym_cmd_identifier_token4] = ACTIONS(1783), + [aux_sym_cmd_identifier_token5] = ACTIONS(1783), + [sym__newline] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(2908), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), + [anon_sym_DOT_DOT_LT] = ACTIONS(1783), + [aux_sym__immediate_decimal_token1] = ACTIONS(3026), + [aux_sym__immediate_decimal_token2] = ACTIONS(3028), + [aux_sym__immediate_decimal_token3] = ACTIONS(3030), + [aux_sym__immediate_decimal_token4] = ACTIONS(3030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1783), + [aux_sym__val_number_token2] = ACTIONS(1783), + [aux_sym__val_number_token3] = ACTIONS(1783), + [anon_sym_0b] = ACTIONS(1785), + [anon_sym_0o] = ACTIONS(1785), + [anon_sym_0x] = ACTIONS(1785), + [sym_val_date] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_BQUOTE] = ACTIONS(1783), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1783), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1783), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1783), + [anon_sym_out_GT_GT] = ACTIONS(1783), + [anon_sym_e_GT_GT] = ACTIONS(1783), + [anon_sym_o_GT_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1783), + [aux_sym_unquoted_token1] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1783), }, [STATE(1162)] = { - [aux_sym__repeat_newline] = STATE(1210), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1162), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2944), + [sym__newline] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_err_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_GT_PIPE] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_GT2] = ACTIONS(2946), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2944), + [anon_sym_xor2] = ACTIONS(2944), + [anon_sym_or2] = ACTIONS(2944), + [anon_sym_not_DASHin2] = ACTIONS(2944), + [anon_sym_has2] = ACTIONS(2944), + [anon_sym_not_DASHhas2] = ACTIONS(2944), + [anon_sym_starts_DASHwith2] = ACTIONS(2944), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2944), + [anon_sym_ends_DASHwith2] = ACTIONS(2944), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2944), + [anon_sym_EQ_EQ2] = ACTIONS(2944), + [anon_sym_BANG_EQ2] = ACTIONS(2944), + [anon_sym_LT2] = ACTIONS(2946), + [anon_sym_LT_EQ2] = ACTIONS(2944), + [anon_sym_GT_EQ2] = ACTIONS(2944), + [anon_sym_EQ_TILDE2] = ACTIONS(2944), + [anon_sym_BANG_TILDE2] = ACTIONS(2944), + [anon_sym_like2] = ACTIONS(2944), + [anon_sym_not_DASHlike2] = ACTIONS(2944), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(2944), + [anon_sym_bit_DASHshr2] = ACTIONS(2944), + [anon_sym_bit_DASHand2] = ACTIONS(2944), + [anon_sym_bit_DASHxor2] = ACTIONS(2944), + [anon_sym_bit_DASHor2] = ACTIONS(2944), + [anon_sym_err_GT] = ACTIONS(2946), + [anon_sym_out_GT] = ACTIONS(2946), + [anon_sym_e_GT] = ACTIONS(2946), + [anon_sym_o_GT] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT] = ACTIONS(2946), + [anon_sym_err_GT_GT] = ACTIONS(2944), + [anon_sym_out_GT_GT] = ACTIONS(2944), + [anon_sym_e_GT_GT] = ACTIONS(2944), + [anon_sym_o_GT_GT] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2944), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1163)] = { + [aux_sym__repeat_newline] = STATE(1214), [sym_comment] = STATE(1163), - [ts_builtin_sym_end] = ACTIONS(2501), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_err_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_GT_PIPE] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2920), + [anon_sym_xor2] = ACTIONS(2920), + [anon_sym_or2] = ACTIONS(2920), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2920), + [anon_sym_bit_DASHxor2] = ACTIONS(2920), + [anon_sym_bit_DASHor2] = ACTIONS(2920), + [anon_sym_err_GT] = ACTIONS(2922), + [anon_sym_out_GT] = ACTIONS(2922), + [anon_sym_e_GT] = ACTIONS(2922), + [anon_sym_o_GT] = ACTIONS(2922), + [anon_sym_err_PLUSout_GT] = ACTIONS(2922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2922), + [anon_sym_o_PLUSe_GT] = ACTIONS(2922), + [anon_sym_e_PLUSo_GT] = ACTIONS(2922), + [anon_sym_err_GT_GT] = ACTIONS(2920), + [anon_sym_out_GT_GT] = ACTIONS(2920), + [anon_sym_e_GT_GT] = ACTIONS(2920), + [anon_sym_o_GT_GT] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2920), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1164)] = { - [aux_sym__repeat_newline] = STATE(1160), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1164), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_err_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_GT_PIPE] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2944), + [anon_sym_xor2] = ACTIONS(2944), + [anon_sym_or2] = ACTIONS(2944), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2944), + [anon_sym_bit_DASHxor2] = ACTIONS(2944), + [anon_sym_bit_DASHor2] = ACTIONS(2944), + [anon_sym_err_GT] = ACTIONS(2946), + [anon_sym_out_GT] = ACTIONS(2946), + [anon_sym_e_GT] = ACTIONS(2946), + [anon_sym_o_GT] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT] = ACTIONS(2946), + [anon_sym_err_GT_GT] = ACTIONS(2944), + [anon_sym_out_GT_GT] = ACTIONS(2944), + [anon_sym_e_GT_GT] = ACTIONS(2944), + [anon_sym_o_GT_GT] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2944), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1165)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1215), [sym_comment] = STATE(1165), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_err_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_GT_PIPE] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2920), + [anon_sym_xor2] = ACTIONS(2920), + [anon_sym_or2] = ACTIONS(2920), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2920), + [anon_sym_bit_DASHor2] = ACTIONS(2920), + [anon_sym_err_GT] = ACTIONS(2922), + [anon_sym_out_GT] = ACTIONS(2922), + [anon_sym_e_GT] = ACTIONS(2922), + [anon_sym_o_GT] = ACTIONS(2922), + [anon_sym_err_PLUSout_GT] = ACTIONS(2922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2922), + [anon_sym_o_PLUSe_GT] = ACTIONS(2922), + [anon_sym_e_PLUSo_GT] = ACTIONS(2922), + [anon_sym_err_GT_GT] = ACTIONS(2920), + [anon_sym_out_GT_GT] = ACTIONS(2920), + [anon_sym_e_GT_GT] = ACTIONS(2920), + [anon_sym_o_GT_GT] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2920), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1166)] = { + [aux_sym__repeat_newline] = STATE(1158), [sym_comment] = STATE(1166), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_err_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_GT_PIPE] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_err_GT] = ACTIONS(2278), - [anon_sym_out_GT] = ACTIONS(2278), - [anon_sym_e_GT] = ACTIONS(2278), - [anon_sym_o_GT] = ACTIONS(2278), - [anon_sym_err_PLUSout_GT] = ACTIONS(2278), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), - [anon_sym_o_PLUSe_GT] = ACTIONS(2278), - [anon_sym_e_PLUSo_GT] = ACTIONS(2278), - [anon_sym_err_GT_GT] = ACTIONS(2276), - [anon_sym_out_GT_GT] = ACTIONS(2276), - [anon_sym_e_GT_GT] = ACTIONS(2276), - [anon_sym_o_GT_GT] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_err_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_GT_PIPE] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2820), + [anon_sym_xor2] = ACTIONS(2820), + [anon_sym_or2] = ACTIONS(2820), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2820), + [anon_sym_bit_DASHxor2] = ACTIONS(2820), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2822), + [anon_sym_out_GT] = ACTIONS(2822), + [anon_sym_e_GT] = ACTIONS(2822), + [anon_sym_o_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT] = ACTIONS(2822), + [anon_sym_err_GT_GT] = ACTIONS(2820), + [anon_sym_out_GT_GT] = ACTIONS(2820), + [anon_sym_e_GT_GT] = ACTIONS(2820), + [anon_sym_o_GT_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2820), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1167)] = { - [aux_sym__repeat_newline] = STATE(1212), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1167), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_err_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_GT_PIPE] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2944), + [anon_sym_xor2] = ACTIONS(2944), + [anon_sym_or2] = ACTIONS(2944), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(2944), + [anon_sym_bit_DASHor2] = ACTIONS(2944), + [anon_sym_err_GT] = ACTIONS(2946), + [anon_sym_out_GT] = ACTIONS(2946), + [anon_sym_e_GT] = ACTIONS(2946), + [anon_sym_o_GT] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT] = ACTIONS(2946), + [anon_sym_err_GT_GT] = ACTIONS(2944), + [anon_sym_out_GT_GT] = ACTIONS(2944), + [anon_sym_e_GT_GT] = ACTIONS(2944), + [anon_sym_o_GT_GT] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2944), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1168)] = { - [aux_sym__repeat_newline] = STATE(1219), + [aux_sym__repeat_newline] = STATE(1216), [sym_comment] = STATE(1168), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2704), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2704), - [anon_sym_mod2] = ACTIONS(2702), - [anon_sym_SLASH_SLASH2] = ACTIONS(2702), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_err_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_GT_PIPE] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2920), + [anon_sym_xor2] = ACTIONS(2920), + [anon_sym_or2] = ACTIONS(2920), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2920), + [anon_sym_err_GT] = ACTIONS(2922), + [anon_sym_out_GT] = ACTIONS(2922), + [anon_sym_e_GT] = ACTIONS(2922), + [anon_sym_o_GT] = ACTIONS(2922), + [anon_sym_err_PLUSout_GT] = ACTIONS(2922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2922), + [anon_sym_o_PLUSe_GT] = ACTIONS(2922), + [anon_sym_e_PLUSo_GT] = ACTIONS(2922), + [anon_sym_err_GT_GT] = ACTIONS(2920), + [anon_sym_out_GT_GT] = ACTIONS(2920), + [anon_sym_e_GT_GT] = ACTIONS(2920), + [anon_sym_o_GT_GT] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2920), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1169)] = { + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1169), - [ts_builtin_sym_end] = ACTIONS(2128), - [anon_sym_in] = ACTIONS(2128), - [sym__newline] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_err_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_GT_PIPE] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), - [anon_sym_GT2] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_STAR2] = ACTIONS(2130), - [anon_sym_and2] = ACTIONS(2128), - [anon_sym_xor2] = ACTIONS(2128), - [anon_sym_or2] = ACTIONS(2128), - [anon_sym_not_DASHin2] = ACTIONS(2128), - [anon_sym_has2] = ACTIONS(2128), - [anon_sym_not_DASHhas2] = ACTIONS(2128), - [anon_sym_starts_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2128), - [anon_sym_ends_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2128), - [anon_sym_EQ_EQ2] = ACTIONS(2128), - [anon_sym_BANG_EQ2] = ACTIONS(2128), - [anon_sym_LT2] = ACTIONS(2130), - [anon_sym_LT_EQ2] = ACTIONS(2128), - [anon_sym_GT_EQ2] = ACTIONS(2128), - [anon_sym_EQ_TILDE2] = ACTIONS(2128), - [anon_sym_BANG_TILDE2] = ACTIONS(2128), - [anon_sym_like2] = ACTIONS(2128), - [anon_sym_not_DASHlike2] = ACTIONS(2128), - [anon_sym_STAR_STAR2] = ACTIONS(2128), - [anon_sym_PLUS_PLUS2] = ACTIONS(2128), - [anon_sym_SLASH2] = ACTIONS(2130), - [anon_sym_mod2] = ACTIONS(2128), - [anon_sym_SLASH_SLASH2] = ACTIONS(2128), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_bit_DASHshl2] = ACTIONS(2128), - [anon_sym_bit_DASHshr2] = ACTIONS(2128), - [anon_sym_bit_DASHand2] = ACTIONS(2128), - [anon_sym_bit_DASHxor2] = ACTIONS(2128), - [anon_sym_bit_DASHor2] = ACTIONS(2128), - [anon_sym_LBRACK2] = ACTIONS(2920), - [anon_sym_err_GT] = ACTIONS(2130), - [anon_sym_out_GT] = ACTIONS(2130), - [anon_sym_e_GT] = ACTIONS(2130), - [anon_sym_o_GT] = ACTIONS(2130), - [anon_sym_err_PLUSout_GT] = ACTIONS(2130), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), - [anon_sym_o_PLUSe_GT] = ACTIONS(2130), - [anon_sym_e_PLUSo_GT] = ACTIONS(2130), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_err_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_GT_PIPE] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2944), + [anon_sym_xor2] = ACTIONS(2944), + [anon_sym_or2] = ACTIONS(2944), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(2944), + [anon_sym_err_GT] = ACTIONS(2946), + [anon_sym_out_GT] = ACTIONS(2946), + [anon_sym_e_GT] = ACTIONS(2946), + [anon_sym_o_GT] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT] = ACTIONS(2946), + [anon_sym_err_GT_GT] = ACTIONS(2944), + [anon_sym_out_GT_GT] = ACTIONS(2944), + [anon_sym_e_GT_GT] = ACTIONS(2944), + [anon_sym_o_GT_GT] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2944), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1170)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1223), [sym_comment] = STATE(1170), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2950), + [sym__newline] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_err_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_GT_PIPE] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2950), + [anon_sym_xor2] = ACTIONS(2950), + [anon_sym_or2] = ACTIONS(2950), + [anon_sym_not_DASHin2] = ACTIONS(2950), + [anon_sym_has2] = ACTIONS(2950), + [anon_sym_not_DASHhas2] = ACTIONS(2950), + [anon_sym_starts_DASHwith2] = ACTIONS(2950), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2950), + [anon_sym_ends_DASHwith2] = ACTIONS(2950), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2950), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2950), + [anon_sym_BANG_TILDE2] = ACTIONS(2950), + [anon_sym_like2] = ACTIONS(2950), + [anon_sym_not_DASHlike2] = ACTIONS(2950), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2950), + [anon_sym_bit_DASHxor2] = ACTIONS(2950), + [anon_sym_bit_DASHor2] = ACTIONS(2950), + [anon_sym_err_GT] = ACTIONS(2952), + [anon_sym_out_GT] = ACTIONS(2952), + [anon_sym_e_GT] = ACTIONS(2952), + [anon_sym_o_GT] = ACTIONS(2952), + [anon_sym_err_PLUSout_GT] = ACTIONS(2952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2952), + [anon_sym_o_PLUSe_GT] = ACTIONS(2952), + [anon_sym_e_PLUSo_GT] = ACTIONS(2952), + [anon_sym_err_GT_GT] = ACTIONS(2950), + [anon_sym_out_GT_GT] = ACTIONS(2950), + [anon_sym_e_GT_GT] = ACTIONS(2950), + [anon_sym_o_GT_GT] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1171)] = { - [aux_sym__repeat_newline] = STATE(1165), + [sym__expression] = STATE(4966), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2440), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_comment] = STATE(1171), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), + [anon_sym_null] = ACTIONS(2705), + [aux_sym_cmd_identifier_token3] = ACTIONS(2707), + [aux_sym_cmd_identifier_token4] = ACTIONS(2707), + [aux_sym_cmd_identifier_token5] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2711), + [aux_sym__val_number_decimal_token4] = ACTIONS(2711), + [aux_sym__val_number_token1] = ACTIONS(2707), + [aux_sym__val_number_token2] = ACTIONS(2707), + [aux_sym__val_number_token3] = ACTIONS(2707), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2713), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1172)] = { + [sym__expression] = STATE(4831), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2440), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_comment] = STATE(1172), - [ts_builtin_sym_end] = ACTIONS(2635), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), + [aux_sym_cmd_identifier_token2] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), + [anon_sym_null] = ACTIONS(2705), + [aux_sym_cmd_identifier_token3] = ACTIONS(2707), + [aux_sym_cmd_identifier_token4] = ACTIONS(2707), + [aux_sym_cmd_identifier_token5] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2711), + [aux_sym__val_number_decimal_token4] = ACTIONS(2711), + [aux_sym__val_number_token1] = ACTIONS(2707), + [aux_sym__val_number_token2] = ACTIONS(2707), + [aux_sym__val_number_token3] = ACTIONS(2707), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2713), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1173)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1230), [sym_comment] = STATE(1173), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2708), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2708), - [anon_sym_mod2] = ACTIONS(2706), - [anon_sym_SLASH_SLASH2] = ACTIONS(2706), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2950), + [sym__newline] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_err_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_GT_PIPE] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_GT2] = ACTIONS(2952), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2950), + [anon_sym_xor2] = ACTIONS(2950), + [anon_sym_or2] = ACTIONS(2950), + [anon_sym_not_DASHin2] = ACTIONS(2950), + [anon_sym_has2] = ACTIONS(2950), + [anon_sym_not_DASHhas2] = ACTIONS(2950), + [anon_sym_starts_DASHwith2] = ACTIONS(2950), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2950), + [anon_sym_ends_DASHwith2] = ACTIONS(2950), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2950), + [anon_sym_EQ_EQ2] = ACTIONS(2950), + [anon_sym_BANG_EQ2] = ACTIONS(2950), + [anon_sym_LT2] = ACTIONS(2952), + [anon_sym_LT_EQ2] = ACTIONS(2950), + [anon_sym_GT_EQ2] = ACTIONS(2950), + [anon_sym_EQ_TILDE2] = ACTIONS(2950), + [anon_sym_BANG_TILDE2] = ACTIONS(2950), + [anon_sym_like2] = ACTIONS(2950), + [anon_sym_not_DASHlike2] = ACTIONS(2950), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2950), + [anon_sym_bit_DASHxor2] = ACTIONS(2950), + [anon_sym_bit_DASHor2] = ACTIONS(2950), + [anon_sym_err_GT] = ACTIONS(2952), + [anon_sym_out_GT] = ACTIONS(2952), + [anon_sym_e_GT] = ACTIONS(2952), + [anon_sym_o_GT] = ACTIONS(2952), + [anon_sym_err_PLUSout_GT] = ACTIONS(2952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2952), + [anon_sym_o_PLUSe_GT] = ACTIONS(2952), + [anon_sym_e_PLUSo_GT] = ACTIONS(2952), + [anon_sym_err_GT_GT] = ACTIONS(2950), + [anon_sym_out_GT_GT] = ACTIONS(2950), + [anon_sym_e_GT_GT] = ACTIONS(2950), + [anon_sym_o_GT_GT] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1174)] = { - [aux_sym__repeat_newline] = STATE(1170), + [aux_sym__repeat_newline] = STATE(1232), [sym_comment] = STATE(1174), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2950), + [sym__newline] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_err_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_GT_PIPE] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_GT2] = ACTIONS(2952), + [anon_sym_DASH2] = ACTIONS(2950), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2950), + [anon_sym_xor2] = ACTIONS(2950), + [anon_sym_or2] = ACTIONS(2950), + [anon_sym_not_DASHin2] = ACTIONS(2950), + [anon_sym_has2] = ACTIONS(2950), + [anon_sym_not_DASHhas2] = ACTIONS(2950), + [anon_sym_starts_DASHwith2] = ACTIONS(2950), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2950), + [anon_sym_ends_DASHwith2] = ACTIONS(2950), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2950), + [anon_sym_EQ_EQ2] = ACTIONS(2950), + [anon_sym_BANG_EQ2] = ACTIONS(2950), + [anon_sym_LT2] = ACTIONS(2952), + [anon_sym_LT_EQ2] = ACTIONS(2950), + [anon_sym_GT_EQ2] = ACTIONS(2950), + [anon_sym_EQ_TILDE2] = ACTIONS(2950), + [anon_sym_BANG_TILDE2] = ACTIONS(2950), + [anon_sym_like2] = ACTIONS(2950), + [anon_sym_not_DASHlike2] = ACTIONS(2950), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2952), + [anon_sym_bit_DASHshl2] = ACTIONS(2950), + [anon_sym_bit_DASHshr2] = ACTIONS(2950), + [anon_sym_bit_DASHand2] = ACTIONS(2950), + [anon_sym_bit_DASHxor2] = ACTIONS(2950), + [anon_sym_bit_DASHor2] = ACTIONS(2950), + [anon_sym_err_GT] = ACTIONS(2952), + [anon_sym_out_GT] = ACTIONS(2952), + [anon_sym_e_GT] = ACTIONS(2952), + [anon_sym_o_GT] = ACTIONS(2952), + [anon_sym_err_PLUSout_GT] = ACTIONS(2952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2952), + [anon_sym_o_PLUSe_GT] = ACTIONS(2952), + [anon_sym_e_PLUSo_GT] = ACTIONS(2952), + [anon_sym_err_GT_GT] = ACTIONS(2950), + [anon_sym_out_GT_GT] = ACTIONS(2950), + [anon_sym_e_GT_GT] = ACTIONS(2950), + [anon_sym_o_GT_GT] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1175)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expression] = STATE(4897), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2440), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), [sym_comment] = STATE(1175), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2954), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), + [anon_sym_null] = ACTIONS(2705), + [aux_sym_cmd_identifier_token3] = ACTIONS(2707), + [aux_sym_cmd_identifier_token4] = ACTIONS(2707), + [aux_sym_cmd_identifier_token5] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2711), + [aux_sym__val_number_decimal_token4] = ACTIONS(2711), + [aux_sym__val_number_token1] = ACTIONS(2707), + [aux_sym__val_number_token2] = ACTIONS(2707), + [aux_sym__val_number_token3] = ACTIONS(2707), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2713), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1176)] = { - [aux_sym__repeat_newline] = STATE(1243), + [aux_sym__repeat_newline] = STATE(1234), [sym_comment] = STATE(1176), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2950), + [sym__newline] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_err_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_GT_PIPE] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_GT2] = ACTIONS(2952), + [anon_sym_DASH2] = ACTIONS(2950), + [anon_sym_STAR2] = ACTIONS(2952), + [anon_sym_and2] = ACTIONS(2950), + [anon_sym_xor2] = ACTIONS(2950), + [anon_sym_or2] = ACTIONS(2950), + [anon_sym_not_DASHin2] = ACTIONS(2950), + [anon_sym_has2] = ACTIONS(2950), + [anon_sym_not_DASHhas2] = ACTIONS(2950), + [anon_sym_starts_DASHwith2] = ACTIONS(2950), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2950), + [anon_sym_ends_DASHwith2] = ACTIONS(2950), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2950), + [anon_sym_EQ_EQ2] = ACTIONS(2950), + [anon_sym_BANG_EQ2] = ACTIONS(2950), + [anon_sym_LT2] = ACTIONS(2952), + [anon_sym_LT_EQ2] = ACTIONS(2950), + [anon_sym_GT_EQ2] = ACTIONS(2950), + [anon_sym_EQ_TILDE2] = ACTIONS(2950), + [anon_sym_BANG_TILDE2] = ACTIONS(2950), + [anon_sym_like2] = ACTIONS(2950), + [anon_sym_not_DASHlike2] = ACTIONS(2950), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2952), + [anon_sym_mod2] = ACTIONS(2950), + [anon_sym_SLASH_SLASH2] = ACTIONS(2950), + [anon_sym_PLUS2] = ACTIONS(2952), + [anon_sym_bit_DASHshl2] = ACTIONS(2950), + [anon_sym_bit_DASHshr2] = ACTIONS(2950), + [anon_sym_bit_DASHand2] = ACTIONS(2950), + [anon_sym_bit_DASHxor2] = ACTIONS(2950), + [anon_sym_bit_DASHor2] = ACTIONS(2950), + [anon_sym_err_GT] = ACTIONS(2952), + [anon_sym_out_GT] = ACTIONS(2952), + [anon_sym_e_GT] = ACTIONS(2952), + [anon_sym_o_GT] = ACTIONS(2952), + [anon_sym_err_PLUSout_GT] = ACTIONS(2952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2952), + [anon_sym_o_PLUSe_GT] = ACTIONS(2952), + [anon_sym_e_PLUSo_GT] = ACTIONS(2952), + [anon_sym_err_GT_GT] = ACTIONS(2950), + [anon_sym_out_GT_GT] = ACTIONS(2950), + [anon_sym_e_GT_GT] = ACTIONS(2950), + [anon_sym_o_GT_GT] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1177)] = { - [aux_sym__repeat_newline] = STATE(1216), + [sym__expr_parenthesized_immediate] = STATE(1612), + [sym__immediate_decimal] = STATE(1510), + [sym_val_variable] = STATE(1612), [sym_comment] = STATE(1177), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1734), + [aux_sym_cmd_identifier_token3] = ACTIONS(1734), + [aux_sym_cmd_identifier_token4] = ACTIONS(1734), + [aux_sym_cmd_identifier_token5] = ACTIONS(1734), + [sym__newline] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_DOLLAR] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_LT] = ACTIONS(1734), + [aux_sym__immediate_decimal_token1] = ACTIONS(3039), + [aux_sym__immediate_decimal_token2] = ACTIONS(3041), + [aux_sym__immediate_decimal_token3] = ACTIONS(3043), + [aux_sym__immediate_decimal_token4] = ACTIONS(3043), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1734), + [aux_sym__val_number_decimal_token1] = ACTIONS(1738), + [aux_sym__val_number_decimal_token2] = ACTIONS(1738), + [aux_sym__val_number_decimal_token3] = ACTIONS(1738), + [aux_sym__val_number_decimal_token4] = ACTIONS(1738), + [aux_sym__val_number_token1] = ACTIONS(1734), + [aux_sym__val_number_token2] = ACTIONS(1734), + [aux_sym__val_number_token3] = ACTIONS(1734), + [anon_sym_0b] = ACTIONS(1738), + [anon_sym_0o] = ACTIONS(1738), + [anon_sym_0x] = ACTIONS(1738), + [sym_val_date] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1734), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1734), + [anon_sym_err_GT] = ACTIONS(1738), + [anon_sym_out_GT] = ACTIONS(1738), + [anon_sym_e_GT] = ACTIONS(1738), + [anon_sym_o_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT] = ACTIONS(1738), + [anon_sym_err_GT_GT] = ACTIONS(1734), + [anon_sym_out_GT_GT] = ACTIONS(1734), + [anon_sym_e_GT_GT] = ACTIONS(1734), + [anon_sym_o_GT_GT] = ACTIONS(1734), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1734), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1734), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1734), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1734), + [sym__unquoted_pattern] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1734), }, [STATE(1178)] = { - [aux_sym__repeat_newline] = STATE(1238), + [aux_sym__repeat_newline] = STATE(1162), [sym_comment] = STATE(1178), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2820), + [sym__newline] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_err_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_GT_PIPE] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_GT2] = ACTIONS(2822), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2820), + [anon_sym_xor2] = ACTIONS(2820), + [anon_sym_or2] = ACTIONS(2820), + [anon_sym_not_DASHin2] = ACTIONS(2820), + [anon_sym_has2] = ACTIONS(2820), + [anon_sym_not_DASHhas2] = ACTIONS(2820), + [anon_sym_starts_DASHwith2] = ACTIONS(2820), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2820), + [anon_sym_ends_DASHwith2] = ACTIONS(2820), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2820), + [anon_sym_EQ_EQ2] = ACTIONS(2820), + [anon_sym_BANG_EQ2] = ACTIONS(2820), + [anon_sym_LT2] = ACTIONS(2822), + [anon_sym_LT_EQ2] = ACTIONS(2820), + [anon_sym_GT_EQ2] = ACTIONS(2820), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2820), + [anon_sym_bit_DASHshr2] = ACTIONS(2820), + [anon_sym_bit_DASHand2] = ACTIONS(2820), + [anon_sym_bit_DASHxor2] = ACTIONS(2820), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2822), + [anon_sym_out_GT] = ACTIONS(2822), + [anon_sym_e_GT] = ACTIONS(2822), + [anon_sym_o_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT] = ACTIONS(2822), + [anon_sym_err_GT_GT] = ACTIONS(2820), + [anon_sym_out_GT_GT] = ACTIONS(2820), + [anon_sym_e_GT_GT] = ACTIONS(2820), + [anon_sym_o_GT_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2820), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1179)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1179), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [ts_builtin_sym_end] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(2274), + [sym__newline] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_err_GT_PIPE] = ACTIONS(2274), + [anon_sym_out_GT_PIPE] = ACTIONS(2274), + [anon_sym_e_GT_PIPE] = ACTIONS(2274), + [anon_sym_o_GT_PIPE] = ACTIONS(2274), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2274), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2274), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2274), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2274), + [anon_sym_GT2] = ACTIONS(2276), + [anon_sym_DASH2] = ACTIONS(2274), + [anon_sym_STAR2] = ACTIONS(2276), + [anon_sym_and2] = ACTIONS(2274), + [anon_sym_xor2] = ACTIONS(2274), + [anon_sym_or2] = ACTIONS(2274), + [anon_sym_not_DASHin2] = ACTIONS(2274), + [anon_sym_has2] = ACTIONS(2274), + [anon_sym_not_DASHhas2] = ACTIONS(2274), + [anon_sym_starts_DASHwith2] = ACTIONS(2274), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2274), + [anon_sym_ends_DASHwith2] = ACTIONS(2274), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2274), + [anon_sym_EQ_EQ2] = ACTIONS(2274), + [anon_sym_BANG_EQ2] = ACTIONS(2274), + [anon_sym_LT2] = ACTIONS(2276), + [anon_sym_LT_EQ2] = ACTIONS(2274), + [anon_sym_GT_EQ2] = ACTIONS(2274), + [anon_sym_EQ_TILDE2] = ACTIONS(2274), + [anon_sym_BANG_TILDE2] = ACTIONS(2274), + [anon_sym_like2] = ACTIONS(2274), + [anon_sym_not_DASHlike2] = ACTIONS(2274), + [anon_sym_LPAREN2] = ACTIONS(2274), + [anon_sym_STAR_STAR2] = ACTIONS(2274), + [anon_sym_PLUS_PLUS2] = ACTIONS(2274), + [anon_sym_SLASH2] = ACTIONS(2276), + [anon_sym_mod2] = ACTIONS(2274), + [anon_sym_SLASH_SLASH2] = ACTIONS(2274), + [anon_sym_PLUS2] = ACTIONS(2276), + [anon_sym_bit_DASHshl2] = ACTIONS(2274), + [anon_sym_bit_DASHshr2] = ACTIONS(2274), + [anon_sym_bit_DASHand2] = ACTIONS(2274), + [anon_sym_bit_DASHxor2] = ACTIONS(2274), + [anon_sym_bit_DASHor2] = ACTIONS(2274), + [anon_sym_err_GT] = ACTIONS(2276), + [anon_sym_out_GT] = ACTIONS(2276), + [anon_sym_e_GT] = ACTIONS(2276), + [anon_sym_o_GT] = ACTIONS(2276), + [anon_sym_err_PLUSout_GT] = ACTIONS(2276), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2276), + [anon_sym_o_PLUSe_GT] = ACTIONS(2276), + [anon_sym_e_PLUSo_GT] = ACTIONS(2276), + [anon_sym_err_GT_GT] = ACTIONS(2274), + [anon_sym_out_GT_GT] = ACTIONS(2274), + [anon_sym_e_GT_GT] = ACTIONS(2274), + [anon_sym_o_GT_GT] = ACTIONS(2274), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2274), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2274), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2274), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2274), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1180)] = { - [aux_sym__repeat_newline] = STATE(1224), [sym_comment] = STATE(1180), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(2663), + [aux_sym_cmd_identifier_token2] = ACTIONS(2954), + [anon_sym_in] = ACTIONS(2665), + [sym__newline] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2663), + [anon_sym_err_GT_PIPE] = ACTIONS(2663), + [anon_sym_out_GT_PIPE] = ACTIONS(2663), + [anon_sym_e_GT_PIPE] = ACTIONS(2663), + [anon_sym_o_GT_PIPE] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2663), + [anon_sym_GT2] = ACTIONS(2665), + [anon_sym_DASH2] = ACTIONS(2665), + [anon_sym_STAR2] = ACTIONS(2665), + [anon_sym_and2] = ACTIONS(2665), + [anon_sym_xor2] = ACTIONS(2665), + [anon_sym_or2] = ACTIONS(2665), + [anon_sym_not_DASHin2] = ACTIONS(2665), + [anon_sym_has2] = ACTIONS(2665), + [anon_sym_not_DASHhas2] = ACTIONS(2665), + [anon_sym_starts_DASHwith2] = ACTIONS(2665), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2665), + [anon_sym_ends_DASHwith2] = ACTIONS(2665), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2665), + [anon_sym_EQ_EQ2] = ACTIONS(2663), + [anon_sym_BANG_EQ2] = ACTIONS(2663), + [anon_sym_LT2] = ACTIONS(2665), + [anon_sym_LT_EQ2] = ACTIONS(2663), + [anon_sym_GT_EQ2] = ACTIONS(2663), + [anon_sym_EQ_TILDE2] = ACTIONS(2663), + [anon_sym_BANG_TILDE2] = ACTIONS(2665), + [anon_sym_like2] = ACTIONS(2665), + [anon_sym_not_DASHlike2] = ACTIONS(2665), + [anon_sym_STAR_STAR2] = ACTIONS(2665), + [anon_sym_PLUS_PLUS2] = ACTIONS(2665), + [anon_sym_SLASH2] = ACTIONS(2665), + [anon_sym_mod2] = ACTIONS(2665), + [anon_sym_SLASH_SLASH2] = ACTIONS(2665), + [anon_sym_PLUS2] = ACTIONS(2665), + [anon_sym_bit_DASHshl2] = ACTIONS(2665), + [anon_sym_bit_DASHshr2] = ACTIONS(2665), + [anon_sym_bit_DASHand2] = ACTIONS(2665), + [anon_sym_bit_DASHxor2] = ACTIONS(2665), + [anon_sym_bit_DASHor2] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2665), + [anon_sym_out_GT] = ACTIONS(2665), + [anon_sym_e_GT] = ACTIONS(2665), + [anon_sym_o_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT] = ACTIONS(2665), + [anon_sym_err_GT_GT] = ACTIONS(2663), + [anon_sym_out_GT_GT] = ACTIONS(2663), + [anon_sym_e_GT_GT] = ACTIONS(2663), + [anon_sym_o_GT_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2663), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1181)] = { - [aux_sym__repeat_newline] = STATE(1218), + [aux_sym__repeat_newline] = STATE(1164), [sym_comment] = STATE(1181), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_err_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_GT_PIPE] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2820), + [anon_sym_xor2] = ACTIONS(2820), + [anon_sym_or2] = ACTIONS(2820), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2820), + [anon_sym_bit_DASHxor2] = ACTIONS(2820), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2822), + [anon_sym_out_GT] = ACTIONS(2822), + [anon_sym_e_GT] = ACTIONS(2822), + [anon_sym_o_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT] = ACTIONS(2822), + [anon_sym_err_GT_GT] = ACTIONS(2820), + [anon_sym_out_GT_GT] = ACTIONS(2820), + [anon_sym_e_GT_GT] = ACTIONS(2820), + [anon_sym_o_GT_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2820), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1182)] = { - [aux_sym__repeat_newline] = STATE(1244), + [sym__ctrl_match_body] = STATE(5181), + [sym_match_arm] = STATE(4570), + [sym_default_arm] = STATE(4570), + [sym_match_pattern] = STATE(5188), + [sym__match_pattern] = STATE(3992), + [sym__match_pattern_expression] = STATE(4370), + [sym__match_pattern_value] = STATE(4403), + [sym__match_pattern_list] = STATE(4404), + [sym__match_pattern_record] = STATE(4405), + [sym_expr_parenthesized] = STATE(3905), + [sym_val_range] = STATE(4403), + [sym__val_range] = STATE(5208), + [sym_val_nothing] = STATE(4405), + [sym_val_bool] = STATE(4173), + [sym_val_variable] = STATE(3917), + [sym_val_number] = STATE(4405), + [sym__val_number_decimal] = STATE(3676), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(4405), + [sym_val_filesize] = STATE(4405), + [sym_val_binary] = STATE(4405), + [sym_val_string] = STATE(4405), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_table] = STATE(4405), + [sym_unquoted] = STATE(4457), + [sym__unquoted_anonymous_prefix] = STATE(5208), [sym_comment] = STATE(1182), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [aux_sym__types_body_repeat1] = STATE(1378), + [aux_sym__ctrl_match_body_repeat1] = STATE(1428), + [anon_sym_true] = ACTIONS(3045), + [anon_sym_false] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3047), + [aux_sym_cmd_identifier_token3] = ACTIONS(3049), + [aux_sym_cmd_identifier_token4] = ACTIONS(3049), + [aux_sym_cmd_identifier_token5] = ACTIONS(3049), + [sym__newline] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_DOLLAR] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym__] = ACTIONS(3061), + [anon_sym_DOT_DOT] = ACTIONS(3063), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3065), + [anon_sym_DOT_DOT_LT] = ACTIONS(3065), + [aux_sym__val_number_decimal_token1] = ACTIONS(3067), + [aux_sym__val_number_decimal_token2] = ACTIONS(3069), + [aux_sym__val_number_decimal_token3] = ACTIONS(3071), + [aux_sym__val_number_decimal_token4] = ACTIONS(3071), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1952), }, [STATE(1183)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__ctrl_match_body] = STATE(5182), + [sym_match_arm] = STATE(4570), + [sym_default_arm] = STATE(4570), + [sym_match_pattern] = STATE(5188), + [sym__match_pattern] = STATE(3992), + [sym__match_pattern_expression] = STATE(4370), + [sym__match_pattern_value] = STATE(4403), + [sym__match_pattern_list] = STATE(4404), + [sym__match_pattern_record] = STATE(4405), + [sym_expr_parenthesized] = STATE(3905), + [sym_val_range] = STATE(4403), + [sym__val_range] = STATE(5208), + [sym_val_nothing] = STATE(4405), + [sym_val_bool] = STATE(4173), + [sym_val_variable] = STATE(3917), + [sym_val_number] = STATE(4405), + [sym__val_number_decimal] = STATE(3676), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(4405), + [sym_val_filesize] = STATE(4405), + [sym_val_binary] = STATE(4405), + [sym_val_string] = STATE(4405), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_table] = STATE(4405), + [sym_unquoted] = STATE(4457), + [sym__unquoted_anonymous_prefix] = STATE(5208), [sym_comment] = STATE(1183), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [aux_sym__types_body_repeat1] = STATE(1378), + [aux_sym__ctrl_match_body_repeat1] = STATE(1428), + [anon_sym_true] = ACTIONS(3045), + [anon_sym_false] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3047), + [aux_sym_cmd_identifier_token3] = ACTIONS(3049), + [aux_sym_cmd_identifier_token4] = ACTIONS(3049), + [aux_sym_cmd_identifier_token5] = ACTIONS(3049), + [sym__newline] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_DOLLAR] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym__] = ACTIONS(3061), + [anon_sym_DOT_DOT] = ACTIONS(3063), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3065), + [anon_sym_DOT_DOT_LT] = ACTIONS(3065), + [aux_sym__val_number_decimal_token1] = ACTIONS(3067), + [aux_sym__val_number_decimal_token2] = ACTIONS(3069), + [aux_sym__val_number_decimal_token3] = ACTIONS(3071), + [aux_sym__val_number_decimal_token4] = ACTIONS(3071), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1952), }, [STATE(1184)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1184), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [ts_builtin_sym_end] = ACTIONS(2306), + [anon_sym_in] = ACTIONS(2306), + [sym__newline] = ACTIONS(2306), + [anon_sym_SEMI] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_err_GT_PIPE] = ACTIONS(2306), + [anon_sym_out_GT_PIPE] = ACTIONS(2306), + [anon_sym_e_GT_PIPE] = ACTIONS(2306), + [anon_sym_o_GT_PIPE] = ACTIONS(2306), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2306), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2306), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2306), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2306), + [anon_sym_GT2] = ACTIONS(2308), + [anon_sym_DASH2] = ACTIONS(2306), + [anon_sym_STAR2] = ACTIONS(2308), + [anon_sym_and2] = ACTIONS(2306), + [anon_sym_xor2] = ACTIONS(2306), + [anon_sym_or2] = ACTIONS(2306), + [anon_sym_not_DASHin2] = ACTIONS(2306), + [anon_sym_has2] = ACTIONS(2306), + [anon_sym_not_DASHhas2] = ACTIONS(2306), + [anon_sym_starts_DASHwith2] = ACTIONS(2306), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2306), + [anon_sym_ends_DASHwith2] = ACTIONS(2306), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2306), + [anon_sym_EQ_EQ2] = ACTIONS(2306), + [anon_sym_BANG_EQ2] = ACTIONS(2306), + [anon_sym_LT2] = ACTIONS(2308), + [anon_sym_LT_EQ2] = ACTIONS(2306), + [anon_sym_GT_EQ2] = ACTIONS(2306), + [anon_sym_EQ_TILDE2] = ACTIONS(2306), + [anon_sym_BANG_TILDE2] = ACTIONS(2306), + [anon_sym_like2] = ACTIONS(2306), + [anon_sym_not_DASHlike2] = ACTIONS(2306), + [anon_sym_LPAREN2] = ACTIONS(2306), + [anon_sym_STAR_STAR2] = ACTIONS(2306), + [anon_sym_PLUS_PLUS2] = ACTIONS(2306), + [anon_sym_SLASH2] = ACTIONS(2308), + [anon_sym_mod2] = ACTIONS(2306), + [anon_sym_SLASH_SLASH2] = ACTIONS(2306), + [anon_sym_PLUS2] = ACTIONS(2308), + [anon_sym_bit_DASHshl2] = ACTIONS(2306), + [anon_sym_bit_DASHshr2] = ACTIONS(2306), + [anon_sym_bit_DASHand2] = ACTIONS(2306), + [anon_sym_bit_DASHxor2] = ACTIONS(2306), + [anon_sym_bit_DASHor2] = ACTIONS(2306), + [anon_sym_err_GT] = ACTIONS(2308), + [anon_sym_out_GT] = ACTIONS(2308), + [anon_sym_e_GT] = ACTIONS(2308), + [anon_sym_o_GT] = ACTIONS(2308), + [anon_sym_err_PLUSout_GT] = ACTIONS(2308), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2308), + [anon_sym_o_PLUSe_GT] = ACTIONS(2308), + [anon_sym_e_PLUSo_GT] = ACTIONS(2308), + [anon_sym_err_GT_GT] = ACTIONS(2306), + [anon_sym_out_GT_GT] = ACTIONS(2306), + [anon_sym_e_GT_GT] = ACTIONS(2306), + [anon_sym_o_GT_GT] = ACTIONS(2306), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2306), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2306), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2306), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2306), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1185)] = { - [aux_sym__repeat_newline] = STATE(1179), + [aux_sym__repeat_newline] = STATE(1237), [sym_comment] = STATE(1185), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_err_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_GT_PIPE] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2950), + [anon_sym_xor2] = ACTIONS(2950), + [anon_sym_or2] = ACTIONS(2950), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2988), + [anon_sym_err_GT] = ACTIONS(2952), + [anon_sym_out_GT] = ACTIONS(2952), + [anon_sym_e_GT] = ACTIONS(2952), + [anon_sym_o_GT] = ACTIONS(2952), + [anon_sym_err_PLUSout_GT] = ACTIONS(2952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2952), + [anon_sym_o_PLUSe_GT] = ACTIONS(2952), + [anon_sym_e_PLUSo_GT] = ACTIONS(2952), + [anon_sym_err_GT_GT] = ACTIONS(2950), + [anon_sym_out_GT_GT] = ACTIONS(2950), + [anon_sym_e_GT_GT] = ACTIONS(2950), + [anon_sym_o_GT_GT] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1186)] = { - [aux_sym__repeat_newline] = STATE(1227), + [aux_sym__repeat_newline] = STATE(1239), [sym_comment] = STATE(1186), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_err_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_GT_PIPE] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(3014), + [anon_sym_xor2] = ACTIONS(2950), + [anon_sym_or2] = ACTIONS(2950), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2988), + [anon_sym_err_GT] = ACTIONS(2952), + [anon_sym_out_GT] = ACTIONS(2952), + [anon_sym_e_GT] = ACTIONS(2952), + [anon_sym_o_GT] = ACTIONS(2952), + [anon_sym_err_PLUSout_GT] = ACTIONS(2952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2952), + [anon_sym_o_PLUSe_GT] = ACTIONS(2952), + [anon_sym_e_PLUSo_GT] = ACTIONS(2952), + [anon_sym_err_GT_GT] = ACTIONS(2950), + [anon_sym_out_GT_GT] = ACTIONS(2950), + [anon_sym_e_GT_GT] = ACTIONS(2950), + [anon_sym_o_GT_GT] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1187)] = { - [aux_sym__repeat_newline] = STATE(1209), + [aux_sym__repeat_newline] = STATE(1167), [sym_comment] = STATE(1187), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_err_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_GT_PIPE] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2820), + [anon_sym_xor2] = ACTIONS(2820), + [anon_sym_or2] = ACTIONS(2820), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2820), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2822), + [anon_sym_out_GT] = ACTIONS(2822), + [anon_sym_e_GT] = ACTIONS(2822), + [anon_sym_o_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT] = ACTIONS(2822), + [anon_sym_err_GT_GT] = ACTIONS(2820), + [anon_sym_out_GT_GT] = ACTIONS(2820), + [anon_sym_e_GT_GT] = ACTIONS(2820), + [anon_sym_o_GT_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2820), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1188)] = { - [aux_sym__repeat_newline] = STATE(1246), + [aux_sym__repeat_newline] = STATE(1241), [sym_comment] = STATE(1188), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_err_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_GT_PIPE] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(3014), + [anon_sym_xor2] = ACTIONS(3020), + [anon_sym_or2] = ACTIONS(2950), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2988), + [anon_sym_err_GT] = ACTIONS(2952), + [anon_sym_out_GT] = ACTIONS(2952), + [anon_sym_e_GT] = ACTIONS(2952), + [anon_sym_o_GT] = ACTIONS(2952), + [anon_sym_err_PLUSout_GT] = ACTIONS(2952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2952), + [anon_sym_o_PLUSe_GT] = ACTIONS(2952), + [anon_sym_e_PLUSo_GT] = ACTIONS(2952), + [anon_sym_err_GT_GT] = ACTIONS(2950), + [anon_sym_out_GT_GT] = ACTIONS(2950), + [anon_sym_e_GT_GT] = ACTIONS(2950), + [anon_sym_o_GT_GT] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1189)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1189), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2723), + [sym__newline] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_err_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_GT_PIPE] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_GT2] = ACTIONS(3077), + [anon_sym_DASH2] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR2] = ACTIONS(3081), + [anon_sym_and2] = ACTIONS(2723), + [anon_sym_xor2] = ACTIONS(2723), + [anon_sym_or2] = ACTIONS(2723), + [anon_sym_not_DASHin2] = ACTIONS(2723), + [anon_sym_has2] = ACTIONS(2723), + [anon_sym_not_DASHhas2] = ACTIONS(2723), + [anon_sym_starts_DASHwith2] = ACTIONS(2723), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2723), + [anon_sym_ends_DASHwith2] = ACTIONS(2723), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2723), + [anon_sym_EQ_EQ2] = ACTIONS(3083), + [anon_sym_BANG_EQ2] = ACTIONS(3083), + [anon_sym_LT2] = ACTIONS(3077), + [anon_sym_LT_EQ2] = ACTIONS(3083), + [anon_sym_GT_EQ2] = ACTIONS(3083), + [anon_sym_EQ_TILDE2] = ACTIONS(2723), + [anon_sym_BANG_TILDE2] = ACTIONS(2723), + [anon_sym_like2] = ACTIONS(2723), + [anon_sym_not_DASHlike2] = ACTIONS(2723), + [anon_sym_STAR_STAR2] = ACTIONS(3085), + [anon_sym_PLUS_PLUS2] = ACTIONS(3085), + [anon_sym_SLASH2] = ACTIONS(3081), + [anon_sym_mod2] = ACTIONS(3087), + [anon_sym_SLASH_SLASH2] = ACTIONS(3087), + [anon_sym_PLUS2] = ACTIONS(3089), + [anon_sym_bit_DASHshl2] = ACTIONS(3091), + [anon_sym_bit_DASHshr2] = ACTIONS(3091), + [anon_sym_bit_DASHand2] = ACTIONS(2723), + [anon_sym_bit_DASHxor2] = ACTIONS(2723), + [anon_sym_bit_DASHor2] = ACTIONS(2723), + [anon_sym_err_GT] = ACTIONS(2725), + [anon_sym_out_GT] = ACTIONS(2725), + [anon_sym_e_GT] = ACTIONS(2725), + [anon_sym_o_GT] = ACTIONS(2725), + [anon_sym_err_PLUSout_GT] = ACTIONS(2725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2725), + [anon_sym_o_PLUSe_GT] = ACTIONS(2725), + [anon_sym_e_PLUSo_GT] = ACTIONS(2725), + [anon_sym_err_GT_GT] = ACTIONS(2723), + [anon_sym_out_GT_GT] = ACTIONS(2723), + [anon_sym_e_GT_GT] = ACTIONS(2723), + [anon_sym_o_GT_GT] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2723), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1190)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1190), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2723), + [sym__newline] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_err_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_GT_PIPE] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_GT2] = ACTIONS(2725), + [anon_sym_DASH2] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR2] = ACTIONS(3081), + [anon_sym_and2] = ACTIONS(2723), + [anon_sym_xor2] = ACTIONS(2723), + [anon_sym_or2] = ACTIONS(2723), + [anon_sym_not_DASHin2] = ACTIONS(2723), + [anon_sym_has2] = ACTIONS(2723), + [anon_sym_not_DASHhas2] = ACTIONS(2723), + [anon_sym_starts_DASHwith2] = ACTIONS(2723), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2723), + [anon_sym_ends_DASHwith2] = ACTIONS(2723), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2723), + [anon_sym_EQ_EQ2] = ACTIONS(2723), + [anon_sym_BANG_EQ2] = ACTIONS(2723), + [anon_sym_LT2] = ACTIONS(2725), + [anon_sym_LT_EQ2] = ACTIONS(2723), + [anon_sym_GT_EQ2] = ACTIONS(2723), + [anon_sym_EQ_TILDE2] = ACTIONS(2723), + [anon_sym_BANG_TILDE2] = ACTIONS(2723), + [anon_sym_like2] = ACTIONS(2723), + [anon_sym_not_DASHlike2] = ACTIONS(2723), + [anon_sym_STAR_STAR2] = ACTIONS(3085), + [anon_sym_PLUS_PLUS2] = ACTIONS(3085), + [anon_sym_SLASH2] = ACTIONS(3081), + [anon_sym_mod2] = ACTIONS(3087), + [anon_sym_SLASH_SLASH2] = ACTIONS(3087), + [anon_sym_PLUS2] = ACTIONS(3089), + [anon_sym_bit_DASHshl2] = ACTIONS(3091), + [anon_sym_bit_DASHshr2] = ACTIONS(3091), + [anon_sym_bit_DASHand2] = ACTIONS(2723), + [anon_sym_bit_DASHxor2] = ACTIONS(2723), + [anon_sym_bit_DASHor2] = ACTIONS(2723), + [anon_sym_err_GT] = ACTIONS(2725), + [anon_sym_out_GT] = ACTIONS(2725), + [anon_sym_e_GT] = ACTIONS(2725), + [anon_sym_o_GT] = ACTIONS(2725), + [anon_sym_err_PLUSout_GT] = ACTIONS(2725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2725), + [anon_sym_o_PLUSe_GT] = ACTIONS(2725), + [anon_sym_e_PLUSo_GT] = ACTIONS(2725), + [anon_sym_err_GT_GT] = ACTIONS(2723), + [anon_sym_out_GT_GT] = ACTIONS(2723), + [anon_sym_e_GT_GT] = ACTIONS(2723), + [anon_sym_o_GT_GT] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2723), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1191)] = { - [aux_sym__repeat_newline] = STATE(1229), + [aux_sym__repeat_newline] = STATE(1243), [sym_comment] = STATE(1191), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_err_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_GT_PIPE] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2950), + [anon_sym_xor2] = ACTIONS(2950), + [anon_sym_or2] = ACTIONS(2950), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2950), + [anon_sym_BANG_TILDE2] = ACTIONS(2950), + [anon_sym_like2] = ACTIONS(2950), + [anon_sym_not_DASHlike2] = ACTIONS(2950), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2950), + [anon_sym_bit_DASHxor2] = ACTIONS(2950), + [anon_sym_bit_DASHor2] = ACTIONS(2950), + [anon_sym_err_GT] = ACTIONS(2952), + [anon_sym_out_GT] = ACTIONS(2952), + [anon_sym_e_GT] = ACTIONS(2952), + [anon_sym_o_GT] = ACTIONS(2952), + [anon_sym_err_PLUSout_GT] = ACTIONS(2952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2952), + [anon_sym_o_PLUSe_GT] = ACTIONS(2952), + [anon_sym_e_PLUSo_GT] = ACTIONS(2952), + [anon_sym_err_GT_GT] = ACTIONS(2950), + [anon_sym_out_GT_GT] = ACTIONS(2950), + [anon_sym_e_GT_GT] = ACTIONS(2950), + [anon_sym_o_GT_GT] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1192)] = { - [aux_sym__repeat_newline] = STATE(1184), + [aux_sym__repeat_newline] = STATE(1169), [sym_comment] = STATE(1192), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_err_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_GT_PIPE] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2820), + [anon_sym_xor2] = ACTIONS(2820), + [anon_sym_or2] = ACTIONS(2820), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2822), + [anon_sym_out_GT] = ACTIONS(2822), + [anon_sym_e_GT] = ACTIONS(2822), + [anon_sym_o_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT] = ACTIONS(2822), + [anon_sym_err_GT_GT] = ACTIONS(2820), + [anon_sym_out_GT_GT] = ACTIONS(2820), + [anon_sym_e_GT_GT] = ACTIONS(2820), + [anon_sym_o_GT_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2820), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1193)] = { - [aux_sym__repeat_newline] = STATE(1215), [sym_comment] = STATE(1193), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2723), + [sym__newline] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_err_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_GT_PIPE] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_GT2] = ACTIONS(2725), + [anon_sym_DASH2] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR2] = ACTIONS(3081), + [anon_sym_and2] = ACTIONS(2723), + [anon_sym_xor2] = ACTIONS(2723), + [anon_sym_or2] = ACTIONS(2723), + [anon_sym_not_DASHin2] = ACTIONS(2723), + [anon_sym_has2] = ACTIONS(2723), + [anon_sym_not_DASHhas2] = ACTIONS(2723), + [anon_sym_starts_DASHwith2] = ACTIONS(2723), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2723), + [anon_sym_ends_DASHwith2] = ACTIONS(2723), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2723), + [anon_sym_EQ_EQ2] = ACTIONS(2723), + [anon_sym_BANG_EQ2] = ACTIONS(2723), + [anon_sym_LT2] = ACTIONS(2725), + [anon_sym_LT_EQ2] = ACTIONS(2723), + [anon_sym_GT_EQ2] = ACTIONS(2723), + [anon_sym_EQ_TILDE2] = ACTIONS(2723), + [anon_sym_BANG_TILDE2] = ACTIONS(2723), + [anon_sym_like2] = ACTIONS(2723), + [anon_sym_not_DASHlike2] = ACTIONS(2723), + [anon_sym_STAR_STAR2] = ACTIONS(3085), + [anon_sym_PLUS_PLUS2] = ACTIONS(3085), + [anon_sym_SLASH2] = ACTIONS(3081), + [anon_sym_mod2] = ACTIONS(3087), + [anon_sym_SLASH_SLASH2] = ACTIONS(3087), + [anon_sym_PLUS2] = ACTIONS(2725), + [anon_sym_bit_DASHshl2] = ACTIONS(2723), + [anon_sym_bit_DASHshr2] = ACTIONS(2723), + [anon_sym_bit_DASHand2] = ACTIONS(2723), + [anon_sym_bit_DASHxor2] = ACTIONS(2723), + [anon_sym_bit_DASHor2] = ACTIONS(2723), + [anon_sym_err_GT] = ACTIONS(2725), + [anon_sym_out_GT] = ACTIONS(2725), + [anon_sym_e_GT] = ACTIONS(2725), + [anon_sym_o_GT] = ACTIONS(2725), + [anon_sym_err_PLUSout_GT] = ACTIONS(2725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2725), + [anon_sym_o_PLUSe_GT] = ACTIONS(2725), + [anon_sym_e_PLUSo_GT] = ACTIONS(2725), + [anon_sym_err_GT_GT] = ACTIONS(2723), + [anon_sym_out_GT_GT] = ACTIONS(2723), + [anon_sym_e_GT_GT] = ACTIONS(2723), + [anon_sym_o_GT_GT] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2723), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1194)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1194), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2723), + [sym__newline] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_err_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_GT_PIPE] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_GT2] = ACTIONS(2725), + [anon_sym_DASH2] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR2] = ACTIONS(2725), + [anon_sym_and2] = ACTIONS(2723), + [anon_sym_xor2] = ACTIONS(2723), + [anon_sym_or2] = ACTIONS(2723), + [anon_sym_not_DASHin2] = ACTIONS(2723), + [anon_sym_has2] = ACTIONS(2723), + [anon_sym_not_DASHhas2] = ACTIONS(2723), + [anon_sym_starts_DASHwith2] = ACTIONS(2723), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2723), + [anon_sym_ends_DASHwith2] = ACTIONS(2723), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2723), + [anon_sym_EQ_EQ2] = ACTIONS(2723), + [anon_sym_BANG_EQ2] = ACTIONS(2723), + [anon_sym_LT2] = ACTIONS(2725), + [anon_sym_LT_EQ2] = ACTIONS(2723), + [anon_sym_GT_EQ2] = ACTIONS(2723), + [anon_sym_EQ_TILDE2] = ACTIONS(2723), + [anon_sym_BANG_TILDE2] = ACTIONS(2723), + [anon_sym_like2] = ACTIONS(2723), + [anon_sym_not_DASHlike2] = ACTIONS(2723), + [anon_sym_STAR_STAR2] = ACTIONS(3085), + [anon_sym_PLUS_PLUS2] = ACTIONS(3085), + [anon_sym_SLASH2] = ACTIONS(2725), + [anon_sym_mod2] = ACTIONS(2723), + [anon_sym_SLASH_SLASH2] = ACTIONS(2723), + [anon_sym_PLUS2] = ACTIONS(2725), + [anon_sym_bit_DASHshl2] = ACTIONS(2723), + [anon_sym_bit_DASHshr2] = ACTIONS(2723), + [anon_sym_bit_DASHand2] = ACTIONS(2723), + [anon_sym_bit_DASHxor2] = ACTIONS(2723), + [anon_sym_bit_DASHor2] = ACTIONS(2723), + [anon_sym_err_GT] = ACTIONS(2725), + [anon_sym_out_GT] = ACTIONS(2725), + [anon_sym_e_GT] = ACTIONS(2725), + [anon_sym_o_GT] = ACTIONS(2725), + [anon_sym_err_PLUSout_GT] = ACTIONS(2725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2725), + [anon_sym_o_PLUSe_GT] = ACTIONS(2725), + [anon_sym_e_PLUSo_GT] = ACTIONS(2725), + [anon_sym_err_GT_GT] = ACTIONS(2723), + [anon_sym_out_GT_GT] = ACTIONS(2723), + [anon_sym_e_GT_GT] = ACTIONS(2723), + [anon_sym_o_GT_GT] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2723), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1195)] = { - [aux_sym__repeat_newline] = STATE(1189), + [aux_sym__repeat_newline] = STATE(1245), [sym_comment] = STATE(1195), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2950), + [sym__newline] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_err_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_GT_PIPE] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_GT2] = ACTIONS(2952), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2950), + [anon_sym_xor2] = ACTIONS(2950), + [anon_sym_or2] = ACTIONS(2950), + [anon_sym_not_DASHin2] = ACTIONS(2950), + [anon_sym_has2] = ACTIONS(2950), + [anon_sym_not_DASHhas2] = ACTIONS(2950), + [anon_sym_starts_DASHwith2] = ACTIONS(2950), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2950), + [anon_sym_ends_DASHwith2] = ACTIONS(2950), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2950), + [anon_sym_EQ_EQ2] = ACTIONS(2950), + [anon_sym_BANG_EQ2] = ACTIONS(2950), + [anon_sym_LT2] = ACTIONS(2952), + [anon_sym_LT_EQ2] = ACTIONS(2950), + [anon_sym_GT_EQ2] = ACTIONS(2950), + [anon_sym_EQ_TILDE2] = ACTIONS(2950), + [anon_sym_BANG_TILDE2] = ACTIONS(2950), + [anon_sym_like2] = ACTIONS(2950), + [anon_sym_not_DASHlike2] = ACTIONS(2950), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2950), + [anon_sym_bit_DASHshr2] = ACTIONS(2950), + [anon_sym_bit_DASHand2] = ACTIONS(2950), + [anon_sym_bit_DASHxor2] = ACTIONS(2950), + [anon_sym_bit_DASHor2] = ACTIONS(2950), + [anon_sym_err_GT] = ACTIONS(2952), + [anon_sym_out_GT] = ACTIONS(2952), + [anon_sym_e_GT] = ACTIONS(2952), + [anon_sym_o_GT] = ACTIONS(2952), + [anon_sym_err_PLUSout_GT] = ACTIONS(2952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2952), + [anon_sym_o_PLUSe_GT] = ACTIONS(2952), + [anon_sym_e_PLUSo_GT] = ACTIONS(2952), + [anon_sym_err_GT_GT] = ACTIONS(2950), + [anon_sym_out_GT_GT] = ACTIONS(2950), + [anon_sym_e_GT_GT] = ACTIONS(2950), + [anon_sym_o_GT_GT] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1196)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1248), [sym_comment] = STATE(1196), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_err_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_GT_PIPE] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2950), + [anon_sym_xor2] = ACTIONS(2950), + [anon_sym_or2] = ACTIONS(2950), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2950), + [anon_sym_bit_DASHxor2] = ACTIONS(2950), + [anon_sym_bit_DASHor2] = ACTIONS(2950), + [anon_sym_err_GT] = ACTIONS(2952), + [anon_sym_out_GT] = ACTIONS(2952), + [anon_sym_e_GT] = ACTIONS(2952), + [anon_sym_o_GT] = ACTIONS(2952), + [anon_sym_err_PLUSout_GT] = ACTIONS(2952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2952), + [anon_sym_o_PLUSe_GT] = ACTIONS(2952), + [anon_sym_e_PLUSo_GT] = ACTIONS(2952), + [anon_sym_err_GT_GT] = ACTIONS(2950), + [anon_sym_out_GT_GT] = ACTIONS(2950), + [anon_sym_e_GT_GT] = ACTIONS(2950), + [anon_sym_o_GT_GT] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1197)] = { - [aux_sym__repeat_newline] = STATE(1228), + [aux_sym__repeat_newline] = STATE(1250), [sym_comment] = STATE(1197), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_err_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_GT_PIPE] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2950), + [anon_sym_xor2] = ACTIONS(2950), + [anon_sym_or2] = ACTIONS(2950), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2950), + [anon_sym_bit_DASHor2] = ACTIONS(2950), + [anon_sym_err_GT] = ACTIONS(2952), + [anon_sym_out_GT] = ACTIONS(2952), + [anon_sym_e_GT] = ACTIONS(2952), + [anon_sym_o_GT] = ACTIONS(2952), + [anon_sym_err_PLUSout_GT] = ACTIONS(2952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2952), + [anon_sym_o_PLUSe_GT] = ACTIONS(2952), + [anon_sym_e_PLUSo_GT] = ACTIONS(2952), + [anon_sym_err_GT_GT] = ACTIONS(2950), + [anon_sym_out_GT_GT] = ACTIONS(2950), + [anon_sym_e_GT_GT] = ACTIONS(2950), + [anon_sym_o_GT_GT] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1198)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__ctrl_match_body] = STATE(5152), + [sym_match_arm] = STATE(4570), + [sym_default_arm] = STATE(4570), + [sym_match_pattern] = STATE(5188), + [sym__match_pattern] = STATE(3992), + [sym__match_pattern_expression] = STATE(4370), + [sym__match_pattern_value] = STATE(4403), + [sym__match_pattern_list] = STATE(4404), + [sym__match_pattern_record] = STATE(4405), + [sym_expr_parenthesized] = STATE(3905), + [sym_val_range] = STATE(4403), + [sym__val_range] = STATE(5208), + [sym_val_nothing] = STATE(4405), + [sym_val_bool] = STATE(4173), + [sym_val_variable] = STATE(3917), + [sym_val_number] = STATE(4405), + [sym__val_number_decimal] = STATE(3676), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(4405), + [sym_val_filesize] = STATE(4405), + [sym_val_binary] = STATE(4405), + [sym_val_string] = STATE(4405), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_table] = STATE(4405), + [sym_unquoted] = STATE(4457), + [sym__unquoted_anonymous_prefix] = STATE(5208), [sym_comment] = STATE(1198), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [aux_sym__types_body_repeat1] = STATE(1378), + [aux_sym__ctrl_match_body_repeat1] = STATE(1428), + [anon_sym_true] = ACTIONS(3045), + [anon_sym_false] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3047), + [aux_sym_cmd_identifier_token3] = ACTIONS(3049), + [aux_sym_cmd_identifier_token4] = ACTIONS(3049), + [aux_sym_cmd_identifier_token5] = ACTIONS(3049), + [sym__newline] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_DOLLAR] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_RBRACE] = ACTIONS(3093), + [anon_sym__] = ACTIONS(3061), + [anon_sym_DOT_DOT] = ACTIONS(3063), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3065), + [anon_sym_DOT_DOT_LT] = ACTIONS(3065), + [aux_sym__val_number_decimal_token1] = ACTIONS(3067), + [aux_sym__val_number_decimal_token2] = ACTIONS(3069), + [aux_sym__val_number_decimal_token3] = ACTIONS(3071), + [aux_sym__val_number_decimal_token4] = ACTIONS(3071), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1952), }, [STATE(1199)] = { - [aux_sym__repeat_newline] = STATE(1194), + [sym__ctrl_match_body] = STATE(5039), + [sym_match_arm] = STATE(4570), + [sym_default_arm] = STATE(4570), + [sym_match_pattern] = STATE(5188), + [sym__match_pattern] = STATE(3992), + [sym__match_pattern_expression] = STATE(4370), + [sym__match_pattern_value] = STATE(4403), + [sym__match_pattern_list] = STATE(4404), + [sym__match_pattern_record] = STATE(4405), + [sym_expr_parenthesized] = STATE(3905), + [sym_val_range] = STATE(4403), + [sym__val_range] = STATE(5208), + [sym_val_nothing] = STATE(4405), + [sym_val_bool] = STATE(4173), + [sym_val_variable] = STATE(3917), + [sym_val_number] = STATE(4405), + [sym__val_number_decimal] = STATE(3676), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(4405), + [sym_val_filesize] = STATE(4405), + [sym_val_binary] = STATE(4405), + [sym_val_string] = STATE(4405), + [sym__raw_str] = STATE(2465), + [sym__str_double_quotes] = STATE(2465), + [sym__str_single_quotes] = STATE(2465), + [sym__str_back_ticks] = STATE(2465), + [sym_val_table] = STATE(4405), + [sym_unquoted] = STATE(4457), + [sym__unquoted_anonymous_prefix] = STATE(5208), [sym_comment] = STATE(1199), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [aux_sym__types_body_repeat1] = STATE(1378), + [aux_sym__ctrl_match_body_repeat1] = STATE(1428), + [anon_sym_true] = ACTIONS(3045), + [anon_sym_false] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3047), + [aux_sym_cmd_identifier_token3] = ACTIONS(3049), + [aux_sym_cmd_identifier_token4] = ACTIONS(3049), + [aux_sym_cmd_identifier_token5] = ACTIONS(3049), + [sym__newline] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_DOLLAR] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_RBRACE] = ACTIONS(3095), + [anon_sym__] = ACTIONS(3061), + [anon_sym_DOT_DOT] = ACTIONS(3063), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3065), + [anon_sym_DOT_DOT_LT] = ACTIONS(3065), + [aux_sym__val_number_decimal_token1] = ACTIONS(3067), + [aux_sym__val_number_decimal_token2] = ACTIONS(3069), + [aux_sym__val_number_decimal_token3] = ACTIONS(3071), + [aux_sym__val_number_decimal_token4] = ACTIONS(3071), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_BQUOTE] = ACTIONS(1950), + [aux_sym_unquoted_token1] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1952), }, [STATE(1200)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1252), [sym_comment] = STATE(1200), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_err_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_GT_PIPE] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2950), + [anon_sym_xor2] = ACTIONS(2950), + [anon_sym_or2] = ACTIONS(2950), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2950), + [anon_sym_err_GT] = ACTIONS(2952), + [anon_sym_out_GT] = ACTIONS(2952), + [anon_sym_e_GT] = ACTIONS(2952), + [anon_sym_o_GT] = ACTIONS(2952), + [anon_sym_err_PLUSout_GT] = ACTIONS(2952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2952), + [anon_sym_o_PLUSe_GT] = ACTIONS(2952), + [anon_sym_e_PLUSo_GT] = ACTIONS(2952), + [anon_sym_err_GT_GT] = ACTIONS(2950), + [anon_sym_out_GT_GT] = ACTIONS(2950), + [anon_sym_e_GT_GT] = ACTIONS(2950), + [anon_sym_o_GT_GT] = ACTIONS(2950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1201)] = { - [aux_sym__repeat_newline] = STATE(1248), [sym_comment] = STATE(1201), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(3097), + [sym__newline] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_err_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_GT_PIPE] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_GT2] = ACTIONS(3077), + [anon_sym_DASH2] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR2] = ACTIONS(3081), + [anon_sym_and2] = ACTIONS(2723), + [anon_sym_xor2] = ACTIONS(2723), + [anon_sym_or2] = ACTIONS(2723), + [anon_sym_not_DASHin2] = ACTIONS(3097), + [anon_sym_has2] = ACTIONS(3097), + [anon_sym_not_DASHhas2] = ACTIONS(3097), + [anon_sym_starts_DASHwith2] = ACTIONS(3097), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(3097), + [anon_sym_ends_DASHwith2] = ACTIONS(3097), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(3097), + [anon_sym_EQ_EQ2] = ACTIONS(3083), + [anon_sym_BANG_EQ2] = ACTIONS(3083), + [anon_sym_LT2] = ACTIONS(3077), + [anon_sym_LT_EQ2] = ACTIONS(3083), + [anon_sym_GT_EQ2] = ACTIONS(3083), + [anon_sym_EQ_TILDE2] = ACTIONS(3099), + [anon_sym_BANG_TILDE2] = ACTIONS(3099), + [anon_sym_like2] = ACTIONS(3099), + [anon_sym_not_DASHlike2] = ACTIONS(3099), + [anon_sym_STAR_STAR2] = ACTIONS(3085), + [anon_sym_PLUS_PLUS2] = ACTIONS(3085), + [anon_sym_SLASH2] = ACTIONS(3081), + [anon_sym_mod2] = ACTIONS(3087), + [anon_sym_SLASH_SLASH2] = ACTIONS(3087), + [anon_sym_PLUS2] = ACTIONS(3089), + [anon_sym_bit_DASHshl2] = ACTIONS(3091), + [anon_sym_bit_DASHshr2] = ACTIONS(3091), + [anon_sym_bit_DASHand2] = ACTIONS(3101), + [anon_sym_bit_DASHxor2] = ACTIONS(3103), + [anon_sym_bit_DASHor2] = ACTIONS(3105), + [anon_sym_err_GT] = ACTIONS(2725), + [anon_sym_out_GT] = ACTIONS(2725), + [anon_sym_e_GT] = ACTIONS(2725), + [anon_sym_o_GT] = ACTIONS(2725), + [anon_sym_err_PLUSout_GT] = ACTIONS(2725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2725), + [anon_sym_o_PLUSe_GT] = ACTIONS(2725), + [anon_sym_e_PLUSo_GT] = ACTIONS(2725), + [anon_sym_err_GT_GT] = ACTIONS(2723), + [anon_sym_out_GT_GT] = ACTIONS(2723), + [anon_sym_e_GT_GT] = ACTIONS(2723), + [anon_sym_o_GT_GT] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2723), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1202)] = { [sym_comment] = STATE(1202), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_err_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_GT_PIPE] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2287), - [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_err_GT] = ACTIONS(2289), - [anon_sym_out_GT] = ACTIONS(2289), - [anon_sym_e_GT] = ACTIONS(2289), - [anon_sym_o_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT] = ACTIONS(2289), - [anon_sym_err_GT_GT] = ACTIONS(2287), - [anon_sym_out_GT_GT] = ACTIONS(2287), - [anon_sym_e_GT_GT] = ACTIONS(2287), - [anon_sym_o_GT_GT] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2287), + [anon_sym_in] = ACTIONS(2436), + [sym__newline] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_err_GT_PIPE] = ACTIONS(2580), + [anon_sym_out_GT_PIPE] = ACTIONS(2580), + [anon_sym_e_GT_PIPE] = ACTIONS(2580), + [anon_sym_o_GT_PIPE] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2580), + [anon_sym_RPAREN] = ACTIONS(2580), + [anon_sym_GT2] = ACTIONS(2438), + [anon_sym_DASH2] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_STAR2] = ACTIONS(2438), + [anon_sym_and2] = ACTIONS(2436), + [anon_sym_xor2] = ACTIONS(2436), + [anon_sym_or2] = ACTIONS(2436), + [anon_sym_not_DASHin2] = ACTIONS(2436), + [anon_sym_has2] = ACTIONS(2436), + [anon_sym_not_DASHhas2] = ACTIONS(2436), + [anon_sym_starts_DASHwith2] = ACTIONS(2436), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2436), + [anon_sym_ends_DASHwith2] = ACTIONS(2436), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2436), + [anon_sym_EQ_EQ2] = ACTIONS(2436), + [anon_sym_BANG_EQ2] = ACTIONS(2436), + [anon_sym_LT2] = ACTIONS(2438), + [anon_sym_LT_EQ2] = ACTIONS(2436), + [anon_sym_GT_EQ2] = ACTIONS(2436), + [anon_sym_EQ_TILDE2] = ACTIONS(2436), + [anon_sym_BANG_TILDE2] = ACTIONS(2436), + [anon_sym_like2] = ACTIONS(2436), + [anon_sym_not_DASHlike2] = ACTIONS(2436), + [anon_sym_STAR_STAR2] = ACTIONS(2436), + [anon_sym_PLUS_PLUS2] = ACTIONS(2436), + [anon_sym_SLASH2] = ACTIONS(2438), + [anon_sym_mod2] = ACTIONS(2436), + [anon_sym_SLASH_SLASH2] = ACTIONS(2436), + [anon_sym_PLUS2] = ACTIONS(2438), + [anon_sym_bit_DASHshl2] = ACTIONS(2436), + [anon_sym_bit_DASHshr2] = ACTIONS(2436), + [anon_sym_bit_DASHand2] = ACTIONS(2436), + [anon_sym_bit_DASHxor2] = ACTIONS(2436), + [anon_sym_bit_DASHor2] = ACTIONS(2436), + [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(2580), + [anon_sym_out_GT_GT] = ACTIONS(2580), + [anon_sym_e_GT_GT] = ACTIONS(2580), + [anon_sym_o_GT_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2580), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1203)] = { [sym_comment] = STATE(1203), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2535), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2535), - [anon_sym_mod2] = ACTIONS(2533), - [anon_sym_SLASH_SLASH2] = ACTIONS(2533), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(3097), + [sym__newline] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_err_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_GT_PIPE] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_GT2] = ACTIONS(3077), + [anon_sym_DASH2] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR2] = ACTIONS(3081), + [anon_sym_and2] = ACTIONS(3107), + [anon_sym_xor2] = ACTIONS(2723), + [anon_sym_or2] = ACTIONS(2723), + [anon_sym_not_DASHin2] = ACTIONS(3097), + [anon_sym_has2] = ACTIONS(3097), + [anon_sym_not_DASHhas2] = ACTIONS(3097), + [anon_sym_starts_DASHwith2] = ACTIONS(3097), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(3097), + [anon_sym_ends_DASHwith2] = ACTIONS(3097), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(3097), + [anon_sym_EQ_EQ2] = ACTIONS(3083), + [anon_sym_BANG_EQ2] = ACTIONS(3083), + [anon_sym_LT2] = ACTIONS(3077), + [anon_sym_LT_EQ2] = ACTIONS(3083), + [anon_sym_GT_EQ2] = ACTIONS(3083), + [anon_sym_EQ_TILDE2] = ACTIONS(3099), + [anon_sym_BANG_TILDE2] = ACTIONS(3099), + [anon_sym_like2] = ACTIONS(3099), + [anon_sym_not_DASHlike2] = ACTIONS(3099), + [anon_sym_STAR_STAR2] = ACTIONS(3085), + [anon_sym_PLUS_PLUS2] = ACTIONS(3085), + [anon_sym_SLASH2] = ACTIONS(3081), + [anon_sym_mod2] = ACTIONS(3087), + [anon_sym_SLASH_SLASH2] = ACTIONS(3087), + [anon_sym_PLUS2] = ACTIONS(3089), + [anon_sym_bit_DASHshl2] = ACTIONS(3091), + [anon_sym_bit_DASHshr2] = ACTIONS(3091), + [anon_sym_bit_DASHand2] = ACTIONS(3101), + [anon_sym_bit_DASHxor2] = ACTIONS(3103), + [anon_sym_bit_DASHor2] = ACTIONS(3105), + [anon_sym_err_GT] = ACTIONS(2725), + [anon_sym_out_GT] = ACTIONS(2725), + [anon_sym_e_GT] = ACTIONS(2725), + [anon_sym_o_GT] = ACTIONS(2725), + [anon_sym_err_PLUSout_GT] = ACTIONS(2725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2725), + [anon_sym_o_PLUSe_GT] = ACTIONS(2725), + [anon_sym_e_PLUSo_GT] = ACTIONS(2725), + [anon_sym_err_GT_GT] = ACTIONS(2723), + [anon_sym_out_GT_GT] = ACTIONS(2723), + [anon_sym_e_GT_GT] = ACTIONS(2723), + [anon_sym_o_GT_GT] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2723), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1204)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1204), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2742), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2742), - [anon_sym_mod2] = ACTIONS(2740), - [anon_sym_SLASH_SLASH2] = ACTIONS(2740), - [anon_sym_PLUS2] = ACTIONS(2742), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2814), + [sym__newline] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_err_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_GT_PIPE] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2814), + [anon_sym_xor2] = ACTIONS(2814), + [anon_sym_or2] = ACTIONS(2814), + [anon_sym_not_DASHin2] = ACTIONS(2814), + [anon_sym_has2] = ACTIONS(2814), + [anon_sym_not_DASHhas2] = ACTIONS(2814), + [anon_sym_starts_DASHwith2] = ACTIONS(2814), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2814), + [anon_sym_ends_DASHwith2] = ACTIONS(2814), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2814), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(2814), + [anon_sym_BANG_TILDE2] = ACTIONS(2814), + [anon_sym_like2] = ACTIONS(2814), + [anon_sym_not_DASHlike2] = ACTIONS(2814), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2814), + [anon_sym_bit_DASHxor2] = ACTIONS(2814), + [anon_sym_bit_DASHor2] = ACTIONS(2814), + [anon_sym_err_GT] = ACTIONS(2816), + [anon_sym_out_GT] = ACTIONS(2816), + [anon_sym_e_GT] = ACTIONS(2816), + [anon_sym_o_GT] = ACTIONS(2816), + [anon_sym_err_PLUSout_GT] = ACTIONS(2816), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2816), + [anon_sym_o_PLUSe_GT] = ACTIONS(2816), + [anon_sym_e_PLUSo_GT] = ACTIONS(2816), + [anon_sym_err_GT_GT] = ACTIONS(2814), + [anon_sym_out_GT_GT] = ACTIONS(2814), + [anon_sym_e_GT_GT] = ACTIONS(2814), + [anon_sym_o_GT_GT] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1205)] = { + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1205), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1820), + [anon_sym_in] = ACTIONS(2814), + [sym__newline] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_err_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_GT_PIPE] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_GT2] = ACTIONS(2816), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2814), + [anon_sym_xor2] = ACTIONS(2814), + [anon_sym_or2] = ACTIONS(2814), + [anon_sym_not_DASHin2] = ACTIONS(2814), + [anon_sym_has2] = ACTIONS(2814), + [anon_sym_not_DASHhas2] = ACTIONS(2814), + [anon_sym_starts_DASHwith2] = ACTIONS(2814), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2814), + [anon_sym_ends_DASHwith2] = ACTIONS(2814), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2814), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2816), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2814), + [anon_sym_BANG_TILDE2] = ACTIONS(2814), + [anon_sym_like2] = ACTIONS(2814), + [anon_sym_not_DASHlike2] = ACTIONS(2814), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2814), + [anon_sym_bit_DASHxor2] = ACTIONS(2814), + [anon_sym_bit_DASHor2] = ACTIONS(2814), + [anon_sym_err_GT] = ACTIONS(2816), + [anon_sym_out_GT] = ACTIONS(2816), + [anon_sym_e_GT] = ACTIONS(2816), + [anon_sym_o_GT] = ACTIONS(2816), + [anon_sym_err_PLUSout_GT] = ACTIONS(2816), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2816), + [anon_sym_o_PLUSe_GT] = ACTIONS(2816), + [anon_sym_e_PLUSo_GT] = ACTIONS(2816), + [anon_sym_err_GT_GT] = ACTIONS(2814), + [anon_sym_out_GT_GT] = ACTIONS(2814), + [anon_sym_e_GT_GT] = ACTIONS(2814), + [anon_sym_o_GT_GT] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1206)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1206), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2814), + [sym__newline] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_err_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_GT_PIPE] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_GT2] = ACTIONS(2816), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2814), + [anon_sym_xor2] = ACTIONS(2814), + [anon_sym_or2] = ACTIONS(2814), + [anon_sym_not_DASHin2] = ACTIONS(2814), + [anon_sym_has2] = ACTIONS(2814), + [anon_sym_not_DASHhas2] = ACTIONS(2814), + [anon_sym_starts_DASHwith2] = ACTIONS(2814), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2814), + [anon_sym_ends_DASHwith2] = ACTIONS(2814), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2814), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2816), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2814), + [anon_sym_BANG_TILDE2] = ACTIONS(2814), + [anon_sym_like2] = ACTIONS(2814), + [anon_sym_not_DASHlike2] = ACTIONS(2814), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(2816), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2814), + [anon_sym_bit_DASHxor2] = ACTIONS(2814), + [anon_sym_bit_DASHor2] = ACTIONS(2814), + [anon_sym_err_GT] = ACTIONS(2816), + [anon_sym_out_GT] = ACTIONS(2816), + [anon_sym_e_GT] = ACTIONS(2816), + [anon_sym_o_GT] = ACTIONS(2816), + [anon_sym_err_PLUSout_GT] = ACTIONS(2816), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2816), + [anon_sym_o_PLUSe_GT] = ACTIONS(2816), + [anon_sym_e_PLUSo_GT] = ACTIONS(2816), + [anon_sym_err_GT_GT] = ACTIONS(2814), + [anon_sym_out_GT_GT] = ACTIONS(2814), + [anon_sym_e_GT_GT] = ACTIONS(2814), + [anon_sym_o_GT_GT] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1207)] = { + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1207), - [ts_builtin_sym_end] = ACTIONS(968), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2814), + [sym__newline] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_err_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_GT_PIPE] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_GT2] = ACTIONS(2816), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2814), + [anon_sym_xor2] = ACTIONS(2814), + [anon_sym_or2] = ACTIONS(2814), + [anon_sym_not_DASHin2] = ACTIONS(2814), + [anon_sym_has2] = ACTIONS(2814), + [anon_sym_not_DASHhas2] = ACTIONS(2814), + [anon_sym_starts_DASHwith2] = ACTIONS(2814), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2814), + [anon_sym_ends_DASHwith2] = ACTIONS(2814), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2814), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2816), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2814), + [anon_sym_BANG_TILDE2] = ACTIONS(2814), + [anon_sym_like2] = ACTIONS(2814), + [anon_sym_not_DASHlike2] = ACTIONS(2814), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2814), + [anon_sym_SLASH_SLASH2] = ACTIONS(2814), + [anon_sym_PLUS2] = ACTIONS(2816), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2814), + [anon_sym_bit_DASHxor2] = ACTIONS(2814), + [anon_sym_bit_DASHor2] = ACTIONS(2814), + [anon_sym_err_GT] = ACTIONS(2816), + [anon_sym_out_GT] = ACTIONS(2816), + [anon_sym_e_GT] = ACTIONS(2816), + [anon_sym_o_GT] = ACTIONS(2816), + [anon_sym_err_PLUSout_GT] = ACTIONS(2816), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2816), + [anon_sym_o_PLUSe_GT] = ACTIONS(2816), + [anon_sym_e_PLUSo_GT] = ACTIONS(2816), + [anon_sym_err_GT_GT] = ACTIONS(2814), + [anon_sym_out_GT_GT] = ACTIONS(2814), + [anon_sym_e_GT_GT] = ACTIONS(2814), + [anon_sym_o_GT_GT] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2814), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1208)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1208), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_err_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_GT_PIPE] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2814), + [anon_sym_xor2] = ACTIONS(2814), + [anon_sym_or2] = ACTIONS(2814), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(3012), + [anon_sym_err_GT] = ACTIONS(2816), + [anon_sym_out_GT] = ACTIONS(2816), + [anon_sym_e_GT] = ACTIONS(2816), + [anon_sym_o_GT] = ACTIONS(2816), + [anon_sym_err_PLUSout_GT] = ACTIONS(2816), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2816), + [anon_sym_o_PLUSe_GT] = ACTIONS(2816), + [anon_sym_e_PLUSo_GT] = ACTIONS(2816), + [anon_sym_err_GT_GT] = ACTIONS(2814), + [anon_sym_out_GT_GT] = ACTIONS(2814), + [anon_sym_e_GT_GT] = ACTIONS(2814), + [anon_sym_o_GT_GT] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1209)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1209), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_err_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_GT_PIPE] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(3016), + [anon_sym_xor2] = ACTIONS(2814), + [anon_sym_or2] = ACTIONS(2814), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(3012), + [anon_sym_err_GT] = ACTIONS(2816), + [anon_sym_out_GT] = ACTIONS(2816), + [anon_sym_e_GT] = ACTIONS(2816), + [anon_sym_o_GT] = ACTIONS(2816), + [anon_sym_err_PLUSout_GT] = ACTIONS(2816), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2816), + [anon_sym_o_PLUSe_GT] = ACTIONS(2816), + [anon_sym_e_PLUSo_GT] = ACTIONS(2816), + [anon_sym_err_GT_GT] = ACTIONS(2814), + [anon_sym_out_GT_GT] = ACTIONS(2814), + [anon_sym_e_GT_GT] = ACTIONS(2814), + [anon_sym_o_GT_GT] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1210)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1210), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_err_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_GT_PIPE] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(3016), + [anon_sym_xor2] = ACTIONS(3022), + [anon_sym_or2] = ACTIONS(2814), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(3012), + [anon_sym_err_GT] = ACTIONS(2816), + [anon_sym_out_GT] = ACTIONS(2816), + [anon_sym_e_GT] = ACTIONS(2816), + [anon_sym_o_GT] = ACTIONS(2816), + [anon_sym_err_PLUSout_GT] = ACTIONS(2816), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2816), + [anon_sym_o_PLUSe_GT] = ACTIONS(2816), + [anon_sym_e_PLUSo_GT] = ACTIONS(2816), + [anon_sym_err_GT_GT] = ACTIONS(2814), + [anon_sym_out_GT_GT] = ACTIONS(2814), + [anon_sym_e_GT_GT] = ACTIONS(2814), + [anon_sym_o_GT_GT] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1211)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1211), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_err_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_GT_PIPE] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2814), + [anon_sym_xor2] = ACTIONS(2814), + [anon_sym_or2] = ACTIONS(2814), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(2814), + [anon_sym_BANG_TILDE2] = ACTIONS(2814), + [anon_sym_like2] = ACTIONS(2814), + [anon_sym_not_DASHlike2] = ACTIONS(2814), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2814), + [anon_sym_bit_DASHxor2] = ACTIONS(2814), + [anon_sym_bit_DASHor2] = ACTIONS(2814), + [anon_sym_err_GT] = ACTIONS(2816), + [anon_sym_out_GT] = ACTIONS(2816), + [anon_sym_e_GT] = ACTIONS(2816), + [anon_sym_o_GT] = ACTIONS(2816), + [anon_sym_err_PLUSout_GT] = ACTIONS(2816), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2816), + [anon_sym_o_PLUSe_GT] = ACTIONS(2816), + [anon_sym_e_PLUSo_GT] = ACTIONS(2816), + [anon_sym_err_GT_GT] = ACTIONS(2814), + [anon_sym_out_GT_GT] = ACTIONS(2814), + [anon_sym_e_GT_GT] = ACTIONS(2814), + [anon_sym_o_GT_GT] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1212)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1212), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2814), + [sym__newline] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_err_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_GT_PIPE] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_GT2] = ACTIONS(2816), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2814), + [anon_sym_xor2] = ACTIONS(2814), + [anon_sym_or2] = ACTIONS(2814), + [anon_sym_not_DASHin2] = ACTIONS(2814), + [anon_sym_has2] = ACTIONS(2814), + [anon_sym_not_DASHhas2] = ACTIONS(2814), + [anon_sym_starts_DASHwith2] = ACTIONS(2814), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2814), + [anon_sym_ends_DASHwith2] = ACTIONS(2814), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2814), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2816), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2814), + [anon_sym_BANG_TILDE2] = ACTIONS(2814), + [anon_sym_like2] = ACTIONS(2814), + [anon_sym_not_DASHlike2] = ACTIONS(2814), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2814), + [anon_sym_bit_DASHxor2] = ACTIONS(2814), + [anon_sym_bit_DASHor2] = ACTIONS(2814), + [anon_sym_err_GT] = ACTIONS(2816), + [anon_sym_out_GT] = ACTIONS(2816), + [anon_sym_e_GT] = ACTIONS(2816), + [anon_sym_o_GT] = ACTIONS(2816), + [anon_sym_err_PLUSout_GT] = ACTIONS(2816), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2816), + [anon_sym_o_PLUSe_GT] = ACTIONS(2816), + [anon_sym_e_PLUSo_GT] = ACTIONS(2816), + [anon_sym_err_GT_GT] = ACTIONS(2814), + [anon_sym_out_GT_GT] = ACTIONS(2814), + [anon_sym_e_GT_GT] = ACTIONS(2814), + [anon_sym_o_GT_GT] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1213)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1213), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(3109), + [anon_sym_alias] = ACTIONS(3113), + [anon_sym_let] = ACTIONS(3113), + [anon_sym_mut] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3113), + [aux_sym_cmd_identifier_token1] = ACTIONS(3109), + [anon_sym_def] = ACTIONS(3113), + [anon_sym_use] = ACTIONS(3113), + [anon_sym_export_DASHenv] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym_module] = ACTIONS(3113), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_loop] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_catch] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(3113), + [anon_sym_in] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [anon_sym_null] = ACTIONS(3113), + [aux_sym_cmd_identifier_token3] = ACTIONS(3113), + [aux_sym_cmd_identifier_token4] = ACTIONS(3113), + [aux_sym_cmd_identifier_token5] = ACTIONS(3113), + [sym__newline] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_AT] = ACTIONS(3117), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_DOLLAR] = ACTIONS(3109), + [anon_sym_DASH2] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3117), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_where] = ACTIONS(3117), + [aux_sym_expr_unary_token1] = ACTIONS(3117), + [anon_sym_PLUS2] = ACTIONS(3123), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3125), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3113), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3113), + [aux_sym__val_number_token1] = ACTIONS(3113), + [aux_sym__val_number_token2] = ACTIONS(3113), + [aux_sym__val_number_token3] = ACTIONS(3113), + [anon_sym_0b] = ACTIONS(3120), + [anon_sym_0o] = ACTIONS(3120), + [anon_sym_0x] = ACTIONS(3120), + [sym_val_date] = ACTIONS(3117), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3113), + [anon_sym_BQUOTE] = ACTIONS(3113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3113), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(3125), + [anon_sym_CARET] = ACTIONS(3117), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3113), }, [STATE(1214)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1214), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_err_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_GT_PIPE] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2814), + [anon_sym_xor2] = ACTIONS(2814), + [anon_sym_or2] = ACTIONS(2814), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2814), + [anon_sym_bit_DASHxor2] = ACTIONS(2814), + [anon_sym_bit_DASHor2] = ACTIONS(2814), + [anon_sym_err_GT] = ACTIONS(2816), + [anon_sym_out_GT] = ACTIONS(2816), + [anon_sym_e_GT] = ACTIONS(2816), + [anon_sym_o_GT] = ACTIONS(2816), + [anon_sym_err_PLUSout_GT] = ACTIONS(2816), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2816), + [anon_sym_o_PLUSe_GT] = ACTIONS(2816), + [anon_sym_e_PLUSo_GT] = ACTIONS(2816), + [anon_sym_err_GT_GT] = ACTIONS(2814), + [anon_sym_out_GT_GT] = ACTIONS(2814), + [anon_sym_e_GT_GT] = ACTIONS(2814), + [anon_sym_o_GT_GT] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1215)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1215), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_err_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_GT_PIPE] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2814), + [anon_sym_xor2] = ACTIONS(2814), + [anon_sym_or2] = ACTIONS(2814), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(2814), + [anon_sym_bit_DASHor2] = ACTIONS(2814), + [anon_sym_err_GT] = ACTIONS(2816), + [anon_sym_out_GT] = ACTIONS(2816), + [anon_sym_e_GT] = ACTIONS(2816), + [anon_sym_o_GT] = ACTIONS(2816), + [anon_sym_err_PLUSout_GT] = ACTIONS(2816), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2816), + [anon_sym_o_PLUSe_GT] = ACTIONS(2816), + [anon_sym_e_PLUSo_GT] = ACTIONS(2816), + [anon_sym_err_GT_GT] = ACTIONS(2814), + [anon_sym_out_GT_GT] = ACTIONS(2814), + [anon_sym_e_GT_GT] = ACTIONS(2814), + [anon_sym_o_GT_GT] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1216)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1216), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_err_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_GT_PIPE] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2814), + [anon_sym_xor2] = ACTIONS(2814), + [anon_sym_or2] = ACTIONS(2814), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(2814), + [anon_sym_err_GT] = ACTIONS(2816), + [anon_sym_out_GT] = ACTIONS(2816), + [anon_sym_e_GT] = ACTIONS(2816), + [anon_sym_o_GT] = ACTIONS(2816), + [anon_sym_err_PLUSout_GT] = ACTIONS(2816), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2816), + [anon_sym_o_PLUSe_GT] = ACTIONS(2816), + [anon_sym_e_PLUSo_GT] = ACTIONS(2816), + [anon_sym_err_GT_GT] = ACTIONS(2814), + [anon_sym_out_GT_GT] = ACTIONS(2814), + [anon_sym_e_GT_GT] = ACTIONS(2814), + [anon_sym_o_GT_GT] = ACTIONS(2814), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2814), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2814), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2814), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1217)] = { - [aux_sym__repeat_newline] = STATE(1132), [sym_comment] = STATE(1217), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(3097), + [sym__newline] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_err_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_GT_PIPE] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_GT2] = ACTIONS(3077), + [anon_sym_DASH2] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR2] = ACTIONS(3081), + [anon_sym_and2] = ACTIONS(3107), + [anon_sym_xor2] = ACTIONS(3127), + [anon_sym_or2] = ACTIONS(2723), + [anon_sym_not_DASHin2] = ACTIONS(3097), + [anon_sym_has2] = ACTIONS(3097), + [anon_sym_not_DASHhas2] = ACTIONS(3097), + [anon_sym_starts_DASHwith2] = ACTIONS(3097), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(3097), + [anon_sym_ends_DASHwith2] = ACTIONS(3097), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(3097), + [anon_sym_EQ_EQ2] = ACTIONS(3083), + [anon_sym_BANG_EQ2] = ACTIONS(3083), + [anon_sym_LT2] = ACTIONS(3077), + [anon_sym_LT_EQ2] = ACTIONS(3083), + [anon_sym_GT_EQ2] = ACTIONS(3083), + [anon_sym_EQ_TILDE2] = ACTIONS(3099), + [anon_sym_BANG_TILDE2] = ACTIONS(3099), + [anon_sym_like2] = ACTIONS(3099), + [anon_sym_not_DASHlike2] = ACTIONS(3099), + [anon_sym_STAR_STAR2] = ACTIONS(3085), + [anon_sym_PLUS_PLUS2] = ACTIONS(3085), + [anon_sym_SLASH2] = ACTIONS(3081), + [anon_sym_mod2] = ACTIONS(3087), + [anon_sym_SLASH_SLASH2] = ACTIONS(3087), + [anon_sym_PLUS2] = ACTIONS(3089), + [anon_sym_bit_DASHshl2] = ACTIONS(3091), + [anon_sym_bit_DASHshr2] = ACTIONS(3091), + [anon_sym_bit_DASHand2] = ACTIONS(3101), + [anon_sym_bit_DASHxor2] = ACTIONS(3103), + [anon_sym_bit_DASHor2] = ACTIONS(3105), + [anon_sym_err_GT] = ACTIONS(2725), + [anon_sym_out_GT] = ACTIONS(2725), + [anon_sym_e_GT] = ACTIONS(2725), + [anon_sym_o_GT] = ACTIONS(2725), + [anon_sym_err_PLUSout_GT] = ACTIONS(2725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2725), + [anon_sym_o_PLUSe_GT] = ACTIONS(2725), + [anon_sym_e_PLUSo_GT] = ACTIONS(2725), + [anon_sym_err_GT_GT] = ACTIONS(2723), + [anon_sym_out_GT_GT] = ACTIONS(2723), + [anon_sym_e_GT_GT] = ACTIONS(2723), + [anon_sym_o_GT_GT] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2723), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1218)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1253), [sym_comment] = STATE(1218), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2806), + [sym__newline] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2806), + [anon_sym_has2] = ACTIONS(2806), + [anon_sym_not_DASHhas2] = ACTIONS(2806), + [anon_sym_starts_DASHwith2] = ACTIONS(2806), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), + [anon_sym_ends_DASHwith2] = ACTIONS(2806), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1219)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1219), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2722), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2722), - [anon_sym_mod2] = ACTIONS(2720), - [anon_sym_SLASH_SLASH2] = ACTIONS(2720), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2665), + [sym__newline] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2663), + [anon_sym_err_GT_PIPE] = ACTIONS(2663), + [anon_sym_out_GT_PIPE] = ACTIONS(2663), + [anon_sym_e_GT_PIPE] = ACTIONS(2663), + [anon_sym_o_GT_PIPE] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2663), + [anon_sym_GT2] = ACTIONS(2665), + [anon_sym_DASH2] = ACTIONS(2665), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_STAR2] = ACTIONS(2665), + [anon_sym_and2] = ACTIONS(2665), + [anon_sym_xor2] = ACTIONS(2665), + [anon_sym_or2] = ACTIONS(2665), + [anon_sym_not_DASHin2] = ACTIONS(2665), + [anon_sym_has2] = ACTIONS(2665), + [anon_sym_not_DASHhas2] = ACTIONS(2665), + [anon_sym_starts_DASHwith2] = ACTIONS(2665), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2665), + [anon_sym_ends_DASHwith2] = ACTIONS(2665), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2665), + [anon_sym_EQ_EQ2] = ACTIONS(2663), + [anon_sym_BANG_EQ2] = ACTIONS(2663), + [anon_sym_LT2] = ACTIONS(2665), + [anon_sym_LT_EQ2] = ACTIONS(2663), + [anon_sym_GT_EQ2] = ACTIONS(2663), + [anon_sym_EQ_TILDE2] = ACTIONS(2663), + [anon_sym_BANG_TILDE2] = ACTIONS(2665), + [anon_sym_like2] = ACTIONS(2665), + [anon_sym_not_DASHlike2] = ACTIONS(2665), + [anon_sym_STAR_STAR2] = ACTIONS(2665), + [anon_sym_PLUS_PLUS2] = ACTIONS(2665), + [anon_sym_SLASH2] = ACTIONS(2665), + [anon_sym_mod2] = ACTIONS(2665), + [anon_sym_SLASH_SLASH2] = ACTIONS(2665), + [anon_sym_PLUS2] = ACTIONS(2665), + [anon_sym_bit_DASHshl2] = ACTIONS(2665), + [anon_sym_bit_DASHshr2] = ACTIONS(2665), + [anon_sym_bit_DASHand2] = ACTIONS(2665), + [anon_sym_bit_DASHxor2] = ACTIONS(2665), + [anon_sym_bit_DASHor2] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2665), + [anon_sym_out_GT] = ACTIONS(2665), + [anon_sym_e_GT] = ACTIONS(2665), + [anon_sym_o_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT] = ACTIONS(2665), + [anon_sym_err_GT_GT] = ACTIONS(2663), + [anon_sym_out_GT_GT] = ACTIONS(2663), + [anon_sym_e_GT_GT] = ACTIONS(2663), + [anon_sym_o_GT_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2663), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1220)] = { [sym_comment] = STATE(1220), - [ts_builtin_sym_end] = ACTIONS(2092), - [anon_sym_in] = ACTIONS(2092), - [sym__newline] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_err_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_GT_PIPE] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), - [anon_sym_GT2] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2092), - [anon_sym_STAR2] = ACTIONS(2094), - [anon_sym_and2] = ACTIONS(2092), - [anon_sym_xor2] = ACTIONS(2092), - [anon_sym_or2] = ACTIONS(2092), - [anon_sym_not_DASHin2] = ACTIONS(2092), - [anon_sym_has2] = ACTIONS(2092), - [anon_sym_not_DASHhas2] = ACTIONS(2092), - [anon_sym_starts_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2092), - [anon_sym_ends_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2092), - [anon_sym_EQ_EQ2] = ACTIONS(2092), - [anon_sym_BANG_EQ2] = ACTIONS(2092), - [anon_sym_LT2] = ACTIONS(2094), - [anon_sym_LT_EQ2] = ACTIONS(2092), - [anon_sym_GT_EQ2] = ACTIONS(2092), - [anon_sym_EQ_TILDE2] = ACTIONS(2092), - [anon_sym_BANG_TILDE2] = ACTIONS(2092), - [anon_sym_like2] = ACTIONS(2092), - [anon_sym_not_DASHlike2] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2764), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2762), + [anon_sym_STAR2] = ACTIONS(2764), + [anon_sym_and2] = ACTIONS(2764), + [anon_sym_xor2] = ACTIONS(2764), + [anon_sym_or2] = ACTIONS(2764), + [anon_sym_not_DASHin2] = ACTIONS(2764), + [anon_sym_has2] = ACTIONS(2764), + [anon_sym_not_DASHhas2] = ACTIONS(2764), + [anon_sym_starts_DASHwith2] = ACTIONS(2764), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2764), + [anon_sym_ends_DASHwith2] = ACTIONS(2764), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2764), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2764), + [anon_sym_like2] = ACTIONS(2764), + [anon_sym_not_DASHlike2] = ACTIONS(2764), + [anon_sym_STAR_STAR2] = ACTIONS(2764), + [anon_sym_PLUS_PLUS2] = ACTIONS(2764), + [anon_sym_SLASH2] = ACTIONS(2764), + [anon_sym_mod2] = ACTIONS(2764), + [anon_sym_SLASH_SLASH2] = ACTIONS(2764), + [anon_sym_PLUS2] = ACTIONS(2764), + [anon_sym_bit_DASHshl2] = ACTIONS(2764), + [anon_sym_bit_DASHshr2] = ACTIONS(2764), + [anon_sym_bit_DASHand2] = ACTIONS(2764), + [anon_sym_bit_DASHxor2] = ACTIONS(2764), + [anon_sym_bit_DASHor2] = ACTIONS(2764), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1221)] = { - [aux_sym__repeat_newline] = STATE(1159), [sym_comment] = STATE(1221), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(3097), + [sym__newline] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_err_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_GT_PIPE] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_GT2] = ACTIONS(3077), + [anon_sym_DASH2] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR2] = ACTIONS(3081), + [anon_sym_and2] = ACTIONS(2723), + [anon_sym_xor2] = ACTIONS(2723), + [anon_sym_or2] = ACTIONS(2723), + [anon_sym_not_DASHin2] = ACTIONS(3097), + [anon_sym_has2] = ACTIONS(3097), + [anon_sym_not_DASHhas2] = ACTIONS(3097), + [anon_sym_starts_DASHwith2] = ACTIONS(3097), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(3097), + [anon_sym_ends_DASHwith2] = ACTIONS(3097), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(3097), + [anon_sym_EQ_EQ2] = ACTIONS(3083), + [anon_sym_BANG_EQ2] = ACTIONS(3083), + [anon_sym_LT2] = ACTIONS(3077), + [anon_sym_LT_EQ2] = ACTIONS(3083), + [anon_sym_GT_EQ2] = ACTIONS(3083), + [anon_sym_EQ_TILDE2] = ACTIONS(2723), + [anon_sym_BANG_TILDE2] = ACTIONS(2723), + [anon_sym_like2] = ACTIONS(2723), + [anon_sym_not_DASHlike2] = ACTIONS(2723), + [anon_sym_STAR_STAR2] = ACTIONS(3085), + [anon_sym_PLUS_PLUS2] = ACTIONS(3085), + [anon_sym_SLASH2] = ACTIONS(3081), + [anon_sym_mod2] = ACTIONS(3087), + [anon_sym_SLASH_SLASH2] = ACTIONS(3087), + [anon_sym_PLUS2] = ACTIONS(3089), + [anon_sym_bit_DASHshl2] = ACTIONS(3091), + [anon_sym_bit_DASHshr2] = ACTIONS(3091), + [anon_sym_bit_DASHand2] = ACTIONS(2723), + [anon_sym_bit_DASHxor2] = ACTIONS(2723), + [anon_sym_bit_DASHor2] = ACTIONS(2723), + [anon_sym_err_GT] = ACTIONS(2725), + [anon_sym_out_GT] = ACTIONS(2725), + [anon_sym_e_GT] = ACTIONS(2725), + [anon_sym_o_GT] = ACTIONS(2725), + [anon_sym_err_PLUSout_GT] = ACTIONS(2725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2725), + [anon_sym_o_PLUSe_GT] = ACTIONS(2725), + [anon_sym_e_PLUSo_GT] = ACTIONS(2725), + [anon_sym_err_GT_GT] = ACTIONS(2723), + [anon_sym_out_GT_GT] = ACTIONS(2723), + [anon_sym_e_GT_GT] = ACTIONS(2723), + [anon_sym_o_GT_GT] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2723), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1222)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1222), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2723), + [sym__newline] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_err_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_GT_PIPE] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_GT2] = ACTIONS(2725), + [anon_sym_DASH2] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR2] = ACTIONS(3081), + [anon_sym_and2] = ACTIONS(2723), + [anon_sym_xor2] = ACTIONS(2723), + [anon_sym_or2] = ACTIONS(2723), + [anon_sym_not_DASHin2] = ACTIONS(2723), + [anon_sym_has2] = ACTIONS(2723), + [anon_sym_not_DASHhas2] = ACTIONS(2723), + [anon_sym_starts_DASHwith2] = ACTIONS(2723), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2723), + [anon_sym_ends_DASHwith2] = ACTIONS(2723), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2723), + [anon_sym_EQ_EQ2] = ACTIONS(2723), + [anon_sym_BANG_EQ2] = ACTIONS(2723), + [anon_sym_LT2] = ACTIONS(2725), + [anon_sym_LT_EQ2] = ACTIONS(2723), + [anon_sym_GT_EQ2] = ACTIONS(2723), + [anon_sym_EQ_TILDE2] = ACTIONS(2723), + [anon_sym_BANG_TILDE2] = ACTIONS(2723), + [anon_sym_like2] = ACTIONS(2723), + [anon_sym_not_DASHlike2] = ACTIONS(2723), + [anon_sym_STAR_STAR2] = ACTIONS(3085), + [anon_sym_PLUS_PLUS2] = ACTIONS(3085), + [anon_sym_SLASH2] = ACTIONS(3081), + [anon_sym_mod2] = ACTIONS(3087), + [anon_sym_SLASH_SLASH2] = ACTIONS(3087), + [anon_sym_PLUS2] = ACTIONS(3089), + [anon_sym_bit_DASHshl2] = ACTIONS(2723), + [anon_sym_bit_DASHshr2] = ACTIONS(2723), + [anon_sym_bit_DASHand2] = ACTIONS(2723), + [anon_sym_bit_DASHxor2] = ACTIONS(2723), + [anon_sym_bit_DASHor2] = ACTIONS(2723), + [anon_sym_err_GT] = ACTIONS(2725), + [anon_sym_out_GT] = ACTIONS(2725), + [anon_sym_e_GT] = ACTIONS(2725), + [anon_sym_o_GT] = ACTIONS(2725), + [anon_sym_err_PLUSout_GT] = ACTIONS(2725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2725), + [anon_sym_o_PLUSe_GT] = ACTIONS(2725), + [anon_sym_e_PLUSo_GT] = ACTIONS(2725), + [anon_sym_err_GT_GT] = ACTIONS(2723), + [anon_sym_out_GT_GT] = ACTIONS(2723), + [anon_sym_e_GT_GT] = ACTIONS(2723), + [anon_sym_o_GT_GT] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2723), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1223)] = { + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1223), - [ts_builtin_sym_end] = ACTIONS(2084), - [anon_sym_in] = ACTIONS(2084), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_GT2] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2084), - [anon_sym_STAR2] = ACTIONS(2086), - [anon_sym_and2] = ACTIONS(2084), - [anon_sym_xor2] = ACTIONS(2084), - [anon_sym_or2] = ACTIONS(2084), - [anon_sym_not_DASHin2] = ACTIONS(2084), - [anon_sym_has2] = ACTIONS(2084), - [anon_sym_not_DASHhas2] = ACTIONS(2084), - [anon_sym_starts_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2084), - [anon_sym_ends_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2084), - [anon_sym_EQ_EQ2] = ACTIONS(2084), - [anon_sym_BANG_EQ2] = ACTIONS(2084), - [anon_sym_LT2] = ACTIONS(2086), - [anon_sym_LT_EQ2] = ACTIONS(2084), - [anon_sym_GT_EQ2] = ACTIONS(2084), - [anon_sym_EQ_TILDE2] = ACTIONS(2084), - [anon_sym_BANG_TILDE2] = ACTIONS(2084), - [anon_sym_like2] = ACTIONS(2084), - [anon_sym_not_DASHlike2] = ACTIONS(2084), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_STAR_STAR2] = ACTIONS(2084), - [anon_sym_PLUS_PLUS2] = ACTIONS(2084), - [anon_sym_SLASH2] = ACTIONS(2086), - [anon_sym_mod2] = ACTIONS(2084), - [anon_sym_SLASH_SLASH2] = ACTIONS(2084), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_bit_DASHshl2] = ACTIONS(2084), - [anon_sym_bit_DASHshr2] = ACTIONS(2084), - [anon_sym_bit_DASHand2] = ACTIONS(2084), - [anon_sym_bit_DASHxor2] = ACTIONS(2084), - [anon_sym_bit_DASHor2] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2834), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2834), + [anon_sym_has2] = ACTIONS(2834), + [anon_sym_not_DASHhas2] = ACTIONS(2834), + [anon_sym_starts_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2834), + [anon_sym_ends_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2834), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1224)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1224), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [ts_builtin_sym_end] = ACTIONS(2248), + [anon_sym_in] = ACTIONS(2248), + [sym__newline] = ACTIONS(2248), + [anon_sym_SEMI] = ACTIONS(2248), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_err_GT_PIPE] = ACTIONS(2248), + [anon_sym_out_GT_PIPE] = ACTIONS(2248), + [anon_sym_e_GT_PIPE] = ACTIONS(2248), + [anon_sym_o_GT_PIPE] = ACTIONS(2248), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2248), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2248), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2248), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2248), + [anon_sym_GT2] = ACTIONS(2250), + [anon_sym_DASH2] = ACTIONS(2248), + [anon_sym_STAR2] = ACTIONS(2250), + [anon_sym_and2] = ACTIONS(2248), + [anon_sym_xor2] = ACTIONS(2248), + [anon_sym_or2] = ACTIONS(2248), + [anon_sym_not_DASHin2] = ACTIONS(2248), + [anon_sym_has2] = ACTIONS(2248), + [anon_sym_not_DASHhas2] = ACTIONS(2248), + [anon_sym_starts_DASHwith2] = ACTIONS(2248), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2248), + [anon_sym_ends_DASHwith2] = ACTIONS(2248), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2248), + [anon_sym_EQ_EQ2] = ACTIONS(2248), + [anon_sym_BANG_EQ2] = ACTIONS(2248), + [anon_sym_LT2] = ACTIONS(2250), + [anon_sym_LT_EQ2] = ACTIONS(2248), + [anon_sym_GT_EQ2] = ACTIONS(2248), + [anon_sym_EQ_TILDE2] = ACTIONS(2248), + [anon_sym_BANG_TILDE2] = ACTIONS(2248), + [anon_sym_like2] = ACTIONS(2248), + [anon_sym_not_DASHlike2] = ACTIONS(2248), + [anon_sym_STAR_STAR2] = ACTIONS(2248), + [anon_sym_PLUS_PLUS2] = ACTIONS(2248), + [anon_sym_SLASH2] = ACTIONS(2250), + [anon_sym_mod2] = ACTIONS(2248), + [anon_sym_SLASH_SLASH2] = ACTIONS(2248), + [anon_sym_PLUS2] = ACTIONS(2250), + [anon_sym_bit_DASHshl2] = ACTIONS(2248), + [anon_sym_bit_DASHshr2] = ACTIONS(2248), + [anon_sym_bit_DASHand2] = ACTIONS(2248), + [anon_sym_bit_DASHxor2] = ACTIONS(2248), + [anon_sym_bit_DASHor2] = ACTIONS(2248), + [anon_sym_LBRACK2] = ACTIONS(3132), + [anon_sym_err_GT] = ACTIONS(2250), + [anon_sym_out_GT] = ACTIONS(2250), + [anon_sym_e_GT] = ACTIONS(2250), + [anon_sym_o_GT] = ACTIONS(2250), + [anon_sym_err_PLUSout_GT] = ACTIONS(2250), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2250), + [anon_sym_o_PLUSe_GT] = ACTIONS(2250), + [anon_sym_e_PLUSo_GT] = ACTIONS(2250), + [anon_sym_err_GT_GT] = ACTIONS(2248), + [anon_sym_out_GT_GT] = ACTIONS(2248), + [anon_sym_e_GT_GT] = ACTIONS(2248), + [anon_sym_o_GT_GT] = ACTIONS(2248), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2248), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2248), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2248), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2248), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1225)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1225), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(3097), + [sym__newline] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_err_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_GT_PIPE] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_GT2] = ACTIONS(3077), + [anon_sym_DASH2] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR2] = ACTIONS(3081), + [anon_sym_and2] = ACTIONS(2723), + [anon_sym_xor2] = ACTIONS(2723), + [anon_sym_or2] = ACTIONS(2723), + [anon_sym_not_DASHin2] = ACTIONS(3097), + [anon_sym_has2] = ACTIONS(3097), + [anon_sym_not_DASHhas2] = ACTIONS(3097), + [anon_sym_starts_DASHwith2] = ACTIONS(3097), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(3097), + [anon_sym_ends_DASHwith2] = ACTIONS(3097), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(3097), + [anon_sym_EQ_EQ2] = ACTIONS(3083), + [anon_sym_BANG_EQ2] = ACTIONS(3083), + [anon_sym_LT2] = ACTIONS(3077), + [anon_sym_LT_EQ2] = ACTIONS(3083), + [anon_sym_GT_EQ2] = ACTIONS(3083), + [anon_sym_EQ_TILDE2] = ACTIONS(3099), + [anon_sym_BANG_TILDE2] = ACTIONS(3099), + [anon_sym_like2] = ACTIONS(3099), + [anon_sym_not_DASHlike2] = ACTIONS(3099), + [anon_sym_STAR_STAR2] = ACTIONS(3085), + [anon_sym_PLUS_PLUS2] = ACTIONS(3085), + [anon_sym_SLASH2] = ACTIONS(3081), + [anon_sym_mod2] = ACTIONS(3087), + [anon_sym_SLASH_SLASH2] = ACTIONS(3087), + [anon_sym_PLUS2] = ACTIONS(3089), + [anon_sym_bit_DASHshl2] = ACTIONS(3091), + [anon_sym_bit_DASHshr2] = ACTIONS(3091), + [anon_sym_bit_DASHand2] = ACTIONS(2723), + [anon_sym_bit_DASHxor2] = ACTIONS(2723), + [anon_sym_bit_DASHor2] = ACTIONS(2723), + [anon_sym_err_GT] = ACTIONS(2725), + [anon_sym_out_GT] = ACTIONS(2725), + [anon_sym_e_GT] = ACTIONS(2725), + [anon_sym_o_GT] = ACTIONS(2725), + [anon_sym_err_PLUSout_GT] = ACTIONS(2725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2725), + [anon_sym_o_PLUSe_GT] = ACTIONS(2725), + [anon_sym_e_PLUSo_GT] = ACTIONS(2725), + [anon_sym_err_GT_GT] = ACTIONS(2723), + [anon_sym_out_GT_GT] = ACTIONS(2723), + [anon_sym_e_GT_GT] = ACTIONS(2723), + [anon_sym_o_GT_GT] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2723), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1226)] = { - [aux_sym__repeat_newline] = STATE(1183), [sym_comment] = STATE(1226), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(3097), + [sym__newline] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_err_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_GT_PIPE] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_GT2] = ACTIONS(3077), + [anon_sym_DASH2] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR2] = ACTIONS(3081), + [anon_sym_and2] = ACTIONS(2723), + [anon_sym_xor2] = ACTIONS(2723), + [anon_sym_or2] = ACTIONS(2723), + [anon_sym_not_DASHin2] = ACTIONS(3097), + [anon_sym_has2] = ACTIONS(3097), + [anon_sym_not_DASHhas2] = ACTIONS(3097), + [anon_sym_starts_DASHwith2] = ACTIONS(3097), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(3097), + [anon_sym_ends_DASHwith2] = ACTIONS(3097), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(3097), + [anon_sym_EQ_EQ2] = ACTIONS(3083), + [anon_sym_BANG_EQ2] = ACTIONS(3083), + [anon_sym_LT2] = ACTIONS(3077), + [anon_sym_LT_EQ2] = ACTIONS(3083), + [anon_sym_GT_EQ2] = ACTIONS(3083), + [anon_sym_EQ_TILDE2] = ACTIONS(3099), + [anon_sym_BANG_TILDE2] = ACTIONS(3099), + [anon_sym_like2] = ACTIONS(3099), + [anon_sym_not_DASHlike2] = ACTIONS(3099), + [anon_sym_STAR_STAR2] = ACTIONS(3085), + [anon_sym_PLUS_PLUS2] = ACTIONS(3085), + [anon_sym_SLASH2] = ACTIONS(3081), + [anon_sym_mod2] = ACTIONS(3087), + [anon_sym_SLASH_SLASH2] = ACTIONS(3087), + [anon_sym_PLUS2] = ACTIONS(3089), + [anon_sym_bit_DASHshl2] = ACTIONS(3091), + [anon_sym_bit_DASHshr2] = ACTIONS(3091), + [anon_sym_bit_DASHand2] = ACTIONS(3101), + [anon_sym_bit_DASHxor2] = ACTIONS(2723), + [anon_sym_bit_DASHor2] = ACTIONS(2723), + [anon_sym_err_GT] = ACTIONS(2725), + [anon_sym_out_GT] = ACTIONS(2725), + [anon_sym_e_GT] = ACTIONS(2725), + [anon_sym_o_GT] = ACTIONS(2725), + [anon_sym_err_PLUSout_GT] = ACTIONS(2725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2725), + [anon_sym_o_PLUSe_GT] = ACTIONS(2725), + [anon_sym_e_PLUSo_GT] = ACTIONS(2725), + [anon_sym_err_GT_GT] = ACTIONS(2723), + [anon_sym_out_GT_GT] = ACTIONS(2723), + [anon_sym_e_GT_GT] = ACTIONS(2723), + [anon_sym_o_GT_GT] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2723), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1227)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1227), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(3097), + [sym__newline] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_err_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_GT_PIPE] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_GT2] = ACTIONS(3077), + [anon_sym_DASH2] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR2] = ACTIONS(3081), + [anon_sym_and2] = ACTIONS(2723), + [anon_sym_xor2] = ACTIONS(2723), + [anon_sym_or2] = ACTIONS(2723), + [anon_sym_not_DASHin2] = ACTIONS(3097), + [anon_sym_has2] = ACTIONS(3097), + [anon_sym_not_DASHhas2] = ACTIONS(3097), + [anon_sym_starts_DASHwith2] = ACTIONS(3097), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(3097), + [anon_sym_ends_DASHwith2] = ACTIONS(3097), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(3097), + [anon_sym_EQ_EQ2] = ACTIONS(3083), + [anon_sym_BANG_EQ2] = ACTIONS(3083), + [anon_sym_LT2] = ACTIONS(3077), + [anon_sym_LT_EQ2] = ACTIONS(3083), + [anon_sym_GT_EQ2] = ACTIONS(3083), + [anon_sym_EQ_TILDE2] = ACTIONS(3099), + [anon_sym_BANG_TILDE2] = ACTIONS(3099), + [anon_sym_like2] = ACTIONS(3099), + [anon_sym_not_DASHlike2] = ACTIONS(3099), + [anon_sym_STAR_STAR2] = ACTIONS(3085), + [anon_sym_PLUS_PLUS2] = ACTIONS(3085), + [anon_sym_SLASH2] = ACTIONS(3081), + [anon_sym_mod2] = ACTIONS(3087), + [anon_sym_SLASH_SLASH2] = ACTIONS(3087), + [anon_sym_PLUS2] = ACTIONS(3089), + [anon_sym_bit_DASHshl2] = ACTIONS(3091), + [anon_sym_bit_DASHshr2] = ACTIONS(3091), + [anon_sym_bit_DASHand2] = ACTIONS(3101), + [anon_sym_bit_DASHxor2] = ACTIONS(3103), + [anon_sym_bit_DASHor2] = ACTIONS(2723), + [anon_sym_err_GT] = ACTIONS(2725), + [anon_sym_out_GT] = ACTIONS(2725), + [anon_sym_e_GT] = ACTIONS(2725), + [anon_sym_o_GT] = ACTIONS(2725), + [anon_sym_err_PLUSout_GT] = ACTIONS(2725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2725), + [anon_sym_o_PLUSe_GT] = ACTIONS(2725), + [anon_sym_e_PLUSo_GT] = ACTIONS(2725), + [anon_sym_err_GT_GT] = ACTIONS(2723), + [anon_sym_out_GT_GT] = ACTIONS(2723), + [anon_sym_e_GT_GT] = ACTIONS(2723), + [anon_sym_o_GT_GT] = ACTIONS(2723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2723), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1228)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1254), [sym_comment] = STATE(1228), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2806), + [sym__newline] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2808), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2806), + [anon_sym_has2] = ACTIONS(2806), + [anon_sym_not_DASHhas2] = ACTIONS(2806), + [anon_sym_starts_DASHwith2] = ACTIONS(2806), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), + [anon_sym_ends_DASHwith2] = ACTIONS(2806), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), + [anon_sym_EQ_EQ2] = ACTIONS(2806), + [anon_sym_BANG_EQ2] = ACTIONS(2806), + [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT_EQ2] = ACTIONS(2806), + [anon_sym_GT_EQ2] = ACTIONS(2806), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1229)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1229), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(769), + [anon_sym_false] = ACTIONS(769), + [anon_sym_null] = ACTIONS(769), + [aux_sym_cmd_identifier_token3] = ACTIONS(769), + [aux_sym_cmd_identifier_token4] = ACTIONS(769), + [aux_sym_cmd_identifier_token5] = ACTIONS(769), + [sym__newline] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(767), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_DOT_DOT] = ACTIONS(767), + [anon_sym_LPAREN2] = ACTIONS(769), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(769), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(3134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(767), + [anon_sym_DOT_DOT_LT] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(3136), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(769), + [aux_sym__val_number_decimal_token1] = ACTIONS(767), + [aux_sym__val_number_decimal_token2] = ACTIONS(769), + [aux_sym__val_number_decimal_token3] = ACTIONS(769), + [aux_sym__val_number_decimal_token4] = ACTIONS(769), + [aux_sym__val_number_token1] = ACTIONS(769), + [aux_sym__val_number_token2] = ACTIONS(769), + [aux_sym__val_number_token3] = ACTIONS(769), + [anon_sym_0b] = ACTIONS(767), + [sym_filesize_unit] = ACTIONS(769), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_0o] = ACTIONS(767), + [anon_sym_0x] = ACTIONS(767), + [sym_val_date] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_SQUOTE] = ACTIONS(769), + [anon_sym_BQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(769), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(769), + [anon_sym_out_GT_GT] = ACTIONS(769), + [anon_sym_e_GT_GT] = ACTIONS(769), + [anon_sym_o_GT_GT] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(769), + [sym__unquoted_pattern] = ACTIONS(767), + [aux_sym_unquoted_token1] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(769), }, [STATE(1230)] = { - [sym__expression] = STATE(4724), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1230), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2834), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2834), + [anon_sym_has2] = ACTIONS(2834), + [anon_sym_not_DASHhas2] = ACTIONS(2834), + [anon_sym_starts_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2834), + [anon_sym_ends_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2834), + [anon_sym_EQ_EQ2] = ACTIONS(2834), + [anon_sym_BANG_EQ2] = ACTIONS(2834), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2834), + [anon_sym_GT_EQ2] = ACTIONS(2834), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1231)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1256), [sym_comment] = STATE(1231), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2806), + [sym__newline] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2808), + [anon_sym_DASH2] = ACTIONS(2806), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2806), + [anon_sym_has2] = ACTIONS(2806), + [anon_sym_not_DASHhas2] = ACTIONS(2806), + [anon_sym_starts_DASHwith2] = ACTIONS(2806), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), + [anon_sym_ends_DASHwith2] = ACTIONS(2806), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), + [anon_sym_EQ_EQ2] = ACTIONS(2806), + [anon_sym_BANG_EQ2] = ACTIONS(2806), + [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT_EQ2] = ACTIONS(2806), + [anon_sym_GT_EQ2] = ACTIONS(2806), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2808), + [anon_sym_bit_DASHshl2] = ACTIONS(2806), + [anon_sym_bit_DASHshr2] = ACTIONS(2806), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1232)] = { - [sym__expression] = STATE(4726), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1232), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2834), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2834), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2834), + [anon_sym_has2] = ACTIONS(2834), + [anon_sym_not_DASHhas2] = ACTIONS(2834), + [anon_sym_starts_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2834), + [anon_sym_ends_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2834), + [anon_sym_EQ_EQ2] = ACTIONS(2834), + [anon_sym_BANG_EQ2] = ACTIONS(2834), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2834), + [anon_sym_GT_EQ2] = ACTIONS(2834), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(2836), + [anon_sym_bit_DASHshl2] = ACTIONS(2834), + [anon_sym_bit_DASHshr2] = ACTIONS(2834), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1233)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1257), [sym_comment] = STATE(1233), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2806), + [sym__newline] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2808), + [anon_sym_DASH2] = ACTIONS(2806), + [anon_sym_STAR2] = ACTIONS(2808), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2806), + [anon_sym_has2] = ACTIONS(2806), + [anon_sym_not_DASHhas2] = ACTIONS(2806), + [anon_sym_starts_DASHwith2] = ACTIONS(2806), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), + [anon_sym_ends_DASHwith2] = ACTIONS(2806), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), + [anon_sym_EQ_EQ2] = ACTIONS(2806), + [anon_sym_BANG_EQ2] = ACTIONS(2806), + [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT_EQ2] = ACTIONS(2806), + [anon_sym_GT_EQ2] = ACTIONS(2806), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2808), + [anon_sym_mod2] = ACTIONS(2806), + [anon_sym_SLASH_SLASH2] = ACTIONS(2806), + [anon_sym_PLUS2] = ACTIONS(2808), + [anon_sym_bit_DASHshl2] = ACTIONS(2806), + [anon_sym_bit_DASHshr2] = ACTIONS(2806), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1234)] = { - [aux_sym__repeat_newline] = STATE(1231), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1234), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2834), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2834), + [anon_sym_STAR2] = ACTIONS(2836), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2834), + [anon_sym_has2] = ACTIONS(2834), + [anon_sym_not_DASHhas2] = ACTIONS(2834), + [anon_sym_starts_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2834), + [anon_sym_ends_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2834), + [anon_sym_EQ_EQ2] = ACTIONS(2834), + [anon_sym_BANG_EQ2] = ACTIONS(2834), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2834), + [anon_sym_GT_EQ2] = ACTIONS(2834), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2836), + [anon_sym_mod2] = ACTIONS(2834), + [anon_sym_SLASH_SLASH2] = ACTIONS(2834), + [anon_sym_PLUS2] = ACTIONS(2836), + [anon_sym_bit_DASHshl2] = ACTIONS(2834), + [anon_sym_bit_DASHshr2] = ACTIONS(2834), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1235)] = { - [aux_sym__repeat_newline] = STATE(1196), + [aux_sym__repeat_newline] = STATE(1258), [sym_comment] = STATE(1235), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2988), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1236)] = { - [aux_sym__repeat_newline] = STATE(1137), [sym_comment] = STATE(1236), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(761), + [anon_sym_false] = ACTIONS(761), + [anon_sym_null] = ACTIONS(761), + [aux_sym_cmd_identifier_token3] = ACTIONS(761), + [aux_sym_cmd_identifier_token4] = ACTIONS(761), + [aux_sym_cmd_identifier_token5] = ACTIONS(761), + [sym__newline] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_DASH2] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_DOT_DOT] = ACTIONS(759), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(761), + [anon_sym_DOT_DOT2] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ] = ACTIONS(759), + [anon_sym_DOT_DOT_LT] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(3138), + [aux_sym__immediate_decimal_token5] = ACTIONS(3140), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(761), + [aux_sym__val_number_decimal_token1] = ACTIONS(759), + [aux_sym__val_number_decimal_token2] = ACTIONS(761), + [aux_sym__val_number_decimal_token3] = ACTIONS(761), + [aux_sym__val_number_decimal_token4] = ACTIONS(761), + [aux_sym__val_number_token1] = ACTIONS(761), + [aux_sym__val_number_token2] = ACTIONS(761), + [aux_sym__val_number_token3] = ACTIONS(761), + [anon_sym_0b] = ACTIONS(759), + [sym_filesize_unit] = ACTIONS(761), + [sym_duration_unit] = ACTIONS(761), + [anon_sym_0o] = ACTIONS(759), + [anon_sym_0x] = ACTIONS(759), + [sym_val_date] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_SQUOTE] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(761), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(761), + [anon_sym_err_GT] = ACTIONS(759), + [anon_sym_out_GT] = ACTIONS(759), + [anon_sym_e_GT] = ACTIONS(759), + [anon_sym_o_GT] = ACTIONS(759), + [anon_sym_err_PLUSout_GT] = ACTIONS(759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(759), + [anon_sym_o_PLUSe_GT] = ACTIONS(759), + [anon_sym_e_PLUSo_GT] = ACTIONS(759), + [anon_sym_err_GT_GT] = ACTIONS(761), + [anon_sym_out_GT_GT] = ACTIONS(761), + [anon_sym_e_GT_GT] = ACTIONS(761), + [anon_sym_o_GT_GT] = ACTIONS(761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(761), + [sym__unquoted_pattern] = ACTIONS(759), + [aux_sym_unquoted_token1] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(761), }, [STATE(1237)] = { - [sym__ctrl_match_body] = STATE(5168), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1237), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2922), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(3012), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1238)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1259), [sym_comment] = STATE(1238), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(3014), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2988), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1239)] = { + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1239), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(3016), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(3012), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1240)] = { - [sym__expression] = STATE(4737), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(1260), [sym_comment] = STATE(1240), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(3014), + [anon_sym_xor2] = ACTIONS(3020), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2988), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1241)] = { - [aux_sym__repeat_newline] = STATE(1211), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1241), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(3016), + [anon_sym_xor2] = ACTIONS(3022), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(3012), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1242)] = { + [aux_sym__repeat_newline] = STATE(1261), [sym_comment] = STATE(1242), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1243)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1243), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1244)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1263), [sym_comment] = STATE(1244), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2806), + [sym__newline] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2808), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2806), + [anon_sym_has2] = ACTIONS(2806), + [anon_sym_not_DASHhas2] = ACTIONS(2806), + [anon_sym_starts_DASHwith2] = ACTIONS(2806), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), + [anon_sym_ends_DASHwith2] = ACTIONS(2806), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), + [anon_sym_EQ_EQ2] = ACTIONS(2806), + [anon_sym_BANG_EQ2] = ACTIONS(2806), + [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT_EQ2] = ACTIONS(2806), + [anon_sym_GT_EQ2] = ACTIONS(2806), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2806), + [anon_sym_bit_DASHshr2] = ACTIONS(2806), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1245)] = { - [aux_sym__repeat_newline] = STATE(1225), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1245), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2834), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2834), + [anon_sym_has2] = ACTIONS(2834), + [anon_sym_not_DASHhas2] = ACTIONS(2834), + [anon_sym_starts_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2834), + [anon_sym_ends_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2834), + [anon_sym_EQ_EQ2] = ACTIONS(2834), + [anon_sym_BANG_EQ2] = ACTIONS(2834), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2834), + [anon_sym_GT_EQ2] = ACTIONS(2834), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(2834), + [anon_sym_bit_DASHshr2] = ACTIONS(2834), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1246)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1264), [sym_comment] = STATE(1246), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1247)] = { + [sym__expr_parenthesized_immediate] = STATE(1633), + [sym__immediate_decimal] = STATE(1517), + [sym_val_variable] = STATE(1633), [sym_comment] = STATE(1247), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [anon_sym_null] = ACTIONS(1801), + [aux_sym_cmd_identifier_token3] = ACTIONS(1801), + [aux_sym_cmd_identifier_token4] = ACTIONS(1801), + [aux_sym_cmd_identifier_token5] = ACTIONS(1801), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_DOLLAR] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT] = ACTIONS(1801), + [aux_sym__immediate_decimal_token1] = ACTIONS(3039), + [aux_sym__immediate_decimal_token2] = ACTIONS(3041), + [aux_sym__immediate_decimal_token3] = ACTIONS(3043), + [aux_sym__immediate_decimal_token4] = ACTIONS(3043), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1803), + [aux_sym__val_number_decimal_token2] = ACTIONS(1803), + [aux_sym__val_number_decimal_token3] = ACTIONS(1803), + [aux_sym__val_number_decimal_token4] = ACTIONS(1803), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1803), + [anon_sym_0o] = ACTIONS(1803), + [anon_sym_0x] = ACTIONS(1803), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [anon_sym_SQUOTE] = ACTIONS(1801), + [anon_sym_BQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1803), + [anon_sym_out_GT] = ACTIONS(1803), + [anon_sym_e_GT] = ACTIONS(1803), + [anon_sym_o_GT] = ACTIONS(1803), + [anon_sym_err_PLUSout_GT] = ACTIONS(1803), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1803), + [anon_sym_o_PLUSe_GT] = ACTIONS(1803), + [anon_sym_e_PLUSo_GT] = ACTIONS(1803), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [sym__unquoted_pattern] = ACTIONS(1819), + [aux_sym_unquoted_token1] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1801), }, [STATE(1248)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1248), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1249)] = { - [aux_sym__repeat_newline] = STATE(1141), + [aux_sym__repeat_newline] = STATE(1266), [sym_comment] = STATE(1249), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1250)] = { - [aux_sym__repeat_newline] = STATE(1222), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1250), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1251)] = { + [aux_sym__repeat_newline] = STATE(1267), [sym_comment] = STATE(1251), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2966), + [sym__newline] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2966), + [anon_sym_has2] = ACTIONS(2966), + [anon_sym_not_DASHhas2] = ACTIONS(2966), + [anon_sym_starts_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2966), + [anon_sym_ends_DASHwith2] = ACTIONS(2966), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2966), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2976), + [anon_sym_BANG_TILDE2] = ACTIONS(2976), + [anon_sym_like2] = ACTIONS(2976), + [anon_sym_not_DASHlike2] = ACTIONS(2976), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2984), + [anon_sym_bit_DASHxor2] = ACTIONS(2986), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1252)] = { + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1252), - [anon_sym_export] = ACTIONS(2924), - [anon_sym_alias] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_mut] = ACTIONS(2928), - [anon_sym_const] = ACTIONS(2928), - [aux_sym_cmd_identifier_token1] = ACTIONS(2924), - [anon_sym_def] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_export_DASHenv] = ACTIONS(2928), - [anon_sym_extern] = ACTIONS(2928), - [anon_sym_module] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_loop] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_else] = ACTIONS(2928), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_catch] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_in] = ACTIONS(2924), - [anon_sym_true] = ACTIONS(2928), - [anon_sym_false] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2928), - [aux_sym_cmd_identifier_token3] = ACTIONS(2928), - [aux_sym_cmd_identifier_token4] = ACTIONS(2928), - [aux_sym_cmd_identifier_token5] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_AT] = ACTIONS(2932), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_DASH2] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_RBRACE] = ACTIONS(2932), - [anon_sym_DOT_DOT] = ACTIONS(2935), - [anon_sym_where] = ACTIONS(2932), - [aux_sym_expr_unary_token1] = ACTIONS(2932), - [anon_sym_PLUS2] = ACTIONS(2938), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2932), - [anon_sym_DOT_DOT_LT] = ACTIONS(2932), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2940), - [aux_sym__val_number_decimal_token1] = ACTIONS(2924), - [aux_sym__val_number_decimal_token2] = ACTIONS(2928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2928), - [aux_sym__val_number_decimal_token4] = ACTIONS(2928), - [aux_sym__val_number_token1] = ACTIONS(2928), - [aux_sym__val_number_token2] = ACTIONS(2928), - [aux_sym__val_number_token3] = ACTIONS(2928), - [anon_sym_0b] = ACTIONS(2935), - [anon_sym_0o] = ACTIONS(2935), - [anon_sym_0x] = ACTIONS(2935), - [sym_val_date] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2940), - [anon_sym_CARET] = ACTIONS(2932), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2928), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1253)] = { - [aux_sym__repeat_newline] = STATE(1146), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1253), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_err_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_GT_PIPE] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2876), + [anon_sym_xor2] = ACTIONS(2876), + [anon_sym_or2] = ACTIONS(2876), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(2876), + [anon_sym_BANG_TILDE2] = ACTIONS(2876), + [anon_sym_like2] = ACTIONS(2876), + [anon_sym_not_DASHlike2] = ACTIONS(2876), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2876), + [anon_sym_bit_DASHxor2] = ACTIONS(2876), + [anon_sym_bit_DASHor2] = ACTIONS(2876), + [anon_sym_err_GT] = ACTIONS(2878), + [anon_sym_out_GT] = ACTIONS(2878), + [anon_sym_e_GT] = ACTIONS(2878), + [anon_sym_o_GT] = ACTIONS(2878), + [anon_sym_err_PLUSout_GT] = ACTIONS(2878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), + [anon_sym_o_PLUSe_GT] = ACTIONS(2878), + [anon_sym_e_PLUSo_GT] = ACTIONS(2878), + [anon_sym_err_GT_GT] = ACTIONS(2876), + [anon_sym_out_GT_GT] = ACTIONS(2876), + [anon_sym_e_GT_GT] = ACTIONS(2876), + [anon_sym_o_GT_GT] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2876), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1254)] = { + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1254), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_err_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_GT_PIPE] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_GT2] = ACTIONS(2878), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2876), + [anon_sym_xor2] = ACTIONS(2876), + [anon_sym_or2] = ACTIONS(2876), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2876), + [anon_sym_BANG_EQ2] = ACTIONS(2876), + [anon_sym_LT2] = ACTIONS(2878), + [anon_sym_LT_EQ2] = ACTIONS(2876), + [anon_sym_GT_EQ2] = ACTIONS(2876), + [anon_sym_EQ_TILDE2] = ACTIONS(2876), + [anon_sym_BANG_TILDE2] = ACTIONS(2876), + [anon_sym_like2] = ACTIONS(2876), + [anon_sym_not_DASHlike2] = ACTIONS(2876), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2876), + [anon_sym_bit_DASHxor2] = ACTIONS(2876), + [anon_sym_bit_DASHor2] = ACTIONS(2876), + [anon_sym_err_GT] = ACTIONS(2878), + [anon_sym_out_GT] = ACTIONS(2878), + [anon_sym_e_GT] = ACTIONS(2878), + [anon_sym_o_GT] = ACTIONS(2878), + [anon_sym_err_PLUSout_GT] = ACTIONS(2878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), + [anon_sym_o_PLUSe_GT] = ACTIONS(2878), + [anon_sym_e_PLUSo_GT] = ACTIONS(2878), + [anon_sym_err_GT_GT] = ACTIONS(2876), + [anon_sym_out_GT_GT] = ACTIONS(2876), + [anon_sym_e_GT_GT] = ACTIONS(2876), + [anon_sym_o_GT_GT] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2876), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1255)] = { - [aux_sym__repeat_newline] = STATE(1173), [sym_comment] = STATE(1255), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2746), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2746), - [anon_sym_mod2] = ACTIONS(2744), - [anon_sym_SLASH_SLASH2] = ACTIONS(2744), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(2762), + [aux_sym_cmd_identifier_token2] = ACTIONS(2954), + [anon_sym_in] = ACTIONS(2764), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2764), + [anon_sym_STAR2] = ACTIONS(2764), + [anon_sym_and2] = ACTIONS(2764), + [anon_sym_xor2] = ACTIONS(2764), + [anon_sym_or2] = ACTIONS(2764), + [anon_sym_not_DASHin2] = ACTIONS(2764), + [anon_sym_has2] = ACTIONS(2764), + [anon_sym_not_DASHhas2] = ACTIONS(2764), + [anon_sym_starts_DASHwith2] = ACTIONS(2764), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2764), + [anon_sym_ends_DASHwith2] = ACTIONS(2764), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2764), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2764), + [anon_sym_like2] = ACTIONS(2764), + [anon_sym_not_DASHlike2] = ACTIONS(2764), + [anon_sym_STAR_STAR2] = ACTIONS(2764), + [anon_sym_PLUS_PLUS2] = ACTIONS(2764), + [anon_sym_SLASH2] = ACTIONS(2764), + [anon_sym_mod2] = ACTIONS(2764), + [anon_sym_SLASH_SLASH2] = ACTIONS(2764), + [anon_sym_PLUS2] = ACTIONS(2764), + [anon_sym_bit_DASHshl2] = ACTIONS(2764), + [anon_sym_bit_DASHshr2] = ACTIONS(2764), + [anon_sym_bit_DASHand2] = ACTIONS(2764), + [anon_sym_bit_DASHxor2] = ACTIONS(2764), + [anon_sym_bit_DASHor2] = ACTIONS(2764), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1256)] = { - [sym__expression] = STATE(4756), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1256), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_err_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_GT_PIPE] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_GT2] = ACTIONS(2878), + [anon_sym_DASH2] = ACTIONS(2876), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2876), + [anon_sym_xor2] = ACTIONS(2876), + [anon_sym_or2] = ACTIONS(2876), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2876), + [anon_sym_BANG_EQ2] = ACTIONS(2876), + [anon_sym_LT2] = ACTIONS(2878), + [anon_sym_LT_EQ2] = ACTIONS(2876), + [anon_sym_GT_EQ2] = ACTIONS(2876), + [anon_sym_EQ_TILDE2] = ACTIONS(2876), + [anon_sym_BANG_TILDE2] = ACTIONS(2876), + [anon_sym_like2] = ACTIONS(2876), + [anon_sym_not_DASHlike2] = ACTIONS(2876), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(2878), + [anon_sym_bit_DASHshl2] = ACTIONS(2876), + [anon_sym_bit_DASHshr2] = ACTIONS(2876), + [anon_sym_bit_DASHand2] = ACTIONS(2876), + [anon_sym_bit_DASHxor2] = ACTIONS(2876), + [anon_sym_bit_DASHor2] = ACTIONS(2876), + [anon_sym_err_GT] = ACTIONS(2878), + [anon_sym_out_GT] = ACTIONS(2878), + [anon_sym_e_GT] = ACTIONS(2878), + [anon_sym_o_GT] = ACTIONS(2878), + [anon_sym_err_PLUSout_GT] = ACTIONS(2878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), + [anon_sym_o_PLUSe_GT] = ACTIONS(2878), + [anon_sym_e_PLUSo_GT] = ACTIONS(2878), + [anon_sym_err_GT_GT] = ACTIONS(2876), + [anon_sym_out_GT_GT] = ACTIONS(2876), + [anon_sym_e_GT_GT] = ACTIONS(2876), + [anon_sym_o_GT_GT] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1257)] = { - [sym__expression] = STATE(4763), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(675), [sym_comment] = STATE(1257), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_err_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_GT_PIPE] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_GT2] = ACTIONS(2878), + [anon_sym_DASH2] = ACTIONS(2876), + [anon_sym_STAR2] = ACTIONS(2878), + [anon_sym_and2] = ACTIONS(2876), + [anon_sym_xor2] = ACTIONS(2876), + [anon_sym_or2] = ACTIONS(2876), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2876), + [anon_sym_BANG_EQ2] = ACTIONS(2876), + [anon_sym_LT2] = ACTIONS(2878), + [anon_sym_LT_EQ2] = ACTIONS(2876), + [anon_sym_GT_EQ2] = ACTIONS(2876), + [anon_sym_EQ_TILDE2] = ACTIONS(2876), + [anon_sym_BANG_TILDE2] = ACTIONS(2876), + [anon_sym_like2] = ACTIONS(2876), + [anon_sym_not_DASHlike2] = ACTIONS(2876), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2878), + [anon_sym_mod2] = ACTIONS(2876), + [anon_sym_SLASH_SLASH2] = ACTIONS(2876), + [anon_sym_PLUS2] = ACTIONS(2878), + [anon_sym_bit_DASHshl2] = ACTIONS(2876), + [anon_sym_bit_DASHshr2] = ACTIONS(2876), + [anon_sym_bit_DASHand2] = ACTIONS(2876), + [anon_sym_bit_DASHxor2] = ACTIONS(2876), + [anon_sym_bit_DASHor2] = ACTIONS(2876), + [anon_sym_err_GT] = ACTIONS(2878), + [anon_sym_out_GT] = ACTIONS(2878), + [anon_sym_e_GT] = ACTIONS(2878), + [anon_sym_o_GT] = ACTIONS(2878), + [anon_sym_err_PLUSout_GT] = ACTIONS(2878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), + [anon_sym_o_PLUSe_GT] = ACTIONS(2878), + [anon_sym_e_PLUSo_GT] = ACTIONS(2878), + [anon_sym_err_GT_GT] = ACTIONS(2876), + [anon_sym_out_GT_GT] = ACTIONS(2876), + [anon_sym_e_GT_GT] = ACTIONS(2876), + [anon_sym_o_GT_GT] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1258)] = { + [aux_sym__repeat_newline] = STATE(675), + [sym_comment] = STATE(1258), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_err_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_GT_PIPE] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2876), + [anon_sym_xor2] = ACTIONS(2876), + [anon_sym_or2] = ACTIONS(2876), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(3012), + [anon_sym_err_GT] = ACTIONS(2878), + [anon_sym_out_GT] = ACTIONS(2878), + [anon_sym_e_GT] = ACTIONS(2878), + [anon_sym_o_GT] = ACTIONS(2878), + [anon_sym_err_PLUSout_GT] = ACTIONS(2878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), + [anon_sym_o_PLUSe_GT] = ACTIONS(2878), + [anon_sym_e_PLUSo_GT] = ACTIONS(2878), + [anon_sym_err_GT_GT] = ACTIONS(2876), + [anon_sym_out_GT_GT] = ACTIONS(2876), + [anon_sym_e_GT_GT] = ACTIONS(2876), + [anon_sym_o_GT_GT] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1259)] = { + [aux_sym__repeat_newline] = STATE(675), + [sym_comment] = STATE(1259), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_err_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_GT_PIPE] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(3016), + [anon_sym_xor2] = ACTIONS(2876), + [anon_sym_or2] = ACTIONS(2876), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(3012), + [anon_sym_err_GT] = ACTIONS(2878), + [anon_sym_out_GT] = ACTIONS(2878), + [anon_sym_e_GT] = ACTIONS(2878), + [anon_sym_o_GT] = ACTIONS(2878), + [anon_sym_err_PLUSout_GT] = ACTIONS(2878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), + [anon_sym_o_PLUSe_GT] = ACTIONS(2878), + [anon_sym_e_PLUSo_GT] = ACTIONS(2878), + [anon_sym_err_GT_GT] = ACTIONS(2876), + [anon_sym_out_GT_GT] = ACTIONS(2876), + [anon_sym_e_GT_GT] = ACTIONS(2876), + [anon_sym_o_GT_GT] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1260)] = { + [aux_sym__repeat_newline] = STATE(675), + [sym_comment] = STATE(1260), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_err_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_GT_PIPE] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(3016), + [anon_sym_xor2] = ACTIONS(3022), + [anon_sym_or2] = ACTIONS(2876), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(3012), + [anon_sym_err_GT] = ACTIONS(2878), + [anon_sym_out_GT] = ACTIONS(2878), + [anon_sym_e_GT] = ACTIONS(2878), + [anon_sym_o_GT] = ACTIONS(2878), + [anon_sym_err_PLUSout_GT] = ACTIONS(2878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), + [anon_sym_o_PLUSe_GT] = ACTIONS(2878), + [anon_sym_e_PLUSo_GT] = ACTIONS(2878), + [anon_sym_err_GT_GT] = ACTIONS(2876), + [anon_sym_out_GT_GT] = ACTIONS(2876), + [anon_sym_e_GT_GT] = ACTIONS(2876), + [anon_sym_o_GT_GT] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1261)] = { + [aux_sym__repeat_newline] = STATE(675), + [sym_comment] = STATE(1261), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_err_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_GT_PIPE] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2876), + [anon_sym_xor2] = ACTIONS(2876), + [anon_sym_or2] = ACTIONS(2876), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(2876), + [anon_sym_BANG_TILDE2] = ACTIONS(2876), + [anon_sym_like2] = ACTIONS(2876), + [anon_sym_not_DASHlike2] = ACTIONS(2876), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2876), + [anon_sym_bit_DASHxor2] = ACTIONS(2876), + [anon_sym_bit_DASHor2] = ACTIONS(2876), + [anon_sym_err_GT] = ACTIONS(2878), + [anon_sym_out_GT] = ACTIONS(2878), + [anon_sym_e_GT] = ACTIONS(2878), + [anon_sym_o_GT] = ACTIONS(2878), + [anon_sym_err_PLUSout_GT] = ACTIONS(2878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), + [anon_sym_o_PLUSe_GT] = ACTIONS(2878), + [anon_sym_e_PLUSo_GT] = ACTIONS(2878), + [anon_sym_err_GT_GT] = ACTIONS(2876), + [anon_sym_out_GT_GT] = ACTIONS(2876), + [anon_sym_e_GT_GT] = ACTIONS(2876), + [anon_sym_o_GT_GT] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1262)] = { + [sym_comment] = STATE(1262), + [ts_builtin_sym_end] = ACTIONS(904), + [anon_sym_in] = ACTIONS(904), + [sym__newline] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_PIPE] = ACTIONS(904), + [anon_sym_err_GT_PIPE] = ACTIONS(904), + [anon_sym_out_GT_PIPE] = ACTIONS(904), + [anon_sym_e_GT_PIPE] = ACTIONS(904), + [anon_sym_o_GT_PIPE] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(904), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(904), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(904), + [anon_sym_xor2] = ACTIONS(904), + [anon_sym_or2] = ACTIONS(904), + [anon_sym_not_DASHin2] = ACTIONS(904), + [anon_sym_has2] = ACTIONS(904), + [anon_sym_not_DASHhas2] = ACTIONS(904), + [anon_sym_starts_DASHwith2] = ACTIONS(904), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(904), + [anon_sym_ends_DASHwith2] = ACTIONS(904), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(904), + [anon_sym_EQ_EQ2] = ACTIONS(904), + [anon_sym_BANG_EQ2] = ACTIONS(904), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(904), + [anon_sym_GT_EQ2] = ACTIONS(904), + [anon_sym_EQ_TILDE2] = ACTIONS(904), + [anon_sym_BANG_TILDE2] = ACTIONS(904), + [anon_sym_like2] = ACTIONS(904), + [anon_sym_not_DASHlike2] = ACTIONS(904), + [anon_sym_STAR_STAR2] = ACTIONS(904), + [anon_sym_PLUS_PLUS2] = ACTIONS(904), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(904), + [anon_sym_SLASH_SLASH2] = ACTIONS(904), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(904), + [anon_sym_bit_DASHshr2] = ACTIONS(904), + [anon_sym_bit_DASHand2] = ACTIONS(904), + [anon_sym_bit_DASHxor2] = ACTIONS(904), + [anon_sym_bit_DASHor2] = ACTIONS(904), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [anon_sym_err_GT_GT] = ACTIONS(904), + [anon_sym_out_GT_GT] = ACTIONS(904), + [anon_sym_e_GT_GT] = ACTIONS(904), + [anon_sym_o_GT_GT] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(904), + [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1263)] = { + [aux_sym__repeat_newline] = STATE(675), + [sym_comment] = STATE(1263), + [anon_sym_in] = ACTIONS(2876), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_err_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_GT_PIPE] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_GT2] = ACTIONS(2878), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2876), + [anon_sym_xor2] = ACTIONS(2876), + [anon_sym_or2] = ACTIONS(2876), + [anon_sym_not_DASHin2] = ACTIONS(2876), + [anon_sym_has2] = ACTIONS(2876), + [anon_sym_not_DASHhas2] = ACTIONS(2876), + [anon_sym_starts_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), + [anon_sym_ends_DASHwith2] = ACTIONS(2876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), + [anon_sym_EQ_EQ2] = ACTIONS(2876), + [anon_sym_BANG_EQ2] = ACTIONS(2876), + [anon_sym_LT2] = ACTIONS(2878), + [anon_sym_LT_EQ2] = ACTIONS(2876), + [anon_sym_GT_EQ2] = ACTIONS(2876), + [anon_sym_EQ_TILDE2] = ACTIONS(2876), + [anon_sym_BANG_TILDE2] = ACTIONS(2876), + [anon_sym_like2] = ACTIONS(2876), + [anon_sym_not_DASHlike2] = ACTIONS(2876), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(2876), + [anon_sym_bit_DASHshr2] = ACTIONS(2876), + [anon_sym_bit_DASHand2] = ACTIONS(2876), + [anon_sym_bit_DASHxor2] = ACTIONS(2876), + [anon_sym_bit_DASHor2] = ACTIONS(2876), + [anon_sym_err_GT] = ACTIONS(2878), + [anon_sym_out_GT] = ACTIONS(2878), + [anon_sym_e_GT] = ACTIONS(2878), + [anon_sym_o_GT] = ACTIONS(2878), + [anon_sym_err_PLUSout_GT] = ACTIONS(2878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), + [anon_sym_o_PLUSe_GT] = ACTIONS(2878), + [anon_sym_e_PLUSo_GT] = ACTIONS(2878), + [anon_sym_err_GT_GT] = ACTIONS(2876), + [anon_sym_out_GT_GT] = ACTIONS(2876), + [anon_sym_e_GT_GT] = ACTIONS(2876), + [anon_sym_o_GT_GT] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1264)] = { + [aux_sym__repeat_newline] = STATE(675), + [sym_comment] = STATE(1264), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_err_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_GT_PIPE] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2876), + [anon_sym_xor2] = ACTIONS(2876), + [anon_sym_or2] = ACTIONS(2876), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2876), + [anon_sym_bit_DASHxor2] = ACTIONS(2876), + [anon_sym_bit_DASHor2] = ACTIONS(2876), + [anon_sym_err_GT] = ACTIONS(2878), + [anon_sym_out_GT] = ACTIONS(2878), + [anon_sym_e_GT] = ACTIONS(2878), + [anon_sym_o_GT] = ACTIONS(2878), + [anon_sym_err_PLUSout_GT] = ACTIONS(2878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), + [anon_sym_o_PLUSe_GT] = ACTIONS(2878), + [anon_sym_e_PLUSo_GT] = ACTIONS(2878), + [anon_sym_err_GT_GT] = ACTIONS(2876), + [anon_sym_out_GT_GT] = ACTIONS(2876), + [anon_sym_e_GT_GT] = ACTIONS(2876), + [anon_sym_o_GT_GT] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1265)] = { + [sym_comment] = STATE(1265), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_STAR2] = ACTIONS(1750), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1750), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1856), + [anon_sym_SLASH2] = ACTIONS(1750), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1750), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_COLON2] = ACTIONS(1858), + [anon_sym_err_GT] = ACTIONS(1750), + [anon_sym_out_GT] = ACTIONS(1750), + [anon_sym_e_GT] = ACTIONS(1750), + [anon_sym_o_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT] = ACTIONS(1750), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1266)] = { + [aux_sym__repeat_newline] = STATE(675), + [sym_comment] = STATE(1266), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_err_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_GT_PIPE] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2876), + [anon_sym_xor2] = ACTIONS(2876), + [anon_sym_or2] = ACTIONS(2876), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(2876), + [anon_sym_bit_DASHor2] = ACTIONS(2876), + [anon_sym_err_GT] = ACTIONS(2878), + [anon_sym_out_GT] = ACTIONS(2878), + [anon_sym_e_GT] = ACTIONS(2878), + [anon_sym_o_GT] = ACTIONS(2878), + [anon_sym_err_PLUSout_GT] = ACTIONS(2878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), + [anon_sym_o_PLUSe_GT] = ACTIONS(2878), + [anon_sym_e_PLUSo_GT] = ACTIONS(2878), + [anon_sym_err_GT_GT] = ACTIONS(2876), + [anon_sym_out_GT_GT] = ACTIONS(2876), + [anon_sym_e_GT_GT] = ACTIONS(2876), + [anon_sym_o_GT_GT] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1267)] = { + [aux_sym__repeat_newline] = STATE(675), + [sym_comment] = STATE(1267), + [anon_sym_in] = ACTIONS(2990), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_err_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_GT_PIPE] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2876), + [anon_sym_xor2] = ACTIONS(2876), + [anon_sym_or2] = ACTIONS(2876), + [anon_sym_not_DASHin2] = ACTIONS(2990), + [anon_sym_has2] = ACTIONS(2990), + [anon_sym_not_DASHhas2] = ACTIONS(2990), + [anon_sym_starts_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2990), + [anon_sym_ends_DASHwith2] = ACTIONS(2990), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2990), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(3000), + [anon_sym_BANG_TILDE2] = ACTIONS(3000), + [anon_sym_like2] = ACTIONS(3000), + [anon_sym_not_DASHlike2] = ACTIONS(3000), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(3008), + [anon_sym_bit_DASHxor2] = ACTIONS(3010), + [anon_sym_bit_DASHor2] = ACTIONS(2876), + [anon_sym_err_GT] = ACTIONS(2878), + [anon_sym_out_GT] = ACTIONS(2878), + [anon_sym_e_GT] = ACTIONS(2878), + [anon_sym_o_GT] = ACTIONS(2878), + [anon_sym_err_PLUSout_GT] = ACTIONS(2878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), + [anon_sym_o_PLUSe_GT] = ACTIONS(2878), + [anon_sym_e_PLUSo_GT] = ACTIONS(2878), + [anon_sym_err_GT_GT] = ACTIONS(2876), + [anon_sym_out_GT_GT] = ACTIONS(2876), + [anon_sym_e_GT_GT] = ACTIONS(2876), + [anon_sym_o_GT_GT] = ACTIONS(2876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1268)] = { + [sym_comment] = STATE(1268), + [anon_sym_in] = ACTIONS(2436), + [sym__newline] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2436), + [anon_sym_PIPE] = ACTIONS(2436), + [anon_sym_err_GT_PIPE] = ACTIONS(2436), + [anon_sym_out_GT_PIPE] = ACTIONS(2436), + [anon_sym_e_GT_PIPE] = ACTIONS(2436), + [anon_sym_o_GT_PIPE] = ACTIONS(2436), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2436), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2436), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2436), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2436), + [anon_sym_RPAREN] = ACTIONS(2436), + [anon_sym_GT2] = ACTIONS(2438), + [anon_sym_DASH2] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2436), + [anon_sym_STAR2] = ACTIONS(2438), + [anon_sym_and2] = ACTIONS(2436), + [anon_sym_xor2] = ACTIONS(2436), + [anon_sym_or2] = ACTIONS(2436), + [anon_sym_not_DASHin2] = ACTIONS(2436), + [anon_sym_has2] = ACTIONS(2436), + [anon_sym_not_DASHhas2] = ACTIONS(2436), + [anon_sym_starts_DASHwith2] = ACTIONS(2436), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2436), + [anon_sym_ends_DASHwith2] = ACTIONS(2436), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2436), + [anon_sym_EQ_EQ2] = ACTIONS(2436), + [anon_sym_BANG_EQ2] = ACTIONS(2436), + [anon_sym_LT2] = ACTIONS(2438), + [anon_sym_LT_EQ2] = ACTIONS(2436), + [anon_sym_GT_EQ2] = ACTIONS(2436), + [anon_sym_EQ_TILDE2] = ACTIONS(2436), + [anon_sym_BANG_TILDE2] = ACTIONS(2436), + [anon_sym_like2] = ACTIONS(2436), + [anon_sym_not_DASHlike2] = ACTIONS(2436), + [anon_sym_STAR_STAR2] = ACTIONS(2436), + [anon_sym_PLUS_PLUS2] = ACTIONS(2436), + [anon_sym_SLASH2] = ACTIONS(2438), + [anon_sym_mod2] = ACTIONS(2436), + [anon_sym_SLASH_SLASH2] = ACTIONS(2436), + [anon_sym_PLUS2] = ACTIONS(2438), + [anon_sym_bit_DASHshl2] = ACTIONS(2436), + [anon_sym_bit_DASHshr2] = ACTIONS(2436), + [anon_sym_bit_DASHand2] = ACTIONS(2436), + [anon_sym_bit_DASHxor2] = ACTIONS(2436), + [anon_sym_bit_DASHor2] = ACTIONS(2436), + [anon_sym_err_GT] = ACTIONS(2438), + [anon_sym_out_GT] = ACTIONS(2438), + [anon_sym_e_GT] = ACTIONS(2438), + [anon_sym_o_GT] = ACTIONS(2438), + [anon_sym_err_PLUSout_GT] = ACTIONS(2438), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2438), + [anon_sym_o_PLUSe_GT] = ACTIONS(2438), + [anon_sym_e_PLUSo_GT] = ACTIONS(2438), + [anon_sym_err_GT_GT] = ACTIONS(2436), + [anon_sym_out_GT_GT] = ACTIONS(2436), + [anon_sym_e_GT_GT] = ACTIONS(2436), + [anon_sym_o_GT_GT] = ACTIONS(2436), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2436), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2436), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2436), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1269)] = { + [aux_sym__repeat_newline] = STATE(1271), + [sym_comment] = STATE(1269), + [anon_sym_in] = ACTIONS(2820), + [sym__newline] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_err_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_GT_PIPE] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2820), + [anon_sym_xor2] = ACTIONS(2820), + [anon_sym_or2] = ACTIONS(2820), + [anon_sym_not_DASHin2] = ACTIONS(2820), + [anon_sym_has2] = ACTIONS(2820), + [anon_sym_not_DASHhas2] = ACTIONS(2820), + [anon_sym_starts_DASHwith2] = ACTIONS(2820), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2820), + [anon_sym_ends_DASHwith2] = ACTIONS(2820), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2820), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2820), + [anon_sym_bit_DASHxor2] = ACTIONS(2820), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2822), + [anon_sym_out_GT] = ACTIONS(2822), + [anon_sym_e_GT] = ACTIONS(2822), + [anon_sym_o_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT] = ACTIONS(2822), + [anon_sym_err_GT_GT] = ACTIONS(2820), + [anon_sym_out_GT_GT] = ACTIONS(2820), + [anon_sym_e_GT_GT] = ACTIONS(2820), + [anon_sym_o_GT_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1270)] = { + [aux_sym__repeat_newline] = STATE(1204), + [sym_comment] = STATE(1270), + [anon_sym_in] = ACTIONS(2920), + [sym__newline] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_err_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_GT_PIPE] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_GT2] = ACTIONS(2968), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2920), + [anon_sym_xor2] = ACTIONS(2920), + [anon_sym_or2] = ACTIONS(2920), + [anon_sym_not_DASHin2] = ACTIONS(2920), + [anon_sym_has2] = ACTIONS(2920), + [anon_sym_not_DASHhas2] = ACTIONS(2920), + [anon_sym_starts_DASHwith2] = ACTIONS(2920), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2920), + [anon_sym_ends_DASHwith2] = ACTIONS(2920), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2920), + [anon_sym_EQ_EQ2] = ACTIONS(2974), + [anon_sym_BANG_EQ2] = ACTIONS(2974), + [anon_sym_LT2] = ACTIONS(2968), + [anon_sym_LT_EQ2] = ACTIONS(2974), + [anon_sym_GT_EQ2] = ACTIONS(2974), + [anon_sym_EQ_TILDE2] = ACTIONS(2920), + [anon_sym_BANG_TILDE2] = ACTIONS(2920), + [anon_sym_like2] = ACTIONS(2920), + [anon_sym_not_DASHlike2] = ACTIONS(2920), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2920), + [anon_sym_bit_DASHxor2] = ACTIONS(2920), + [anon_sym_bit_DASHor2] = ACTIONS(2920), + [anon_sym_err_GT] = ACTIONS(2922), + [anon_sym_out_GT] = ACTIONS(2922), + [anon_sym_e_GT] = ACTIONS(2922), + [anon_sym_o_GT] = ACTIONS(2922), + [anon_sym_err_PLUSout_GT] = ACTIONS(2922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2922), + [anon_sym_o_PLUSe_GT] = ACTIONS(2922), + [anon_sym_e_PLUSo_GT] = ACTIONS(2922), + [anon_sym_err_GT_GT] = ACTIONS(2920), + [anon_sym_out_GT_GT] = ACTIONS(2920), + [anon_sym_e_GT_GT] = ACTIONS(2920), + [anon_sym_o_GT_GT] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2920), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1271)] = { + [aux_sym__repeat_newline] = STATE(675), + [sym_comment] = STATE(1271), + [anon_sym_in] = ACTIONS(2944), + [sym__newline] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_err_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_GT_PIPE] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_GT2] = ACTIONS(2992), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2944), + [anon_sym_xor2] = ACTIONS(2944), + [anon_sym_or2] = ACTIONS(2944), + [anon_sym_not_DASHin2] = ACTIONS(2944), + [anon_sym_has2] = ACTIONS(2944), + [anon_sym_not_DASHhas2] = ACTIONS(2944), + [anon_sym_starts_DASHwith2] = ACTIONS(2944), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2944), + [anon_sym_ends_DASHwith2] = ACTIONS(2944), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2944), + [anon_sym_EQ_EQ2] = ACTIONS(2998), + [anon_sym_BANG_EQ2] = ACTIONS(2998), + [anon_sym_LT2] = ACTIONS(2992), + [anon_sym_LT_EQ2] = ACTIONS(2998), + [anon_sym_GT_EQ2] = ACTIONS(2998), + [anon_sym_EQ_TILDE2] = ACTIONS(2944), + [anon_sym_BANG_TILDE2] = ACTIONS(2944), + [anon_sym_like2] = ACTIONS(2944), + [anon_sym_not_DASHlike2] = ACTIONS(2944), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2944), + [anon_sym_bit_DASHxor2] = ACTIONS(2944), + [anon_sym_bit_DASHor2] = ACTIONS(2944), + [anon_sym_err_GT] = ACTIONS(2946), + [anon_sym_out_GT] = ACTIONS(2946), + [anon_sym_e_GT] = ACTIONS(2946), + [anon_sym_o_GT] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT] = ACTIONS(2946), + [anon_sym_err_GT_GT] = ACTIONS(2944), + [anon_sym_out_GT_GT] = ACTIONS(2944), + [anon_sym_e_GT_GT] = ACTIONS(2944), + [anon_sym_o_GT_GT] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2944), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1272)] = { + [aux_sym__repeat_newline] = STATE(1205), + [sym_comment] = STATE(1272), + [anon_sym_in] = ACTIONS(2920), + [sym__newline] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_err_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_GT_PIPE] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_GT2] = ACTIONS(2922), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2920), + [anon_sym_xor2] = ACTIONS(2920), + [anon_sym_or2] = ACTIONS(2920), + [anon_sym_not_DASHin2] = ACTIONS(2920), + [anon_sym_has2] = ACTIONS(2920), + [anon_sym_not_DASHhas2] = ACTIONS(2920), + [anon_sym_starts_DASHwith2] = ACTIONS(2920), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2920), + [anon_sym_ends_DASHwith2] = ACTIONS(2920), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2920), + [anon_sym_EQ_EQ2] = ACTIONS(2920), + [anon_sym_BANG_EQ2] = ACTIONS(2920), + [anon_sym_LT2] = ACTIONS(2922), + [anon_sym_LT_EQ2] = ACTIONS(2920), + [anon_sym_GT_EQ2] = ACTIONS(2920), + [anon_sym_EQ_TILDE2] = ACTIONS(2920), + [anon_sym_BANG_TILDE2] = ACTIONS(2920), + [anon_sym_like2] = ACTIONS(2920), + [anon_sym_not_DASHlike2] = ACTIONS(2920), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2920), + [anon_sym_bit_DASHxor2] = ACTIONS(2920), + [anon_sym_bit_DASHor2] = ACTIONS(2920), + [anon_sym_err_GT] = ACTIONS(2922), + [anon_sym_out_GT] = ACTIONS(2922), + [anon_sym_e_GT] = ACTIONS(2922), + [anon_sym_o_GT] = ACTIONS(2922), + [anon_sym_err_PLUSout_GT] = ACTIONS(2922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2922), + [anon_sym_o_PLUSe_GT] = ACTIONS(2922), + [anon_sym_e_PLUSo_GT] = ACTIONS(2922), + [anon_sym_err_GT_GT] = ACTIONS(2920), + [anon_sym_out_GT_GT] = ACTIONS(2920), + [anon_sym_e_GT_GT] = ACTIONS(2920), + [anon_sym_o_GT_GT] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2920), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1273)] = { + [sym_comment] = STATE(1273), + [ts_builtin_sym_end] = ACTIONS(904), + [aux_sym_cmd_identifier_token2] = ACTIONS(2954), + [anon_sym_in] = ACTIONS(815), + [sym__newline] = ACTIONS(904), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_PIPE] = ACTIONS(904), + [anon_sym_err_GT_PIPE] = ACTIONS(904), + [anon_sym_out_GT_PIPE] = ACTIONS(904), + [anon_sym_e_GT_PIPE] = ACTIONS(904), + [anon_sym_o_GT_PIPE] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(904), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_STAR2] = ACTIONS(815), + [anon_sym_and2] = ACTIONS(815), + [anon_sym_xor2] = ACTIONS(815), + [anon_sym_or2] = ACTIONS(815), + [anon_sym_not_DASHin2] = ACTIONS(815), + [anon_sym_has2] = ACTIONS(815), + [anon_sym_not_DASHhas2] = ACTIONS(815), + [anon_sym_starts_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(815), + [anon_sym_ends_DASHwith2] = ACTIONS(815), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(815), + [anon_sym_EQ_EQ2] = ACTIONS(904), + [anon_sym_BANG_EQ2] = ACTIONS(904), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_LT_EQ2] = ACTIONS(904), + [anon_sym_GT_EQ2] = ACTIONS(904), + [anon_sym_EQ_TILDE2] = ACTIONS(904), + [anon_sym_BANG_TILDE2] = ACTIONS(815), + [anon_sym_like2] = ACTIONS(815), + [anon_sym_not_DASHlike2] = ACTIONS(815), + [anon_sym_STAR_STAR2] = ACTIONS(815), + [anon_sym_PLUS_PLUS2] = ACTIONS(815), + [anon_sym_SLASH2] = ACTIONS(815), + [anon_sym_mod2] = ACTIONS(815), + [anon_sym_SLASH_SLASH2] = ACTIONS(815), + [anon_sym_PLUS2] = ACTIONS(815), + [anon_sym_bit_DASHshl2] = ACTIONS(815), + [anon_sym_bit_DASHshr2] = ACTIONS(815), + [anon_sym_bit_DASHand2] = ACTIONS(815), + [anon_sym_bit_DASHxor2] = ACTIONS(815), + [anon_sym_bit_DASHor2] = ACTIONS(815), + [anon_sym_err_GT] = ACTIONS(815), + [anon_sym_out_GT] = ACTIONS(815), + [anon_sym_e_GT] = ACTIONS(815), + [anon_sym_o_GT] = ACTIONS(815), + [anon_sym_err_PLUSout_GT] = ACTIONS(815), + [anon_sym_out_PLUSerr_GT] = ACTIONS(815), + [anon_sym_o_PLUSe_GT] = ACTIONS(815), + [anon_sym_e_PLUSo_GT] = ACTIONS(815), + [anon_sym_err_GT_GT] = ACTIONS(904), + [anon_sym_out_GT_GT] = ACTIONS(904), + [anon_sym_e_GT_GT] = ACTIONS(904), + [anon_sym_o_GT_GT] = ACTIONS(904), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(904), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(904), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(904), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(904), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1274)] = { + [aux_sym__repeat_newline] = STATE(1275), + [sym_comment] = STATE(1274), + [anon_sym_in] = ACTIONS(2820), + [sym__newline] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_err_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_GT_PIPE] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_GT2] = ACTIONS(2822), + [anon_sym_DASH2] = ACTIONS(2970), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2820), + [anon_sym_xor2] = ACTIONS(2820), + [anon_sym_or2] = ACTIONS(2820), + [anon_sym_not_DASHin2] = ACTIONS(2820), + [anon_sym_has2] = ACTIONS(2820), + [anon_sym_not_DASHhas2] = ACTIONS(2820), + [anon_sym_starts_DASHwith2] = ACTIONS(2820), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2820), + [anon_sym_ends_DASHwith2] = ACTIONS(2820), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2820), + [anon_sym_EQ_EQ2] = ACTIONS(2820), + [anon_sym_BANG_EQ2] = ACTIONS(2820), + [anon_sym_LT2] = ACTIONS(2822), + [anon_sym_LT_EQ2] = ACTIONS(2820), + [anon_sym_GT_EQ2] = ACTIONS(2820), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2980), + [anon_sym_bit_DASHshl2] = ACTIONS(2982), + [anon_sym_bit_DASHshr2] = ACTIONS(2982), + [anon_sym_bit_DASHand2] = ACTIONS(2820), + [anon_sym_bit_DASHxor2] = ACTIONS(2820), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2822), + [anon_sym_out_GT] = ACTIONS(2822), + [anon_sym_e_GT] = ACTIONS(2822), + [anon_sym_o_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT] = ACTIONS(2822), + [anon_sym_err_GT_GT] = ACTIONS(2820), + [anon_sym_out_GT_GT] = ACTIONS(2820), + [anon_sym_e_GT_GT] = ACTIONS(2820), + [anon_sym_o_GT_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1275)] = { + [aux_sym__repeat_newline] = STATE(675), + [sym_comment] = STATE(1275), + [anon_sym_in] = ACTIONS(2944), + [sym__newline] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_err_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_GT_PIPE] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_GT2] = ACTIONS(2946), + [anon_sym_DASH2] = ACTIONS(2994), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2944), + [anon_sym_xor2] = ACTIONS(2944), + [anon_sym_or2] = ACTIONS(2944), + [anon_sym_not_DASHin2] = ACTIONS(2944), + [anon_sym_has2] = ACTIONS(2944), + [anon_sym_not_DASHhas2] = ACTIONS(2944), + [anon_sym_starts_DASHwith2] = ACTIONS(2944), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2944), + [anon_sym_ends_DASHwith2] = ACTIONS(2944), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2944), + [anon_sym_EQ_EQ2] = ACTIONS(2944), + [anon_sym_BANG_EQ2] = ACTIONS(2944), + [anon_sym_LT2] = ACTIONS(2946), + [anon_sym_LT_EQ2] = ACTIONS(2944), + [anon_sym_GT_EQ2] = ACTIONS(2944), + [anon_sym_EQ_TILDE2] = ACTIONS(2944), + [anon_sym_BANG_TILDE2] = ACTIONS(2944), + [anon_sym_like2] = ACTIONS(2944), + [anon_sym_not_DASHlike2] = ACTIONS(2944), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(3004), + [anon_sym_bit_DASHshl2] = ACTIONS(3006), + [anon_sym_bit_DASHshr2] = ACTIONS(3006), + [anon_sym_bit_DASHand2] = ACTIONS(2944), + [anon_sym_bit_DASHxor2] = ACTIONS(2944), + [anon_sym_bit_DASHor2] = ACTIONS(2944), + [anon_sym_err_GT] = ACTIONS(2946), + [anon_sym_out_GT] = ACTIONS(2946), + [anon_sym_e_GT] = ACTIONS(2946), + [anon_sym_o_GT] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT] = ACTIONS(2946), + [anon_sym_err_GT_GT] = ACTIONS(2944), + [anon_sym_out_GT_GT] = ACTIONS(2944), + [anon_sym_e_GT_GT] = ACTIONS(2944), + [anon_sym_o_GT_GT] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2944), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1276)] = { + [aux_sym__repeat_newline] = STATE(1206), + [sym_comment] = STATE(1276), + [anon_sym_in] = ACTIONS(2920), + [sym__newline] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_err_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_GT_PIPE] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2920), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_GT2] = ACTIONS(2922), + [anon_sym_DASH2] = ACTIONS(2920), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2920), + [anon_sym_xor2] = ACTIONS(2920), + [anon_sym_or2] = ACTIONS(2920), + [anon_sym_not_DASHin2] = ACTIONS(2920), + [anon_sym_has2] = ACTIONS(2920), + [anon_sym_not_DASHhas2] = ACTIONS(2920), + [anon_sym_starts_DASHwith2] = ACTIONS(2920), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2920), + [anon_sym_ends_DASHwith2] = ACTIONS(2920), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2920), + [anon_sym_EQ_EQ2] = ACTIONS(2920), + [anon_sym_BANG_EQ2] = ACTIONS(2920), + [anon_sym_LT2] = ACTIONS(2922), + [anon_sym_LT_EQ2] = ACTIONS(2920), + [anon_sym_GT_EQ2] = ACTIONS(2920), + [anon_sym_EQ_TILDE2] = ACTIONS(2920), + [anon_sym_BANG_TILDE2] = ACTIONS(2920), + [anon_sym_like2] = ACTIONS(2920), + [anon_sym_not_DASHlike2] = ACTIONS(2920), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2922), + [anon_sym_bit_DASHshl2] = ACTIONS(2920), + [anon_sym_bit_DASHshr2] = ACTIONS(2920), + [anon_sym_bit_DASHand2] = ACTIONS(2920), + [anon_sym_bit_DASHxor2] = ACTIONS(2920), + [anon_sym_bit_DASHor2] = ACTIONS(2920), + [anon_sym_err_GT] = ACTIONS(2922), + [anon_sym_out_GT] = ACTIONS(2922), + [anon_sym_e_GT] = ACTIONS(2922), + [anon_sym_o_GT] = ACTIONS(2922), + [anon_sym_err_PLUSout_GT] = ACTIONS(2922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2922), + [anon_sym_o_PLUSe_GT] = ACTIONS(2922), + [anon_sym_e_PLUSo_GT] = ACTIONS(2922), + [anon_sym_err_GT_GT] = ACTIONS(2920), + [anon_sym_out_GT_GT] = ACTIONS(2920), + [anon_sym_e_GT_GT] = ACTIONS(2920), + [anon_sym_o_GT_GT] = ACTIONS(2920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2920), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1277)] = { + [aux_sym__repeat_newline] = STATE(675), + [sym_comment] = STATE(1277), + [anon_sym_in] = ACTIONS(2944), + [sym__newline] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_err_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_GT_PIPE] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_GT2] = ACTIONS(2946), + [anon_sym_DASH2] = ACTIONS(2944), + [anon_sym_STAR2] = ACTIONS(2996), + [anon_sym_and2] = ACTIONS(2944), + [anon_sym_xor2] = ACTIONS(2944), + [anon_sym_or2] = ACTIONS(2944), + [anon_sym_not_DASHin2] = ACTIONS(2944), + [anon_sym_has2] = ACTIONS(2944), + [anon_sym_not_DASHhas2] = ACTIONS(2944), + [anon_sym_starts_DASHwith2] = ACTIONS(2944), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2944), + [anon_sym_ends_DASHwith2] = ACTIONS(2944), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2944), + [anon_sym_EQ_EQ2] = ACTIONS(2944), + [anon_sym_BANG_EQ2] = ACTIONS(2944), + [anon_sym_LT2] = ACTIONS(2946), + [anon_sym_LT_EQ2] = ACTIONS(2944), + [anon_sym_GT_EQ2] = ACTIONS(2944), + [anon_sym_EQ_TILDE2] = ACTIONS(2944), + [anon_sym_BANG_TILDE2] = ACTIONS(2944), + [anon_sym_like2] = ACTIONS(2944), + [anon_sym_not_DASHlike2] = ACTIONS(2944), + [anon_sym_STAR_STAR2] = ACTIONS(2964), + [anon_sym_PLUS_PLUS2] = ACTIONS(2964), + [anon_sym_SLASH2] = ACTIONS(2996), + [anon_sym_mod2] = ACTIONS(3002), + [anon_sym_SLASH_SLASH2] = ACTIONS(3002), + [anon_sym_PLUS2] = ACTIONS(2946), + [anon_sym_bit_DASHshl2] = ACTIONS(2944), + [anon_sym_bit_DASHshr2] = ACTIONS(2944), + [anon_sym_bit_DASHand2] = ACTIONS(2944), + [anon_sym_bit_DASHxor2] = ACTIONS(2944), + [anon_sym_bit_DASHor2] = ACTIONS(2944), + [anon_sym_err_GT] = ACTIONS(2946), + [anon_sym_out_GT] = ACTIONS(2946), + [anon_sym_e_GT] = ACTIONS(2946), + [anon_sym_o_GT] = ACTIONS(2946), + [anon_sym_err_PLUSout_GT] = ACTIONS(2946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2946), + [anon_sym_o_PLUSe_GT] = ACTIONS(2946), + [anon_sym_e_PLUSo_GT] = ACTIONS(2946), + [anon_sym_err_GT_GT] = ACTIONS(2944), + [anon_sym_out_GT_GT] = ACTIONS(2944), + [anon_sym_e_GT_GT] = ACTIONS(2944), + [anon_sym_o_GT_GT] = ACTIONS(2944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2944), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1278)] = { + [sym__expression] = STATE(4925), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2440), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_comment] = STATE(1278), + [aux_sym_cmd_identifier_token2] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), + [anon_sym_null] = ACTIONS(2705), + [aux_sym_cmd_identifier_token3] = ACTIONS(2707), + [aux_sym_cmd_identifier_token4] = ACTIONS(2707), + [aux_sym_cmd_identifier_token5] = ACTIONS(2707), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2711), + [aux_sym__val_number_decimal_token4] = ACTIONS(2711), + [aux_sym__val_number_token1] = ACTIONS(2707), + [aux_sym__val_number_token2] = ACTIONS(2707), + [aux_sym__val_number_token3] = ACTIONS(2707), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2713), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138836,65 +144136,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1258)] = { - [sym__expression] = STATE(4776), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1258), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [STATE(1279)] = { + [sym__expression] = STATE(4942), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2440), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_comment] = STATE(1279), + [aux_sym_cmd_identifier_token2] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), + [anon_sym_null] = ACTIONS(2705), + [aux_sym_cmd_identifier_token3] = ACTIONS(2707), + [aux_sym_cmd_identifier_token4] = ACTIONS(2707), + [aux_sym_cmd_identifier_token5] = ACTIONS(2707), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2711), + [aux_sym__val_number_decimal_token4] = ACTIONS(2711), + [aux_sym__val_number_token1] = ACTIONS(2707), + [aux_sym__val_number_token2] = ACTIONS(2707), + [aux_sym__val_number_token3] = ACTIONS(2707), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2713), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138903,65 +144203,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1259)] = { - [sym__expression] = STATE(4779), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1259), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [STATE(1280)] = { + [sym__expression] = STATE(4947), + [sym_expr_unary] = STATE(960), + [sym__expr_unary_minus] = STATE(961), + [sym_expr_binary] = STATE(960), + [sym__expr_binary_expression] = STATE(2440), + [sym_expr_parenthesized] = STATE(694), + [sym_val_range] = STATE(960), + [sym__value] = STATE(960), + [sym_val_nothing] = STATE(959), + [sym_val_bool] = STATE(959), + [sym_val_variable] = STATE(693), + [sym_val_cellpath] = STATE(959), + [sym_val_number] = STATE(959), + [sym__val_number_decimal] = STATE(2050), + [sym__val_number] = STATE(697), + [sym_val_duration] = STATE(959), + [sym_val_filesize] = STATE(959), + [sym_val_binary] = STATE(959), + [sym_val_string] = STATE(959), + [sym__raw_str] = STATE(433), + [sym__str_double_quotes] = STATE(433), + [sym__str_single_quotes] = STATE(433), + [sym__str_back_ticks] = STATE(433), + [sym_val_interpolated] = STATE(959), + [sym__inter_single_quotes] = STATE(750), + [sym__inter_double_quotes] = STATE(751), + [sym_val_list] = STATE(959), + [sym_val_record] = STATE(959), + [sym_val_table] = STATE(959), + [sym_val_closure] = STATE(959), + [sym_comment] = STATE(1280), + [aux_sym_cmd_identifier_token2] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), + [anon_sym_null] = ACTIONS(2705), + [aux_sym_cmd_identifier_token3] = ACTIONS(2707), + [aux_sym_cmd_identifier_token4] = ACTIONS(2707), + [aux_sym_cmd_identifier_token5] = ACTIONS(2707), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH2] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2711), + [aux_sym__val_number_decimal_token4] = ACTIONS(2711), + [aux_sym__val_number_token1] = ACTIONS(2707), + [aux_sym__val_number_token2] = ACTIONS(2707), + [aux_sym__val_number_token3] = ACTIONS(2707), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2713), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138970,205 +144270,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1260)] = { - [sym__ctrl_match_body] = STATE(5167), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), - [sym_comment] = STATE(1260), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(1261)] = { - [aux_sym__repeat_newline] = STATE(1233), - [sym_comment] = STATE(1261), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1262)] = { - [aux_sym__repeat_newline] = STATE(1175), - [sym_comment] = STATE(1262), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [STATE(1281)] = { + [aux_sym__repeat_newline] = STATE(1277), + [sym_comment] = STATE(1281), + [anon_sym_in] = ACTIONS(2820), + [sym__newline] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_err_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_GT_PIPE] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2820), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_GT2] = ACTIONS(2822), + [anon_sym_DASH2] = ACTIONS(2820), + [anon_sym_STAR2] = ACTIONS(2972), + [anon_sym_and2] = ACTIONS(2820), + [anon_sym_xor2] = ACTIONS(2820), + [anon_sym_or2] = ACTIONS(2820), + [anon_sym_not_DASHin2] = ACTIONS(2820), + [anon_sym_has2] = ACTIONS(2820), + [anon_sym_not_DASHhas2] = ACTIONS(2820), + [anon_sym_starts_DASHwith2] = ACTIONS(2820), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2820), + [anon_sym_ends_DASHwith2] = ACTIONS(2820), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2820), + [anon_sym_EQ_EQ2] = ACTIONS(2820), + [anon_sym_BANG_EQ2] = ACTIONS(2820), + [anon_sym_LT2] = ACTIONS(2822), + [anon_sym_LT_EQ2] = ACTIONS(2820), + [anon_sym_GT_EQ2] = ACTIONS(2820), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2959), + [anon_sym_PLUS_PLUS2] = ACTIONS(2959), + [anon_sym_SLASH2] = ACTIONS(2972), + [anon_sym_mod2] = ACTIONS(2978), + [anon_sym_SLASH_SLASH2] = ACTIONS(2978), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2820), + [anon_sym_bit_DASHshr2] = ACTIONS(2820), + [anon_sym_bit_DASHand2] = ACTIONS(2820), + [anon_sym_bit_DASHxor2] = ACTIONS(2820), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2822), + [anon_sym_out_GT] = ACTIONS(2822), + [anon_sym_e_GT] = ACTIONS(2822), + [anon_sym_o_GT] = ACTIONS(2822), + [anon_sym_err_PLUSout_GT] = ACTIONS(2822), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2822), + [anon_sym_o_PLUSe_GT] = ACTIONS(2822), + [anon_sym_e_PLUSo_GT] = ACTIONS(2822), + [anon_sym_err_GT_GT] = ACTIONS(2820), + [anon_sym_out_GT_GT] = ACTIONS(2820), + [anon_sym_e_GT_GT] = ACTIONS(2820), + [anon_sym_o_GT_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2820), [anon_sym_POUND] = ACTIONS(3), }, }; @@ -139177,9 +144343,9 @@ static const uint16_t ts_small_parse_table[] = { [0] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1263), 1, + STATE(1282), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(2744), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139193,7 +144359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2272), 49, + ACTIONS(2742), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139243,17 +144409,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, - [73] = 4, + [73] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1264), 1, + ACTIONS(3142), 1, + anon_sym_DOT, + ACTIONS(3144), 1, + aux_sym__immediate_decimal_token5, + STATE(1283), 1, sym_comment, - ACTIONS(2154), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(767), 20, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139262,48 +144437,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2152), 49, - ts_builtin_sym_end, - anon_sym_in, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(769), 40, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -139312,32 +144480,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [146] = 4, + [150] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1265), 1, - sym_comment, - ACTIONS(2220), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2218), 49, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(3148), 1, + anon_sym_null, + ACTIONS(3152), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, + ACTIONS(3154), 1, + anon_sym_LBRACK, + ACTIONS(3156), 1, + anon_sym_LPAREN, + ACTIONS(3158), 1, + anon_sym_DOLLAR, + ACTIONS(3160), 1, + anon_sym_LBRACE, + ACTIONS(3162), 1, + anon_sym_DOT_DOT, + ACTIONS(3166), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3168), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3174), 1, + anon_sym_0b, + ACTIONS(3178), 1, + sym_val_date, + ACTIONS(3180), 1, + anon_sym_DQUOTE, + ACTIONS(3182), 1, + anon_sym_SQUOTE, + ACTIONS(3184), 1, + anon_sym_BQUOTE, + ACTIONS(3186), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3188), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3190), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3192), 1, + sym_raw_string_begin, + STATE(1284), 1, + sym_comment, + STATE(2448), 1, + aux_sym__repeat_newline, + STATE(2673), 1, + sym__val_number_decimal, + STATE(3069), 1, + sym_val_variable, + STATE(3133), 1, + sym_expr_parenthesized, + STATE(3180), 1, + sym__inter_single_quotes, + STATE(3181), 1, + sym__inter_double_quotes, + STATE(3205), 1, + sym__val_number, + STATE(3255), 1, + sym_val_bool, + STATE(3291), 1, + sym__unquoted_in_record, + ACTIONS(3146), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3164), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3170), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3176), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4645), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3150), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3172), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3529), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2782), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3204), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [293] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3148), 1, + anon_sym_null, + ACTIONS(3152), 1, + sym__newline, + ACTIONS(3154), 1, + anon_sym_LBRACK, + ACTIONS(3156), 1, + anon_sym_LPAREN, + ACTIONS(3158), 1, + anon_sym_DOLLAR, + ACTIONS(3160), 1, + anon_sym_LBRACE, + ACTIONS(3162), 1, + anon_sym_DOT_DOT, + ACTIONS(3166), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3168), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3174), 1, + anon_sym_0b, + ACTIONS(3178), 1, + sym_val_date, + ACTIONS(3180), 1, + anon_sym_DQUOTE, + ACTIONS(3182), 1, + anon_sym_SQUOTE, + ACTIONS(3184), 1, + anon_sym_BQUOTE, + ACTIONS(3186), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3188), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3190), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3192), 1, + sym_raw_string_begin, + STATE(1285), 1, + sym_comment, + STATE(1332), 1, + aux_sym__repeat_newline, + STATE(2673), 1, + sym__val_number_decimal, + STATE(3069), 1, + sym_val_variable, + STATE(3133), 1, + sym_expr_parenthesized, + STATE(3180), 1, + sym__inter_single_quotes, + STATE(3181), 1, + sym__inter_double_quotes, + STATE(3205), 1, + sym__val_number, + STATE(3255), 1, + sym_val_bool, + STATE(3291), 1, + sym__unquoted_in_record, + ACTIONS(3146), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3164), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3170), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3176), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4645), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3150), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3172), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3529), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2782), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3204), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [436] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1286), 1, + sym_comment, + ACTIONS(2721), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2719), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, anon_sym_e_GT_PIPE, anon_sym_o_GT_PIPE, @@ -139381,12 +144757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [219] = 4, + [509] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1266), 1, + STATE(1287), 1, sym_comment, - ACTIONS(1966), 13, + ACTIONS(2388), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139400,7 +144776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1964), 49, + ACTIONS(2386), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139450,47 +144826,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [292] = 17, + [582] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, - anon_sym_bit_DASHor2, - STATE(1267), 1, + STATE(1288), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2392), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139499,17 +144845,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 23, + ACTIONS(2390), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -139521,9 +144859,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -139532,18 +144895,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, - [391] = 6, + [655] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1268), 1, + STATE(1289), 1, sym_comment, - ACTIONS(2138), 5, + ACTIONS(2396), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2140), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139552,8 +144914,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2136), 20, + ACTIONS(2394), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -139565,16 +144928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2134), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -139603,12 +144956,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [468] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [728] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1269), 1, + STATE(1290), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2400), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139622,7 +144983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(2398), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139672,12 +145033,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [541] = 4, + [801] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1270), 1, + STATE(1291), 1, sym_comment, - ACTIONS(2517), 13, + ACTIONS(2404), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139691,7 +145052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2515), 49, + ACTIONS(2402), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139741,12 +145102,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [614] = 4, + [874] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1271), 1, + STATE(1292), 1, sym_comment, - ACTIONS(2078), 13, + ACTIONS(2408), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139760,7 +145121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2076), 49, + ACTIONS(2406), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139810,12 +145171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [687] = 4, + [947] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1272), 1, + STATE(1293), 1, sym_comment, - ACTIONS(2593), 13, + ACTIONS(2412), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139829,7 +145190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2591), 49, + ACTIONS(2410), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139879,12 +145240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [760] = 4, + [1020] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1273), 1, + STATE(1294), 1, sym_comment, - ACTIONS(2204), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139898,7 +145259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2202), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139948,12 +145309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [833] = 4, + [1093] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1274), 1, + STATE(1295), 1, sym_comment, - ACTIONS(2521), 13, + ACTIONS(2420), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139967,7 +145328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2519), 49, + ACTIONS(2418), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140017,129 +145378,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [906] = 37, + [1166] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(157), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(195), 1, - sym_val_date, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(287), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(2406), 1, - aux_sym_expr_unary_token1, - ACTIONS(2410), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2412), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, - anon_sym_null, - ACTIONS(2970), 1, - anon_sym_DOT_DOT, - STATE(694), 1, - sym__val_number, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(945), 1, - sym__expr_unary_minus, - STATE(1275), 1, - sym_comment, - STATE(1875), 1, - sym__val_number_decimal, - STATE(1955), 1, - sym_expr_parenthesized, - STATE(1959), 1, - sym_val_variable, - STATE(2216), 1, - sym__expr_binary_expression, - STATE(5030), 1, - sym__expression, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2398), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2414), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(2972), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(944), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(943), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [1045] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1276), 1, + STATE(1296), 1, sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 10, + ACTIONS(2424), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140148,7 +145397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 44, + ACTIONS(2422), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140162,6 +145411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -140180,6 +145430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -140193,12 +145447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1128] = 4, + [1239] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1277), 1, + STATE(1297), 1, sym_comment, - ACTIONS(2507), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140212,7 +145466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2505), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140262,49 +145516,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, - [1201] = 18, + [1312] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, - anon_sym_bit_DASHor2, - ACTIONS(2974), 1, - anon_sym_and2, - STATE(1278), 1, + STATE(1298), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2048), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140313,17 +145535,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 22, + ACTIONS(2046), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -140335,8 +145549,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -140345,12 +145585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1302] = 4, + [1385] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1279), 1, + STATE(1299), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(2802), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140364,7 +145604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2222), 49, + ACTIONS(2800), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140414,17 +145654,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, - [1375] = 4, + [1458] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1280), 1, + ACTIONS(3194), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3196), 1, + aux_sym__immediate_decimal_token5, + STATE(1300), 1, sym_comment, - ACTIONS(2090), 13, - anon_sym_GT2, + ACTIONS(759), 20, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(761), 40, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1535] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3198), 1, + anon_sym_DASH2, + ACTIONS(3206), 1, + anon_sym_PLUS2, + STATE(1301), 1, + sym_comment, + ACTIONS(3200), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3202), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3204), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2725), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140433,7 +145754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2723), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140447,7 +145768,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -140466,10 +145786,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -140483,12 +145799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1448] = 4, + [1618] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1281), 1, + STATE(1302), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2798), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140502,7 +145818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2796), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140552,12 +145868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1521] = 4, + [1691] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1282), 1, + STATE(1303), 1, sym_comment, - ACTIONS(2535), 13, + ACTIONS(2368), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140571,7 +145887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 49, + ACTIONS(2366), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140621,36 +145937,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, - [1594] = 13, + [1764] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(3208), 1, + anon_sym_DOT_DOT2, + ACTIONS(3212), 1, + sym_filesize_unit, + ACTIONS(3214), 1, + sym_duration_unit, + ACTIONS(3216), 1, + sym__unquoted_pattern, + STATE(1304), 1, + sym_comment, + STATE(4975), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3210), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(815), 19, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1283), 1, + 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(904), 35, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1851] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1305), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2018), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140659,17 +146032,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 30, + ACTIONS(2016), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -140681,13 +146046,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -140699,12 +146082,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, - [1685] = 4, + [1924] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1284), 1, + ACTIONS(3035), 1, + anon_sym_DOLLAR, + ACTIONS(3037), 1, + anon_sym_LPAREN2, + ACTIONS(3218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3220), 1, + aux_sym__immediate_decimal_token2, + STATE(1306), 1, sym_comment, - ACTIONS(2090), 13, + STATE(1628), 1, + sym__immediate_decimal, + ACTIONS(3222), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1627), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1833), 19, + anon_sym_LPAREN, + anon_sym_DASH2, + 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(1831), 34, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [2011] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1307), 1, + sym_comment, + ACTIONS(2280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140718,7 +146177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2278), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140768,12 +146227,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1758] = 4, + [2084] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1285), 1, + ACTIONS(3035), 1, + anon_sym_DOLLAR, + ACTIONS(3037), 1, + anon_sym_LPAREN2, + ACTIONS(3218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3220), 1, + aux_sym__immediate_decimal_token2, + STATE(1308), 1, + sym_comment, + STATE(1630), 1, + sym__immediate_decimal, + ACTIONS(3222), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1629), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1837), 19, + anon_sym_LPAREN, + anon_sym_DASH2, + 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(1835), 34, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [2171] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3035), 1, + anon_sym_DOLLAR, + ACTIONS(3037), 1, + anon_sym_LPAREN2, + ACTIONS(3218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3220), 1, + aux_sym__immediate_decimal_token2, + STATE(1309), 1, sym_comment, - ACTIONS(2605), 13, + STATE(1632), 1, + sym__immediate_decimal, + ACTIONS(3222), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1631), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1841), 19, + anon_sym_LPAREN, + anon_sym_DASH2, + 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(1839), 34, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [2258] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1310), 1, + sym_comment, + ACTIONS(2756), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140787,7 +146398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2603), 49, + ACTIONS(2754), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140837,43 +146448,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, - [1831] = 15, + [2331] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(3136), 1, + aux_sym__immediate_decimal_token5, + STATE(1311), 1, + sym_comment, + ACTIONS(767), 21, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(2960), 1, + 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, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(769), 40, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [2406] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3198), 1, + anon_sym_DASH2, + ACTIONS(3206), 1, anon_sym_PLUS2, - ACTIONS(2964), 1, + ACTIONS(3234), 1, anon_sym_bit_DASHand2, - STATE(1286), 1, + ACTIONS(3236), 1, + anon_sym_bit_DASHxor2, + STATE(1312), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(3200), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(3202), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(3204), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(3226), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3232), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(3228), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, + ACTIONS(3230), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + ACTIONS(2725), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140882,7 +146565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, + ACTIONS(3224), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -140891,7 +146574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 25, + ACTIONS(2723), 24, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -140907,7 +146590,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -140917,98 +146599,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1926] = 39, + [2503] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, + ACTIONS(3148), 1, anon_sym_null, - ACTIONS(2982), 1, + ACTIONS(3152), 1, sym__newline, - ACTIONS(2984), 1, + ACTIONS(3154), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(3156), 1, anon_sym_LPAREN, - ACTIONS(2988), 1, + ACTIONS(3158), 1, anon_sym_DOLLAR, - ACTIONS(2990), 1, + ACTIONS(3160), 1, anon_sym_LBRACE, - ACTIONS(2992), 1, + ACTIONS(3162), 1, anon_sym_DOT_DOT, - ACTIONS(2996), 1, + ACTIONS(3166), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, + ACTIONS(3168), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, + ACTIONS(3174), 1, anon_sym_0b, - ACTIONS(3008), 1, + ACTIONS(3178), 1, sym_val_date, - ACTIONS(3010), 1, + ACTIONS(3180), 1, anon_sym_DQUOTE, - ACTIONS(3012), 1, + ACTIONS(3182), 1, anon_sym_SQUOTE, - ACTIONS(3014), 1, + ACTIONS(3184), 1, anon_sym_BQUOTE, - ACTIONS(3016), 1, + ACTIONS(3186), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, + ACTIONS(3188), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, + ACTIONS(3190), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, + ACTIONS(3192), 1, sym_raw_string_begin, - STATE(1287), 1, - sym_comment, - STATE(1329), 1, + STATE(1284), 1, aux_sym__repeat_newline, - STATE(2444), 1, + STATE(1313), 1, + sym_comment, + STATE(2673), 1, sym__val_number_decimal, - STATE(2871), 1, + STATE(3045), 1, sym_expr_parenthesized, - STATE(2884), 1, + STATE(3069), 1, sym_val_variable, - STATE(2924), 1, + STATE(3180), 1, sym__inter_single_quotes, - STATE(2925), 1, + STATE(3181), 1, sym__inter_double_quotes, - STATE(2980), 1, - sym_val_bool, - STATE(3024), 1, - sym__unquoted_in_record, - STATE(3062), 1, + STATE(3205), 1, sym__val_number, - ACTIONS(2976), 2, + STATE(3225), 1, + sym__unquoted_in_record, + STATE(3255), 1, + sym_val_bool, + ACTIONS(3146), 2, anon_sym_true, anon_sym_false, - ACTIONS(2994), 2, + ACTIONS(3164), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, + ACTIONS(3170), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, + ACTIONS(3176), 2, anon_sym_0o, anon_sym_0x, - STATE(4601), 2, + STATE(4645), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, + ACTIONS(3150), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, + ACTIONS(3172), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3260), 3, + STATE(3472), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(2548), 4, + STATE(2782), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3061), 12, + STATE(3204), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -141021,15 +146703,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [2069] = 5, + [2646] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1288), 1, + STATE(1314), 1, sym_comment, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 13, + ACTIONS(2673), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141043,7 +146722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 47, + ACTIONS(2671), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141076,6 +146755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -141091,17 +146772,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, - [2144] = 4, + [2719] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1289), 1, + ACTIONS(3198), 1, + anon_sym_DASH2, + ACTIONS(3206), 1, + anon_sym_PLUS2, + ACTIONS(3234), 1, + anon_sym_bit_DASHand2, + STATE(1315), 1, sym_comment, - ACTIONS(868), 13, - anon_sym_GT2, + ACTIONS(3200), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3202), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3204), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3226), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3232), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3228), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3230), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2725), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141110,9 +146817,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(968), 49, - ts_builtin_sym_end, + ACTIONS(3224), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2723), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141124,32 +146839,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -141160,12 +146852,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2217] = 4, + [2814] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1290), 1, + STATE(1316), 1, sym_comment, - ACTIONS(2577), 13, + ACTIONS(2677), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141179,7 +146871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 49, + ACTIONS(2675), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141229,116 +146921,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2290] = 39, + [2887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1291), 1, - sym_comment, - STATE(2226), 1, - aux_sym__repeat_newline, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2821), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2961), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3234), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [2433] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1292), 1, + STATE(1317), 1, sym_comment, - ACTIONS(1868), 13, + ACTIONS(2416), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141352,7 +146940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1866), 49, + ACTIONS(2414), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141402,12 +146990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2506] = 4, + [2960] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1293), 1, + STATE(1318), 1, sym_comment, - ACTIONS(2565), 13, + ACTIONS(2681), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141421,7 +147009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2563), 49, + ACTIONS(2679), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141471,12 +147059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2579] = 4, + [3033] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1294), 1, + STATE(1319), 1, sym_comment, - ACTIONS(2601), 13, + ACTIONS(2685), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141490,7 +147078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2599), 49, + ACTIONS(2683), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141540,12 +147128,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2652] = 4, + [3106] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1295), 1, + STATE(1320), 1, sym_comment, - ACTIONS(2573), 13, + ACTIONS(1750), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141559,7 +147147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2571), 49, + ACTIONS(1856), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141609,12 +147197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2725] = 4, + [3179] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1296), 1, + STATE(1321), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141628,7 +147216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141678,17 +147266,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, - [2798] = 4, + [3252] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(1297), 1, + ACTIONS(3198), 1, + anon_sym_DASH2, + ACTIONS(3206), 1, + anon_sym_PLUS2, + STATE(1322), 1, sym_comment, - ACTIONS(2609), 13, - anon_sym_GT2, + ACTIONS(3200), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3202), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3204), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3226), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3232), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3228), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3230), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2725), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141697,9 +147309,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(2607), 49, - ts_builtin_sym_end, + ACTIONS(3224), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2723), 26, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141711,31 +147331,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -141747,12 +147345,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, - [2871] = 4, + [3345] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1298), 1, + ACTIONS(3238), 1, + aux_sym__immediate_decimal_token5, + STATE(1323), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(775), 21, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(777), 40, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [3420] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1324), 1, + sym_comment, + ACTIONS(2336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141766,7 +147434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2206), 49, + ACTIONS(2334), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141816,12 +147484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2944] = 4, + [3493] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1299), 1, + STATE(1325), 1, sym_comment, - ACTIONS(2513), 13, + ACTIONS(2372), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141835,7 +147503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2511), 49, + ACTIONS(2370), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141885,12 +147553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3017] = 4, + [3566] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1300), 1, + STATE(1326), 1, sym_comment, - ACTIONS(2212), 13, + ACTIONS(2376), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141904,7 +147572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2210), 49, + ACTIONS(2374), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141954,12 +147622,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3090] = 4, + [3639] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1301), 1, + STATE(1327), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(815), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141973,7 +147641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(904), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142023,12 +147691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3163] = 4, + [3712] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1302), 1, + STATE(1328), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2717), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142042,7 +147710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2715), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142092,12 +147760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3236] = 4, + [3785] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1303), 1, + STATE(1329), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(2794), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142111,7 +147779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1706), 49, + ACTIONS(2792), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142161,12 +147829,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3309] = 4, + [3858] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1304), 1, + STATE(1330), 1, sym_comment, - ACTIONS(2114), 13, + ACTIONS(2296), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142180,7 +147848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2112), 49, + ACTIONS(2294), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142230,12 +147898,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3382] = 4, + [3931] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1305), 1, + STATE(1331), 1, sym_comment, - ACTIONS(2621), 13, + ACTIONS(2234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142249,7 +147917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2619), 49, + ACTIONS(2232), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142299,12 +147967,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, - [3455] = 4, + [4004] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1306), 1, + ACTIONS(3148), 1, + anon_sym_null, + ACTIONS(3152), 1, + sym__newline, + ACTIONS(3154), 1, + anon_sym_LBRACK, + ACTIONS(3156), 1, + anon_sym_LPAREN, + ACTIONS(3158), 1, + anon_sym_DOLLAR, + ACTIONS(3160), 1, + anon_sym_LBRACE, + ACTIONS(3162), 1, + anon_sym_DOT_DOT, + ACTIONS(3166), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3168), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3174), 1, + anon_sym_0b, + ACTIONS(3178), 1, + sym_val_date, + ACTIONS(3180), 1, + anon_sym_DQUOTE, + ACTIONS(3182), 1, + anon_sym_SQUOTE, + ACTIONS(3184), 1, + anon_sym_BQUOTE, + ACTIONS(3186), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3188), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3190), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3192), 1, + sym_raw_string_begin, + STATE(1332), 1, sym_comment, - ACTIONS(2216), 13, + STATE(2448), 1, + aux_sym__repeat_newline, + STATE(2673), 1, + sym__val_number_decimal, + STATE(3069), 1, + sym_val_variable, + STATE(3122), 1, + sym_expr_parenthesized, + STATE(3180), 1, + sym__inter_single_quotes, + STATE(3181), 1, + sym__inter_double_quotes, + STATE(3205), 1, + sym__val_number, + STATE(3255), 1, + sym_val_bool, + STATE(3274), 1, + sym__unquoted_in_record, + ACTIONS(3146), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3164), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3170), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3176), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4645), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3150), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3172), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3478), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2782), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3204), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [4147] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1333), 1, + sym_comment, + ACTIONS(2380), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142318,7 +148090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2214), 49, + ACTIONS(2378), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142368,12 +148140,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3528] = 4, + [4220] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1307), 1, + STATE(1334), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2740), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142387,7 +148159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2738), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142437,51 +148209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3601] = 19, + [4293] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, - anon_sym_bit_DASHor2, - ACTIONS(2974), 1, - anon_sym_and2, - ACTIONS(3024), 1, - anon_sym_xor2, - STATE(1308), 1, + STATE(1335), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2106), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142490,17 +148228,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 21, + ACTIONS(2104), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142512,7 +148242,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -142521,12 +148278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3704] = 4, + [4366] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1309), 1, + STATE(1336), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(2096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142540,7 +148297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2258), 49, + ACTIONS(2094), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142590,17 +148347,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, - [3777] = 4, + [4439] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1310), 1, + STATE(1337), 1, sym_comment, - ACTIONS(2264), 13, + ACTIONS(2246), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(2256), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142609,9 +148367,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(2262), 49, + ACTIONS(2254), 20, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142623,6 +148380,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2244), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -142651,6 +148418,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + [4516] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3035), 1, + anon_sym_DOLLAR, + ACTIONS(3037), 1, + anon_sym_LPAREN2, + ACTIONS(3218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3220), 1, + aux_sym__immediate_decimal_token2, + STATE(1338), 1, + sym_comment, + STATE(1611), 1, + sym__immediate_decimal, + ACTIONS(3222), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1610), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1785), 19, + anon_sym_LPAREN, + anon_sym_DASH2, + 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(1783), 34, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -142659,12 +148494,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, - [3850] = 4, + [4603] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1311), 1, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(195), 1, + sym_val_date, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(289), 1, + anon_sym_DASH2, + ACTIONS(1042), 1, + anon_sym_DOLLAR, + ACTIONS(2565), 1, + aux_sym_expr_unary_token1, + ACTIONS(2569), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2571), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2870), 1, + anon_sym_null, + ACTIONS(3240), 1, + anon_sym_DOT_DOT, + STATE(697), 1, + sym__val_number, + STATE(750), 1, + sym__inter_single_quotes, + STATE(751), 1, + sym__inter_double_quotes, + STATE(961), 1, + sym__expr_unary_minus, + STATE(1339), 1, sym_comment, - ACTIONS(2122), 13, + STATE(2079), 1, + sym__val_number_decimal, + STATE(2142), 1, + sym_val_variable, + STATE(2186), 1, + sym_expr_parenthesized, + STATE(2444), 1, + sym__expr_binary_expression, + STATE(5192), 1, + sym__expression, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2557), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2573), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3242), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(433), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(960), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(959), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [4742] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1340), 1, + sym_comment, + ACTIONS(2384), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142678,7 +148615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2120), 49, + ACTIONS(2382), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142728,12 +148665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3923] = 4, + [4815] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1312), 1, + STATE(1341), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142747,7 +148684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2338), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142797,12 +148734,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3996] = 4, + [4888] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1313), 1, + STATE(1342), 1, sym_comment, - ACTIONS(2525), 13, + ACTIONS(2320), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142816,7 +148753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2523), 49, + ACTIONS(2318), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142866,45 +148803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4069] = 16, + [4961] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - STATE(1314), 1, + STATE(1343), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2786), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142913,17 +148822,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 24, + ACTIONS(2784), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142935,86 +148836,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4166] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1315), 1, - sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2535), 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(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 26, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -143026,12 +148872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4259] = 4, + [5034] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1316), 1, + STATE(1344), 1, sym_comment, - ACTIONS(2196), 13, + ACTIONS(2430), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143045,7 +148891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2194), 49, + ACTIONS(2428), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143095,12 +148941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4332] = 4, + [5107] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1317), 1, + STATE(1345), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2434), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143114,7 +148960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2432), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143164,12 +149010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4405] = 4, + [5180] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1318), 1, + STATE(1346), 1, sym_comment, - ACTIONS(1976), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143183,7 +149029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1974), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143233,12 +149079,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, - [4478] = 4, + [5253] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1319), 1, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(169), 1, + anon_sym_DOT_DOT, + ACTIONS(173), 1, + aux_sym_expr_unary_token1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(195), 1, + sym_val_date, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(289), 1, + anon_sym_DASH2, + ACTIONS(1042), 1, + anon_sym_DOLLAR, + ACTIONS(2066), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2068), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2870), 1, + anon_sym_null, + STATE(693), 1, + sym_val_variable, + STATE(694), 1, + sym_expr_parenthesized, + STATE(697), 1, + sym__val_number, + STATE(750), 1, + sym__inter_single_quotes, + STATE(751), 1, + sym__inter_double_quotes, + STATE(961), 1, + sym__expr_unary_minus, + STATE(1347), 1, + sym_comment, + STATE(2050), 1, + sym__val_number_decimal, + STATE(2440), 1, + sym__expr_binary_expression, + STATE(4924), 1, + sym__expression, + ACTIONS(179), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2070), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(2076), 2, + anon_sym_true, + anon_sym_false, + STATE(433), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(960), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(959), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [5392] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1348), 1, sym_comment, - ACTIONS(2270), 13, + ACTIONS(2246), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143252,7 +149200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2268), 49, + ACTIONS(2244), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143302,12 +149250,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, - [4551] = 4, + [5465] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1320), 1, + ACTIONS(3198), 1, + anon_sym_DASH2, + ACTIONS(3206), 1, + anon_sym_PLUS2, + STATE(1349), 1, + sym_comment, + ACTIONS(3200), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3202), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3204), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3226), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3232), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3228), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2725), 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(2723), 38, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5554] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1350), 1, sym_comment, - ACTIONS(1860), 13, + ACTIONS(2262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143321,7 +149346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1858), 49, + ACTIONS(2260), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143371,12 +149396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4624] = 4, + [5627] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1321), 1, + STATE(1351), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2752), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143390,7 +149415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2750), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143440,12 +149465,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4697] = 4, + [5700] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1322), 1, + STATE(1352), 1, sym_comment, - ACTIONS(2138), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143459,7 +149484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2134), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143509,36 +149534,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, - [4770] = 12, + [5773] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(3198), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(3206), 1, anon_sym_PLUS2, - STATE(1323), 1, + STATE(1353), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(3200), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(3202), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(3204), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(3232), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2535), 8, + ACTIONS(2725), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143547,7 +149566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 38, + ACTIONS(2723), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143571,6 +149590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -143586,12 +149609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4859] = 4, + [5858] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1324), 1, + STATE(1354), 1, sym_comment, - ACTIONS(2200), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143605,7 +149628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2198), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143655,12 +149678,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, - [4932] = 4, + [5931] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1325), 1, + STATE(1355), 1, + sym_comment, + ACTIONS(3200), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3202), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3204), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2725), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2723), 45, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6010] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1356), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143674,7 +149769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2254), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143724,12 +149819,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, - [5005] = 4, + [6083] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1326), 1, + STATE(1357), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(3202), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2725), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143743,7 +149841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2254), 49, + ACTIONS(2723), 47, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143776,8 +149874,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -143793,12 +149889,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5078] = 4, + [6158] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1327), 1, + STATE(1358), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143812,7 +149908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143862,236 +149958,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5151] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(157), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_DOT_DOT, - ACTIONS(173), 1, - aux_sym_expr_unary_token1, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(195), 1, - sym_val_date, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(287), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(1926), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1928), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, - anon_sym_null, - STATE(694), 1, - sym__val_number, - STATE(697), 1, - sym_val_variable, - STATE(700), 1, - sym_expr_parenthesized, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(945), 1, - sym__expr_unary_minus, - STATE(1328), 1, - sym_comment, - STATE(1830), 1, - sym__val_number_decimal, - STATE(2215), 1, - sym__expr_binary_expression, - STATE(4707), 1, - sym__expression, - ACTIONS(179), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1930), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(944), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(943), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [5290] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1329), 1, - sym_comment, - STATE(2226), 1, - aux_sym__repeat_newline, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2866), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2969), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3231), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [5433] = 10, + [6231] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1330), 1, + STATE(1359), 1, sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2535), 10, + ACTIONS(2416), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144100,7 +149977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 42, + ACTIONS(2414), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144114,6 +149991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -144132,6 +150010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -144143,116 +150027,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5518] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1291), 1, - aux_sym__repeat_newline, - STATE(1331), 1, - sym_comment, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2866), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2969), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3231), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [5661] = 4, + [6304] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1332), 1, + STATE(1360), 1, sym_comment, - ACTIONS(2539), 13, + ACTIONS(2669), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144266,7 +150046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2537), 49, + ACTIONS(2667), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144316,17 +150096,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, - [5734] = 4, + [6377] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(1333), 1, + ACTIONS(3198), 1, + anon_sym_DASH2, + ACTIONS(3206), 1, + anon_sym_PLUS2, + ACTIONS(3234), 1, + anon_sym_bit_DASHand2, + ACTIONS(3236), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3244), 1, + anon_sym_bit_DASHor2, + STATE(1361), 1, sym_comment, - ACTIONS(2617), 13, - anon_sym_GT2, + ACTIONS(3200), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3202), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3204), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3226), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3232), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3228), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3230), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2725), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144335,9 +150145,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(2615), 49, - ts_builtin_sym_end, + ACTIONS(3224), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2723), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -144349,34 +150167,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -144385,12 +150178,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5807] = 4, + [6476] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1334), 1, + STATE(1362), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144404,7 +150197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144454,89 +150247,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, - [5880] = 7, + [6549] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(1335), 1, + ACTIONS(3198), 1, + anon_sym_DASH2, + ACTIONS(3206), 1, + anon_sym_PLUS2, + ACTIONS(3234), 1, + anon_sym_bit_DASHand2, + ACTIONS(3236), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3244), 1, + anon_sym_bit_DASHor2, + ACTIONS(3246), 1, + anon_sym_and2, + STATE(1363), 1, sym_comment, - ACTIONS(2950), 2, + ACTIONS(3200), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(3202), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(3204), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 11, + ACTIONS(3226), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2533), 45, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(3232), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3228), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3230), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5959] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1336), 1, - sym_comment, - ACTIONS(2228), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2725), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144545,24 +150298,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(2226), 49, - ts_builtin_sym_end, + ACTIONS(3224), 8, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -144570,53 +150307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6032] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1337), 1, - sym_comment, - ACTIONS(2232), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2230), 49, + ACTIONS(2723), 22, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -144628,34 +150320,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -144664,7 +150330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6105] = 37, + [6650] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(157), 1, @@ -144693,35 +150359,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(287), 1, + ACTIONS(289), 1, anon_sym_DASH2, - ACTIONS(1022), 1, + ACTIONS(1042), 1, anon_sym_DOLLAR, - ACTIONS(1926), 1, + ACTIONS(2066), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1928), 1, + ACTIONS(2068), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, + ACTIONS(2870), 1, anon_sym_null, - STATE(694), 1, - sym__val_number, - STATE(697), 1, + STATE(693), 1, sym_val_variable, - STATE(700), 1, + STATE(694), 1, sym_expr_parenthesized, - STATE(743), 1, + STATE(697), 1, + sym__val_number, + STATE(750), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(751), 1, sym__inter_double_quotes, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(1338), 1, + STATE(1364), 1, sym_comment, - STATE(1830), 1, + STATE(2050), 1, sym__val_number_decimal, - STATE(2215), 1, + STATE(2440), 1, sym__expr_binary_expression, - STATE(4718), 1, + STATE(4862), 1, sym__expression, ACTIONS(179), 2, anon_sym_DOT_DOT_EQ, @@ -144729,18 +150395,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1930), 2, + ACTIONS(2070), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(944), 4, + STATE(960), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -144752,7 +150418,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(943), 13, + STATE(959), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -144766,12 +150432,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6244] = 4, + [6789] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1339), 1, + STATE(1365), 1, sym_comment, - ACTIONS(2236), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144785,7 +150451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2234), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144835,12 +150501,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, - [6317] = 4, + [6862] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(1340), 1, + ACTIONS(3198), 1, + anon_sym_DASH2, + ACTIONS(3206), 1, + anon_sym_PLUS2, + ACTIONS(3234), 1, + anon_sym_bit_DASHand2, + ACTIONS(3236), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3244), 1, + anon_sym_bit_DASHor2, + ACTIONS(3246), 1, + anon_sym_and2, + ACTIONS(3248), 1, + anon_sym_xor2, + STATE(1366), 1, + sym_comment, + ACTIONS(3200), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3202), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3204), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3226), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3232), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3228), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3230), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2725), 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(3224), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2723), 21, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6965] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1367), 1, sym_comment, - ACTIONS(2240), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144854,7 +150604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2238), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144904,12 +150654,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, - [6390] = 4, + [7038] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1341), 1, + ACTIONS(3198), 1, + anon_sym_DASH2, + ACTIONS(3206), 1, + anon_sym_PLUS2, + STATE(1368), 1, + sym_comment, + ACTIONS(3200), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3202), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3204), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3226), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3232), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3228), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2725), 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(3224), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2723), 30, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [7129] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1369), 1, sym_comment, - ACTIONS(2244), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144923,7 +150751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2242), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144973,12 +150801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6463] = 4, + [7202] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1342), 1, + STATE(1370), 1, sym_comment, - ACTIONS(2248), 13, + ACTIONS(2725), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144992,7 +150820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2246), 49, + ACTIONS(2723), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145042,12 +150870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6536] = 4, + [7275] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1343), 1, + STATE(1371), 1, sym_comment, - ACTIONS(2252), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145061,7 +150889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2250), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145111,12 +150939,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6609] = 4, + [7348] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1344), 1, + STATE(1372), 1, sym_comment, - ACTIONS(2569), 13, + ACTIONS(2790), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145130,7 +150958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2567), 49, + ACTIONS(2788), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145180,12 +151008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6682] = 4, + [7421] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1345), 1, + STATE(1373), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2344), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145199,7 +151027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2342), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145249,206 +151077,381 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6755] = 38, - ACTIONS(103), 1, + [7494] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(3250), 1, + anon_sym_DOT2, + STATE(1374), 1, + sym_comment, + STATE(1395), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1443), 1, + sym_path, + STATE(1476), 1, + sym_cell_path, + ACTIONS(1809), 19, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, anon_sym_0b, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(2680), 1, + ACTIONS(1807), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2682), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, - anon_sym_DOLLAR, - ACTIONS(2686), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3028), 1, - anon_sym_null, - ACTIONS(3032), 1, - anon_sym_DOT_DOT, - ACTIONS(3040), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(1346), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [7574] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3252), 1, + aux_sym__immediate_decimal_token5, + STATE(1375), 1, sym_comment, - STATE(3710), 1, - sym__val_number_decimal, - STATE(4207), 1, - sym_val_variable, - STATE(4255), 1, - sym_expr_parenthesized, - STATE(4677), 1, - sym_val_bool, - STATE(4932), 1, - sym_unquoted, - ACTIONS(193), 2, + ACTIONS(775), 20, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3026), 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, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(777), 40, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - ACTIONS(3034), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [7648] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1376), 1, + sym_comment, + ACTIONS(775), 21, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3036), 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, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(777), 40, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - STATE(4931), 2, - sym_val_range, - sym__value, - ACTIONS(2555), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3030), 3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [7720] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1377), 1, + sym_comment, + ACTIONS(894), 21, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(896), 40, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(943), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [6895] = 42, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [7792] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(2074), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(3047), 1, anon_sym_null, - ACTIONS(2874), 1, + ACTIONS(3051), 1, sym__newline, - ACTIONS(2876), 1, + ACTIONS(3053), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(3055), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(3057), 1, anon_sym_LBRACE, - ACTIONS(2884), 1, + ACTIONS(3061), 1, anon_sym__, - ACTIONS(2886), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2890), 1, + ACTIONS(3067), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, + ACTIONS(3069), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, + ACTIONS(3073), 1, sym_val_date, - STATE(694), 1, + STATE(697), 1, sym__val_number, - STATE(1347), 1, + STATE(1378), 1, sym_comment, - STATE(1360), 1, + STATE(1432), 1, aux_sym__ctrl_match_body_repeat1, - STATE(2241), 1, + STATE(2454), 1, aux_sym__types_body_repeat1, - STATE(3487), 1, + STATE(3676), 1, sym__val_number_decimal, - STATE(3714), 1, + STATE(3905), 1, sym_expr_parenthesized, - STATE(3715), 1, + STATE(3917), 1, sym_val_variable, - STATE(3762), 1, + STATE(3992), 1, sym__match_pattern, - STATE(4016), 1, + STATE(4173), 1, sym_val_bool, - STATE(4285), 1, + STATE(4370), 1, sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, + STATE(4404), 1, sym__match_pattern_list, - STATE(5173), 1, + STATE(4457), 1, + sym_unquoted, + STATE(5188), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2868), 2, + ACTIONS(3045), 2, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, + ACTIONS(3065), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, + ACTIONS(3071), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, + STATE(4403), 2, sym__match_pattern_value, sym_val_range, - STATE(4549), 2, + STATE(4719), 2, sym_match_arm, sym_default_arm, - STATE(4884), 2, + STATE(5208), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2872), 3, + ACTIONS(3049), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4405), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -145457,107 +151460,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [7043] = 37, - ACTIONS(103), 1, + [7940] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2680), 1, - anon_sym_LBRACK, - ACTIONS(2682), 1, + ACTIONS(3254), 1, + anon_sym_DOT, + ACTIONS(3256), 1, + aux_sym__immediate_decimal_token5, + STATE(1379), 1, + sym_comment, + ACTIONS(1884), 21, anon_sym_LPAREN, - ACTIONS(2684), 1, anon_sym_DOLLAR, - ACTIONS(2686), 1, - anon_sym_LBRACE, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3028), 1, - anon_sym_null, - ACTIONS(3032), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3040), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(1348), 1, - sym_comment, - STATE(3710), 1, - sym__val_number_decimal, - STATE(4207), 1, - sym_val_variable, - STATE(4232), 1, - sym_expr_parenthesized, - STATE(4677), 1, - sym_val_bool, - STATE(4986), 1, - sym_unquoted, - ACTIONS(193), 2, + 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(3026), 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, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(1882), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - ACTIONS(3034), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4879), 2, - sym_val_range, - sym__value, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2555), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3030), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(943), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [7180] = 37, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [8016] = 38, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -145566,85 +151539,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(2074), 1, aux_sym_unquoted_token1, - ACTIONS(2549), 1, + ACTIONS(2818), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2680), 1, + ACTIONS(2828), 1, + anon_sym_COLON2, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2682), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(2848), 1, anon_sym_DOLLAR, - ACTIONS(2686), 1, + ACTIONS(2850), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3260), 1, anon_sym_null, - ACTIONS(3032), 1, + ACTIONS(3264), 1, anon_sym_DOT_DOT, - ACTIONS(3040), 1, + ACTIONS(3272), 1, sym_val_date, - STATE(694), 1, + STATE(697), 1, sym__val_number, - STATE(743), 1, + STATE(750), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(751), 1, sym__inter_double_quotes, - STATE(1349), 1, + STATE(1380), 1, sym_comment, - STATE(3710), 1, + STATE(3925), 1, sym__val_number_decimal, - STATE(4207), 1, - sym_val_variable, - STATE(4255), 1, + STATE(4375), 1, sym_expr_parenthesized, - STATE(4677), 1, + STATE(4549), 1, + sym_val_variable, + STATE(4969), 1, sym_val_bool, - STATE(4932), 1, + STATE(5159), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3026), 2, + ACTIONS(3258), 2, anon_sym_true, anon_sym_false, - ACTIONS(3034), 2, + ACTIONS(3266), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3036), 2, + ACTIONS(3268), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, + ACTIONS(3270), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - STATE(4931), 2, + STATE(5158), 2, sym_val_range, sym__value, - ACTIONS(2555), 3, + STATE(5208), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2707), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3030), 3, + ACTIONS(3262), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(943), 12, + STATE(959), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145657,63 +151632,57 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7317] = 7, + [8156] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, + ACTIONS(3250), 1, + anon_sym_DOT2, + STATE(1381), 1, sym_comment, - STATE(1357), 1, - aux_sym__block_body_repeat1, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3046), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3042), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + STATE(1395), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1443), 1, + sym_path, + STATE(1482), 1, + sym_cell_path, + ACTIONS(1823), 19, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1821), 38, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_AT, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -145726,364 +151695,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [7394] = 37, + 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, + [8236] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1390), 1, + ACTIONS(3274), 1, + anon_sym_QMARK2, + ACTIONS(3276), 1, + anon_sym_BANG, + STATE(1382), 1, + sym_comment, + STATE(1445), 1, + sym__path_suffix, + ACTIONS(1594), 20, anon_sym_DOLLAR, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1418), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1496), 1, - anon_sym_LBRACE, - ACTIONS(1578), 1, - anon_sym_LBRACK, - ACTIONS(3050), 1, - anon_sym_null, - ACTIONS(3054), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3058), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, - sym_val_date, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - STATE(1351), 1, - sym_comment, - STATE(3418), 1, - sym__val_number_decimal, - STATE(3846), 1, - sym_val_variable, - STATE(3965), 1, - sym_expr_parenthesized, - STATE(4130), 1, - sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4173), 1, - sym__unquoted_in_record, - STATE(4452), 1, - sym__inter_single_quotes, - STATE(4453), 1, - sym__inter_double_quotes, - ACTIONS(1408), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1596), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4485), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1404), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3052), 3, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4636), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4536), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [7531] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1386), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(1390), 1, - anon_sym_DOLLAR, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1418), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1496), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(1578), 1, - anon_sym_LBRACK, - ACTIONS(3050), 1, - anon_sym_null, - ACTIONS(3054), 1, - anon_sym_DOT_DOT, - ACTIONS(3058), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, - sym_val_date, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - STATE(1352), 1, - sym_comment, - STATE(3418), 1, - sym__val_number_decimal, - STATE(3846), 1, - sym_val_variable, - STATE(4005), 1, - sym_expr_parenthesized, - STATE(4130), 1, - sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4256), 1, - sym__unquoted_in_record, - STATE(4452), 1, - sym__inter_single_quotes, - STATE(4453), 1, - sym__inter_double_quotes, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3048), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3056), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4485), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(4717), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4536), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [7668] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1390), 1, - anon_sym_DOLLAR, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, anon_sym_BQUOTE, - ACTIONS(1418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1496), 1, - anon_sym_LBRACE, - ACTIONS(1578), 1, - anon_sym_LBRACK, - ACTIONS(3050), 1, - anon_sym_null, - ACTIONS(3054), 1, + 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, + [8314] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3144), 1, + aux_sym__immediate_decimal_token5, + STATE(1383), 1, + sym_comment, + ACTIONS(767), 20, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3058), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, - sym_val_date, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - STATE(1353), 1, - sym_comment, - STATE(3418), 1, - sym__val_number_decimal, - STATE(3846), 1, - sym_val_variable, - STATE(3976), 1, - sym_expr_parenthesized, - STATE(4130), 1, - sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4184), 1, - sym__unquoted_in_record, - STATE(4452), 1, - sym__inter_single_quotes, - STATE(4453), 1, - sym__inter_double_quotes, - ACTIONS(1408), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 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, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(769), 40, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4485), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(4656), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4536), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [7805] = 7, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [8388] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1354), 1, + ACTIONS(3278), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3280), 1, + aux_sym__immediate_decimal_token5, + STATE(1384), 1, sym_comment, - STATE(1357), 1, - aux_sym__block_body_repeat1, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3068), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3042), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1922), 21, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(1920), 38, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_AT, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -146096,62 +151905,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [7882] = 5, + 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, + [8464] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3070), 1, - sym__newline, - STATE(1355), 2, - aux_sym__repeat_newline, + ACTIONS(3250), 1, + anon_sym_DOT2, + STATE(1385), 1, sym_comment, - ACTIONS(1960), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + STATE(1395), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1443), 1, + sym_path, + STATE(1485), 1, + sym_cell_path, + ACTIONS(1588), 19, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1955), 48, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1590), 38, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -146164,87 +151977,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [7955] = 7, + 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, + [8544] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1356), 1, + STATE(1386), 1, sym_comment, - STATE(1357), 1, - aux_sym__block_body_repeat1, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3073), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3042), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(759), 21, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(761), 40, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_AT, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8032] = 5, + 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, + [8616] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3079), 2, + ACTIONS(3282), 1, sym__newline, - anon_sym_SEMI, - STATE(1357), 2, + STATE(1387), 2, + aux_sym__repeat_newline, sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3075), 10, + ACTIONS(2222), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146255,7 +152073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3077), 47, + ACTIONS(2217), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146280,10 +152098,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, @@ -146303,16 +152122,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8105] = 6, - ACTIONS(103), 1, + [8689] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, - anon_sym_POUND_BANG, - ACTIONS(2932), 1, - sym__newline, - STATE(1358), 1, + STATE(1388), 1, sym_comment, - ACTIONS(3084), 10, + STATE(1404), 1, + aux_sym__block_body_repeat1, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3289), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3285), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146323,9 +152146,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 47, + ACTIONS(3287), 45, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -146349,7 +152171,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -146371,41 +152192,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8179] = 4, + [8766] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1359), 1, + STATE(1389), 1, sym_comment, - ACTIONS(2098), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(775), 20, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2096), 49, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(777), 40, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, @@ -146414,319 +152228,393 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8249] = 40, + 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, + [8837] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(1542), 1, + anon_sym_LPAREN, + ACTIONS(1546), 1, + anon_sym_DOLLAR, + ACTIONS(1562), 1, anon_sym_0b, - ACTIONS(1786), 1, + ACTIONS(1568), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1570), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1572), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1574), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1576), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1582), 1, sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2870), 1, - anon_sym_null, - ACTIONS(2876), 1, - anon_sym_LBRACK, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(1628), 1, anon_sym_LBRACE, - ACTIONS(2884), 1, - anon_sym__, - ACTIONS(2886), 1, + ACTIONS(1764), 1, + anon_sym_LBRACK, + ACTIONS(3293), 1, + anon_sym_null, + ACTIONS(3297), 1, anon_sym_DOT_DOT, - ACTIONS(2890), 1, + ACTIONS(3301), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, + ACTIONS(3303), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, + ACTIONS(3307), 1, sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(1360), 1, + ACTIONS(3309), 1, + aux_sym__unquoted_in_record_token1, + STATE(1390), 1, sym_comment, - STATE(1361), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(3487), 1, + STATE(3678), 1, sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, + STATE(4075), 1, sym_val_variable, - STATE(3762), 1, - sym__match_pattern, - STATE(4016), 1, + STATE(4105), 1, + sym_expr_parenthesized, + STATE(4330), 1, + sym__val_number, + STATE(4406), 1, sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, - sym__match_pattern_list, - STATE(5173), 1, - sym_match_pattern, - ACTIONS(193), 2, + STATE(4483), 1, + sym__unquoted_in_record, + STATE(4757), 1, + sym__inter_single_quotes, + STATE(4758), 1, + sym__inter_double_quotes, + ACTIONS(1564), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2868), 2, + ACTIONS(3291), 2, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, + ACTIONS(3299), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, + ACTIONS(3305), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4608), 2, - sym_match_arm, - sym_default_arm, - STATE(4884), 2, + STATE(4555), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, + ACTIONS(1560), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2872), 3, + ACTIONS(3295), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(4887), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3705), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, - sym__match_pattern_record, + STATE(4624), 12, sym_val_nothing, + sym_val_cellpath, sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, sym_val_table, - [8391] = 39, + sym_val_closure, + [8974] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3089), 1, + STATE(1391), 1, + sym_comment, + ACTIONS(894), 20, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(896), 40, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(3095), 1, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3098), 1, anon_sym_LPAREN, - ACTIONS(3101), 1, - anon_sym_DOLLAR, - ACTIONS(3104), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3107), 1, - anon_sym__, - ACTIONS(3110), 1, - anon_sym_DOT_DOT, - ACTIONS(3116), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3119), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, - ACTIONS(3128), 1, - anon_sym_0b, - ACTIONS(3134), 1, + aux_sym__val_number_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, - ACTIONS(3137), 1, anon_sym_DQUOTE, - ACTIONS(3140), 1, anon_sym_SQUOTE, - ACTIONS(3143), 1, anon_sym_BQUOTE, - ACTIONS(3146), 1, - aux_sym_unquoted_token1, - ACTIONS(3149), 1, + 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, + [9045] = 37, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, sym_raw_string_begin, - STATE(694), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2844), 1, + anon_sym_LBRACK, + ACTIONS(2846), 1, + anon_sym_LPAREN, + ACTIONS(2848), 1, + anon_sym_DOLLAR, + ACTIONS(2850), 1, + anon_sym_LBRACE, + ACTIONS(3260), 1, + anon_sym_null, + ACTIONS(3264), 1, + anon_sym_DOT_DOT, + ACTIONS(3272), 1, + sym_val_date, + STATE(697), 1, sym__val_number, - STATE(3487), 1, + STATE(750), 1, + sym__inter_single_quotes, + STATE(751), 1, + sym__inter_double_quotes, + STATE(1392), 1, + sym_comment, + STATE(3925), 1, sym__val_number_decimal, - STATE(3714), 1, + STATE(4375), 1, sym_expr_parenthesized, - STATE(3715), 1, + STATE(4549), 1, sym_val_variable, - STATE(3762), 1, - sym__match_pattern, - STATE(4016), 1, + STATE(4969), 1, sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, + STATE(5159), 1, sym_unquoted, - STATE(4302), 1, - sym__match_pattern_list, - STATE(5173), 1, - sym_match_pattern, - ACTIONS(3086), 2, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3258), 2, anon_sym_true, anon_sym_false, - ACTIONS(3113), 2, + ACTIONS(3266), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3122), 2, + ACTIONS(3268), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3270), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3131), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1361), 2, - sym_comment, - aux_sym__ctrl_match_body_repeat1, - STATE(4299), 2, - sym__match_pattern_value, + STATE(5158), 2, sym_val_range, - STATE(4785), 2, - sym_match_arm, - sym_default_arm, - STATE(4884), 2, + sym__value, + STATE(5208), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3092), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3125), 3, + ACTIONS(2707), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2228), 4, + ACTIONS(3262), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, - sym__match_pattern_record, + STATE(959), 12, sym_val_nothing, + sym_val_cellpath, sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, sym_val_table, - [8531] = 36, + sym_val_closure, + [9182] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1542), 1, + anon_sym_LPAREN, + ACTIONS(1546), 1, + anon_sym_DOLLAR, + ACTIONS(1562), 1, + anon_sym_0b, + ACTIONS(1568), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1570), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1572), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3016), 1, + ACTIONS(1574), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, + ACTIONS(1576), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3154), 1, - anon_sym_null, - ACTIONS(3158), 1, - anon_sym_LBRACK, - ACTIONS(3160), 1, - anon_sym_LPAREN, - ACTIONS(3162), 1, - anon_sym_DOLLAR, - ACTIONS(3164), 1, + ACTIONS(1582), 1, + sym_raw_string_begin, + ACTIONS(1628), 1, anon_sym_LBRACE, - ACTIONS(3166), 1, + ACTIONS(1764), 1, + anon_sym_LBRACK, + ACTIONS(3293), 1, + anon_sym_null, + ACTIONS(3297), 1, anon_sym_DOT_DOT, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3172), 1, + ACTIONS(3301), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3174), 1, + ACTIONS(3303), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3178), 1, + ACTIONS(3307), 1, sym_val_date, - ACTIONS(3180), 1, - aux_sym_unquoted_token1, - STATE(1362), 1, + ACTIONS(3309), 1, + aux_sym__unquoted_in_record_token1, + STATE(1393), 1, sym_comment, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(3062), 1, - sym__val_number, - STATE(3544), 1, + STATE(3678), 1, sym__val_number_decimal, - STATE(4301), 1, + STATE(4075), 1, + sym_val_variable, + STATE(4187), 1, + sym_expr_parenthesized, + STATE(4330), 1, + sym__val_number, + STATE(4406), 1, sym_val_bool, - STATE(4466), 1, - sym_unquoted, - ACTIONS(3006), 2, + STATE(4454), 1, + sym__unquoted_in_record, + STATE(4757), 1, + sym__inter_single_quotes, + STATE(4758), 1, + sym__inter_double_quotes, + ACTIONS(1564), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3152), 2, + ACTIONS(3291), 2, anon_sym_true, anon_sym_false, - ACTIONS(3170), 2, + ACTIONS(3299), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3176), 2, + ACTIONS(3305), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4463), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(4946), 2, + STATE(4555), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3002), 3, + ACTIONS(1560), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3156), 3, + ACTIONS(3295), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(4889), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3705), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3061), 13, + STATE(4624), 12, sym_val_nothing, - sym_val_variable, sym_val_cellpath, sym_val_number, sym_val_duration, @@ -146738,62 +152626,53 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8665] = 7, + [9319] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3186), 1, - sym__newline, - ACTIONS(3189), 1, - anon_sym_SEMI, - STATE(4404), 1, - aux_sym__repeat_newline, - STATE(1363), 2, + ACTIONS(3311), 1, + aux_sym__immediate_decimal_token5, + STATE(1394), 1, sym_comment, - aux_sym__parenthesized_body_repeat1, - ACTIONS(3182), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1958), 21, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3184), 45, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(1956), 38, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_AT, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -146806,64 +152685,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8741] = 8, + 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, + [9392] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2557), 1, - sym__newline, - ACTIONS(3196), 1, - anon_sym_SEMI, - STATE(1363), 1, - aux_sym__parenthesized_body_repeat1, - STATE(1364), 1, + ACTIONS(3250), 1, + anon_sym_DOT2, + STATE(1395), 1, sym_comment, - STATE(1383), 1, - aux_sym__repeat_newline, - ACTIONS(3192), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + STATE(1396), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1443), 1, + sym_path, + ACTIONS(1651), 19, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3194), 45, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1653), 38, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_AT, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -146876,111 +152755,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8819] = 36, + 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, + [9469] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(799), 1, + ACTIONS(3313), 1, + anon_sym_DOT2, + STATE(1443), 1, + sym_path, + STATE(1396), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1642), 19, anon_sym_DOLLAR, - ACTIONS(815), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(821), 1, anon_sym_0b, - ACTIONS(841), 1, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(843), 1, + ACTIONS(1644), 38, sym_raw_string_begin, - ACTIONS(3200), 1, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(3204), 1, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3206), 1, anon_sym_LPAREN, - ACTIONS(3208), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3210), 1, - anon_sym_DOT_DOT, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3216), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, - ACTIONS(3222), 1, + aux_sym__val_number_decimal_token3, + 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(3224), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1365), 1, + 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, + [9544] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3256), 1, + aux_sym__immediate_decimal_token5, + STATE(1397), 1, sym_comment, - STATE(2448), 1, - sym__val_number_decimal, - STATE(2695), 1, - sym_val_bool, - STATE(2956), 1, - sym_unquoted, - STATE(3023), 1, - sym__val_number, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - ACTIONS(823), 2, + ACTIONS(1884), 21, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3198), 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, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(1882), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - ACTIONS(3214), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3218), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3060), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(4992), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3202), 3, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3220), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3021), 13, - sym_val_nothing, - sym_val_variable, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [8953] = 4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9617] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1366), 1, + STATE(1398), 1, sym_comment, - ACTIONS(3084), 10, + STATE(1404), 1, + aux_sym__block_body_repeat1, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3316), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3285), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146991,7 +152925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 49, + ACTIONS(3287), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147016,14 +152950,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147041,19 +152971,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9023] = 7, + [9694] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - ts_builtin_sym_end, - STATE(1367), 1, + STATE(1399), 1, sym_comment, - STATE(1370), 1, + STATE(1404), 1, aux_sym__block_body_repeat1, - ACTIONS(55), 2, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3042), 10, + ACTIONS(3318), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3285), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147064,7 +152995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3287), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147110,62 +153041,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9099] = 7, + [9771] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3073), 1, - ts_builtin_sym_end, - STATE(1368), 1, + STATE(1400), 1, sym_comment, - STATE(1370), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3042), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1700), 20, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1702), 40, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_AT, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -147178,44 +153097,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [9175] = 5, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9842] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, - anon_sym_PIPE, - STATE(1369), 1, + STATE(1401), 1, sym_comment, - ACTIONS(2935), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1668), 20, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2932), 48, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1670), 40, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, @@ -147224,15 +153144,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -147245,61 +153164,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [9247] = 5, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9913] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3234), 2, - sym__newline, - anon_sym_SEMI, - STATE(1370), 2, + ACTIONS(3320), 1, + anon_sym_DOT_DOT2, + ACTIONS(3324), 1, + sym_filesize_unit, + ACTIONS(3326), 1, + sym_duration_unit, + ACTIONS(3328), 1, + sym__unquoted_pattern, + STATE(1402), 1, sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3075), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(3322), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(815), 18, anon_sym_DOLLAR, anon_sym_DASH2, 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(3077), 46, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(904), 36, sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_AT, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9994] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1403), 1, + sym_comment, + ACTIONS(1672), 20, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1674), 40, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -147312,20 +153303,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [9319] = 7, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10065] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3046), 1, - ts_builtin_sym_end, - STATE(1370), 1, - aux_sym__block_body_repeat1, - STATE(1371), 1, - sym_comment, - ACTIONS(55), 2, + ACTIONS(3334), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3042), 10, + STATE(1404), 2, + sym_comment, + aux_sym__block_body_repeat1, + ACTIONS(3330), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147336,7 +153334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3332), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147364,7 +153362,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147382,293 +153382,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9395] = 40, + [10138] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2870), 1, - anon_sym_null, - ACTIONS(2876), 1, - anon_sym_LBRACK, - ACTIONS(2878), 1, + STATE(1405), 1, + sym_comment, + ACTIONS(1676), 20, anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LBRACE, - ACTIONS(2884), 1, - anon_sym__, - ACTIONS(2886), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(2890), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(1361), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(1372), 1, - sym_comment, - STATE(3487), 1, - sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, - sym_val_variable, - STATE(3762), 1, - sym__match_pattern, - STATE(4016), 1, - sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, - sym__match_pattern_list, - STATE(5173), 1, - sym_match_pattern, - ACTIONS(193), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2868), 2, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1678), 40, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4549), 2, - sym_match_arm, - sym_default_arm, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2872), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4309), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [9537] = 36, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10209] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(914), 1, + STATE(1406), 1, + sym_comment, + ACTIONS(1680), 20, anon_sym_DOLLAR, - ACTIONS(930), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(936), 1, anon_sym_0b, - ACTIONS(956), 1, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(958), 1, + ACTIONS(1682), 40, sym_raw_string_begin, - ACTIONS(3239), 1, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(3243), 1, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3245), 1, anon_sym_LPAREN, - ACTIONS(3247), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3249), 1, - anon_sym_DOT_DOT, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3255), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, - ACTIONS(3261), 1, + aux_sym__val_number_decimal_token3, + 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(3263), 1, anon_sym_DQUOTE, - ACTIONS(3265), 1, anon_sym_SQUOTE, - ACTIONS(3267), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1373), 1, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10280] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1407), 1, sym_comment, - STATE(2469), 1, - sym__val_number_decimal, - STATE(2876), 1, - sym_val_bool, - STATE(3091), 1, - sym__inter_single_quotes, - STATE(3098), 1, - sym__inter_double_quotes, - STATE(3152), 1, - sym_unquoted, - STATE(3203), 1, - sym__val_number, - ACTIONS(938), 2, + ACTIONS(1686), 20, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3237), 2, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1688), 40, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3257), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3147), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(4851), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3241), 3, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3259), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2472), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3180), 13, - sym_val_nothing, - sym_val_variable, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [9671] = 36, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10351] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(799), 1, + ACTIONS(1542), 1, + anon_sym_LPAREN, + ACTIONS(1546), 1, anon_sym_DOLLAR, - ACTIONS(821), 1, + ACTIONS(1562), 1, anon_sym_0b, - ACTIONS(841), 1, - aux_sym_unquoted_token1, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(1240), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3204), 1, - anon_sym_LBRACK, - ACTIONS(3206), 1, - anon_sym_LPAREN, - ACTIONS(3208), 1, - anon_sym_LBRACE, - ACTIONS(3210), 1, - anon_sym_DOT_DOT, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3224), 1, + ACTIONS(1568), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(1570), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(1572), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, + ACTIONS(1574), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, + ACTIONS(1576), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3275), 1, + ACTIONS(1582), 1, + sym_raw_string_begin, + ACTIONS(1628), 1, + anon_sym_LBRACE, + ACTIONS(1764), 1, + anon_sym_LBRACK, + ACTIONS(3293), 1, anon_sym_null, - ACTIONS(3279), 1, + ACTIONS(3297), 1, + anon_sym_DOT_DOT, + ACTIONS(3301), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, + ACTIONS(3307), 1, sym_val_date, - STATE(1374), 1, + ACTIONS(3309), 1, + aux_sym__unquoted_in_record_token1, + STATE(1408), 1, sym_comment, - STATE(2956), 1, - sym_unquoted, - STATE(3023), 1, + STATE(3678), 1, + sym__val_number_decimal, + STATE(4075), 1, + sym_val_variable, + STATE(4170), 1, + sym_expr_parenthesized, + STATE(4330), 1, sym__val_number, - STATE(3063), 1, + STATE(4369), 1, + sym__unquoted_in_record, + STATE(4406), 1, + sym_val_bool, + STATE(4757), 1, sym__inter_single_quotes, - STATE(3066), 1, + STATE(4758), 1, sym__inter_double_quotes, - STATE(3526), 1, - sym__val_number_decimal, - STATE(3941), 1, - sym_val_bool, - ACTIONS(823), 2, + ACTIONS(1564), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3214), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3273), 2, + ACTIONS(3291), 2, anon_sym_true, anon_sym_false, - ACTIONS(3281), 2, + ACTIONS(3299), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3305), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3060), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(4992), 2, + STATE(4555), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3220), 3, + ACTIONS(1560), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3277), 3, + ACTIONS(3295), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2454), 4, + STATE(4879), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3705), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3021), 13, + STATE(4624), 12, sym_val_nothing, - sym_val_variable, sym_val_cellpath, sym_val_number, sym_val_duration, @@ -147680,93 +153683,162 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9805] = 36, + [10488] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3287), 1, + STATE(1409), 1, + sym_comment, + ACTIONS(759), 20, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(761), 40, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(3291), 1, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3293), 1, anon_sym_LPAREN, - ACTIONS(3295), 1, - anon_sym_DOLLAR, - ACTIONS(3297), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3299), 1, - anon_sym_DOT_DOT, - ACTIONS(3301), 1, - anon_sym_LPAREN2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3307), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, - ACTIONS(3313), 1, - anon_sym_0b, - ACTIONS(3317), 1, + aux_sym__val_number_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, - ACTIONS(3319), 1, anon_sym_DQUOTE, - ACTIONS(3321), 1, anon_sym_SQUOTE, - ACTIONS(3323), 1, anon_sym_BQUOTE, - ACTIONS(3325), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3327), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3329), 1, - aux_sym_unquoted_token1, - ACTIONS(3331), 1, + 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, + [10559] = 37, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, sym_raw_string_begin, - STATE(1375), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token1, + ACTIONS(2844), 1, + anon_sym_LBRACK, + ACTIONS(2846), 1, + anon_sym_LPAREN, + ACTIONS(2848), 1, + anon_sym_DOLLAR, + ACTIONS(2850), 1, + anon_sym_LBRACE, + ACTIONS(2954), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3260), 1, + anon_sym_null, + ACTIONS(3264), 1, + anon_sym_DOT_DOT, + ACTIONS(3272), 1, + sym_val_date, + STATE(697), 1, + sym__val_number, + STATE(750), 1, + sym__inter_single_quotes, + STATE(751), 1, + sym__inter_double_quotes, + STATE(1410), 1, sym_comment, - STATE(1841), 1, + STATE(3925), 1, sym__val_number_decimal, - STATE(2116), 1, + STATE(4409), 1, + sym_expr_parenthesized, + STATE(4549), 1, + sym_val_variable, + STATE(4969), 1, sym_val_bool, - STATE(2168), 1, - sym__inter_single_quotes, - STATE(2176), 1, + STATE(5145), 1, sym_unquoted, - STATE(2178), 1, - sym__val_number, - STATE(2179), 1, - sym__inter_double_quotes, - ACTIONS(3285), 2, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3258), 2, anon_sym_true, anon_sym_false, - ACTIONS(3303), 2, + ACTIONS(3266), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3309), 2, + ACTIONS(3268), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3270), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3315), 2, - anon_sym_0o, - anon_sym_0x, - STATE(2174), 2, - sym__expr_parenthesized_immediate, + STATE(5034), 2, + sym_val_range, sym__value, - STATE(5050), 2, + STATE(5208), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3289), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3311), 3, + ACTIONS(2707), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2160), 4, + ACTIONS(3262), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2171), 13, + STATE(959), 12, sym_val_nothing, - sym_val_variable, sym_val_cellpath, sym_val_number, sym_val_duration, @@ -147778,42 +153850,42 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9939] = 4, + [10696] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1376), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + ACTIONS(3337), 1, + anon_sym_DOT_DOT2, + STATE(1411), 1, sym_comment, - ACTIONS(3335), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(3339), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2096), 19, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, 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(3333), 48, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(2094), 35, sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, @@ -147822,14 +153894,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_AT, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -147842,13 +153911,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10008] = 4, + 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, + [10774] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1377), 1, + ACTIONS(2310), 1, + anon_sym_PIPE, + STATE(1412), 1, sym_comment, - ACTIONS(3339), 10, + ACTIONS(3120), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147859,9 +153938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3337), 48, + ACTIONS(3117), 48, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147891,6 +153969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147908,10 +153987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10077] = 4, + [10846] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1378), 1, + STATE(1413), 1, sym_comment, ACTIONS(3341), 10, anon_sym_export, @@ -147924,7 +154003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3343), 48, + ACTIONS(3343), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147954,6 +154033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, @@ -147973,115 +154053,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10146] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3345), 1, - anon_sym_DOT, - STATE(1379), 1, - sym_comment, - STATE(1434), 1, - sym__immediate_decimal, - ACTIONS(3347), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3349), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(698), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 41, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [10231] = 4, + [10916] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1380), 1, + STATE(1414), 1, sym_comment, - ACTIONS(3084), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1958), 21, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 48, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(1956), 38, sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, @@ -148090,14 +154090,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_AT, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -148110,85 +154110,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10300] = 6, + 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, + [10986] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3082), 1, - anon_sym_RPAREN, - STATE(1381), 1, - sym_comment, - ACTIONS(3355), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3351), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(948), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(964), 1, aux_sym__val_number_decimal_token1, + ACTIONS(970), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3353), 45, + ACTIONS(990), 1, + aux_sym_unquoted_token1, + ACTIONS(992), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(3347), 1, anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, + ACTIONS(3351), 1, anon_sym_LBRACK, + ACTIONS(3353), 1, anon_sym_LPAREN, + ACTIONS(3355), 1, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3357), 1, + anon_sym_DOT_DOT, + ACTIONS(3359), 1, + anon_sym_LPAREN2, + ACTIONS(3363), 1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(3369), 1, sym_val_date, + ACTIONS(3371), 1, anon_sym_DQUOTE, + ACTIONS(3373), 1, anon_sym_SQUOTE, + ACTIONS(3375), 1, anon_sym_BQUOTE, + ACTIONS(3377), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3379), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10373] = 6, + STATE(1415), 1, + sym_comment, + STATE(2718), 1, + sym__val_number_decimal, + STATE(3074), 1, + sym_val_bool, + STATE(3304), 1, + sym__val_number, + STATE(3309), 1, + sym__inter_single_quotes, + STATE(3310), 1, + sym__inter_double_quotes, + STATE(3357), 1, + sym_unquoted, + ACTIONS(972), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3345), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3361), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3365), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3349), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5255), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3349), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3367), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2727), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3435), 13, + sym_val_nothing, + sym_val_variable, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [11120] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1357), 1, - aux_sym__block_body_repeat1, - STATE(1382), 1, + ACTIONS(3316), 1, + ts_builtin_sym_end, + STATE(1416), 1, sym_comment, - ACTIONS(153), 2, + STATE(1433), 1, + aux_sym__block_body_repeat1, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3042), 10, + ACTIONS(3285), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148199,7 +154240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3287), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148245,61 +154286,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10446] = 7, + [11196] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2557), 1, - sym__newline, - ACTIONS(3362), 1, - anon_sym_SEMI, - STATE(1355), 1, - aux_sym__repeat_newline, - STATE(1383), 1, + ACTIONS(846), 1, + anon_sym_DOLLAR, + ACTIONS(862), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(868), 1, + anon_sym_0b, + ACTIONS(890), 1, + aux_sym_unquoted_token1, + ACTIONS(892), 1, + sym_raw_string_begin, + ACTIONS(3383), 1, + anon_sym_null, + ACTIONS(3387), 1, + anon_sym_LBRACK, + ACTIONS(3389), 1, + anon_sym_LPAREN, + ACTIONS(3391), 1, + anon_sym_LBRACE, + ACTIONS(3393), 1, + anon_sym_DOT_DOT, + ACTIONS(3395), 1, + anon_sym_LPAREN2, + ACTIONS(3399), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3405), 1, + sym_val_date, + ACTIONS(3407), 1, + anon_sym_DQUOTE, + ACTIONS(3409), 1, + anon_sym_SQUOTE, + ACTIONS(3411), 1, + anon_sym_BQUOTE, + ACTIONS(3413), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3415), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1417), 1, sym_comment, - ACTIONS(3358), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + STATE(2650), 1, + sym__val_number_decimal, + STATE(2958), 1, + sym_val_bool, + STATE(3156), 1, + sym__val_number, + STATE(3207), 1, + sym__inter_single_quotes, + STATE(3208), 1, + sym__inter_double_quotes, + STATE(3209), 1, + sym_unquoted, + ACTIONS(870), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3381), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3397), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3401), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3275), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5406), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3385), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3403), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2682), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3155), 13, + sym_val_nothing, + sym_val_variable, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [11330] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1418), 1, + sym_comment, + ACTIONS(2052), 21, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3360), 45, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(2050), 38, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_AT, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -148312,42 +154441,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10521] = 4, + 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, + [11400] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3417), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3419), 1, + aux_sym__immediate_decimal_token5, + STATE(1419), 1, sym_comment, - ACTIONS(3364), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1922), 19, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3366), 48, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1920), 38, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, @@ -148356,15 +154489,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -148377,13 +154509,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10590] = 4, + 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, + [11474] = 36, ACTIONS(3), 1, anon_sym_POUND, - STATE(1385), 1, + ACTIONS(1254), 1, + anon_sym_LBRACK, + ACTIONS(1264), 1, + anon_sym_LBRACE, + ACTIONS(1282), 1, + anon_sym_0b, + ACTIONS(1288), 1, + anon_sym_DQUOTE, + ACTIONS(1290), 1, + anon_sym_SQUOTE, + ACTIONS(1292), 1, + anon_sym_BQUOTE, + ACTIONS(1294), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1296), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1306), 1, + sym_raw_string_begin, + ACTIONS(3037), 1, + anon_sym_LPAREN2, + ACTIONS(3423), 1, + anon_sym_null, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3429), 1, + anon_sym_DOLLAR, + ACTIONS(3431), 1, + anon_sym_DOT_DOT, + ACTIONS(3435), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3437), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3441), 1, + sym_val_date, + ACTIONS(3443), 1, + aux_sym_unquoted_token1, + STATE(1402), 1, + sym__val_number_decimal, + STATE(1420), 1, + sym_comment, + STATE(1548), 1, + sym_val_bool, + STATE(1582), 1, + sym_unquoted, + STATE(1598), 1, + sym__val_number, + STATE(1639), 1, + sym__inter_single_quotes, + STATE(1640), 1, + sym__inter_double_quotes, + ACTIONS(1284), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3421), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3433), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3439), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1581), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5204), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1280), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3425), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1608), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1597), 13, + sym_val_nothing, + sym_val_variable, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [11608] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2310), 1, + anon_sym_POUND_BANG, + ACTIONS(3117), 1, + sym__newline, + STATE(1421), 1, sym_comment, - ACTIONS(3368), 10, + ACTIONS(3341), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148394,8 +154636,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3370), 48, + ACTIONS(3343), 47, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148419,13 +154662,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -148443,226 +154684,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10659] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(3372), 1, - anon_sym_DOT, - STATE(1386), 1, - sym_comment, - STATE(1443), 1, - sym__immediate_decimal, - ACTIONS(3374), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3376), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(929), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 40, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [10743] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(1387), 1, - sym_comment, - STATE(1486), 1, - sym__immediate_decimal, - ACTIONS(3378), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 41, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [10825] = 11, + [11682] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(3174), 1, + anon_sym_0b, + ACTIONS(3186), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3188), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3447), 1, + anon_sym_null, + ACTIONS(3451), 1, + anon_sym_LBRACK, + ACTIONS(3453), 1, + anon_sym_LPAREN, + ACTIONS(3455), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(3457), 1, + anon_sym_LBRACE, + ACTIONS(3459), 1, + anon_sym_DOT_DOT, + ACTIONS(3461), 1, anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(1388), 1, + ACTIONS(3465), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3467), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3471), 1, + sym_val_date, + ACTIONS(3473), 1, + aux_sym_unquoted_token1, + STATE(1422), 1, sym_comment, - STATE(1471), 1, - sym__immediate_decimal, - ACTIONS(3378), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(3180), 1, + sym__inter_single_quotes, + STATE(3181), 1, + sym__inter_double_quotes, + STATE(3205), 1, + sym__val_number, + STATE(3768), 1, + sym__val_number_decimal, + STATE(4439), 1, + sym_val_bool, + STATE(4744), 1, + sym_unquoted, + ACTIONS(3176), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3445), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3463), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3469), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4742), 2, sym__expr_parenthesized_immediate, + sym__value, + STATE(5070), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3172), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3449), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3204), 13, + sym_val_nothing, sym_val_variable, - ACTIONS(1633), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1631), 41, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [10907] = 4, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [11816] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1389), 1, + STATE(1423), 1, sym_comment, - ACTIONS(3182), 10, + ACTIONS(2312), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148673,7 +154798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3184), 47, + ACTIONS(2310), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148700,10 +154825,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -148721,45 +154848,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10975] = 13, + [11886] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3388), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3398), 1, - aux_sym__val_number_decimal_token2, - STATE(2103), 1, - sym__val_number_decimal, - STATE(4391), 1, - sym_env_var, - STATE(4838), 1, - sym_cmd_identifier, - ACTIONS(3382), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3401), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1390), 2, + ACTIONS(3475), 1, + anon_sym_QMARK2, + STATE(1424), 1, sym_comment, - aux_sym_pipe_element_parenthesized_repeat2, - ACTIONS(3393), 6, + ACTIONS(1608), 20, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3391), 17, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1610), 38, sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -148769,37 +154906,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3385), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [11061] = 4, + 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, + [11958] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1391), 1, + ACTIONS(3289), 1, + ts_builtin_sym_end, + STATE(1425), 1, sym_comment, - ACTIONS(3351), 10, + STATE(1433), 1, + aux_sym__block_body_repeat1, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3285), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148810,7 +154938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3353), 47, + ACTIONS(3287), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148835,8 +154963,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148858,45 +154984,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11129] = 13, + [12034] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3410), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3420), 1, - aux_sym__val_number_decimal_token2, - STATE(2103), 1, - sym__val_number_decimal, - STATE(4759), 1, - sym_env_var, - STATE(4838), 1, - sym_cmd_identifier, - ACTIONS(3404), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3423), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1392), 2, + ACTIONS(3477), 1, + anon_sym_DOT, + ACTIONS(3479), 1, + aux_sym__immediate_decimal_token5, + STATE(1426), 1, sym_comment, - aux_sym_pipe_element_repeat2, - ACTIONS(3415), 6, + ACTIONS(1884), 19, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3413), 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, + aux_sym_unquoted_token1, + ACTIONS(1882), 38, sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -148906,112 +155043,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3407), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [11215] = 33, + 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, + [12108] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, + ACTIONS(3483), 1, + anon_sym_null, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3489), 1, anon_sym_LPAREN, - ACTIONS(1390), 1, + ACTIONS(3491), 1, anon_sym_DOLLAR, - ACTIONS(1406), 1, + ACTIONS(3493), 1, + anon_sym_LBRACE, + ACTIONS(3495), 1, + anon_sym_DOT_DOT, + ACTIONS(3497), 1, + anon_sym_LPAREN2, + ACTIONS(3501), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3503), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3509), 1, anon_sym_0b, - ACTIONS(1412), 1, + ACTIONS(3513), 1, + sym_val_date, + ACTIONS(3515), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(3517), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(3519), 1, anon_sym_BQUOTE, - ACTIONS(1418), 1, + ACTIONS(3521), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, + ACTIONS(3523), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, + ACTIONS(3525), 1, + aux_sym_unquoted_token1, + ACTIONS(3527), 1, sym_raw_string_begin, - ACTIONS(1502), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1504), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1578), 1, - anon_sym_LBRACK, - ACTIONS(3426), 1, - anon_sym_null, - ACTIONS(3428), 1, - anon_sym_LBRACE, - ACTIONS(3430), 1, - anon_sym_DOT_DOT, - ACTIONS(3434), 1, - sym_val_date, - STATE(1393), 1, + STATE(1427), 1, sym_comment, - STATE(3676), 1, + STATE(2054), 1, sym__val_number_decimal, - STATE(3846), 1, - sym_val_variable, - STATE(4037), 1, - sym_expr_parenthesized, - STATE(4165), 1, - sym__val_number, - STATE(4452), 1, + STATE(2342), 1, + sym_val_bool, + STATE(2373), 1, + sym_unquoted, + STATE(2384), 1, sym__inter_single_quotes, - STATE(4453), 1, + STATE(2385), 1, sym__inter_double_quotes, - STATE(4768), 1, - sym_block, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1482), 2, + STATE(2416), 1, + sym__val_number, + ACTIONS(3481), 2, anon_sym_true, anon_sym_false, - ACTIONS(1506), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3432), 2, + ACTIONS(3499), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4774), 2, - sym_val_range, + ACTIONS(3505), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3511), 2, + anon_sym_0o, + anon_sym_0x, + STATE(2371), 2, + sym__expr_parenthesized_immediate, sym__value, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1404), 6, + STATE(5235), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3485), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + ACTIONS(3507), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(4536), 13, + STATE(2391), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2415), 13, sym_val_nothing, - sym_val_bool, + sym_val_variable, sym_val_cellpath, sym_val_number, sym_val_duration, @@ -149023,94 +155150,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11340] = 37, + [12242] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1398), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, + ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1412), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1424), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(1568), 1, - anon_sym_DOT_DOT, - ACTIONS(2656), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token1, + ACTIONS(2846), 1, + anon_sym_LPAREN, + ACTIONS(3047), 1, + anon_sym_null, + ACTIONS(3053), 1, + anon_sym_LBRACK, + ACTIONS(3055), 1, anon_sym_DOLLAR, - ACTIONS(2658), 1, + ACTIONS(3057), 1, anon_sym_LBRACE, - ACTIONS(2662), 1, + ACTIONS(3061), 1, + anon_sym__, + ACTIONS(3063), 1, + anon_sym_DOT_DOT, + ACTIONS(3067), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3069), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3073), 1, sym_val_date, - ACTIONS(3436), 1, - sym__newline, - ACTIONS(3438), 1, - anon_sym_LBRACK, - STATE(1394), 1, + STATE(697), 1, + sym__val_number, + STATE(1428), 1, sym_comment, - STATE(1424), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(2247), 1, - aux_sym__types_body_repeat1, - STATE(3555), 1, + STATE(1435), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(3676), 1, sym__val_number_decimal, - STATE(3756), 1, + STATE(3905), 1, sym_expr_parenthesized, - STATE(3757), 1, + STATE(3917), 1, sym_val_variable, - STATE(4134), 1, + STATE(3992), 1, + sym__match_pattern, + STATE(4173), 1, sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4516), 1, + STATE(4370), 1, + sym__match_pattern_expression, + STATE(4404), 1, sym__match_pattern_list, - ACTIONS(1374), 2, + STATE(4457), 1, + sym_unquoted, + STATE(5188), 1, + sym_match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3045), 2, anon_sym_true, anon_sym_false, - ACTIONS(1396), 2, + ACTIONS(3065), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, + ACTIONS(3071), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4290), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(4515), 2, + STATE(4403), 2, sym__match_pattern_value, sym_val_range, - STATE(4853), 2, + STATE(4719), 2, + sym_match_arm, + sym_default_arm, + STATE(5208), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, + ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3505), 4, + ACTIONS(3049), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4517), 8, + STATE(4405), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -149119,25 +155252,36 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [11473] = 6, - ACTIONS(103), 1, + [12384] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3442), 1, + ACTIONS(2709), 1, sym__newline, - ACTIONS(3445), 1, - sym__space, - ACTIONS(3448), 1, - sym_raw_string_begin, - STATE(1395), 2, + ACTIONS(3533), 1, + anon_sym_SEMI, + STATE(1429), 1, sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(3440), 52, + STATE(1437), 1, + aux_sym__parenthesized_body_repeat1, + STATE(1454), 1, + aux_sym__repeat_newline, + ACTIONS(3529), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3531), 45, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -149151,32 +155295,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_DOT_DOT, + anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -149184,166 +155322,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11544] = 11, + [12462] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(2108), 1, anon_sym_LPAREN2, - STATE(1396), 1, + ACTIONS(2114), 1, + sym__unquoted_pattern, + ACTIONS(3535), 1, + anon_sym_DOT_DOT2, + STATE(1430), 1, sym_comment, - STATE(1504), 1, - sym__immediate_decimal, - ACTIONS(3450), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1343), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, - anon_sym_GT2, + ACTIONS(3537), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2106), 19, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1631), 40, - ts_builtin_sym_end, - anon_sym_in, + 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(2104), 35, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [11625] = 11, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12540] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - STATE(1397), 1, + ACTIONS(3475), 1, + anon_sym_BANG, + STATE(1431), 1, sym_comment, - STATE(1505), 1, - sym__immediate_decimal, - ACTIONS(3450), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1311), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, + ACTIONS(1608), 20, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 40, - ts_builtin_sym_end, - anon_sym_in, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1610), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [11706] = 7, - ACTIONS(103), 1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12612] = 40, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3391), 1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3454), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token1, + ACTIONS(2846), 1, + anon_sym_LPAREN, + ACTIONS(3047), 1, + anon_sym_null, + ACTIONS(3053), 1, + anon_sym_LBRACK, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + ACTIONS(3057), 1, + anon_sym_LBRACE, + ACTIONS(3061), 1, + anon_sym__, + ACTIONS(3063), 1, + anon_sym_DOT_DOT, + ACTIONS(3067), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3069), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3073), 1, + sym_val_date, + STATE(697), 1, + sym__val_number, + STATE(1432), 1, + sym_comment, + STATE(1435), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(3676), 1, + sym__val_number_decimal, + STATE(3905), 1, + sym_expr_parenthesized, + STATE(3917), 1, + sym_val_variable, + STATE(3992), 1, + sym__match_pattern, + STATE(4173), 1, + sym_val_bool, + STATE(4370), 1, + sym__match_pattern_expression, + STATE(4404), 1, + sym__match_pattern_list, + STATE(4457), 1, + sym_unquoted, + STATE(5188), 1, + sym_match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3045), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3065), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3071), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4403), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4766), 2, + sym_match_arm, + sym_default_arm, + STATE(5208), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(189), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3049), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4405), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [12754] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3539), 2, sym__newline, - ACTIONS(3456), 1, - sym__space, - STATE(1395), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(1398), 1, + anon_sym_SEMI, + STATE(1433), 2, sym_comment, - ACTIONS(3393), 52, + aux_sym__block_body_repeat1, + ACTIONS(3330), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3332), 46, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -149357,32 +155601,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_DOT_DOT, + anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -149390,372 +155628,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11779] = 33, + [12826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, + STATE(1434), 1, + sym_comment, + ACTIONS(1922), 21, anon_sym_LPAREN, - ACTIONS(1390), 1, anon_sym_DOLLAR, - ACTIONS(1406), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, anon_sym_0b, - ACTIONS(1412), 1, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(1920), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, anon_sym_BQUOTE, - ACTIONS(1418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1502), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1504), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1578), 1, - anon_sym_LBRACK, - ACTIONS(3426), 1, + anon_sym_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, + [12896] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3545), 1, anon_sym_null, - ACTIONS(3428), 1, + ACTIONS(3551), 1, + anon_sym_LBRACK, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3557), 1, + anon_sym_DOLLAR, + ACTIONS(3560), 1, anon_sym_LBRACE, - ACTIONS(3430), 1, + ACTIONS(3563), 1, + anon_sym__, + ACTIONS(3566), 1, anon_sym_DOT_DOT, - ACTIONS(3434), 1, + ACTIONS(3572), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3575), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3584), 1, + anon_sym_0b, + ACTIONS(3590), 1, sym_val_date, - STATE(1399), 1, - sym_comment, + ACTIONS(3593), 1, + anon_sym_DQUOTE, + ACTIONS(3596), 1, + anon_sym_SQUOTE, + ACTIONS(3599), 1, + anon_sym_BQUOTE, + ACTIONS(3602), 1, + aux_sym_unquoted_token1, + ACTIONS(3605), 1, + sym_raw_string_begin, + STATE(697), 1, + sym__val_number, STATE(3676), 1, sym__val_number_decimal, - STATE(3846), 1, - sym_val_variable, - STATE(4033), 1, + STATE(3905), 1, sym_expr_parenthesized, - STATE(4165), 1, - sym__val_number, - STATE(4452), 1, - sym__inter_single_quotes, - STATE(4453), 1, - sym__inter_double_quotes, - STATE(4761), 1, - sym_block, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1482), 2, + STATE(3917), 1, + sym_val_variable, + STATE(3992), 1, + sym__match_pattern, + STATE(4173), 1, + sym_val_bool, + STATE(4370), 1, + sym__match_pattern_expression, + STATE(4404), 1, + sym__match_pattern_list, + STATE(4457), 1, + sym_unquoted, + STATE(5188), 1, + sym_match_pattern, + ACTIONS(3542), 2, anon_sym_true, anon_sym_false, - ACTIONS(1506), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3432), 2, + ACTIONS(3569), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4765), 2, + ACTIONS(3578), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3587), 2, + anon_sym_0o, + anon_sym_0x, + STATE(1435), 2, + sym_comment, + aux_sym__ctrl_match_body_repeat1, + STATE(4403), 2, + sym__match_pattern_value, sym_val_range, - sym__value, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1404), 6, + STATE(4917), 2, + sym_match_arm, + sym_default_arm, + STATE(5208), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3548), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + ACTIONS(3581), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(4536), 13, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4405), 8, + sym__match_pattern_record, sym_val_nothing, - sym_val_bool, - sym_val_cellpath, sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, sym_val_table, - sym_val_closure, - [11904] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3458), 1, - anon_sym_DOT, - ACTIONS(3460), 1, - aux_sym__immediate_decimal_token5, - STATE(1400), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 46, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [11975] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3462), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3464), 1, - aux_sym__immediate_decimal_token5, - STATE(1401), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 46, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12046] = 6, + [13036] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3466), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3468), 1, - aux_sym__immediate_decimal_token5, - STATE(1402), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 45, + ACTIONS(3318), 1, ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12116] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3470), 1, - aux_sym__immediate_decimal_token5, - STATE(1403), 1, + STATE(1433), 1, + aux_sym__block_body_repeat1, + STATE(1436), 1, sym_comment, - ACTIONS(771), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 46, - anon_sym_in, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(3285), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12184] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3474), 1, - sym__space, - ACTIONS(3477), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3287), 45, sym_raw_string_begin, - STATE(1404), 2, - sym_comment, - aux_sym_pipe_element_repeat1, - ACTIONS(3472), 52, - anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -149769,32 +155837,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_DOT_DOT, + anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -149802,15 +155864,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12252] = 5, + [13112] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3479), 1, + ACTIONS(3612), 1, sym__newline, - STATE(1405), 2, + ACTIONS(3615), 1, + anon_sym_SEMI, + STATE(4623), 1, aux_sym__repeat_newline, + STATE(1437), 2, sym_comment, - ACTIONS(1960), 10, + aux_sym__parenthesized_body_repeat1, + ACTIONS(3608), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149821,7 +155887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1955), 43, + ACTIONS(3610), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149846,9 +155912,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -149865,93 +155933,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12320] = 11, + [13188] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(3482), 1, - anon_sym_DOT_DOT2, - ACTIONS(3486), 1, - sym_filesize_unit, - ACTIONS(3488), 1, - sym_duration_unit, - STATE(1406), 1, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1438), 1, sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3484), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 42, - anon_sym_in, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1593), 1, + sym_cell_path, + ACTIONS(1823), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1821), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [12400] = 6, - ACTIONS(103), 1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [13265] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(3490), 1, - sym__space, STATE(1404), 1, - aux_sym_pipe_element_repeat1, - STATE(1407), 1, + aux_sym__block_body_repeat1, + STATE(1439), 1, sym_comment, - ACTIONS(3415), 52, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3285), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3287), 45, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -149965,32 +156042,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_DOT_DOT, + anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -149998,85 +156069,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12470] = 6, + [13338] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3494), 1, - aux_sym__immediate_decimal_token5, - STATE(1408), 1, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1440), 1, sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 45, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1625), 1, + sym_cell_path, + ACTIONS(2010), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT, + aux_sym__val_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(2008), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [13415] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1441), 1, + sym_comment, + ACTIONS(1694), 20, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1696), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12540] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13484] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1409), 1, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1442), 1, sym_comment, - ACTIONS(3496), 2, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1603), 1, + sym_cell_path, + ACTIONS(2022), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2020), 38, sym_raw_string_begin, - sym__space, - ACTIONS(858), 53, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [13561] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1443), 1, + sym_comment, + ACTIONS(1657), 20, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1659), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13630] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1444), 1, + sym_comment, + ACTIONS(3341), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3343), 48, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -150090,7 +156373,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, @@ -150098,25 +156380,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, sym__newline, + anon_sym_SEMI, + anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_DOT_DOT, + anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -150124,84 +156402,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12606] = 5, + [13699] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3460), 1, - aux_sym__immediate_decimal_token5, - STATE(1410), 1, + STATE(1445), 1, sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1690), 20, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 46, - anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1692), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12674] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13768] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1411), 1, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1446), 1, sym_comment, - ACTIONS(3500), 2, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1650), 1, + sym_cell_path, + ACTIONS(1588), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1590), 38, sym_raw_string_begin, - sym__space, - ACTIONS(3498), 52, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [13845] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1447), 1, + sym_comment, + ACTIONS(3620), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3622), 48, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -150215,32 +156571,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_DOT_DOT, + anon_sym_RBRACE, + anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -150248,296 +156601,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12739] = 34, + [13914] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3505), 1, - anon_sym_null, - ACTIONS(3511), 1, - anon_sym_LBRACK, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3517), 1, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1448), 1, + sym_comment, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1604), 1, + sym_cell_path, + ACTIONS(2035), 16, anon_sym_DOLLAR, - ACTIONS(3520), 1, - anon_sym_LBRACE, - ACTIONS(3523), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3529), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3532), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3541), 1, anon_sym_0b, - ACTIONS(3547), 1, - sym_val_date, - ACTIONS(3550), 1, - anon_sym_DQUOTE, - ACTIONS(3553), 1, - anon_sym_SQUOTE, - ACTIONS(3556), 1, - anon_sym_BQUOTE, - ACTIONS(3559), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3562), 1, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(2032), 38, sym_raw_string_begin, - STATE(3672), 1, - sym__val_number_decimal, - STATE(4165), 1, - sym__val_number, - STATE(4191), 1, - sym_expr_parenthesized, - STATE(4192), 1, - sym_val_variable, - STATE(4516), 1, - sym__match_pattern_list, - STATE(4685), 1, - sym_val_bool, - ACTIONS(3502), 2, anon_sym_true, anon_sym_false, - ACTIONS(3526), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3535), 2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3544), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1412), 2, - sym_comment, - aux_sym__match_pattern_list_body_repeat1, - STATE(4515), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4732), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(4853), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3508), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3538), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4517), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [12864] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3565), 1, - aux_sym__immediate_decimal_token5, - STATE(1413), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 45, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12931] = 6, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13991] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3567), 1, - anon_sym_DOT, - ACTIONS(3569), 1, - aux_sym__immediate_decimal_token5, - STATE(1414), 1, - sym_comment, - ACTIONS(1738), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 45, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(3343), 1, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [13000] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, - ACTIONS(3571), 1, - anon_sym_DOT_DOT2, - ACTIONS(3575), 1, - sym_filesize_unit, - ACTIONS(3577), 1, - sym_duration_unit, - STATE(1415), 1, + STATE(1449), 1, sym_comment, - STATE(4775), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3573), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(3628), 2, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [13079] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1416), 1, - sym_comment, - ACTIONS(2098), 10, + ACTIONS(3624), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150548,7 +156691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2096), 44, + ACTIONS(3626), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150573,10 +156716,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, + anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -150593,640 +156737,980 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13144] = 36, + [14064] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2876), 1, - anon_sym_LBRACK, - ACTIONS(2878), 1, + STATE(1450), 1, + sym_comment, + ACTIONS(3631), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LBRACE, - ACTIONS(3581), 1, - anon_sym_null, - ACTIONS(3585), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3589), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3591), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3595), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(1417), 1, - sym_comment, - STATE(3501), 1, - sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, - sym_val_variable, - STATE(4087), 1, - sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, - sym__match_pattern_list, - STATE(4587), 1, - sym__match_pattern, - ACTIONS(193), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3579), 2, + ACTIONS(3633), 48, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3587), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3593), 2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3583), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4309), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13273] = 36, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [14133] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1398), 1, + STATE(1451), 1, + sym_comment, + ACTIONS(3637), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1424), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3635), 48, sym_raw_string_begin, - ACTIONS(1568), 1, - anon_sym_DOT_DOT, - ACTIONS(2656), 1, - anon_sym_DOLLAR, - ACTIONS(2658), 1, - anon_sym_LBRACE, - ACTIONS(2662), 1, - sym_val_date, - ACTIONS(3438), 1, - anon_sym_LBRACK, - STATE(1412), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(1418), 1, - sym_comment, - STATE(3555), 1, - sym__val_number_decimal, - STATE(3756), 1, - sym_expr_parenthesized, - STATE(3757), 1, - sym_val_variable, - STATE(4134), 1, - sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4295), 1, - sym__match_pattern_expression, - STATE(4296), 1, - sym__unquoted_in_list, - STATE(4516), 1, - sym__match_pattern_list, - ACTIONS(1374), 2, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(1396), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [14202] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3639), 1, + anon_sym_QMARK2, + ACTIONS(3641), 1, + anon_sym_BANG, + STATE(1452), 1, + sym_comment, + STATE(1549), 1, + sym__path_suffix, + ACTIONS(1594), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(4515), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4853), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1596), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4517), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13402] = 6, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [14277] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3597), 1, + ACTIONS(3643), 1, aux_sym__immediate_decimal_token1, - ACTIONS(3599), 1, + ACTIONS(3645), 1, aux_sym__immediate_decimal_token5, - STATE(1419), 1, + STATE(1453), 1, sym_comment, - ACTIONS(1728), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, + ACTIONS(1922), 18, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, sym__unquoted_pattern, - ACTIONS(1726), 45, - anon_sym_in, + aux_sym_unquoted_token1, + ACTIONS(1920), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [13471] = 36, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [14350] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(2709), 1, + sym__newline, + ACTIONS(3651), 1, + anon_sym_SEMI, + STATE(1387), 1, + aux_sym__repeat_newline, + STATE(1454), 1, + sym_comment, + ACTIONS(3647), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, - ACTIONS(1786), 1, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3649), 45, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1788), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [14425] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3479), 1, + aux_sym__immediate_decimal_token5, + STATE(1455), 1, + sym_comment, + ACTIONS(1884), 19, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(2682), 1, - anon_sym_LPAREN, - ACTIONS(2876), 1, + ACTIONS(1882), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3581), 1, - anon_sym_null, - ACTIONS(3585), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [14496] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1456), 1, + sym_comment, + ACTIONS(3653), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3589), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3591), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3655), 48, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, - ACTIONS(3595), 1, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(1420), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [14565] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1457), 1, sym_comment, - STATE(3501), 1, - sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, - sym_val_variable, - STATE(4087), 1, - sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, - sym__match_pattern_list, - STATE(4602), 1, - sym__match_pattern, - ACTIONS(193), 2, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1613), 1, + sym_cell_path, + ACTIONS(2018), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3579), 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(2016), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - ACTIONS(3587), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3593), 2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3583), 3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [14642] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1458), 1, + sym_comment, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1637), 1, + sym_cell_path, + ACTIONS(3659), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3657), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4309), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13600] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [14719] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1421), 1, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1459), 1, sym_comment, - ACTIONS(849), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(851), 46, - anon_sym_in, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1614), 1, + sym_cell_path, + ACTIONS(2026), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2024), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [13665] = 5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [14796] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3494), 1, + ACTIONS(3661), 1, aux_sym__immediate_decimal_token5, - STATE(1422), 1, + STATE(1460), 1, sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1958), 19, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 45, - ts_builtin_sym_end, - anon_sym_in, + 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(1956), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [13732] = 4, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [14867] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1423), 1, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3665), 1, + aux_sym__immediate_decimal_token5, + STATE(1461), 1, sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, + ACTIONS(1884), 18, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, sym__unquoted_pattern, - ACTIONS(749), 46, - anon_sym_in, + aux_sym_unquoted_token1, + ACTIONS(1882), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [13797] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1398), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, + 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, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, anon_sym_BQUOTE, - ACTIONS(1424), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1568), 1, - anon_sym_DOT_DOT, - ACTIONS(2656), 1, - anon_sym_DOLLAR, - ACTIONS(2658), 1, - anon_sym_LBRACE, - ACTIONS(2662), 1, - sym_val_date, - ACTIONS(3438), 1, - anon_sym_LBRACK, - STATE(1412), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(1424), 1, + 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, + [14940] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1462), 1, sym_comment, - STATE(3555), 1, - sym__val_number_decimal, - STATE(3756), 1, - sym_expr_parenthesized, - STATE(3757), 1, - sym_val_variable, - STATE(4134), 1, - sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4190), 1, - sym__match_pattern_expression, - STATE(4194), 1, - sym__unquoted_in_list, - STATE(4516), 1, - sym__match_pattern_list, - ACTIONS(1374), 2, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1587), 1, + sym_cell_path, + ACTIONS(1809), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1807), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - ACTIONS(1396), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15017] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1463), 1, + sym_comment, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1638), 1, + sym_cell_path, + ACTIONS(3669), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(4515), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4853), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(3667), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4517), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13926] = 4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15094] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1425), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(3671), 1, + anon_sym_DOT, + STATE(1464), 1, sym_comment, - ACTIONS(771), 8, + STATE(1662), 1, + sym__immediate_decimal, + ACTIONS(3673), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3675), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(687), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1738), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 46, + ACTIONS(1734), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151240,7 +157724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, @@ -151260,7 +157743,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -151270,515 +157752,377 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [13991] = 6, + [15179] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3601), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3603), 1, - aux_sym__immediate_decimal_token5, - STATE(1426), 1, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1465), 1, sym_comment, - ACTIONS(1728), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 44, - ts_builtin_sym_end, - anon_sym_in, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1609), 1, + sym_cell_path, + ACTIONS(3679), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3677), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14059] = 6, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [15256] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3605), 1, - anon_sym_DOT, - ACTIONS(3607), 1, - aux_sym__immediate_decimal_token5, - STATE(1427), 1, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1466), 1, sym_comment, - ACTIONS(1738), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 44, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1615), 1, + sym_cell_path, + ACTIONS(3683), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14127] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1428), 1, - sym_comment, - ACTIONS(849), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(851), 45, - ts_builtin_sym_end, - anon_sym_in, + anon_sym_DOT_DOT, + aux_sym__val_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(3681), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [14191] = 5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [15333] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3569), 1, - aux_sym__immediate_decimal_token5, - STATE(1429), 1, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1467), 1, sym_comment, - ACTIONS(1738), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 45, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1616), 1, + sym_cell_path, + ACTIONS(3687), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14257] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1430), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 45, - ts_builtin_sym_end, - anon_sym_in, + anon_sym_DOT_DOT, + aux_sym__val_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(3685), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [14321] = 5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [15410] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3609), 1, - aux_sym__immediate_decimal_token5, - STATE(1431), 1, + STATE(1468), 1, sym_comment, - ACTIONS(1804), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 45, + ACTIONS(3691), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14387] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1432), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 45, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3689), 48, + sym_raw_string_begin, ts_builtin_sym_end, - anon_sym_in, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [14451] = 4, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [15479] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1433), 1, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1469), 1, sym_comment, - ACTIONS(1728), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 45, - anon_sym_in, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1620), 1, + sym_cell_path, + ACTIONS(2048), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2046), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14514] = 8, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [15556] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1774), 1, sym__unquoted_pattern, - ACTIONS(3611), 1, - anon_sym_DOT_DOT2, - STATE(1434), 1, + STATE(1470), 1, sym_comment, - ACTIONS(3613), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + STATE(1697), 1, + sym__immediate_decimal, + ACTIONS(3693), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3695), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(731), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1738), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 42, + ACTIONS(1734), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151792,7 +158136,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, @@ -151821,801 +158164,802 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14585] = 4, + [15638] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1435), 1, + STATE(1471), 1, sym_comment, - ACTIONS(1804), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 45, - anon_sym_in, + ACTIONS(1668), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1670), 40, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14648] = 8, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(3615), 1, - anon_sym_DOT_DOT2, - STATE(1436), 1, + STATE(1472), 1, sym_comment, - ACTIONS(3617), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1964), 42, - anon_sym_in, + ACTIONS(1672), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1674), 40, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [14719] = 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15774] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1437), 1, + STATE(1473), 1, sym_comment, - ACTIONS(1872), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 45, - anon_sym_in, + ACTIONS(1676), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1678), 40, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14782] = 5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15842] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3607), 1, - aux_sym__immediate_decimal_token5, - STATE(1438), 1, + STATE(1474), 1, sym_comment, - ACTIONS(1738), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 44, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(1680), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1682), 40, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15910] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1475), 1, + sym_comment, + ACTIONS(1686), 17, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14847] = 5, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1688), 40, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15978] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3619), 1, - aux_sym__immediate_decimal_token5, - STATE(1439), 1, + STATE(1476), 1, sym_comment, - ACTIONS(1804), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1823), 19, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 44, - ts_builtin_sym_end, - anon_sym_in, + 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(1821), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14912] = 6, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [16046] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3621), 1, - anon_sym_DOT, - ACTIONS(3623), 1, - aux_sym__immediate_decimal_token5, - STATE(1440), 1, + ACTIONS(3697), 1, + anon_sym_DOT_DOT2, + STATE(1477), 1, sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 43, - anon_sym_in, + ACTIONS(3699), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2296), 18, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(2294), 36, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [14978] = 8, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [16118] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(3625), 1, + ACTIONS(3701), 1, anon_sym_DOT_DOT2, - STATE(1441), 1, + STATE(1478), 1, sym_comment, - ACTIONS(3627), 2, + ACTIONS(3703), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1964), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(1750), 18, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(1856), 36, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15048] = 6, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [16190] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3629), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3631), 1, - aux_sym__immediate_decimal_token5, - STATE(1442), 1, + ACTIONS(3618), 1, + anon_sym_DOT2, + STATE(1479), 1, sym_comment, - ACTIONS(1728), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 43, - anon_sym_in, + STATE(1480), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + ACTIONS(1651), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1653), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15114] = 8, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [16264] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(3633), 1, - anon_sym_DOT_DOT2, - STATE(1443), 1, + ACTIONS(3705), 1, + anon_sym_DOT2, + STATE(1544), 1, + sym_path, + STATE(1480), 2, sym_comment, - ACTIONS(3635), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1974), 41, - ts_builtin_sym_end, - anon_sym_in, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1642), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1644), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15184] = 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [16336] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1444), 1, + ACTIONS(3708), 1, + aux_sym__immediate_decimal_token5, + STATE(1481), 1, sym_comment, - ACTIONS(1728), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, + ACTIONS(1958), 18, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, sym__unquoted_pattern, - ACTIONS(1726), 44, - ts_builtin_sym_end, - anon_sym_in, + aux_sym_unquoted_token1, + ACTIONS(1956), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [15246] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1788), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3645), 1, - anon_sym_LBRACK, - ACTIONS(3647), 1, - anon_sym_STAR2, - STATE(1445), 1, + 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, + [16406] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1482), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4326), 1, - sym__command_name, - STATE(4327), 1, - sym_scope_pattern, - STATE(4328), 1, - sym_wild_card, - STATE(4329), 1, - sym_command_list, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(1992), 19, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3643), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1990), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15344] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(423), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, - sym_path, - STATE(923), 1, - sym_cell_path, - STATE(1446), 1, - sym_comment, - ACTIONS(1853), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3653), 13, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1850), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15416] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1788), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3645), 1, - anon_sym_LBRACK, - ACTIONS(3647), 1, - anon_sym_STAR2, - STATE(1447), 1, + 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, + [16474] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1483), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4270), 1, - sym_scope_pattern, - STATE(4326), 1, - sym__command_name, - STATE(4328), 1, - sym_wild_card, - STATE(4329), 1, - sym_command_list, - ACTIONS(3637), 2, + ACTIONS(3608), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3649), 2, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3657), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3610), 47, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -152639,538 +158983,448 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15514] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [16542] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1448), 1, + STATE(1484), 1, sym_comment, - ACTIONS(1804), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1922), 19, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 44, - ts_builtin_sym_end, - anon_sym_in, + 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(1920), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [15576] = 4, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [16610] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1449), 1, + STATE(1485), 1, sym_comment, - ACTIONS(1872), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1714), 19, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 44, - ts_builtin_sym_end, - anon_sym_in, + 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(1716), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [15638] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_DOT2, - STATE(518), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, - sym_path, - STATE(1292), 1, - sym_cell_path, - STATE(1450), 1, - sym_comment, - ACTIONS(1853), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3653), 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(1850), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15709] = 5, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [16678] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3659), 1, + ACTIONS(3665), 1, aux_sym__immediate_decimal_token5, - STATE(1451), 1, + STATE(1486), 1, sym_comment, - ACTIONS(1804), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 43, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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(1884), 18, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15772] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3623), 1, - aux_sym__immediate_decimal_token5, - STATE(1452), 1, - sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + anon_sym_DOT_DOT, + aux_sym__val_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, sym__unquoted_pattern, - ACTIONS(1736), 43, - anon_sym_in, + aux_sym_unquoted_token1, + ACTIONS(1882), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15835] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(251), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3226), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, - anon_sym_LPAREN, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - STATE(1453), 1, + 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, + [16748] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3701), 1, + anon_sym_DOT_DOT2, + STATE(1487), 1, sym_comment, - STATE(2101), 1, - sym__val_number_decimal, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - ACTIONS(277), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3703), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3712), 18, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3031), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(271), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(3710), 36, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15928] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(251), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3226), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, - anon_sym_LPAREN, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - STATE(1454), 1, + 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, + [16820] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1488), 1, sym_comment, - STATE(2101), 1, - sym__val_number_decimal, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - ACTIONS(277), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(1958), 19, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2839), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(271), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1956), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16021] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(91), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3671), 1, - anon_sym_LBRACK, - ACTIONS(3673), 1, - anon_sym_STAR2, - STATE(1455), 1, + 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, + [16888] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1489), 1, sym_comment, - STATE(1976), 1, - sym__val_number_decimal, - STATE(4246), 1, - sym_cmd_identifier, - STATE(4248), 1, - sym_val_string, - STATE(4456), 1, - sym__command_name, - STATE(4457), 1, - sym_scope_pattern, - STATE(4458), 1, - sym_wild_card, - STATE(4459), 1, - sym_command_list, - ACTIONS(3649), 2, + ACTIONS(2052), 19, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3643), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3667), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(2050), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16118] = 6, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [16956] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3675), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3677), 1, - aux_sym__immediate_decimal_token5, - STATE(1456), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(1791), 1, + anon_sym_DOLLAR, + ACTIONS(1793), 1, + anon_sym_LPAREN2, + ACTIONS(3714), 1, + anon_sym_DOT, + STATE(1490), 1, sym_comment, - ACTIONS(1728), 6, + STATE(1671), 1, + sym__immediate_decimal, + ACTIONS(3716), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3718), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(953), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1738), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 42, + ACTIONS(1734), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153184,7 +159438,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -153203,7 +159456,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -153213,56 +159465,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16183] = 20, + [17040] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(19), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(958), 1, + ACTIONS(3724), 1, + anon_sym_EQ2, + ACTIONS(3726), 1, + sym_short_flag_identifier, + STATE(1491), 1, + sym_comment, + STATE(1575), 1, + sym__flag_equals_value, + ACTIONS(3722), 26, sym_raw_string_begin, - ACTIONS(3263), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(3265), 1, anon_sym_SQUOTE, - ACTIONS(3267), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, - anon_sym_LPAREN, - ACTIONS(3681), 1, + anon_sym_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, + ACTIONS(3720), 28, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, anon_sym_DOLLAR, - STATE(1457), 1, + anon_sym_DASH_DASH, + anon_sym_DASH2, + 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, + anon_sym_o_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, + [17114] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3728), 1, + anon_sym_DOT_DOT2, + STATE(1492), 1, sym_comment, - STATE(2085), 1, - sym__val_number_decimal, - STATE(3091), 1, - sym__inter_single_quotes, - STATE(3098), 1, - sym__inter_double_quotes, - ACTIONS(45), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3730), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2320), 18, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(2318), 36, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2472), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2962), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17186] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3738), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3745), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3748), 1, + aux_sym__val_number_decimal_token2, + STATE(2331), 1, + sym__val_number_decimal, + STATE(4900), 1, + sym_env_var, + STATE(5194), 1, sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(39), 23, + ACTIONS(3732), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3751), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1493), 2, + sym_comment, + aux_sym_pipe_element_repeat2, + ACTIONS(3743), 6, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3741), 17, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(3735), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153286,58 +159671,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16276] = 22, + [17272] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3671), 1, - anon_sym_LBRACK, - ACTIONS(3673), 1, - anon_sym_STAR2, - STATE(1458), 1, + ACTIONS(3724), 1, + anon_sym_EQ2, + ACTIONS(3758), 1, + sym_long_flag_identifier, + STATE(1494), 1, sym_comment, - STATE(1976), 1, - sym__val_number_decimal, - STATE(4246), 1, - sym_cmd_identifier, - STATE(4248), 1, - sym_val_string, - STATE(4379), 1, - sym_scope_pattern, - STATE(4456), 1, - sym__command_name, - STATE(4458), 1, - sym_wild_card, - STATE(4459), 1, - sym_command_list, - ACTIONS(3649), 2, + STATE(1572), 1, + sym__flag_equals_value, + ACTIONS(3754), 25, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token5, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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, + anon_sym_o_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(3756), 29, + sym_raw_string_begin, + aux_sym_cmd_identifier_token4, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [17346] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1495), 1, + sym_comment, + ACTIONS(3624), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3657), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3667), 23, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3626), 47, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153361,368 +159779,255 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16373] = 6, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [17414] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - ACTIONS(3685), 1, - aux_sym__immediate_decimal_token5, - STATE(1459), 1, + ACTIONS(3760), 1, + anon_sym_DOT_DOT2, + STATE(1496), 1, sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 42, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(3762), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2280), 18, + anon_sym_DOLLAR, + anon_sym_DASH2, + 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(2278), 36, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [16438] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(1460), 1, - sym_comment, - ACTIONS(1619), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1706), 42, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [16502] = 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17486] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1461), 1, + ACTIONS(3764), 1, + anon_sym_DOT_DOT2, + STATE(1497), 1, sym_comment, - ACTIONS(1728), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 43, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(3766), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2234), 18, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [16562] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1462), 1, - sym_comment, - ACTIONS(996), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 42, - anon_sym_in, + 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(2232), 36, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [16626] = 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17558] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1463), 1, + STATE(1498), 1, sym_comment, - ACTIONS(1804), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 43, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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(1700), 17, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [16686] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3689), 1, - anon_sym_RBRACE, - ACTIONS(3691), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1702), 40, sym_raw_string_begin, - STATE(1464), 1, - sym_comment, - STATE(1473), 1, - aux_sym__types_body_repeat2, - ACTIONS(3687), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [16752] = 6, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17626] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1819), 1, sym__unquoted_pattern, - STATE(1465), 1, + STATE(1499), 1, sym_comment, - ACTIONS(1016), 5, + STATE(1699), 1, + sym__immediate_decimal, + ACTIONS(3693), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3695), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(749), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1803), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 42, + ACTIONS(1801), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153736,7 +160041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, @@ -153765,203 +160069,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16816] = 7, - ACTIONS(103), 1, + [17708] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3696), 1, - anon_sym_RBRACE, - ACTIONS(3699), 1, - sym_raw_string_begin, - STATE(1466), 1, + STATE(1500), 1, sym_comment, - STATE(1473), 1, - aux_sym__types_body_repeat2, - ACTIONS(3693), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + ACTIONS(2006), 19, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(2004), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, 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, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [16882] = 7, - ACTIONS(103), 1, + 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, + [17776] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3691), 1, - sym_raw_string_begin, - ACTIONS(3702), 1, - anon_sym_RBRACE, - STATE(1467), 1, + STATE(1501), 1, sym_comment, - STATE(1473), 1, - aux_sym__types_body_repeat2, - ACTIONS(3687), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + ACTIONS(2002), 19, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(2000), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, 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, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [16948] = 7, - ACTIONS(103), 1, + 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, + [17844] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3706), 1, - anon_sym_RBRACE, - ACTIONS(3708), 1, - sym_raw_string_begin, - STATE(1468), 1, - sym_comment, - STATE(1473), 1, - aux_sym__types_body_repeat2, - ACTIONS(3704), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, + ACTIONS(3774), 1, aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, + ACTIONS(3781), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3784), 1, aux_sym__val_number_decimal_token2, + STATE(2331), 1, + sym__val_number_decimal, + STATE(4694), 1, + sym_env_var, + STATE(5194), 1, + sym_cmd_identifier, + ACTIONS(3768), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3787), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(1502), 2, + sym_comment, + aux_sym_pipe_element_parenthesized_repeat2, + ACTIONS(3779), 6, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3777), 17, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17014] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3706), 1, - anon_sym_RBRACE, - ACTIONS(3708), 1, - sym_raw_string_begin, - STATE(1469), 1, - sym_comment, - STATE(1473), 1, - aux_sym__types_body_repeat2, - ACTIONS(3704), 45, - anon_sym_export, + anon_sym_CARET, + ACTIONS(3771), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -153975,48 +160264,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17080] = 6, + [17930] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(1470), 1, + ACTIONS(3790), 1, + anon_sym_DOT, + ACTIONS(3792), 1, + aux_sym__immediate_decimal_token5, + STATE(1503), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(767), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 42, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(769), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154050,6 +160322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154059,191 +160332,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17144] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [18001] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(1890), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(1471), 1, + STATE(1504), 1, sym_comment, - ACTIONS(2569), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2567), 42, - anon_sym_in, + STATE(5247), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2226), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2224), 37, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [17208] = 4, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [18072] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1472), 1, + STATE(1505), 1, sym_comment, - ACTIONS(2503), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 43, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(1958), 18, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [17268] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3712), 1, - sym__entry_separator, - ACTIONS(3715), 1, + anon_sym_DOT_DOT, + aux_sym__val_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, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(1956), 38, sym_raw_string_begin, - STATE(1473), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 46, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_PLUS2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, 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, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17330] = 7, + 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, + [18139] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3691), 1, + ACTIONS(3777), 1, sym_raw_string_begin, - ACTIONS(3717), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1474), 1, + ACTIONS(3794), 1, + sym__newline, + ACTIONS(3796), 1, + sym__space, + STATE(1506), 1, sym_comment, - ACTIONS(3687), 45, + STATE(1512), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3779), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154270,12 +160503,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -154283,315 +160519,350 @@ 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, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17396] = 7, - ACTIONS(103), 1, + anon_sym_CARET, + [18212] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3708), 1, - sym_raw_string_begin, - ACTIONS(3719), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1475), 1, + STATE(1507), 1, sym_comment, - ACTIONS(3704), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + ACTIONS(2665), 18, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(2663), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, 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, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17462] = 5, + 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, + [18279] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3685), 1, - aux_sym__immediate_decimal_token5, - STATE(1476), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + STATE(1508), 1, sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 42, - ts_builtin_sym_end, - anon_sym_in, + STATE(5247), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2316), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2314), 37, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [17524] = 4, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [18350] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1477), 1, + STATE(1509), 1, sym_comment, - ACTIONS(1872), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2052), 18, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, sym__unquoted_pattern, - ACTIONS(1870), 43, - anon_sym_in, + aux_sym_unquoted_token1, + ACTIONS(2050), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [17584] = 7, - ACTIONS(103), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [18417] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3691), 1, - sym_raw_string_begin, - ACTIONS(3721), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1478), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(1510), 1, sym_comment, - ACTIONS(3687), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + ACTIONS(2106), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2104), 37, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17650] = 6, + 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, + [18488] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1890), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1479), 1, + STATE(1511), 1, sym_comment, - ACTIONS(2577), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2575), 42, - anon_sym_in, + STATE(4979), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3800), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3798), 37, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [17714] = 7, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [18559] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3804), 1, + sym__newline, + ACTIONS(3807), 1, + sym__space, + ACTIONS(3810), 1, sym_raw_string_begin, - ACTIONS(3723), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1480), 1, + STATE(1512), 2, sym_comment, - ACTIONS(3704), 45, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3802), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154618,12 +160889,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -154631,320 +160905,495 @@ 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, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17780] = 5, + anon_sym_CARET, + [18630] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3725), 1, - aux_sym__immediate_decimal_token5, - STATE(1481), 1, - sym_comment, - ACTIONS(1804), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2766), 1, + anon_sym_LPAREN2, + ACTIONS(2768), 1, sym__unquoted_pattern, - ACTIONS(1802), 42, - ts_builtin_sym_end, - anon_sym_in, + STATE(1513), 1, + sym_comment, + ACTIONS(2764), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2762), 37, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [17842] = 6, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [18701] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, + ACTIONS(1890), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(1482), 1, + STATE(1514), 1, sym_comment, - ACTIONS(2637), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2635), 42, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + STATE(5247), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2332), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [17906] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3699), 1, + anon_sym_DOT_DOT, + aux_sym__val_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(2330), 37, sym_raw_string_begin, - ACTIONS(3727), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1483), 1, - sym_comment, - ACTIONS(3693), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17972] = 7, - ACTIONS(103), 1, + 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, + [18772] = 33, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(1542), 1, + anon_sym_LPAREN, + ACTIONS(1546), 1, + anon_sym_DOLLAR, + ACTIONS(1562), 1, + anon_sym_0b, + ACTIONS(1568), 1, + anon_sym_DQUOTE, + ACTIONS(1570), 1, + anon_sym_SQUOTE, + ACTIONS(1572), 1, + anon_sym_BQUOTE, + ACTIONS(1574), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1576), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1582), 1, sym_raw_string_begin, - ACTIONS(3730), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1484), 1, + ACTIONS(1634), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1636), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1764), 1, + anon_sym_LBRACK, + ACTIONS(3812), 1, + anon_sym_null, + ACTIONS(3814), 1, + anon_sym_LBRACE, + ACTIONS(3816), 1, + anon_sym_DOT_DOT, + ACTIONS(3820), 1, + sym_val_date, + STATE(1515), 1, sym_comment, - ACTIONS(3704), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + STATE(3839), 1, + sym__val_number_decimal, + STATE(4075), 1, + sym_val_variable, + STATE(4097), 1, + sym_expr_parenthesized, + STATE(4330), 1, + sym__val_number, + STATE(4757), 1, + sym__inter_single_quotes, + STATE(4758), 1, + sym__inter_double_quotes, + STATE(4871), 1, + sym_block, + ACTIONS(1564), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1614), 2, anon_sym_true, anon_sym_false, + ACTIONS(1638), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3818), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4872), 2, + sym_val_range, + sym__value, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1560), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(4624), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [18897] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1532), 1, anon_sym_null, + ACTIONS(1542), 1, + anon_sym_LPAREN, + ACTIONS(1554), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1556), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1562), 1, + anon_sym_0b, + ACTIONS(1568), 1, + anon_sym_DQUOTE, + ACTIONS(1570), 1, + anon_sym_SQUOTE, + ACTIONS(1572), 1, + anon_sym_BQUOTE, + ACTIONS(1580), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1582), 1, + sym_raw_string_begin, + ACTIONS(1726), 1, + anon_sym_DOT_DOT, + ACTIONS(2930), 1, + anon_sym_DOLLAR, + ACTIONS(2932), 1, + anon_sym_LBRACE, + ACTIONS(2936), 1, + sym_val_date, + ACTIONS(3822), 1, + sym__newline, + ACTIONS(3824), 1, + anon_sym_LBRACK, + STATE(1516), 1, + sym_comment, + STATE(1645), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(2473), 1, + aux_sym__types_body_repeat1, + STATE(3773), 1, + sym__val_number_decimal, + STATE(4021), 1, + sym_expr_parenthesized, + STATE(4026), 1, + sym_val_variable, + STATE(4330), 1, + sym__val_number, + STATE(4429), 1, + sym_val_bool, + STATE(4760), 1, + sym__match_pattern_list, + ACTIONS(1530), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1552), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(1558), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1564), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4452), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(4756), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5014), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1534), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + ACTIONS(1560), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4761), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [19030] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2758), 1, + anon_sym_LPAREN2, + ACTIONS(2760), 1, + sym__unquoted_pattern, + STATE(1517), 1, + sym_comment, + ACTIONS(2744), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_PLUS2, + anon_sym_DOT_DOT, + aux_sym__val_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(2742), 37, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18038] = 7, - ACTIONS(103), 1, + 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, + [19101] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3708), 1, - sym_raw_string_begin, - ACTIONS(3730), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1485), 1, + ACTIONS(3826), 1, + anon_sym_DOT, + ACTIONS(3828), 1, + aux_sym__immediate_decimal_token5, + STATE(1518), 1, sym_comment, - ACTIONS(3704), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + ACTIONS(1884), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1882), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18104] = 6, + 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, + [19172] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1774), 1, sym__unquoted_pattern, - STATE(1486), 1, + ACTIONS(1791), 1, + anon_sym_DOLLAR, + ACTIONS(1793), 1, + anon_sym_LPAREN2, + STATE(1519), 1, sym_comment, - ACTIONS(1976), 5, + STATE(1724), 1, + sym__immediate_decimal, + ACTIONS(3830), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3832), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1331), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1738), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 42, + ACTIONS(1734), 40, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154957,9 +161406,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -154987,22 +161433,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18168] = 6, + [19253] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, + ACTIONS(3834), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3836), 1, + aux_sym__immediate_decimal_token5, + STATE(1520), 1, + sym_comment, + ACTIONS(1922), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1920), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [19324] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1791), 1, + anon_sym_DOLLAR, + ACTIONS(1793), 1, anon_sym_LPAREN2, - STATE(1487), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + STATE(1521), 1, sym_comment, - ACTIONS(2525), 5, + STATE(1721), 1, + sym__immediate_decimal, + ACTIONS(3830), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3832), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1293), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1803), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 42, + ACTIONS(1801), 40, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155015,9 +161541,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155045,530 +161568,893 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18232] = 5, - ACTIONS(103), 1, + [19405] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(1488), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(2804), 1, + anon_sym_LPAREN2, + STATE(1522), 1, sym_comment, - ACTIONS(968), 18, + ACTIONS(2717), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2715), 37, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(868), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18293] = 4, - ACTIONS(103), 1, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [19476] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1489), 1, + ACTIONS(2746), 1, + anon_sym_LPAREN2, + ACTIONS(2748), 1, + sym__unquoted_pattern, + STATE(1523), 1, sym_comment, - ACTIONS(3734), 2, + ACTIONS(1750), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1856), 37, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 46, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [19547] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + STATE(1524), 1, + sym_comment, + STATE(5247), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2288), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_PLUS2, + anon_sym_DOT_DOT, + aux_sym__val_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(2286), 37, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18352] = 6, + 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, + [19618] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, + ACTIONS(2108), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2114), 1, sym__unquoted_pattern, - STATE(1490), 1, + STATE(1525), 1, sym_comment, - ACTIONS(2637), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2635), 41, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(2752), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18415] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3708), 1, + anon_sym_DOT_DOT, + aux_sym__val_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(2750), 37, sym_raw_string_begin, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1491), 1, - sym_comment, - ACTIONS(3704), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [19689] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(1526), 1, + sym_comment, + ACTIONS(1016), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_PLUS2, + anon_sym_DOT_DOT, + aux_sym__val_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(1014), 37, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18478] = 4, + 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, + [19760] = 33, ACTIONS(3), 1, anon_sym_POUND, - STATE(1492), 1, + ACTIONS(1542), 1, + anon_sym_LPAREN, + ACTIONS(1546), 1, + anon_sym_DOLLAR, + ACTIONS(1562), 1, + anon_sym_0b, + ACTIONS(1568), 1, + anon_sym_DQUOTE, + ACTIONS(1570), 1, + anon_sym_SQUOTE, + ACTIONS(1572), 1, + anon_sym_BQUOTE, + ACTIONS(1574), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1576), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1582), 1, + sym_raw_string_begin, + ACTIONS(1634), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1636), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1764), 1, + anon_sym_LBRACK, + ACTIONS(3812), 1, + anon_sym_null, + ACTIONS(3814), 1, + anon_sym_LBRACE, + ACTIONS(3816), 1, + anon_sym_DOT_DOT, + ACTIONS(3820), 1, + sym_val_date, + STATE(1527), 1, sym_comment, - ACTIONS(2503), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(3839), 1, + sym__val_number_decimal, + STATE(4075), 1, + sym_val_variable, + STATE(4098), 1, + sym_expr_parenthesized, + STATE(4330), 1, + sym__val_number, + STATE(4757), 1, + sym__inter_single_quotes, + STATE(4758), 1, + sym__inter_double_quotes, + STATE(4894), 1, + sym_block, + ACTIONS(1564), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1614), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1638), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3818), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4809), 2, + sym_val_range, + sym__value, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1560), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(4624), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [19885] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1528), 1, + sym_comment, + ACTIONS(1922), 18, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, sym__unquoted_pattern, - ACTIONS(2501), 42, - ts_builtin_sym_end, - anon_sym_in, + aux_sym_unquoted_token1, + ACTIONS(1920), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18537] = 5, - ACTIONS(103), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19952] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(1493), 1, + ACTIONS(3838), 1, + anon_sym_BANG, + STATE(1529), 1, sym_comment, - ACTIONS(2501), 18, + ACTIONS(1608), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1610), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2503), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18598] = 6, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [20021] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(2770), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2772), 1, sym__unquoted_pattern, - STATE(1494), 1, + STATE(1530), 1, sym_comment, - ACTIONS(996), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(1024), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1032), 37, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [20092] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3838), 1, + anon_sym_QMARK2, + STATE(1531), 1, + sym_comment, + ACTIONS(1608), 17, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18661] = 6, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1610), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [20161] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1774), 1, sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(2098), 1, anon_sym_LPAREN2, - STATE(1495), 1, + STATE(1532), 1, sym_comment, - ACTIONS(1966), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1964), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(2096), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2094), 37, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18724] = 6, - ACTIONS(103), 1, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [20232] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3691), 1, - sym_raw_string_begin, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1496), 1, + ACTIONS(3724), 1, + anon_sym_EQ2, + STATE(1533), 1, sym_comment, - ACTIONS(3687), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + STATE(1580), 1, + sym__flag_equals_value, + ACTIONS(3842), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3840), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [20303] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3724), 1, + anon_sym_EQ2, + STATE(1534), 1, + sym_comment, + STATE(1577), 1, + sym__flag_equals_value, + ACTIONS(3846), 16, anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_PLUS2, + anon_sym_DOT_DOT, + aux_sym__val_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(3844), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18787] = 6, + 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, + [20374] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1497), 1, + ACTIONS(3848), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3850), 1, + aux_sym__immediate_decimal_token5, + STATE(1535), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(759), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 41, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(761), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155581,7 +162467,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155600,6 +162488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155609,49 +162498,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18850] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [20445] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3740), 1, - sym__newline, - STATE(1498), 2, + STATE(1536), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1694), 17, anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_PLUS2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(3738), 39, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1696), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [20511] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3741), 1, + sym_raw_string_begin, + ACTIONS(3852), 1, + sym__space, + STATE(1537), 1, + sym_comment, + STATE(1558), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(3743), 52, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, anon_sym_while, anon_sym_if, anon_sym_else, anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [20581] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3854), 1, + aux_sym__immediate_decimal_token5, + STATE(1538), 1, + sym_comment, + ACTIONS(1958), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1956), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -155659,26 +162675,236 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18911] = 4, + 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, + [20649] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1539), 1, + sym_comment, + ACTIONS(3856), 2, + sym_raw_string_begin, + sym__space, + ACTIONS(886), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [20715] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1499), 1, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(1540), 1, + sym_comment, + ACTIONS(1016), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1014), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [20783] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3828), 1, + aux_sym__immediate_decimal_token5, + STATE(1541), 1, + sym_comment, + ACTIONS(1884), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1882), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [20851] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(1900), 1, + sym__unquoted_pattern, + ACTIONS(3858), 1, + anon_sym_DOT_DOT2, + ACTIONS(3862), 1, + sym_filesize_unit, + ACTIONS(3864), 1, + sym_duration_unit, + STATE(1542), 1, sym_comment, - ACTIONS(1804), 6, + STATE(4976), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3860), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(815), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 42, - ts_builtin_sym_end, + ACTIONS(904), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155691,7 +162917,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155710,7 +162938,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155720,19 +162947,524 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18970] = 4, + [20931] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1500), 1, + STATE(1543), 1, + sym_comment, + ACTIONS(2308), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2306), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [20997] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1544), 1, + sym_comment, + ACTIONS(1657), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1659), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [21063] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3866), 1, + sym__newline, + STATE(1545), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(2222), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2217), 43, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [21131] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3328), 1, + sym__unquoted_pattern, + STATE(1546), 1, + sym_comment, + ACTIONS(815), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(904), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [21199] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1547), 1, + sym_comment, + ACTIONS(2665), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym__unquoted_pattern, + aux_sym_unquoted_token1, + ACTIONS(2663), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [21265] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2748), 1, + sym__unquoted_pattern, + STATE(1548), 1, + sym_comment, + ACTIONS(1750), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1856), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [21333] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1549), 1, + sym_comment, + ACTIONS(1690), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1692), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [21399] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1550), 1, + sym_comment, + ACTIONS(2276), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2274), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [21465] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3869), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3871), 1, + aux_sym__immediate_decimal_token5, + STATE(1551), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(759), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1870), 42, + ACTIONS(761), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155775,22 +163507,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19029] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [21535] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(1501), 1, + ACTIONS(3873), 1, + anon_sym_DOT, + ACTIONS(3875), 1, + aux_sym__immediate_decimal_token5, + STATE(1552), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(767), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 41, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(769), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155823,6 +163561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155832,23 +163571,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19092] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [21605] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3877), 1, + anon_sym_LBRACK2, + STATE(1553), 1, + sym_comment, + ACTIONS(2250), 17, + anon_sym_LBRACK, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(2248), 37, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [21673] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3216), 1, + sym__unquoted_pattern, + STATE(1554), 1, + sym_comment, + ACTIONS(815), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(904), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [21741] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(2772), 1, sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(1502), 1, + STATE(1555), 1, + sym_comment, + ACTIONS(1024), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1032), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [21809] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3879), 1, + aux_sym__immediate_decimal_token5, + STATE(1556), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(775), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 41, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(777), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155861,7 +163792,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155880,6 +163813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155889,20 +163823,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19155] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [21877] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(1503), 1, + ACTIONS(3792), 1, + aux_sym__immediate_decimal_token5, + STATE(1557), 1, sym_comment, - ACTIONS(868), 5, + ACTIONS(767), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 42, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(769), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155936,6 +163876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155945,23 +163886,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19216] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [21945] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3883), 1, + sym__space, + ACTIONS(3886), 1, + sym_raw_string_begin, + STATE(1558), 2, + sym_comment, + aux_sym_pipe_element_repeat1, + ACTIONS(3881), 52, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [22013] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2768), 1, sym__unquoted_pattern, - STATE(1504), 1, + STATE(1559), 1, + sym_comment, + ACTIONS(2764), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2762), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [22081] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1560), 1, + sym_comment, + ACTIONS(2344), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2342), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [22146] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1561), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(759), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 41, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(761), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155974,7 +164103,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155993,6 +164124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -156002,23 +164134,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19279] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [22211] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1505), 1, + STATE(1562), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(775), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 41, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(777), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156031,7 +164164,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156050,6 +164185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -156059,23 +164195,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19342] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [22276] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1506), 1, + STATE(1563), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(894), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 41, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(896), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156088,7 +164225,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156107,6 +164246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -156116,20 +164256,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19405] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [22341] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1507), 1, + ACTIONS(3888), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3890), 1, + aux_sym__immediate_decimal_token5, + STATE(1564), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1922), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 42, - ts_builtin_sym_end, + ACTIONS(1920), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156142,7 +164289,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156171,139 +164320,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19464] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(1508), 1, - sym_comment, - ACTIONS(2635), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2637), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19525] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1509), 1, - sym_comment, - STATE(4529), 1, - sym_block, - STATE(4690), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [19605] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [22410] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1510), 1, + ACTIONS(3892), 1, + anon_sym_DOT, + ACTIONS(3894), 1, + aux_sym__immediate_decimal_token5, + STATE(1565), 1, sym_comment, - ACTIONS(2565), 5, + ACTIONS(1884), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3757), 13, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1882), 45, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156316,10 +164353,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_RBRACE, - ACTIONS(2563), 29, - anon_sym_in, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156338,6 +164373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -156347,278 +164383,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19665] = 5, - ACTIONS(103), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [22479] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(1511), 1, + STATE(1566), 1, sym_comment, - ACTIONS(2501), 17, - ts_builtin_sym_end, + ACTIONS(1668), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1670), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2503), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19725] = 5, - ACTIONS(103), 1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [22544] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(1512), 1, + STATE(1567), 1, sym_comment, - ACTIONS(2635), 17, - ts_builtin_sym_end, + ACTIONS(1672), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1674), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2637), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19785] = 15, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [22609] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1568), 1, + sym_comment, + ACTIONS(2006), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2004), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1513), 1, - sym_comment, - STATE(4385), 1, - sym_block, - STATE(4629), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [19865] = 15, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22674] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1569), 1, + sym_comment, + ACTIONS(1676), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1678), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1514), 1, - sym_comment, - STATE(4397), 1, - sym_block, - STATE(4638), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [19945] = 4, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22739] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1515), 1, + STATE(1570), 1, sym_comment, - ACTIONS(2938), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1680), 16, anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_PLUS2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(2940), 40, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1682), 38, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, @@ -156626,8 +164660,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -156635,273 +164675,1027 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [20003] = 15, + 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, + [22804] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1571), 1, + sym_comment, + ACTIONS(1686), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1688), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1516), 1, - sym_comment, - STATE(4427), 1, - sym_block, - STATE(4647), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20083] = 15, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22869] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1572), 1, + sym_comment, + ACTIONS(3898), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3896), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1517), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22934] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1573), 1, sym_comment, - STATE(4429), 1, - sym_block, - STATE(4659), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20163] = 5, - ACTIONS(103), 1, + ACTIONS(2002), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2000), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [22999] = 36, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(1518), 1, + ACTIONS(1532), 1, + anon_sym_null, + ACTIONS(1542), 1, + anon_sym_LPAREN, + ACTIONS(1554), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1556), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1562), 1, + anon_sym_0b, + ACTIONS(1568), 1, + anon_sym_DQUOTE, + ACTIONS(1570), 1, + anon_sym_SQUOTE, + ACTIONS(1572), 1, + anon_sym_BQUOTE, + ACTIONS(1580), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1582), 1, + sym_raw_string_begin, + ACTIONS(1726), 1, + anon_sym_DOT_DOT, + ACTIONS(2930), 1, + anon_sym_DOLLAR, + ACTIONS(2932), 1, + anon_sym_LBRACE, + ACTIONS(2936), 1, + sym_val_date, + ACTIONS(3824), 1, + anon_sym_LBRACK, + STATE(1574), 1, sym_comment, - ACTIONS(968), 17, - ts_builtin_sym_end, + STATE(1648), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(3773), 1, + sym__val_number_decimal, + STATE(4021), 1, + sym_expr_parenthesized, + STATE(4026), 1, + sym_val_variable, + STATE(4330), 1, + sym__val_number, + STATE(4355), 1, + sym__match_pattern_expression, + STATE(4358), 1, + sym__unquoted_in_list, + STATE(4429), 1, + sym_val_bool, + STATE(4760), 1, + sym__match_pattern_list, + ACTIONS(1530), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1552), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(1558), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1564), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4756), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5014), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1534), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1560), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4761), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [23128] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1575), 1, + sym_comment, + ACTIONS(3902), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3900), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(868), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [20223] = 12, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [23193] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(2074), 1, + aux_sym_unquoted_token1, + ACTIONS(2846), 1, + anon_sym_LPAREN, + ACTIONS(3053), 1, + anon_sym_LBRACK, + ACTIONS(3055), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3760), 1, - anon_sym_DOT, - STATE(1519), 1, + ACTIONS(3057), 1, + anon_sym_LBRACE, + ACTIONS(3906), 1, + anon_sym_null, + ACTIONS(3910), 1, + anon_sym_DOT_DOT, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3920), 1, + sym_val_date, + STATE(697), 1, + sym__val_number, + STATE(1576), 1, sym_comment, - STATE(1826), 1, - sym__immediate_decimal, - ACTIONS(3762), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3764), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(698), 2, - sym__expr_parenthesized_immediate, + STATE(3721), 1, + sym__val_number_decimal, + STATE(3905), 1, + sym_expr_parenthesized, + STATE(3917), 1, sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, + STATE(4370), 1, + sym__match_pattern_expression, + STATE(4404), 1, + sym__match_pattern_list, + STATE(4408), 1, + sym_val_bool, + STATE(4457), 1, + sym_unquoted, + STATE(4755), 1, + sym__match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3904), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3912), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3918), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4403), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5208), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(189), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3908), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4405), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [23322] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1577), 1, + sym_comment, + ACTIONS(3924), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 30, - anon_sym_in, + anon_sym_DOT_DOT, + aux_sym__val_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(3922), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [20297] = 5, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23387] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1578), 1, + sym_comment, + ACTIONS(2276), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2274), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [23452] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1579), 1, + sym_comment, + ACTIONS(3928), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3926), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [23517] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1580), 1, + sym_comment, + ACTIONS(3932), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3930), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [23582] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1581), 1, + sym_comment, + ACTIONS(3936), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3934), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [23647] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1582), 1, + sym_comment, + ACTIONS(3940), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3938), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [23712] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1583), 1, + sym_comment, + ACTIONS(3944), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3942), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [23777] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1584), 1, + sym_comment, + ACTIONS(2308), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2306), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [23842] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1585), 1, + sym_comment, + ACTIONS(3712), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3710), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [23907] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(1984), 1, sym__unquoted_pattern, - STATE(1520), 1, + ACTIONS(3946), 1, + anon_sym_DOT_DOT2, + ACTIONS(3950), 1, + sym_filesize_unit, + ACTIONS(3952), 1, + sym_duration_unit, + STATE(1586), 1, sym_comment, - ACTIONS(868), 5, + STATE(4958), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3948), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(815), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 41, + ACTIONS(904), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156943,641 +165737,573 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20357] = 15, + [23986] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1587), 1, + sym_comment, + ACTIONS(1823), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1821), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1521), 1, - sym_comment, - STATE(4434), 1, - sym_block, - STATE(4687), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20437] = 15, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24051] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1522), 1, + STATE(1588), 1, sym_comment, - STATE(4435), 1, - sym_block, - STATE(4688), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20517] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3956), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3954), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1523), 1, - sym_comment, - STATE(4437), 1, - sym_block, - STATE(4693), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20597] = 15, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24116] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1589), 1, + sym_comment, + ACTIONS(3960), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3958), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1524), 1, - sym_comment, - STATE(4440), 1, - sym_block, - STATE(4703), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20677] = 20, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1788), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, - anon_sym_DASH_DASH, - STATE(1525), 1, + 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, + [24181] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1590), 1, sym_comment, - STATE(1713), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3729), 1, - sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3964), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3962), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24246] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1591), 1, + sym_comment, + ACTIONS(3968), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3966), 38, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [20767] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1526), 1, - sym_comment, - STATE(4525), 1, - sym_block, - STATE(4689), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20847] = 15, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24311] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1592), 1, + sym_comment, + ACTIONS(3972), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3970), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1527), 1, - sym_comment, - STATE(4527), 1, - sym_block, - STATE(4694), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20927] = 15, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24376] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1593), 1, + sym_comment, + ACTIONS(1992), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1990), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1528), 1, - sym_comment, - STATE(4528), 1, - sym_block, - STATE(4696), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21007] = 15, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24441] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1594), 1, + sym_comment, + ACTIONS(3800), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3798), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1529), 1, - sym_comment, - STATE(4534), 1, - sym_block, - STATE(4702), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21087] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1788), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + 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, + [24506] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1595), 1, + sym_comment, + ACTIONS(815), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(904), 38, sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3772), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3774), 1, - anon_sym_DOLLAR, - ACTIONS(3776), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1530), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24571] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1596), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - ACTIONS(3637), 2, + ACTIONS(2312), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3649), 2, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3093), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3095), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2310), 44, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -157601,448 +166327,285 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [21173] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + sym__newline, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(1531), 1, - sym_comment, - STATE(4564), 1, - sym_block, - STATE(4738), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21253] = 15, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [24636] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1597), 1, + sym_comment, + ACTIONS(1750), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1856), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1532), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24701] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1598), 1, sym_comment, - STATE(4565), 1, - sym_block, - STATE(4740), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21333] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1533), 1, - sym_comment, - STATE(4494), 1, - sym_block, - STATE(4648), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21413] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(2262), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2260), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1534), 1, - sym_comment, - STATE(4495), 1, - sym_block, - STATE(4651), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21493] = 15, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24766] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1535), 1, + STATE(1599), 1, sym_comment, - STATE(4068), 1, - sym_block, - STATE(4691), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21573] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(2669), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2667), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1536), 1, - sym_comment, - STATE(4069), 1, - sym_block, - STATE(4692), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21653] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, - sym__newline, - ACTIONS(3788), 1, - anon_sym_RBRACK, - STATE(1537), 1, + 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, + [24831] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1600), 1, sym_comment, - STATE(1703), 1, - aux_sym__types_body_repeat1, - STATE(1770), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4524), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - STATE(4854), 1, - sym__command_list_body, - ACTIONS(3649), 2, + ACTIONS(2790), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2788), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24896] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_comment, + ACTIONS(3976), 2, + sym_raw_string_begin, + sym__space, + ACTIONS(3974), 52, anon_sym_export, - anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -158056,696 +166619,8372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [21745] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_LBRACE, - STATE(1538), 1, - sym_comment, - STATE(4316), 1, - sym_block, - STATE(4781), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21825] = 15, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [24961] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1602), 1, + sym_comment, + ACTIONS(2296), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2294), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1539), 1, - sym_comment, - STATE(4320), 1, - sym_block, - STATE(4782), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21905] = 15, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [25026] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1603), 1, + sym_comment, + ACTIONS(2018), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2016), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1540), 1, - sym_comment, - STATE(4345), 1, - sym_block, - STATE(4622), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21985] = 15, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [25091] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1604), 1, + sym_comment, + ACTIONS(2048), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2046), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1541), 1, - sym_comment, - STATE(4346), 1, - sym_block, - STATE(4771), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22065] = 15, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [25156] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1605), 1, + sym_comment, + ACTIONS(2802), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2800), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1542), 1, - sym_comment, - STATE(4347), 1, - sym_block, - STATE(4644), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22145] = 15, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [25221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1606), 1, + sym_comment, + ACTIONS(2740), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2738), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1543), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [25286] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1607), 1, sym_comment, - STATE(4220), 1, - sym_block, - STATE(4645), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22225] = 15, + ACTIONS(2340), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2338), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [25351] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + STATE(1608), 1, + sym_comment, + ACTIONS(1700), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1702), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(1544), 1, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [25416] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1609), 1, sym_comment, - STATE(4376), 1, - sym_block, - STATE(4747), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22305] = 15, + ACTIONS(3659), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3657), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [25481] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1610), 1, + sym_comment, + ACTIONS(2320), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2318), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [25546] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1611), 1, + sym_comment, + ACTIONS(2280), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2278), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [25611] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1612), 1, + sym_comment, + ACTIONS(2234), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2232), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [25676] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1613), 1, + sym_comment, + ACTIONS(2798), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2796), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [25741] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1614), 1, + sym_comment, + ACTIONS(2368), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2366), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [25806] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1615), 1, + sym_comment, + ACTIONS(3980), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3978), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [25871] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1616), 1, + sym_comment, + ACTIONS(3669), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3667), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [25936] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1617), 1, + sym_comment, + ACTIONS(2673), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2671), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26001] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1618), 1, + sym_comment, + ACTIONS(2677), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2675), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26066] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1619), 1, + sym_comment, + ACTIONS(2681), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2679), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26131] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1620), 1, + sym_comment, + ACTIONS(2685), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2683), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26196] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1621), 1, + sym_comment, + ACTIONS(2336), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2334), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26261] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1622), 1, + sym_comment, + ACTIONS(2372), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2370), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26326] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1623), 1, + sym_comment, + ACTIONS(2376), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2374), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26391] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1624), 1, + sym_comment, + ACTIONS(2380), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2378), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26456] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1625), 1, + sym_comment, + ACTIONS(2384), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2382), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26521] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1626), 1, + sym_comment, + ACTIONS(2721), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2719), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26586] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1627), 1, + sym_comment, + ACTIONS(2388), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2386), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26651] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1628), 1, + sym_comment, + ACTIONS(2392), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2390), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26716] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1629), 1, + sym_comment, + ACTIONS(2396), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2394), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26781] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1630), 1, + sym_comment, + ACTIONS(2400), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2398), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26846] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1631), 1, + sym_comment, + ACTIONS(2404), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2402), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26911] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1632), 1, + sym_comment, + ACTIONS(2408), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2406), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [26976] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1633), 1, + sym_comment, + ACTIONS(2412), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2410), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [27041] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1634), 1, + sym_comment, + ACTIONS(1922), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1920), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [27106] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1635), 1, + sym_comment, + ACTIONS(1958), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1956), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [27171] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1636), 1, + sym_comment, + ACTIONS(2052), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2050), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [27236] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1637), 1, + sym_comment, + ACTIONS(3984), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3982), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [27301] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1638), 1, + sym_comment, + ACTIONS(3988), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(3986), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [27366] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1639), 1, + sym_comment, + ACTIONS(2416), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2414), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [27431] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1640), 1, + sym_comment, + ACTIONS(2416), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2414), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [27496] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1641), 1, + sym_comment, + ACTIONS(2420), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2418), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [27561] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1642), 1, + sym_comment, + ACTIONS(2424), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2422), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [27626] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3875), 1, + aux_sym__immediate_decimal_token5, + STATE(1643), 1, + sym_comment, + ACTIONS(767), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(769), 45, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [27693] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3990), 1, + aux_sym__immediate_decimal_token5, + STATE(1644), 1, + sym_comment, + ACTIONS(775), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(777), 45, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [27760] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1532), 1, + anon_sym_null, + ACTIONS(1542), 1, + anon_sym_LPAREN, + ACTIONS(1554), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1556), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1562), 1, + anon_sym_0b, + ACTIONS(1568), 1, + anon_sym_DQUOTE, + ACTIONS(1570), 1, + anon_sym_SQUOTE, + ACTIONS(1572), 1, + anon_sym_BQUOTE, + ACTIONS(1580), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1582), 1, + sym_raw_string_begin, + ACTIONS(1726), 1, + anon_sym_DOT_DOT, + ACTIONS(2930), 1, + anon_sym_DOLLAR, + ACTIONS(2932), 1, + anon_sym_LBRACE, + ACTIONS(2936), 1, + sym_val_date, + ACTIONS(3824), 1, + anon_sym_LBRACK, + STATE(1645), 1, + sym_comment, + STATE(1648), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(3773), 1, + sym__val_number_decimal, + STATE(4021), 1, + sym_expr_parenthesized, + STATE(4026), 1, + sym_val_variable, + STATE(4330), 1, + sym__val_number, + STATE(4393), 1, + sym__match_pattern_expression, + STATE(4401), 1, + sym__unquoted_in_list, + STATE(4429), 1, + sym_val_bool, + STATE(4760), 1, + sym__match_pattern_list, + ACTIONS(1530), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1552), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(1558), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1564), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4756), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5014), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1534), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1560), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4761), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [27889] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1646), 1, + sym_comment, + ACTIONS(2430), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2428), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [27954] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1647), 1, + sym_comment, + ACTIONS(2434), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2432), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [28019] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3995), 1, + anon_sym_null, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4004), 1, + anon_sym_LPAREN, + ACTIONS(4007), 1, + anon_sym_DOLLAR, + ACTIONS(4010), 1, + anon_sym_LBRACE, + ACTIONS(4013), 1, + anon_sym_DOT_DOT, + ACTIONS(4019), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4022), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4031), 1, + anon_sym_0b, + ACTIONS(4037), 1, + sym_val_date, + ACTIONS(4040), 1, + anon_sym_DQUOTE, + ACTIONS(4043), 1, + anon_sym_SQUOTE, + ACTIONS(4046), 1, + anon_sym_BQUOTE, + ACTIONS(4049), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(4052), 1, + sym_raw_string_begin, + STATE(3841), 1, + sym__val_number_decimal, + STATE(4237), 1, + sym_val_variable, + STATE(4330), 1, + sym__val_number, + STATE(4544), 1, + sym_expr_parenthesized, + STATE(4760), 1, + sym__match_pattern_list, + STATE(4863), 1, + sym_val_bool, + ACTIONS(3992), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4016), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4025), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4034), 2, + anon_sym_0o, + anon_sym_0x, + STATE(1648), 2, + sym_comment, + aux_sym__match_pattern_list_body_repeat1, + STATE(4756), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4912), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(5014), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3998), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(4028), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4761), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [28144] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(2074), 1, + aux_sym_unquoted_token1, + ACTIONS(2846), 1, + anon_sym_LPAREN, + ACTIONS(3053), 1, + anon_sym_LBRACK, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + ACTIONS(3057), 1, + anon_sym_LBRACE, + ACTIONS(3906), 1, + anon_sym_null, + ACTIONS(3910), 1, + anon_sym_DOT_DOT, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3920), 1, + sym_val_date, + STATE(697), 1, + sym__val_number, + STATE(1649), 1, + sym_comment, + STATE(3721), 1, + sym__val_number_decimal, + STATE(3905), 1, + sym_expr_parenthesized, + STATE(3917), 1, + sym_val_variable, + STATE(4370), 1, + sym__match_pattern_expression, + STATE(4404), 1, + sym__match_pattern_list, + STATE(4408), 1, + sym_val_bool, + STATE(4457), 1, + sym_unquoted, + STATE(4684), 1, + sym__match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3904), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3912), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3918), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4403), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5208), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(189), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3908), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4405), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [28273] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1650), 1, + sym_comment, + ACTIONS(1714), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1716), 38, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + 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, + [28338] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4055), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4057), 1, + aux_sym__immediate_decimal_token5, + STATE(1651), 1, + sym_comment, + ACTIONS(1922), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1920), 44, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [28406] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4059), 1, + anon_sym_DOT, + ACTIONS(4061), 1, + aux_sym__immediate_decimal_token5, + STATE(1652), 1, + sym_comment, + ACTIONS(1884), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1882), 44, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [28474] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1653), 1, + sym_comment, + ACTIONS(894), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(896), 45, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [28538] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1654), 1, + sym_comment, + ACTIONS(775), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(777), 45, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [28602] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1655), 1, + sym_comment, + ACTIONS(759), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(761), 45, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [28666] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3894), 1, + aux_sym__immediate_decimal_token5, + STATE(1656), 1, + sym_comment, + ACTIONS(1884), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1882), 45, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [28732] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4063), 1, + aux_sym__immediate_decimal_token5, + STATE(1657), 1, + sym_comment, + ACTIONS(1958), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 45, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [28798] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1658), 1, + sym_comment, + ACTIONS(2052), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(2050), 45, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [28861] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1659), 1, + sym_comment, + ACTIONS(1958), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 45, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [28924] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4065), 1, + aux_sym__immediate_decimal_token5, + STATE(1660), 1, + sym_comment, + ACTIONS(1958), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 44, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [28989] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4061), 1, + aux_sym__immediate_decimal_token5, + STATE(1661), 1, + sym_comment, + ACTIONS(1884), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1882), 44, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [29054] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + ACTIONS(4067), 1, + anon_sym_DOT_DOT2, + STATE(1662), 1, + sym_comment, + ACTIONS(4069), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2106), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2104), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [29125] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + ACTIONS(4071), 1, + anon_sym_DOT_DOT2, + STATE(1663), 1, + sym_comment, + ACTIONS(4073), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2096), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2094), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [29196] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1664), 1, + sym_comment, + ACTIONS(1922), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1920), 45, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [29259] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2012), 1, + anon_sym_DOT2, + STATE(441), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(463), 1, + sym_path, + STATE(974), 1, + sym_cell_path, + STATE(1665), 1, + sym_comment, + ACTIONS(2035), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4075), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2032), 29, + anon_sym_in, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [29331] = 22, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4087), 1, + anon_sym_LBRACK, + ACTIONS(4089), 1, + anon_sym_STAR2, + STATE(1666), 1, + sym_comment, + STATE(2213), 1, + sym__val_number_decimal, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(4264), 1, + sym_wild_card, + STATE(4276), 1, + sym_command_list, + STATE(4341), 1, + sym__command_name, + STATE(4373), 1, + sym_scope_pattern, + ACTIONS(4079), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4085), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4081), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [29429] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4095), 1, + anon_sym_DOT, + ACTIONS(4097), 1, + aux_sym__immediate_decimal_token5, + STATE(1667), 1, + sym_comment, + ACTIONS(1884), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1882), 43, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [29495] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1668), 1, + sym_comment, + ACTIONS(1958), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 44, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [29557] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + ACTIONS(4099), 1, + anon_sym_DOT_DOT2, + STATE(1669), 1, + sym_comment, + ACTIONS(4101), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2096), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2094), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [29627] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1670), 1, + sym_comment, + ACTIONS(2052), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(2050), 44, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [29689] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + ACTIONS(4103), 1, + anon_sym_DOT_DOT2, + STATE(1671), 1, + sym_comment, + ACTIONS(4105), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2106), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2104), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [29759] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4107), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4109), 1, + aux_sym__immediate_decimal_token5, + STATE(1672), 1, + sym_comment, + ACTIONS(1922), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1920), 43, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [29825] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1673), 1, + sym_comment, + ACTIONS(1922), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1920), 44, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [29887] = 22, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4087), 1, + anon_sym_LBRACK, + ACTIONS(4089), 1, + anon_sym_STAR2, + STATE(1674), 1, + sym_comment, + STATE(2213), 1, + sym__val_number_decimal, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(4264), 1, + sym_wild_card, + STATE(4276), 1, + sym_command_list, + STATE(4341), 1, + sym__command_name, + STATE(4461), 1, + sym_scope_pattern, + ACTIONS(4079), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4111), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4081), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [29985] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(19), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(992), 1, + sym_raw_string_begin, + ACTIONS(3371), 1, + anon_sym_DQUOTE, + ACTIONS(3373), 1, + anon_sym_SQUOTE, + ACTIONS(3375), 1, + anon_sym_BQUOTE, + ACTIONS(3377), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3379), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4113), 1, + anon_sym_LPAREN, + ACTIONS(4115), 1, + anon_sym_DOLLAR, + STATE(1675), 1, + sym_comment, + STATE(2325), 1, + sym__val_number_decimal, + STATE(3309), 1, + sym__inter_single_quotes, + STATE(3310), 1, + sym__inter_double_quotes, + ACTIONS(45), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2727), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3244), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(39), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [30078] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4117), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4119), 1, + aux_sym__immediate_decimal_token5, + STATE(1676), 1, + sym_comment, + ACTIONS(1922), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1920), 42, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [30143] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(253), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(892), 1, + sym_raw_string_begin, + ACTIONS(3407), 1, + anon_sym_DQUOTE, + ACTIONS(3409), 1, + anon_sym_SQUOTE, + ACTIONS(3411), 1, + anon_sym_BQUOTE, + ACTIONS(3413), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3415), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4121), 1, + anon_sym_LPAREN, + ACTIONS(4123), 1, + anon_sym_DOLLAR, + STATE(1677), 1, + sym_comment, + STATE(2330), 1, + sym__val_number_decimal, + STATE(3207), 1, + sym__inter_single_quotes, + STATE(3208), 1, + sym__inter_double_quotes, + ACTIONS(279), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2682), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3106), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(273), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [30236] = 22, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(4129), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4131), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_STAR2, + STATE(1678), 1, + sym_comment, + STATE(2219), 1, + sym__val_number_decimal, + STATE(4431), 1, + sym_cmd_identifier, + STATE(4432), 1, + sym_val_string, + STATE(4704), 1, + sym__command_name, + STATE(4707), 1, + sym_wild_card, + STATE(4715), 1, + sym_command_list, + STATE(4773), 1, + sym_scope_pattern, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4125), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4085), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + STATE(494), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4127), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [30333] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4137), 1, + aux_sym__immediate_decimal_token5, + STATE(1679), 1, + sym_comment, + ACTIONS(1884), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1882), 42, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [30398] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4097), 1, + aux_sym__immediate_decimal_token5, + STATE(1680), 1, + sym_comment, + ACTIONS(1884), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1882), 43, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [30461] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(253), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(892), 1, + sym_raw_string_begin, + ACTIONS(3407), 1, + anon_sym_DQUOTE, + ACTIONS(3409), 1, + anon_sym_SQUOTE, + ACTIONS(3411), 1, + anon_sym_BQUOTE, + ACTIONS(3413), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3415), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4121), 1, + anon_sym_LPAREN, + ACTIONS(4123), 1, + anon_sym_DOLLAR, + STATE(1681), 1, + sym_comment, + STATE(2330), 1, + sym__val_number_decimal, + STATE(3207), 1, + sym__inter_single_quotes, + STATE(3208), 1, + sym__inter_double_quotes, + ACTIONS(279), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2682), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3229), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(273), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [30554] = 22, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(4129), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4131), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_STAR2, + STATE(1682), 1, + sym_comment, + STATE(2219), 1, + sym__val_number_decimal, + STATE(4431), 1, + sym_cmd_identifier, + STATE(4432), 1, + sym_val_string, + STATE(4704), 1, + sym__command_name, + STATE(4705), 1, + sym_scope_pattern, + STATE(4707), 1, + sym_wild_card, + STATE(4715), 1, + sym_command_list, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4125), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4111), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + STATE(494), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4127), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [30651] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2426), 1, + anon_sym_DOT2, + STATE(536), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(775), 1, + sym_path, + STATE(1298), 1, + sym_cell_path, + STATE(1683), 1, + sym_comment, + ACTIONS(2035), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4075), 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(2032), 29, + anon_sym_in, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [30722] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4139), 1, + aux_sym__immediate_decimal_token5, + STATE(1684), 1, + sym_comment, + ACTIONS(1958), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1956), 43, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [30785] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(4143), 1, + anon_sym_RBRACE, + ACTIONS(4145), 1, + sym_raw_string_begin, + STATE(1685), 1, + sym_comment, + STATE(1705), 1, + aux_sym__types_body_repeat2, + ACTIONS(4141), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [30851] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(4149), 1, + anon_sym_RBRACE, + ACTIONS(4151), 1, + sym_raw_string_begin, + STATE(1686), 1, + sym_comment, + STATE(1705), 1, + aux_sym__types_body_repeat2, + ACTIONS(4147), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [30917] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4153), 1, + aux_sym__immediate_decimal_token5, + STATE(1687), 1, + sym_comment, + ACTIONS(1958), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1956), 42, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [30979] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4137), 1, + aux_sym__immediate_decimal_token5, + STATE(1688), 1, + sym_comment, + ACTIONS(1884), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1882), 42, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [31041] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(4158), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, + sym_raw_string_begin, + STATE(1689), 1, + sym_comment, + STATE(1705), 1, + aux_sym__types_body_repeat2, + ACTIONS(4155), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [31107] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(4151), 1, + sym_raw_string_begin, + ACTIONS(4164), 1, + anon_sym_RBRACE, + STATE(1690), 1, + sym_comment, + STATE(1705), 1, + aux_sym__types_body_repeat2, + ACTIONS(4147), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [31173] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(4151), 1, + sym_raw_string_begin, + ACTIONS(4166), 1, + anon_sym_RBRACE, + STATE(1691), 1, + sym_comment, + STATE(1705), 1, + aux_sym__types_body_repeat2, + ACTIONS(4147), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [31239] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2746), 1, + anon_sym_LPAREN2, + ACTIONS(2748), 1, + sym__unquoted_pattern, + STATE(1692), 1, + sym_comment, + ACTIONS(1750), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1856), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [31303] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(4143), 1, + anon_sym_RBRACE, + ACTIONS(4145), 1, + sym_raw_string_begin, + STATE(1693), 1, + sym_comment, + STATE(1705), 1, + aux_sym__types_body_repeat2, + ACTIONS(4141), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [31369] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + STATE(1694), 1, + sym_comment, + ACTIONS(2096), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2094), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [31433] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(4151), 1, + sym_raw_string_begin, + ACTIONS(4168), 1, + anon_sym_RBRACE, + STATE(1695), 1, + sym_comment, + STATE(1705), 1, + aux_sym__types_body_repeat2, + ACTIONS(4147), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [31499] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(1696), 1, + sym_comment, + ACTIONS(2752), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2750), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [31563] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(1697), 1, + sym_comment, + ACTIONS(2106), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2104), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [31627] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(2804), 1, + anon_sym_LPAREN2, + STATE(1698), 1, + sym_comment, + ACTIONS(2717), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2715), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [31691] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2758), 1, + anon_sym_LPAREN2, + ACTIONS(2760), 1, + sym__unquoted_pattern, + STATE(1699), 1, + sym_comment, + ACTIONS(2744), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2742), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [31755] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1700), 1, + sym_comment, + ACTIONS(2665), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2663), 43, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [31815] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2766), 1, + anon_sym_LPAREN2, + ACTIONS(2768), 1, + sym__unquoted_pattern, + STATE(1701), 1, + sym_comment, + ACTIONS(2764), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2762), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [31879] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(1702), 1, + sym_comment, + ACTIONS(1016), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1014), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [31943] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(1703), 1, + sym_comment, + ACTIONS(1024), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1032), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32007] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(4145), 1, + sym_raw_string_begin, + ACTIONS(4170), 1, + anon_sym_RBRACE, + STATE(1704), 1, + sym_comment, + STATE(1705), 1, + aux_sym__types_body_repeat2, + ACTIONS(4141), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [32073] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4174), 1, + sym__entry_separator, + ACTIONS(4177), 1, + sym_raw_string_begin, + STATE(1705), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(4172), 46, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [32135] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1706), 1, + sym_comment, + ACTIONS(1922), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1920), 43, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32195] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(4145), 1, + sym_raw_string_begin, + ACTIONS(4179), 1, + anon_sym_RBRACE, + STATE(1705), 1, + aux_sym__types_body_repeat2, + STATE(1707), 1, + sym_comment, + ACTIONS(4141), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [32261] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(4145), 1, + sym_raw_string_begin, + ACTIONS(4179), 1, + anon_sym_RBRACE, + STATE(1705), 1, + aux_sym__types_body_repeat2, + STATE(1708), 1, + sym_comment, + ACTIONS(4141), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [32327] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1709), 1, + sym_comment, + ACTIONS(1958), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1956), 43, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32387] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1710), 1, + sym_comment, + ACTIONS(2052), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2050), 43, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32447] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(4161), 1, + sym_raw_string_begin, + ACTIONS(4181), 1, + anon_sym_RBRACE, + STATE(1705), 1, + aux_sym__types_body_repeat2, + STATE(1711), 1, + sym_comment, + ACTIONS(4155), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [32513] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(4145), 1, + sym_raw_string_begin, + ACTIONS(4184), 1, + anon_sym_RBRACE, + STATE(1705), 1, + aux_sym__types_body_repeat2, + STATE(1712), 1, + sym_comment, + ACTIONS(4141), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [32579] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2766), 1, + anon_sym_LPAREN2, + ACTIONS(2768), 1, + sym__unquoted_pattern, + STATE(1713), 1, + sym_comment, + ACTIONS(2764), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2762), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32642] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + STATE(1714), 1, + sym_comment, + ACTIONS(2762), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2764), 29, + anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32703] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1715), 1, + sym_comment, + ACTIONS(2052), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2050), 42, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32762] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(1716), 1, + sym_comment, + ACTIONS(2752), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2750), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32825] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(2804), 1, + anon_sym_LPAREN2, + STATE(1717), 1, + sym_comment, + ACTIONS(2717), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2715), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32888] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1718), 1, + sym_comment, + ACTIONS(2665), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2663), 42, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32947] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1719), 1, + sym_comment, + ACTIONS(1958), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1956), 42, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33006] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4190), 1, + sym__newline, + STATE(1720), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(4186), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + aux_sym__val_number_decimal_token1, + ACTIONS(4188), 39, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [33067] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2758), 1, + anon_sym_LPAREN2, + ACTIONS(2760), 1, + sym__unquoted_pattern, + STATE(1721), 1, + sym_comment, + ACTIONS(2744), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2742), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33130] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(4145), 1, + sym_raw_string_begin, + STATE(1705), 1, + aux_sym__types_body_repeat2, + STATE(1722), 1, + sym_comment, + ACTIONS(4141), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [33193] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + STATE(1723), 1, + sym_comment, + ACTIONS(2096), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2094), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33256] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(1724), 1, + sym_comment, + ACTIONS(2106), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2104), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33319] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1900), 1, + sym__unquoted_pattern, + STATE(1725), 1, + sym_comment, + ACTIONS(815), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(904), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33380] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(4151), 1, + sym_raw_string_begin, + STATE(1705), 1, + aux_sym__types_body_repeat2, + STATE(1726), 1, + sym_comment, + ACTIONS(4147), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [33443] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2746), 1, + anon_sym_LPAREN2, + ACTIONS(2748), 1, + sym__unquoted_pattern, + STATE(1727), 1, + sym_comment, + ACTIONS(1750), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1856), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33506] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + STATE(1728), 1, + sym_comment, + ACTIONS(2663), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2665), 29, + anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33567] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(1729), 1, + sym_comment, + ACTIONS(1016), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1014), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33630] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(1730), 1, + sym_comment, + ACTIONS(1024), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1032), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33693] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + STATE(1731), 1, + sym_comment, + ACTIONS(904), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(815), 29, + anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33754] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1732), 1, + sym_comment, + ACTIONS(1922), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1920), 42, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33813] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1733), 1, + sym_comment, + ACTIONS(4195), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(4193), 46, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [33872] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4199), 1, + anon_sym_DASH2, + ACTIONS(4209), 1, + anon_sym_PLUS2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1734), 1, + sym_comment, + ACTIONS(4197), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4201), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4205), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4207), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4211), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4203), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2814), 30, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33946] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2961), 1, + sym__newline, + ACTIONS(4217), 1, + anon_sym_DASH2, + ACTIONS(4229), 1, + anon_sym_PLUS2, + STATE(1735), 1, + sym_comment, + STATE(1762), 1, + aux_sym__repeat_newline, + ACTIONS(4215), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4221), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4223), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4213), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2820), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [34026] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1545), 1, + ACTIONS(2961), 1, + sym__newline, + ACTIONS(4217), 1, + anon_sym_DASH2, + ACTIONS(4229), 1, + anon_sym_PLUS2, + ACTIONS(4233), 1, + anon_sym_bit_DASHand2, + STATE(1736), 1, sym_comment, - STATE(4387), 1, - sym_block, - STATE(4643), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22385] = 15, + STATE(1764), 1, + aux_sym__repeat_newline, + ACTIONS(4215), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4221), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4223), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4213), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2820), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [34108] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1546), 1, + ACTIONS(2961), 1, + sym__newline, + ACTIONS(4217), 1, + anon_sym_DASH2, + ACTIONS(4229), 1, + anon_sym_PLUS2, + ACTIONS(4233), 1, + anon_sym_bit_DASHand2, + ACTIONS(4235), 1, + anon_sym_bit_DASHxor2, + STATE(1737), 1, sym_comment, - STATE(4164), 1, - sym_block, - STATE(4662), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22465] = 15, + STATE(1766), 1, + aux_sym__repeat_newline, + ACTIONS(4215), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4221), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4223), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4213), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2820), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [34192] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(4237), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(4239), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4247), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(1547), 1, + STATE(1738), 1, sym_comment, - STATE(4170), 1, + STATE(4800), 1, sym_block, - STATE(4670), 1, + STATE(4967), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5416), 1, sym__one_type, - STATE(5169), 1, + STATE(5417), 1, sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22545] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1548), 1, - sym_comment, - STATE(4201), 1, - sym_block, - STATE(4672), 1, - sym_returns, - STATE(4849), 1, + STATE(5418), 1, sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158777,40 +175016,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22625] = 15, + [34272] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(4237), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(4239), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4247), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(1549), 1, + STATE(1739), 1, sym_comment, - STATE(4202), 1, + STATE(4652), 1, sym_block, - STATE(4675), 1, + STATE(4840), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5416), 1, sym__one_type, - STATE(5169), 1, + STATE(5417), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158842,51 +175081,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22705] = 18, + [34352] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3010), 1, + ACTIONS(1568), 1, anon_sym_DQUOTE, - ACTIONS(3012), 1, + ACTIONS(1570), 1, anon_sym_SQUOTE, - ACTIONS(3014), 1, + ACTIONS(1572), 1, anon_sym_BQUOTE, - ACTIONS(3022), 1, + ACTIONS(1582), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4255), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3790), 1, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(3792), 1, + ACTIONS(4259), 1, anon_sym_DOLLAR, - ACTIONS(3794), 1, + ACTIONS(4261), 1, anon_sym_LBRACE, - STATE(1550), 1, + STATE(1740), 1, sym_comment, - STATE(2099), 1, + STATE(2332), 1, sym__val_number_decimal, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3093), 2, + ACTIONS(4251), 2, + anon_sym_export, + anon_sym_in, + STATE(4968), 2, sym_cmd_identifier, sym_val_string, - STATE(3095), 3, + STATE(4973), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(2548), 4, + STATE(3705), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4253), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -158910,560 +175149,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [22791] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1551), 1, - sym_comment, - STATE(4244), 1, - sym_block, - STATE(4704), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22871] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1552), 1, - sym_comment, - STATE(4265), 1, - sym_block, - STATE(4705), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22951] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1553), 1, - sym_comment, - STATE(4321), 1, - sym_block, - STATE(4634), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23031] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1554), 1, - sym_comment, - STATE(4322), 1, - sym_block, - STATE(4635), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23111] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1555), 1, - sym_comment, - STATE(4053), 1, - sym_block, - STATE(4637), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23191] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1556), 1, - sym_comment, - STATE(4054), 1, - sym_block, - STATE(4639), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23271] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1557), 1, - sym_comment, - STATE(4086), 1, - sym_block, - STATE(4664), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23351] = 15, + [34438] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(4237), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(4239), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4247), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(1558), 1, + STATE(1741), 1, sym_comment, - STATE(4090), 1, + STATE(4499), 1, sym_block, - STATE(4666), 1, + STATE(4816), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5416), 1, sym__one_type, - STATE(5169), 1, + STATE(5417), 1, sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23431] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1559), 1, - sym_comment, - STATE(4091), 1, - sym_block, - STATE(4667), 1, - sym_returns, - STATE(4849), 1, + STATE(5418), 1, sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159495,105 +175214,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23511] = 15, + [34518] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(4237), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(4239), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4247), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(1560), 1, + STATE(1742), 1, sym_comment, - STATE(4093), 1, + STATE(4505), 1, sym_block, - STATE(4668), 1, + STATE(4818), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5416), 1, sym__one_type, - STATE(5169), 1, + STATE(5417), 1, sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23591] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1561), 1, - sym_comment, - STATE(4137), 1, - sym_block, - STATE(4679), 1, - sym_returns, - STATE(4849), 1, + STATE(5418), 1, sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159625,176 +175279,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23671] = 15, + [34598] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1562), 1, + ACTIONS(2956), 1, + sym__newline, + ACTIONS(4217), 1, + anon_sym_DASH2, + ACTIONS(4229), 1, + anon_sym_PLUS2, + STATE(1734), 1, + aux_sym__repeat_newline, + STATE(1743), 1, sym_comment, - STATE(4142), 1, - sym_block, - STATE(4680), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23751] = 21, + ACTIONS(4215), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4221), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2920), 29, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [34674] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, - sym__newline, - ACTIONS(3796), 1, - anon_sym_RBRACK, - STATE(1563), 1, + ACTIONS(4199), 1, + anon_sym_DASH2, + ACTIONS(4209), 1, + anon_sym_PLUS2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1744), 1, sym_comment, - STATE(1703), 1, - aux_sym__types_body_repeat1, - STATE(1770), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4524), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - STATE(4815), 1, - sym__command_list_body, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [23843] = 13, + ACTIONS(4197), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4201), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4205), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4207), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4211), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4203), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2944), 30, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [34748] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(1564), 1, + STATE(1745), 1, sym_comment, - STATE(1579), 1, + STATE(1794), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(2922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2744), 29, + ACTIONS(2920), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -159817,6 +175455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -159824,36 +175466,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23919] = 12, + [34822] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(1565), 1, - sym_comment, - STATE(1581), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + STATE(1746), 1, + sym_comment, + ACTIONS(2946), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 33, + ACTIONS(2944), 34, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159886,29 +175527,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23993] = 9, + [34894] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2956), 1, sym__newline, - STATE(1566), 1, + STATE(1747), 1, sym_comment, - STATE(1583), 1, + STATE(1795), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2746), 3, + ACTIONS(2922), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2744), 36, + ACTIONS(2920), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -159945,26 +175586,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24061] = 7, + [34962] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1748), 1, + sym_comment, + ACTIONS(4201), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4205), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4207), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2946), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2944), 37, + anon_sym_in, sym__newline, - STATE(1567), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [35028] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2956), 1, + sym__newline, + STATE(1749), 1, sym_comment, - STATE(1585), 1, + STATE(1796), 1, + aux_sym__repeat_newline, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2922), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2920), 38, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [35092] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + STATE(1750), 1, + sym_comment, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2746), 5, + ACTIONS(2946), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2744), 38, + ACTIONS(2944), 39, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160002,51 +175757,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24125] = 18, + [35154] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(4235), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(4265), 1, anon_sym_bit_DASHor2, - STATE(1568), 1, + STATE(1751), 1, sym_comment, - STATE(1587), 1, + STATE(1797), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160055,7 +175810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 14, + ACTIONS(2920), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160070,53 +175825,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [24211] = 19, + [35240] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(4271), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(4273), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(4275), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - STATE(1569), 1, - sym_comment, - STATE(1678), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1752), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160125,7 +175876,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 13, + ACTIONS(2944), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160137,57 +175889,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [24299] = 20, + [35324] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(4235), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(4265), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(4277), 1, anon_sym_and2, - ACTIONS(3826), 1, - anon_sym_xor2, - STATE(1570), 1, + STATE(1753), 1, sym_comment, - STATE(1590), 1, + STATE(1798), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160196,7 +175947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 12, + ACTIONS(2920), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160208,41 +175959,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_xor2, anon_sym_or2, - [24389] = 14, + [35412] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(1571), 1, - sym_comment, - STATE(1592), 1, + ACTIONS(4271), 1, + anon_sym_bit_DASHand2, + ACTIONS(4273), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4275), 1, + anon_sym_bit_DASHor2, + ACTIONS(4279), 1, + anon_sym_and2, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1754), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(4269), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160251,7 +176014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 21, + ACTIONS(2944), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160263,43 +176027,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [24467] = 11, + [35498] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(1572), 1, + ACTIONS(4233), 1, + anon_sym_bit_DASHand2, + ACTIONS(4235), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4265), 1, + anon_sym_bit_DASHor2, + ACTIONS(4277), 1, + anon_sym_and2, + ACTIONS(4281), 1, + anon_sym_xor2, + STATE(1755), 1, sym_comment, - STATE(1594), 1, + STATE(1799), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2744), 35, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4221), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4223), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4213), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2920), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160311,68 +176098,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [24539] = 15, + [35588] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(1573), 1, - sym_comment, - STATE(1596), 1, + ACTIONS(4271), 1, + anon_sym_bit_DASHand2, + ACTIONS(4273), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4275), 1, + anon_sym_bit_DASHor2, + ACTIONS(4279), 1, + anon_sym_and2, + ACTIONS(4283), 1, + anon_sym_xor2, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1756), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160381,7 +176154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 17, + ACTIONS(2944), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160393,53 +176167,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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [24619] = 16, + [35676] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - STATE(1574), 1, + STATE(1757), 1, sym_comment, - STATE(1598), 1, + STATE(1800), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160448,7 +176210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 16, + ACTIONS(2920), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160463,51 +176225,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24701] = 17, + [35754] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - STATE(1575), 1, - sym_comment, - STATE(1600), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1758), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160516,7 +176272,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 15, + ACTIONS(2944), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160531,174 +176288,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24785] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1576), 1, - sym_comment, - STATE(4538), 1, - sym_block, - STATE(4686), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [24865] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3828), 1, - anon_sym_LBRACK, - ACTIONS(3830), 1, - anon_sym_DOLLAR, - ACTIONS(3832), 1, - anon_sym_LBRACE, - STATE(1577), 1, - sym_comment, - STATE(2107), 1, - sym__val_number_decimal, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(4760), 2, - sym_cmd_identifier, - sym_val_string, - STATE(4762), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [24951] = 13, + [35830] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(1578), 1, + STATE(1759), 1, sym_comment, - STATE(1614), 1, + STATE(1801), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(2922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2702), 29, + ACTIONS(2920), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160721,45 +176343,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25027] = 12, + [35902] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(1579), 1, + STATE(1760), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(2946), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2706), 30, + ACTIONS(2944), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160783,43 +176403,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25101] = 12, + [35972] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(1580), 1, + STATE(1761), 1, sym_comment, - STATE(1615), 1, + STATE(1802), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 33, + ACTIONS(4221), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4223), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4213), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2920), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160834,6 +176478,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [36052] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4199), 1, + anon_sym_DASH2, + ACTIONS(4209), 1, + anon_sym_PLUS2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1762), 1, + sym_comment, + ACTIONS(4197), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4201), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4205), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4207), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4211), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4203), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4269), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4267), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -160841,45 +176526,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + ACTIONS(2944), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [36130] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2956), 1, + sym__newline, + ACTIONS(4217), 1, + anon_sym_DASH2, + ACTIONS(4229), 1, + anon_sym_PLUS2, + ACTIONS(4233), 1, + anon_sym_bit_DASHand2, + STATE(1763), 1, + sym_comment, + STATE(1803), 1, + aux_sym__repeat_newline, + ACTIONS(4215), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, + ACTIONS(4213), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2920), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25175] = 11, + [36212] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(540), 1, + ACTIONS(4271), 1, + anon_sym_bit_DASHand2, + STATE(675), 1, aux_sym__repeat_newline, - STATE(1581), 1, + STATE(1764), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 34, + ACTIONS(4203), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4269), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4267), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2944), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160895,6 +176674,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [36292] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2956), 1, + sym__newline, + ACTIONS(4217), 1, + anon_sym_DASH2, + ACTIONS(4229), 1, + anon_sym_PLUS2, + ACTIONS(4233), 1, + anon_sym_bit_DASHand2, + ACTIONS(4235), 1, + anon_sym_bit_DASHxor2, + STATE(1765), 1, + sym_comment, + STATE(1804), 1, + aux_sym__repeat_newline, + ACTIONS(4215), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4221), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4223), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4213), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -160902,40 +176727,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + ACTIONS(2920), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [36376] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4199), 1, + anon_sym_DASH2, + ACTIONS(4209), 1, + anon_sym_PLUS2, + ACTIONS(4271), 1, + anon_sym_bit_DASHand2, + ACTIONS(4273), 1, + anon_sym_bit_DASHxor2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1766), 1, + sym_comment, + ACTIONS(4197), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4201), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4205), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4207), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4211), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(4267), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2944), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [25247] = 9, + [36458] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1767), 1, + sym_comment, + STATE(4360), 1, + sym_block, + STATE(4836), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [36538] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(3032), 1, sym__newline, - STATE(1582), 1, + ACTIONS(4217), 1, + anon_sym_DASH2, + ACTIONS(4229), 1, + anon_sym_PLUS2, + STATE(1768), 1, sym_comment, - STATE(1616), 1, + STATE(1806), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + ACTIONS(4215), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2704), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2702), 36, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4221), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2950), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160948,7 +176920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -160959,42 +176930,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25315] = 8, + [36614] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1583), 1, + ACTIONS(3032), 1, + sym__newline, + ACTIONS(4217), 1, + anon_sym_DASH2, + ACTIONS(4229), 1, + anon_sym_PLUS2, + STATE(1769), 1, sym_comment, - ACTIONS(3838), 2, + STATE(1808), 1, + aux_sym__repeat_newline, + ACTIONS(2952), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2708), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2706), 37, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2950), 33, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161006,7 +176978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -161025,30 +176996,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25381] = 7, + [36688] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1770), 1, + sym_comment, + STATE(4367), 1, + sym_block, + STATE(4837), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [36768] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(3032), 1, sym__newline, - STATE(1584), 1, + STATE(1771), 1, sym_comment, - STATE(1617), 1, + STATE(1810), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2704), 5, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2952), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2702), 38, + ACTIONS(2950), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -161080,32 +177118,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25445] = 6, + [36836] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1585), 1, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1772), 1, + sym_comment, + STATE(4523), 1, + sym_block, + STATE(4956), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [36916] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3032), 1, + sym__newline, + STATE(1773), 1, sym_comment, - ACTIONS(3842), 2, + STATE(1812), 1, + aux_sym__repeat_newline, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2708), 5, + ACTIONS(2952), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2706), 39, + ACTIONS(2950), 38, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161143,117 +177245,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25507] = 18, + [36980] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - STATE(1586), 1, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1774), 1, sym_comment, - STATE(1618), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [25593] = 17, + STATE(4532), 1, + sym_block, + STATE(4961), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [37060] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3032), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(4235), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(4265), 1, anon_sym_bit_DASHor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1587), 1, + STATE(1775), 1, sym_comment, - ACTIONS(3834), 2, + STATE(1814), 1, + aux_sym__repeat_newline, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161262,8 +177363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 15, - sym__newline, + ACTIONS(2950), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161278,53 +177378,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25677] = 19, + [37146] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(3032), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(4235), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(4265), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(4277), 1, anon_sym_and2, - STATE(1588), 1, + STATE(1776), 1, sym_comment, - STATE(1619), 1, + STATE(1816), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161333,7 +177433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 13, + ACTIONS(2950), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161347,55 +177447,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [25765] = 20, + [37234] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1777), 1, + sym_comment, + STATE(4376), 1, + sym_block, + STATE(4838), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [37314] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(4235), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(4265), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(4277), 1, anon_sym_and2, - ACTIONS(3826), 1, + ACTIONS(4281), 1, anon_sym_xor2, - STATE(1589), 1, + STATE(1778), 1, sym_comment, - STATE(1620), 1, + STATE(1818), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161404,7 +177569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 12, + ACTIONS(2950), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161417,109 +177582,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [25855] = 19, + [37404] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - ACTIONS(3862), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1590), 1, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1779), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [25943] = 14, + STATE(4517), 1, + sym_block, + STATE(4944), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [37484] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(3032), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(1591), 1, + STATE(1780), 1, sym_comment, - STATE(1621), 1, + STATE(1820), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161528,7 +177689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 21, + ACTIONS(2950), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161550,95 +177711,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26021] = 13, + [37562] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1592), 1, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1781), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26097] = 11, + STATE(4304), 1, + sym_block, + STATE(4851), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [37642] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1782), 1, + sym_comment, + STATE(4377), 1, + sym_block, + STATE(4839), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [37722] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(3032), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(1593), 1, + STATE(1783), 1, sym_comment, - STATE(1622), 1, + STATE(1822), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2952), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 35, + ACTIONS(2950), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -161674,168 +177902,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26169] = 10, + [37794] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1594), 1, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1784), 1, sym_comment, - ACTIONS(2708), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2706), 36, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26239] = 15, + STATE(4658), 1, + sym_block, + STATE(4847), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [37874] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(3032), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(1595), 1, + STATE(1785), 1, sym_comment, - STATE(1623), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 17, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26319] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, + STATE(1824), 1, aux_sym__repeat_newline, - STATE(1596), 1, - sym_comment, - ACTIONS(3834), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161844,8 +178014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 18, - sym__newline, + ACTIONS(2950), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161863,47 +178032,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26397] = 16, + [37954] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(3032), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - STATE(1597), 1, + STATE(1786), 1, sym_comment, - STATE(1624), 1, + STATE(1826), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161912,7 +178081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 16, + ACTIONS(2950), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161929,114 +178098,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26479] = 15, + [38036] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1598), 1, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1787), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26559] = 17, + STATE(4308), 1, + sym_block, + STATE(4852), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [38116] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(3032), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(4235), 1, anon_sym_bit_DASHxor2, - STATE(1599), 1, + STATE(1788), 1, sym_comment, - STATE(1625), 1, + STATE(1903), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162045,7 +178214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 15, + ACTIONS(2950), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162061,56 +178230,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [26643] = 16, + [38200] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1600), 1, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1789), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + STATE(4278), 1, + sym_block, + STATE(4945), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [38280] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1790), 1, + sym_comment, + STATE(4302), 1, + sym_block, + STATE(4946), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [38360] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3180), 1, + anon_sym_DQUOTE, + ACTIONS(3182), 1, + anon_sym_SQUOTE, + ACTIONS(3184), 1, + anon_sym_BQUOTE, + ACTIONS(3192), 1, + sym_raw_string_begin, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4285), 1, + anon_sym_LBRACK, + ACTIONS(4287), 1, + anon_sym_DOLLAR, + ACTIONS(4289), 1, + anon_sym_LBRACE, + STATE(1791), 1, + sym_comment, + STATE(2213), 1, + sym__val_number_decimal, + ACTIONS(4079), 2, + anon_sym_export, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 16, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3347), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3352), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2782), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4081), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38446] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2954), 1, + aux_sym_cmd_identifier_token2, + STATE(1792), 1, + sym_comment, + ACTIONS(904), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -162122,57 +178448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [26725] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1601), 1, - sym_comment, - STATE(1627), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2712), 29, + anon_sym_EQ_TILDE2, + ACTIONS(815), 29, anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -162183,43 +178468,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26801] = 12, + [38506] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1793), 1, + sym_comment, + STATE(4253), 1, + sym_block, + STATE(4821), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [38586] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(1602), 1, - sym_comment, - STATE(1629), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + STATE(1794), 1, + sym_comment, + ACTIONS(2816), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 33, + ACTIONS(2814), 34, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162252,30 +178609,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26875] = 9, + [38658] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - STATE(1603), 1, - sym_comment, - STATE(1631), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + STATE(1795), 1, + sym_comment, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2714), 3, + ACTIONS(2816), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2712), 36, + ACTIONS(2814), 37, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162304,98 +178660,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26943] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1604), 1, - sym_comment, - STATE(4550), 1, - sym_block, - STATE(4719), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [27023] = 7, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [38724] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - STATE(1605), 1, - sym_comment, - STATE(1633), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + STATE(1796), 1, + sym_comment, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2714), 5, + ACTIONS(2816), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2712), 38, + ACTIONS(2814), 39, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162433,51 +178723,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27087] = 18, + [38786] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(4271), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(4273), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(4275), 1, anon_sym_bit_DASHor2, - STATE(1606), 1, - sym_comment, - STATE(1635), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1797), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162486,7 +178774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 14, + ACTIONS(2814), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162501,53 +178790,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [27173] = 19, + [38870] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(4271), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(4273), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(4275), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(4279), 1, anon_sym_and2, - STATE(1607), 1, - sym_comment, - STATE(1637), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1798), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162556,7 +178843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 13, + ACTIONS(2814), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162570,55 +178858,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [27261] = 20, + [38956] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(4271), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(4273), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(4275), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(4279), 1, anon_sym_and2, - ACTIONS(3826), 1, + ACTIONS(4283), 1, anon_sym_xor2, - STATE(1608), 1, - sym_comment, - STATE(1639), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1799), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162627,7 +178913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 12, + ACTIONS(2814), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162640,40 +178927,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [27351] = 14, + [39044] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(1609), 1, - sym_comment, - STATE(1641), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1800), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162682,7 +178967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 21, + ACTIONS(2814), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162704,33 +178990,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27429] = 11, + [39120] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(1610), 1, - sym_comment, - STATE(1643), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + STATE(1801), 1, + sym_comment, + ACTIONS(2816), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2712), 35, + ACTIONS(2814), 36, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162765,45 +179050,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27501] = 15, + [39190] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(1611), 1, - sym_comment, - STATE(1645), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1802), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162812,7 +179095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 17, + ACTIONS(2814), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162830,47 +179114,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27581] = 16, + [39268] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(4271), 1, anon_sym_bit_DASHand2, - STATE(1612), 1, - sym_comment, - STATE(1647), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1803), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162879,7 +179161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 16, + ACTIONS(2814), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162896,49 +179179,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27663] = 17, + [39348] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(4271), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(4273), 1, anon_sym_bit_DASHxor2, - STATE(1613), 1, - sym_comment, - STATE(1649), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1804), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162947,7 +179228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 15, + ACTIONS(2814), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162963,38 +179245,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [27747] = 12, + [39430] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3129), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(1805), 1, + sym_comment, + STATE(1834), 1, aux_sym__repeat_newline, - STATE(1614), 1, + ACTIONS(4215), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4221), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2806), 29, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [39506] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4199), 1, + anon_sym_DASH2, + ACTIONS(4209), 1, + anon_sym_PLUS2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1806), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2720), 30, + ACTIONS(2834), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163025,33 +179370,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27821] = 11, + [39580] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3129), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(1807), 1, + sym_comment, + STATE(1835), 1, aux_sym__repeat_newline, - STATE(1615), 1, + ACTIONS(2808), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2806), 33, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [39654] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4199), 1, + anon_sym_DASH2, + ACTIONS(4209), 1, + anon_sym_PLUS2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1808), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2836), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 34, + ACTIONS(2834), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163086,27 +179493,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27893] = 8, + [39726] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(3129), 1, + sym__newline, + STATE(1809), 1, + sym_comment, + STATE(1836), 1, aux_sym__repeat_newline, - STATE(1616), 1, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2808), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2806), 36, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [39794] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1810), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, + ACTIONS(2836), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2720), 37, + ACTIONS(2834), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163144,23 +179610,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27959] = 6, + [39860] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(3129), 1, + sym__newline, + STATE(1811), 1, + sym_comment, + STATE(1837), 1, aux_sym__repeat_newline, - STATE(1617), 1, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2808), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2806), 38, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [39924] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1812), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(2836), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 39, + ACTIONS(2834), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163200,49 +179723,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28021] = 17, + [39986] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3129), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(4235), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(4265), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(1813), 1, + sym_comment, + STATE(1838), 1, aux_sym__repeat_newline, - STATE(1618), 1, + ACTIONS(4215), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4221), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4223), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4213), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2806), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [40072] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4199), 1, + anon_sym_DASH2, + ACTIONS(4209), 1, + anon_sym_PLUS2, + ACTIONS(4271), 1, + anon_sym_bit_DASHand2, + ACTIONS(4273), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4275), 1, + anon_sym_bit_DASHor2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1814), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163251,7 +179842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 15, + ACTIONS(2834), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163267,51 +179858,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [28105] = 18, + [40156] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3129), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(4235), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(4265), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(4277), 1, anon_sym_and2, - STATE(540), 1, + STATE(1815), 1, + sym_comment, + STATE(1839), 1, aux_sym__repeat_newline, - STATE(1619), 1, + ACTIONS(4215), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4221), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4223), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4213), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2806), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [40244] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4199), 1, + anon_sym_DASH2, + ACTIONS(4209), 1, + anon_sym_PLUS2, + ACTIONS(4271), 1, + anon_sym_bit_DASHand2, + ACTIONS(4273), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4275), 1, + anon_sym_bit_DASHor2, + ACTIONS(4279), 1, + anon_sym_and2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1816), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163320,7 +179980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 14, + ACTIONS(2834), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163335,53 +179995,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [28191] = 19, + [40330] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(4235), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(4265), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(4277), 1, anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(4281), 1, anon_sym_xor2, - STATE(540), 1, + STATE(1817), 1, + sym_comment, + STATE(1840), 1, aux_sym__repeat_newline, - STATE(1620), 1, + ACTIONS(4215), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4221), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4223), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4213), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2806), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_or2, + [40420] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4199), 1, + anon_sym_DASH2, + ACTIONS(4209), 1, + anon_sym_PLUS2, + ACTIONS(4271), 1, + anon_sym_bit_DASHand2, + ACTIONS(4273), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4275), 1, + anon_sym_bit_DASHor2, + ACTIONS(4279), 1, + anon_sym_and2, + ACTIONS(4283), 1, + anon_sym_xor2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1818), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163390,7 +180120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 13, + ACTIONS(2834), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163404,38 +180134,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [28279] = 13, + [40508] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3129), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(1819), 1, + sym_comment, + STATE(1841), 1, aux_sym__repeat_newline, - STATE(1621), 1, + ACTIONS(4215), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4221), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4213), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2806), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [40586] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4199), 1, + anon_sym_DASH2, + ACTIONS(4209), 1, + anon_sym_PLUS2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1820), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163444,7 +180238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 22, + ACTIONS(2834), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163467,30 +180261,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28355] = 10, + [40662] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3129), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(1821), 1, + sym_comment, + STATE(1842), 1, aux_sym__repeat_newline, - STATE(1622), 1, + ACTIONS(2808), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2806), 35, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [40734] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4199), 1, + anon_sym_DASH2, + ACTIONS(4209), 1, + anon_sym_PLUS2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1822), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2836), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 36, + ACTIONS(2834), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163527,43 +180382,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28425] = 14, + [40804] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3129), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1623), 1, + STATE(1823), 1, sym_comment, - ACTIONS(3834), 2, + STATE(1843), 1, + aux_sym__repeat_newline, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163572,8 +180429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 18, - sym__newline, + ACTIONS(2806), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163591,45 +180447,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28503] = 15, + [40884] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(1624), 1, + STATE(1824), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163638,7 +180492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 17, + ACTIONS(2834), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163654,49 +180508,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28583] = 16, + [40962] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3129), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1625), 1, + STATE(1825), 1, sym_comment, - ACTIONS(3834), 2, + STATE(1844), 1, + aux_sym__repeat_newline, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163705,8 +180560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 16, - sym__newline, + ACTIONS(2806), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163721,42 +180575,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28665] = 13, + [41044] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(1626), 1, - sym_comment, - STATE(1650), 1, + ACTIONS(4271), 1, + anon_sym_bit_DASHand2, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1826), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2728), 29, + ACTIONS(4269), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4267), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2834), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163771,6 +180640,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [41124] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3129), 1, + sym__newline, + ACTIONS(4217), 1, + anon_sym_DASH2, + ACTIONS(4229), 1, + anon_sym_PLUS2, + ACTIONS(4233), 1, + anon_sym_bit_DASHand2, + ACTIONS(4235), 1, + anon_sym_bit_DASHxor2, + STATE(1827), 1, + sym_comment, + STATE(1845), 1, + aux_sym__repeat_newline, + ACTIONS(4215), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4219), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4221), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4223), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4213), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -163778,45 +180693,444 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(2806), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [28741] = 12, + [41208] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1828), 1, + sym_comment, + STATE(4496), 1, + sym_block, + STATE(4939), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [41288] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1829), 1, + sym_comment, + STATE(4254), 1, + sym_block, + STATE(4822), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [41368] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1830), 1, + sym_comment, + STATE(4802), 1, + sym_block, + STATE(4972), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [41448] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1831), 1, + sym_comment, + STATE(4608), 1, + sym_block, + STATE(4814), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [41528] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1832), 1, + sym_comment, + STATE(4661), 1, + sym_block, + STATE(4886), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [41608] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1833), 1, + sym_comment, + STATE(4266), 1, + sym_block, + STATE(4827), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [41688] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(1627), 1, + STATE(1834), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2732), 30, + ACTIONS(2876), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163847,95 +181161,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28815] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1628), 1, - sym_comment, - STATE(1651), 1, - aux_sym__repeat_newline, - ACTIONS(2730), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2728), 33, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28889] = 11, + [41762] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(1629), 1, + STATE(1835), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2878), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 34, + ACTIONS(2876), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163970,86 +181222,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28961] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - STATE(1630), 1, - sym_comment, - STATE(1652), 1, - aux_sym__repeat_newline, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2730), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2728), 36, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29029] = 8, + [41834] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(1631), 1, + STATE(1836), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2734), 3, + ACTIONS(2878), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2732), 37, + ACTIONS(2876), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164087,80 +181280,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29095] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - STATE(1632), 1, - sym_comment, - STATE(1653), 1, - aux_sym__repeat_newline, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2730), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2728), 38, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29159] = 6, + [41900] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(1633), 1, + STATE(1837), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2734), 5, + ACTIONS(2878), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2732), 39, + ACTIONS(2876), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164200,51 +181336,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29221] = 18, + [41962] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(4271), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(4273), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(4275), 1, anon_sym_bit_DASHor2, - STATE(1634), 1, - sym_comment, - STATE(1654), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1838), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164253,7 +181387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 14, + ACTIONS(2876), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164268,49 +181403,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [29307] = 17, + [42046] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(4271), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(4273), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(4275), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + ACTIONS(4279), 1, + anon_sym_and2, + STATE(675), 1, aux_sym__repeat_newline, - STATE(1635), 1, + STATE(1839), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164319,7 +181456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 15, + ACTIONS(2876), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164332,56 +181469,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [29391] = 19, + [42132] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(4271), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(4273), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(4275), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(4279), 1, anon_sym_and2, - STATE(1636), 1, - sym_comment, - STATE(1655), 1, + ACTIONS(4283), 1, + anon_sym_xor2, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1840), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164390,7 +181526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 13, + ACTIONS(2876), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164402,53 +181539,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [29479] = 18, + [42220] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(1637), 1, + STATE(1841), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164457,7 +181580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 14, + ACTIONS(2876), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164470,134 +181593,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_xor2, - anon_sym_or2, - [29565] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, anon_sym_and2, - ACTIONS(3826), 1, anon_sym_xor2, - STATE(1638), 1, - sym_comment, - STATE(1656), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [29655] = 19, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [42296] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - ACTIONS(3862), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(1639), 1, + STATE(1842), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(2878), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(2876), 36, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164610,42 +181640,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_and2, + anon_sym_xor2, anon_sym_or2, - [29743] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1640), 1, - sym_comment, - STATE(1657), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3814), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -164653,132 +181650,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29821] = 13, + [42366] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(1641), 1, + STATE(1843), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29897] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1642), 1, - sym_comment, - STATE(1658), 1, - aux_sym__repeat_newline, - ACTIONS(2730), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2728), 35, + ACTIONS(4267), 8, anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -164786,44 +181708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29969] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1643), 1, - sym_comment, - ACTIONS(2734), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2732), 36, - anon_sym_in, + ACTIONS(2876), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164839,65 +181724,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30039] = 15, + [42444] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(1644), 1, - sym_comment, - STATE(1659), 1, + ACTIONS(4271), 1, + anon_sym_bit_DASHand2, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1844), 1, + sym_comment, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164906,7 +181774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 17, + ACTIONS(2876), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164921,46 +181790,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30119] = 14, + [42524] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - STATE(540), 1, + ACTIONS(4271), 1, + anon_sym_bit_DASHand2, + ACTIONS(4273), 1, + anon_sym_bit_DASHxor2, + STATE(675), 1, aux_sym__repeat_newline, - STATE(1645), 1, + STATE(1845), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164969,7 +181841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 18, + ACTIONS(2876), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164985,305 +181857,1023 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30197] = 16, + [42606] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1846), 1, + sym_comment, + STATE(4609), 1, + sym_block, + STATE(4824), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [42686] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1847), 1, + sym_comment, + STATE(4267), 1, + sym_block, + STATE(4828), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [42766] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1848), 1, + sym_comment, + STATE(4714), 1, + sym_block, + STATE(4830), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [42846] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1849), 1, + sym_comment, + STATE(4747), 1, + sym_block, + STATE(4892), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [42926] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1850), 1, + sym_comment, + STATE(4799), 1, + sym_block, + STATE(4965), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43006] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1851), 1, + sym_comment, + STATE(4746), 1, + sym_block, + STATE(4890), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43086] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1852), 1, + sym_comment, + STATE(4628), 1, + sym_block, + STATE(4923), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43166] = 20, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(2818), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2828), 1, + anon_sym_COLON2, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4291), 1, + anon_sym_DASH_DASH, + STATE(1853), 1, + sym_comment, + STATE(1923), 1, + aux_sym_decl_def_repeat1, + STATE(2213), 1, + sym__val_number_decimal, + STATE(2364), 1, + sym_long_flag, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(3890), 1, + sym__command_name, + ACTIONS(4293), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4295), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4079), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [43256] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1854), 1, + sym_comment, + STATE(4411), 1, + sym_block, + STATE(4833), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43336] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1855), 1, + sym_comment, + STATE(4412), 1, + sym_block, + STATE(4835), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43416] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1856), 1, + sym_comment, + STATE(4285), 1, + sym_block, + STATE(4842), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43496] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(1568), 1, + anon_sym_DQUOTE, + ACTIONS(1570), 1, + anon_sym_SQUOTE, + ACTIONS(1572), 1, + anon_sym_BQUOTE, + ACTIONS(1582), 1, + sym_raw_string_begin, + ACTIONS(4255), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4297), 1, sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - STATE(1646), 1, + ACTIONS(4299), 1, + anon_sym_RBRACK, + STATE(1857), 1, sym_comment, - STATE(1660), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + STATE(1927), 1, + aux_sym__types_body_repeat1, + STATE(1972), 1, + aux_sym__command_list_body_repeat1, + STATE(2332), 1, + sym__val_number_decimal, + STATE(4559), 1, + sym__command_name, + STATE(4909), 1, + sym_cmd_identifier, + STATE(4913), 1, + sym_val_string, + STATE(5138), 1, + sym__command_list_body, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4251), 2, + anon_sym_export, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30279] = 15, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4253), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [43588] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1647), 1, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1858), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30359] = 17, + STATE(4286), 1, + sym_block, + STATE(4843), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43668] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - STATE(1648), 1, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1859), 1, sym_comment, - STATE(1661), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 15, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [30443] = 16, + STATE(4629), 1, + sym_block, + STATE(4926), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43748] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1649), 1, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(1860), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [30525] = 12, + STATE(4287), 1, + sym_block, + STATE(4844), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43828] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4303), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4313), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1650), 1, + STATE(1861), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4301), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4309), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4311), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4315), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4307), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2740), 30, + ACTIONS(2723), 31, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165297,6 +182887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -165314,33 +182905,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30599] = 11, + [43900] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4303), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4313), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1651), 1, + STATE(1862), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2725), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4309), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4311), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4315), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 34, + ACTIONS(2723), 35, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165354,6 +182943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -165375,27 +182965,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30671] = 8, + [43970] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1652), 1, + STATE(1863), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(4305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4309), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4311), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2742), 3, + ACTIONS(2725), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2740), 37, + ACTIONS(2723), 38, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165410,6 +182998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -165433,23 +183022,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30737] = 6, + [44034] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1653), 1, + STATE(1864), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(4309), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2742), 5, + ACTIONS(2725), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2740), 39, + ACTIONS(2723), 40, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165464,6 +183051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -165489,49 +183077,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30799] = 17, + [44094] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4303), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4313), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(4321), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(4323), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(4325), 1, anon_sym_bit_DASHor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1654), 1, + STATE(1865), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4301), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4309), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4311), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4315), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4307), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4319), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4317), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165540,7 +183126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 15, + ACTIONS(2723), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165553,54 +183139,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [30883] = 18, + [44176] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4303), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4313), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(4321), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(4323), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(4325), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(4327), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1655), 1, + STATE(1866), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4301), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4309), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4311), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4315), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4307), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4319), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4317), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165609,7 +183194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 14, + ACTIONS(2723), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165622,55 +183207,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [30969] = 19, + [44260] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4303), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4313), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(4321), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(4323), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(4325), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(4327), 1, anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(4329), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1656), 1, + STATE(1867), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4301), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4309), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4311), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4315), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4307), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4319), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4317), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165679,7 +183263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 13, + ACTIONS(2723), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165692,39 +183276,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [31057] = 13, + [44346] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4303), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4313), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1657), 1, + STATE(1868), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4301), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4309), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4311), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4315), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4307), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(4317), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165733,7 +183316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 22, + ACTIONS(2723), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165746,6 +183329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -165756,30 +183340,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31133] = 10, + [44420] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4303), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4313), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1658), 1, + STATE(1869), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2725), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4309), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4311), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2740), 36, + ACTIONS(2723), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165793,6 +183375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -165816,43 +183399,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31203] = 14, + [44488] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4303), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4313), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1659), 1, + STATE(1870), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4301), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4309), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4311), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4315), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4307), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4319), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4317), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165861,7 +183442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 18, + ACTIONS(2723), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165874,51 +183455,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31281] = 15, + [44564] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4303), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4313), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(4321), 1, anon_sym_bit_DASHand2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1660), 1, + STATE(1871), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4301), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4309), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4311), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4315), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4307), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4319), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4317), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165927,7 +183507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 17, + ACTIONS(2723), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165940,52 +183520,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31361] = 16, + [44642] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(4303), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4313), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(4321), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(4323), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1661), 1, + STATE(1872), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4301), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4305), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4309), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4311), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4315), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4307), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4319), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4317), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165994,7 +183573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 16, + ACTIONS(2723), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166007,44 +183586,435 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [31443] = 15, + [44722] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(4237), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(4239), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4247), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(1662), 1, + STATE(1873), 1, sym_comment, - STATE(4545), 1, + STATE(4290), 1, sym_block, - STATE(4699), 1, + STATE(4845), 1, sym_returns, - STATE(4849), 1, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, sym__type_annotation, - STATE(5007), 1, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [44802] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1874), 1, + sym_comment, + STATE(4681), 1, + sym_block, + STATE(4920), 1, + sym_returns, + STATE(5416), 1, sym__one_type, - STATE(5169), 1, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [44882] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1875), 1, + sym_comment, + STATE(4686), 1, + sym_block, + STATE(4930), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [44962] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1876), 1, + sym_comment, + STATE(4689), 1, + sym_block, + STATE(4937), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [45042] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1877), 1, + sym_comment, + STATE(4692), 1, + sym_block, + STATE(4953), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [45122] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1878), 1, + sym_comment, + STATE(4803), 1, + sym_block, + STATE(4974), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [45202] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1879), 1, + sym_comment, + STATE(4745), 1, + sym_block, + STATE(4888), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166076,40 +184046,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31523] = 15, + [45282] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1880), 1, + sym_comment, + ACTIONS(3123), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + aux_sym__val_number_decimal_token1, + ACTIONS(3125), 40, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [45340] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4331), 1, + anon_sym_LBRACK, + ACTIONS(4333), 1, + anon_sym_DOLLAR, + ACTIONS(4335), 1, + anon_sym_LBRACE, + STATE(1881), 1, + sym_comment, + STATE(2213), 1, + sym__val_number_decimal, + ACTIONS(4079), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3347), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3352), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4081), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [45426] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1568), 1, + anon_sym_DQUOTE, + ACTIONS(1570), 1, + anon_sym_SQUOTE, + ACTIONS(1572), 1, + anon_sym_BQUOTE, + ACTIONS(1582), 1, + sym_raw_string_begin, + ACTIONS(4255), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4337), 1, + anon_sym_LBRACK, + ACTIONS(4339), 1, + anon_sym_DOLLAR, + ACTIONS(4341), 1, + anon_sym_LBRACE, + STATE(1882), 1, + sym_comment, + STATE(2332), 1, + sym__val_number_decimal, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4251), 2, + anon_sym_export, + anon_sym_in, + STATE(4968), 2, + sym_cmd_identifier, + sym_val_string, + STATE(4973), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4253), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [45512] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(4237), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(4239), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4247), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(1663), 1, + STATE(1883), 1, sym_comment, - STATE(4553), 1, + STATE(4644), 1, sym_block, - STATE(4722), 1, + STATE(4810), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5416), 1, sym__one_type, - STATE(5169), 1, + STATE(5417), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166141,40 +184301,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31603] = 15, + [45592] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1984), 1, + sym__unquoted_pattern, + STATE(1884), 1, + sym_comment, + ACTIONS(815), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(904), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [45652] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(4237), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(4239), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4247), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(1664), 1, + STATE(1885), 1, sym_comment, - STATE(4567), 1, + STATE(4646), 1, sym_block, - STATE(4734), 1, + STATE(4815), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(5416), 1, sym__one_type, - STATE(5169), 1, + STATE(5417), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166206,37 +184421,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31683] = 11, + [45732] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(2961), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(1665), 1, + STATE(1744), 1, + aux_sym__repeat_newline, + STATE(1886), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 31, + ACTIONS(2820), 29, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [45808] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1568), 1, + anon_sym_DQUOTE, + ACTIONS(1570), 1, + anon_sym_SQUOTE, + ACTIONS(1572), 1, + anon_sym_BQUOTE, + ACTIONS(1582), 1, + sym_raw_string_begin, + ACTIONS(4255), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4297), 1, + sym__newline, + ACTIONS(4343), 1, + anon_sym_RBRACK, + STATE(1887), 1, + sym_comment, + STATE(1927), 1, + aux_sym__types_body_repeat1, + STATE(1972), 1, + aux_sym__command_list_body_repeat1, + STATE(2332), 1, + sym__val_number_decimal, + STATE(4559), 1, + sym__command_name, + STATE(4909), 1, + sym_cmd_identifier, + STATE(4913), 1, + sym_val_string, + STATE(5184), 1, + sym__command_list_body, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4251), 2, + anon_sym_export, anon_sym_in, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4253), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [45900] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1888), 1, + sym_comment, + ACTIONS(2802), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4345), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166250,6 +184580,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + ACTIONS(2800), 29, + anon_sym_in, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [45960] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2954), 1, + aux_sym_cmd_identifier_token2, + STATE(1889), 1, + sym_comment, + ACTIONS(2663), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2665), 29, + anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166260,40 +184650,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [46020] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2954), 1, + aux_sym_cmd_identifier_token2, + STATE(1890), 1, + sym_comment, + ACTIONS(2762), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, + ACTIONS(2764), 29, + anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31755] = 10, + [46080] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(2961), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(1666), 1, + STATE(1746), 1, + aux_sym__repeat_newline, + STATE(1891), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2822), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 35, + ACTIONS(2820), 33, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166305,7 +184761,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166327,27 +184782,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31825] = 7, + [46154] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1667), 1, + ACTIONS(2961), 1, + sym__newline, + STATE(1748), 1, + aux_sym__repeat_newline, + STATE(1892), 1, sym_comment, - ACTIONS(3868), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, + ACTIONS(2822), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2533), 38, + ACTIONS(2820), 36, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166360,7 +184818,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166384,23 +184841,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31889] = 5, + [46222] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1668), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(4348), 1, + anon_sym_DOT, + STATE(1893), 1, + sym_comment, + STATE(2066), 1, + sym__immediate_decimal, + ACTIONS(4350), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4352), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(687), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1738), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1734), 30, + anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [46296] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2961), 1, + sym__newline, + STATE(1750), 1, + aux_sym__repeat_newline, + STATE(1894), 1, sym_comment, - ACTIONS(3872), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, + ACTIONS(2822), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2533), 40, + ACTIONS(2820), 38, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166413,7 +184935,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166439,47 +184960,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31949] = 16, + [46360] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(2961), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(4235), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, + ACTIONS(4265), 1, anon_sym_bit_DASHor2, - STATE(1669), 1, + STATE(1752), 1, + aux_sym__repeat_newline, + STATE(1895), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166488,8 +185013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 16, - sym__newline, + ACTIONS(2820), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166501,53 +185025,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [32031] = 17, + [46446] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(2961), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(4235), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, + ACTIONS(4265), 1, anon_sym_bit_DASHor2, - ACTIONS(3890), 1, + ACTIONS(4277), 1, anon_sym_and2, - STATE(1670), 1, + STATE(1754), 1, + aux_sym__repeat_newline, + STATE(1896), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166556,8 +185083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 15, - sym__newline, + ACTIONS(2820), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166569,54 +185095,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [32115] = 18, + [46534] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(4235), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, + ACTIONS(4265), 1, anon_sym_bit_DASHor2, - ACTIONS(3890), 1, + ACTIONS(4277), 1, anon_sym_and2, - ACTIONS(3892), 1, + ACTIONS(4281), 1, anon_sym_xor2, - STATE(1671), 1, + STATE(1756), 1, + aux_sym__repeat_newline, + STATE(1897), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166625,8 +185154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 14, - sym__newline, + ACTIONS(2820), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166638,38 +185166,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_or2, - [32201] = 12, + [46624] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1898), 1, + sym_comment, + STATE(4649), 1, + sym_block, + STATE(4829), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [46704] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1899), 1, + sym_comment, + STATE(4743), 1, + sym_block, + STATE(4881), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [46784] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2961), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(1672), 1, + STATE(1758), 1, + aux_sym__repeat_newline, + STATE(1900), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166678,8 +185339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 23, - sym__newline, + ACTIONS(2820), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166691,7 +185351,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166702,30 +185361,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32275] = 9, + [46862] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(2961), 1, + sym__newline, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - STATE(1673), 1, + STATE(1760), 1, + aux_sym__repeat_newline, + STATE(1901), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2822), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2533), 37, + ACTIONS(2820), 35, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166737,7 +185399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166761,106 +185422,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32343] = 13, + [46934] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - STATE(1674), 1, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_LBRACK, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(1902), 1, sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3882), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3880), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32419] = 14, + STATE(4713), 1, + sym_block, + STATE(4826), 1, + sym_returns, + STATE(5416), 1, + sym__one_type, + STATE(5417), 1, + sym__multiple_types, + STATE(5418), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [47014] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(4271), 1, anon_sym_bit_DASHand2, - STATE(1675), 1, + ACTIONS(4273), 1, + anon_sym_bit_DASHxor2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(1903), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166869,7 +185536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 18, + ACTIONS(2834), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166882,190 +185549,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32497] = 15, + [47096] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(4358), 1, anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - ACTIONS(3884), 1, - anon_sym_bit_DASHand2, - ACTIONS(3886), 1, - anon_sym_bit_DASHxor2, - STATE(1676), 1, - sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3882), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3880), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(4362), 1, anon_sym_and2, + ACTIONS(4364), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [32577] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1677), 1, - sym_comment, - STATE(2107), 1, - sym__val_number_decimal, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(4760), 2, - sym_cmd_identifier, - sym_val_string, - STATE(4762), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [32663] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(4374), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(4378), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(4380), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(4382), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1678), 1, + STATE(1904), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(4356), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(4370), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(4372), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(4376), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(4366), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(4368), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(4354), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167074,7 +185606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 14, + ACTIONS(2723), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167086,39 +185619,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [32749] = 11, + [47181] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1639), 1, + ACTIONS(1774), 1, sym__unquoted_pattern, - STATE(1679), 1, + STATE(1905), 1, sym_comment, - STATE(1925), 1, + STATE(2146), 1, sym__immediate_decimal, - ACTIONS(3900), 2, + ACTIONS(4384), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, + ACTIONS(4386), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(731), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1738), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 30, + ACTIONS(1734), 30, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -167149,104 +185680,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32820] = 19, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, - anon_sym_DASH_DASH, - STATE(1680), 1, - sym_comment, - STATE(1713), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3729), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [32907] = 11, + [47252] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - STATE(1681), 1, + STATE(1906), 1, sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(4370), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(4372), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2533), 30, + ACTIONS(2725), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2723), 37, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167260,6 +185712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167270,40 +185723,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32978] = 10, + [47315] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - STATE(1682), 1, + STATE(1907), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2802), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3912), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 34, + anon_sym_PLUS2, + ACTIONS(4345), 12, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167315,6 +185760,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, + ACTIONS(2800), 29, + anon_sym_in, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167333,30 +185781,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33047] = 7, + [47374] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1683), 1, + ACTIONS(4358), 1, + anon_sym_DASH2, + ACTIONS(4374), 1, + anon_sym_PLUS2, + ACTIONS(4378), 1, + anon_sym_bit_DASHand2, + ACTIONS(4380), 1, + anon_sym_bit_DASHxor2, + STATE(1908), 1, sym_comment, - ACTIONS(3908), 2, + ACTIONS(4356), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(4370), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(4372), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2533), 37, - ts_builtin_sym_end, + ACTIONS(4376), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4366), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4368), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4354), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2723), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167368,45 +185850,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33110] = 5, + [47453] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1684), 1, + STATE(1909), 1, sym_comment, - ACTIONS(3912), 2, + ACTIONS(4370), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, + ACTIONS(2725), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2533), 39, + ACTIONS(2723), 39, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167446,114 +185908,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33169] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, - ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, - anon_sym_bit_DASHor2, - STATE(1685), 1, - sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3912), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3922), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3920), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [33250] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, - ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, - anon_sym_bit_DASHor2, - ACTIONS(3930), 1, - anon_sym_and2, - STATE(1686), 1, + [47512] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4358), 1, + anon_sym_DASH2, + ACTIONS(4374), 1, + anon_sym_PLUS2, + STATE(1910), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(4356), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(4370), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(4372), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(4376), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(4366), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(4354), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167562,7 +185946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 14, + ACTIONS(2723), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167575,53 +185959,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_and2, anon_sym_xor2, anon_sym_or2, - [33333] = 18, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [47585] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(4358), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(4374), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(4378), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(4380), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(4382), 1, anon_sym_bit_DASHor2, - ACTIONS(3930), 1, - anon_sym_and2, - ACTIONS(3932), 1, - anon_sym_xor2, - STATE(1687), 1, + STATE(1911), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(4356), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(4370), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(4372), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(4376), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(4366), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(4368), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(4354), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167630,7 +186018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 13, + ACTIONS(2723), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167643,39 +186031,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_and2, + anon_sym_xor2, + anon_sym_or2, + [47666] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(4388), 1, + anon_sym_DOT, + STATE(1912), 1, + sym_comment, + STATE(2102), 1, + sym__immediate_decimal, + ACTIONS(4390), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4392), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2185), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1738), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1734), 29, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [33418] = 14, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [47739] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4247), 1, anon_sym_oneof, - ACTIONS(3934), 1, + ACTIONS(4394), 1, sym__newline, - ACTIONS(3936), 1, + ACTIONS(4396), 1, anon_sym_RBRACK, - STATE(1688), 1, + STATE(1913), 1, sym_comment, - STATE(1726), 1, + STATE(1948), 1, aux_sym__types_body_repeat1, - STATE(1797), 1, + STATE(2041), 1, aux_sym__types_body_repeat3, - STATE(4496), 1, + STATE(4627), 1, sym__one_type, - STATE(4821), 1, + STATE(5079), 1, sym__type_annotation, - STATE(4842), 1, + STATE(5293), 1, sym__types_body, - ACTIONS(3749), 2, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -167707,89 +186158,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [33495] = 12, + [47816] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(4358), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(4374), 1, anon_sym_PLUS2, - STATE(1689), 1, + STATE(1914), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(2725), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(4370), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(4372), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(4376), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3920), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 22, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33568] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - STATE(1690), 1, - sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3912), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2533), 36, + ACTIONS(2723), 34, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167821,46 +186214,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33635] = 13, + [47885] = 19, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(2954), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4291), 1, + anon_sym_DASH_DASH, + STATE(1915), 1, + sym_comment, + STATE(1934), 1, + aux_sym_decl_def_repeat1, + STATE(2213), 1, + sym__val_number_decimal, + STATE(2364), 1, + sym_long_flag, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(3927), 1, + sym__command_name, + ACTIONS(4293), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4295), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4079), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [47972] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(4358), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(4374), 1, anon_sym_PLUS2, - STATE(1691), 1, + STATE(1916), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(4356), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(4370), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(4372), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(4376), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(4366), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(4368), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(4354), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167869,7 +186328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 18, + ACTIONS(2723), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167888,43 +186347,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33710] = 14, + [48047] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(4358), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(4374), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(4378), 1, anon_sym_bit_DASHand2, - STATE(1692), 1, + STATE(1917), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(4356), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(4370), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(4372), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(4376), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(4366), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(4368), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(4354), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167933,7 +186392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 17, + ACTIONS(2723), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167951,46 +186410,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33787] = 15, + [48124] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, - ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, - STATE(1693), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1819), 1, + sym__unquoted_pattern, + STATE(1918), 1, sym_comment, - ACTIONS(3904), 2, + STATE(2148), 1, + sym__immediate_decimal, + ACTIONS(4384), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4386), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(749), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1803), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3912), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3922), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + anon_sym_PLUS2, + ACTIONS(1801), 30, anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -167998,66 +186453,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 16, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33866] = 19, + [48195] = 19, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(2916), 1, + ACTIONS(2701), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, + ACTIONS(4291), 1, anon_sym_DASH_DASH, - STATE(1694), 1, + STATE(1919), 1, sym_comment, - STATE(1710), 1, + STATE(1923), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2364), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(3629), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(3890), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(4293), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(4295), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(4079), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -168083,80 +186538,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33953] = 12, + [48282] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3938), 1, - anon_sym_DOT, - STATE(1695), 1, + ACTIONS(4358), 1, + anon_sym_DASH2, + ACTIONS(4362), 1, + anon_sym_and2, + ACTIONS(4374), 1, + anon_sym_PLUS2, + ACTIONS(4378), 1, + anon_sym_bit_DASHand2, + ACTIONS(4380), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4382), 1, + anon_sym_bit_DASHor2, + STATE(1920), 1, sym_comment, - STATE(1855), 1, - sym__immediate_decimal, - ACTIONS(3940), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1963), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(4356), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4360), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4370), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4372), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4376), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4366), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4368), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [34026] = 5, + ACTIONS(4354), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2723), 14, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, + anon_sym_or2, + [48365] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1696), 1, + ACTIONS(4358), 1, + anon_sym_DASH2, + ACTIONS(4374), 1, + anon_sym_PLUS2, + STATE(1921), 1, sym_comment, - ACTIONS(2565), 5, + ACTIONS(2725), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4360), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3757), 12, + ACTIONS(4370), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4372), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2723), 36, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -168168,9 +186639,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2563), 29, - anon_sym_in, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168189,48 +186657,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34085] = 11, + [48432] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(1697), 1, + ACTIONS(4358), 1, + anon_sym_DASH2, + ACTIONS(4374), 1, + anon_sym_PLUS2, + STATE(1922), 1, sym_comment, - STATE(1919), 1, - sym__immediate_decimal, - ACTIONS(3900), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(4356), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4360), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 30, + ACTIONS(4370), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4372), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4376), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4366), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2723), 30, + ts_builtin_sym_end, anon_sym_in, sym__newline, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168241,134 +186715,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34156] = 19, + [48503] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4398), 1, anon_sym_DASH_DASH, - STATE(1698), 1, + STATE(1923), 1, sym_comment, - STATE(2081), 1, + STATE(2197), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2364), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(3691), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [34242] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, - anon_sym_DASH_DASH, - STATE(1698), 1, - aux_sym_decl_def_repeat1, - STATE(1699), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, + STATE(3770), 1, sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3658), 1, + STATE(3895), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(4079), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4081), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168392,117 +186789,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34328] = 19, + [48589] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, - anon_sym_DASH_DASH, - STATE(1700), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1742), 1, + anon_sym_DOT, + STATE(1924), 1, sym_comment, - STATE(1702), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3654), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, + STATE(2188), 1, + sym__immediate_decimal, + ACTIONS(4390), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4392), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2185), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1738), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1734), 29, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [34414] = 19, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [48659] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4398), 1, anon_sym_DASH_DASH, - STATE(1701), 1, + STATE(1925), 1, sym_comment, - STATE(1709), 1, + STATE(1931), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2364), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(3627), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(3833), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(4079), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4081), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168526,50 +186915,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34500] = 19, + [48745] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4398), 1, anon_sym_DASH_DASH, - STATE(1702), 1, + STATE(1926), 1, sym_comment, - STATE(2081), 1, + STATE(2197), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2364), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(3657), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(3838), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(4079), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4081), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168593,50 +186982,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34586] = 19, + [48831] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1568), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1570), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1572), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1582), 1, sym_raw_string_begin, - ACTIONS(3784), 1, + ACTIONS(4255), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, + ACTIONS(4297), 1, sym__newline, - STATE(1703), 1, + STATE(1927), 1, sym_comment, - STATE(1763), 1, + STATE(1975), 1, aux_sym__command_list_body_repeat1, - STATE(2107), 1, + STATE(2332), 1, sym__val_number_decimal, - STATE(2121), 1, + STATE(2358), 1, aux_sym__types_body_repeat1, - STATE(4615), 1, + STATE(4668), 1, sym__command_name, - STATE(4710), 1, + STATE(4909), 1, sym_cmd_identifier, - STATE(4711), 1, + STATE(4913), 1, sym_val_string, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, + ACTIONS(4251), 2, anon_sym_export, anon_sym_in, - STATE(3505), 4, + STATE(3705), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(4253), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168660,29 +187049,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34672] = 6, + [48917] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3946), 1, - anon_sym_DOT, - ACTIONS(3948), 1, - aux_sym__immediate_decimal_token5, - STATE(1704), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1774), 1, + sym__unquoted_pattern, + STATE(1928), 1, sym_comment, - ACTIONS(739), 8, + STATE(2203), 1, + sym__immediate_decimal, + ACTIONS(4400), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4402), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(731), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1738), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, + ACTIONS(1734), 29, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168701,7 +187099,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -168711,39 +187108,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [34732] = 11, + [48987] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1600), 1, - anon_sym_DOT, - STATE(1705), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + STATE(1929), 1, sym_comment, - STATE(1957), 1, + STATE(2205), 1, sym__immediate_decimal, - ACTIONS(3940), 2, + ACTIONS(4400), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, + ACTIONS(4402), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1963), 2, + STATE(749), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1803), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + ACTIONS(1801), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168773,16 +187167,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34802] = 6, + [49057] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3950), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3952), 1, + ACTIONS(4404), 1, + anon_sym_DOT, + ACTIONS(4406), 1, aux_sym__immediate_decimal_token5, - STATE(1706), 1, + STATE(1930), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(767), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -168791,7 +187185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 35, + ACTIONS(769), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -168827,95 +187221,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [34862] = 11, + [49117] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(1707), 1, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4398), 1, + anon_sym_DASH_DASH, + STATE(1931), 1, sym_comment, - STATE(1978), 1, - sym__immediate_decimal, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 29, + STATE(2197), 1, + aux_sym_decl_def_repeat1, + STATE(2213), 1, + sym__val_number_decimal, + STATE(2364), 1, + sym_long_flag, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(3923), 1, + sym__command_name, + ACTIONS(4079), 2, + anon_sym_export, anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [34932] = 11, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4081), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [49203] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(1708), 1, + ACTIONS(1787), 1, + anon_sym_DOT, + STATE(1932), 1, sym_comment, - STATE(2092), 1, + STATE(2166), 1, sym__immediate_decimal, - ACTIONS(3954), 2, + ACTIONS(4390), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(4392), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(2190), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1785), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 29, + ACTIONS(1783), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168945,50 +187347,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35002] = 19, + [49273] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4398), 1, anon_sym_DASH_DASH, - STATE(1709), 1, - sym_comment, - STATE(2081), 1, + STATE(1926), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1933), 1, + sym_comment, + STATE(2213), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2364), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(3633), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(3913), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(4079), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4081), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169012,50 +187414,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35088] = 19, + [49359] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4398), 1, anon_sym_DASH_DASH, - STATE(1710), 1, + STATE(1934), 1, sym_comment, - STATE(2081), 1, + STATE(2197), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2364), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(3666), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(3884), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(4079), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4081), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169079,38 +187481,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35174] = 11, + [49445] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - STATE(1711), 1, - sym_comment, - STATE(1962), 1, - sym__immediate_decimal, - ACTIONS(3940), 2, + ACTIONS(4408), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1961), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 6, + ACTIONS(4410), 1, + aux_sym__immediate_decimal_token5, + STATE(1935), 1, + sym_comment, + ACTIONS(759), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1582), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(761), 35, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169129,6 +187522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -169138,50 +187532,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35244] = 19, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [49505] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4398), 1, + anon_sym_DASH_DASH, + STATE(1936), 1, + sym_comment, + STATE(1937), 1, + aux_sym_decl_def_repeat1, + STATE(2213), 1, + sym__val_number_decimal, + STATE(2364), 1, + sym_long_flag, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(3893), 1, + sym__command_name, + ACTIONS(4079), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4081), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [49591] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4398), 1, + anon_sym_DASH_DASH, + STATE(1937), 1, + sym_comment, + STATE(2197), 1, + aux_sym_decl_def_repeat1, + STATE(2213), 1, + sym__val_number_decimal, + STATE(2364), 1, + sym_long_flag, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(3897), 1, + sym__command_name, + ACTIONS(4079), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4081), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [49677] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4398), 1, anon_sym_DASH_DASH, - STATE(1712), 1, + STATE(1938), 1, sym_comment, - STATE(1714), 1, + STATE(1939), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2364), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(3716), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(3900), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(4079), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4081), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169205,50 +187736,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35330] = 19, + [49763] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(4398), 1, anon_sym_DASH_DASH, - STATE(1713), 1, + STATE(1939), 1, sym_comment, - STATE(2081), 1, + STATE(2197), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2364), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(3628), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(3903), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(4079), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4081), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [49849] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4412), 1, + anon_sym_DOT2, + STATE(1940), 1, + sym_comment, + STATE(1978), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2068), 1, + sym_path, + STATE(2087), 1, + sym_cell_path, + ACTIONS(1588), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1590), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169272,50 +187845,173 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35416] = 19, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [49912] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4394), 1, + sym__newline, + ACTIONS(4418), 1, + anon_sym_list, + ACTIONS(4420), 1, + anon_sym_oneof, + STATE(1941), 1, + sym_comment, + STATE(1976), 1, + aux_sym__types_body_repeat1, + STATE(2056), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4700), 1, + sym__all_type, + STATE(5022), 1, + sym__composite_argument_body, + ACTIONS(4416), 2, + anon_sym_table, + anon_sym_record, + STATE(4580), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4414), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [49983] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(4412), 1, + anon_sym_DOT2, + STATE(1942), 1, + sym_comment, + STATE(1978), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2068), 1, + sym_path, + STATE(2071), 1, + sym_cell_path, + ACTIONS(1823), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1821), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [50046] = 17, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(2818), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2828), 1, + anon_sym_COLON2, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, - anon_sym_DASH_DASH, - STATE(1714), 1, + STATE(1943), 1, sym_comment, - STATE(2081), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(3648), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(4547), 1, sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4293), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4295), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4079), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169333,40 +188029,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35502] = 10, + [50127] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - STATE(722), 1, + STATE(730), 1, sym__immediate_decimal, - STATE(1715), 1, + STATE(1944), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(4400), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(4402), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(721), 2, + STATE(729), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 6, + ACTIONS(1785), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1582), 29, + ACTIONS(1783), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -169396,98 +188093,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35569] = 17, - ACTIONS(103), 1, + [50194] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1716), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + STATE(744), 1, + sym__immediate_decimal, + STATE(1945), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3845), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(4400), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4402), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(743), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1833), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1831), 29, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [35650] = 10, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [50261] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - STATE(896), 1, + STATE(746), 1, sym__immediate_decimal, - STATE(1717), 1, + STATE(1946), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(4400), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(4402), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(745), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1837), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + ACTIONS(1835), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -169517,37 +188207,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35717] = 11, + [50328] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(3958), 1, - anon_sym_DOT_DOT2, - ACTIONS(3962), 1, - sym_filesize_unit, - ACTIONS(3964), 1, - sym_duration_unit, - STATE(1718), 1, + STATE(748), 1, + sym__immediate_decimal, + STATE(1947), 1, sym_comment, - STATE(4739), 1, + ACTIONS(4400), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4402), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(747), 2, sym__expr_parenthesized_immediate, - ACTIONS(3960), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + sym_val_variable, + ACTIONS(1841), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 31, + ACTIONS(1839), 29, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169575,34 +188264,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35786] = 12, + [50395] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3970), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(4247), 1, anon_sym_oneof, - STATE(1719), 1, + ACTIONS(4394), 1, + sym__newline, + STATE(1948), 1, sym_comment, - STATE(1746), 1, + STATE(2026), 1, + aux_sym__types_body_repeat3, + STATE(2183), 1, aux_sym__types_body_repeat1, - STATE(1831), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, - sym__all_type, - STATE(4925), 1, - sym__composite_argument_body, - ACTIONS(3968), 2, + STATE(4706), 1, + sym__one_type, + STATE(5079), 1, + sym__type_annotation, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -169634,98 +188323,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [35857] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3974), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3976), 1, - aux_sym__immediate_decimal_token5, - STATE(1720), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [35916] = 17, + [50466] = 17, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(2664), 1, + ACTIONS(2818), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2828), 1, anon_sym_COLON2, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - STATE(1721), 1, + STATE(1949), 1, sym_comment, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(4836), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(3980), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(4293), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(4295), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(4079), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -169751,27 +188387,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35997] = 5, + [50547] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - aux_sym__immediate_decimal_token5, - STATE(1722), 1, + ACTIONS(4394), 1, + sym__newline, + ACTIONS(4418), 1, + anon_sym_list, + ACTIONS(4420), 1, + anon_sym_oneof, + STATE(1950), 1, + sym_comment, + STATE(1976), 1, + aux_sym__types_body_repeat1, + STATE(2056), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4700), 1, + sym__all_type, + STATE(5421), 1, + sym__composite_argument_body, + ACTIONS(4416), 2, + anon_sym_table, + anon_sym_record, + STATE(4580), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4414), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [50618] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + STATE(963), 1, + sym__immediate_decimal, + STATE(1951), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(4400), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4402), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(731), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1738), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, + ACTIONS(1734), 29, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169790,7 +188494,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -169800,37 +188503,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [36054] = 10, + [50685] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - STATE(925), 1, + STATE(936), 1, sym__immediate_decimal, - STATE(1723), 1, + STATE(1952), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(4400), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(4402), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(749), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1803), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 29, + ACTIONS(1801), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -169860,78 +188560,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36121] = 17, - ACTIONS(103), 1, + [50752] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1724), 1, + ACTIONS(4394), 1, + sym__newline, + ACTIONS(4418), 1, + anon_sym_list, + ACTIONS(4420), 1, + anon_sym_oneof, + STATE(1953), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4171), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [36202] = 5, + STATE(1976), 1, + aux_sym__types_body_repeat1, + STATE(2056), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4700), 1, + sym__all_type, + STATE(5390), 1, + sym__composite_argument_body, + ACTIONS(4416), 2, + anon_sym_table, + anon_sym_record, + STATE(4580), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4414), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [50823] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3948), 1, + ACTIONS(4422), 1, aux_sym__immediate_decimal_token5, - STATE(1725), 1, + STATE(1954), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(775), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -169940,7 +188635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 35, + ACTIONS(777), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -169976,83 +188671,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [36259] = 12, + [50880] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3934), 1, - sym__newline, - STATE(1726), 1, + ACTIONS(4424), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4426), 1, + aux_sym__immediate_decimal_token5, + STATE(1955), 1, sym_comment, - STATE(1783), 1, - aux_sym__types_body_repeat3, - STATE(1934), 1, - aux_sym__types_body_repeat1, - STATE(4557), 1, - sym__one_type, - STATE(4821), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [36330] = 8, + ACTIONS(759), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(761), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [50939] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1727), 1, + ACTIONS(4428), 1, + anon_sym_QMARK2, + ACTIONS(4430), 1, + anon_sym_BANG, + STATE(1956), 1, sym_comment, - STATE(1742), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - STATE(1862), 1, - sym_cell_path, - ACTIONS(1681), 3, + STATE(2051), 1, + sym__path_suffix, + ACTIONS(1594), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1679), 37, + anon_sym_DOT2, + ACTIONS(1596), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170090,36 +188778,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36393] = 10, + [51000] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(737), 1, - sym__immediate_decimal, - STATE(1728), 1, + ACTIONS(4406), 1, + aux_sym__immediate_decimal_token5, + STATE(1957), 1, sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(736), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1669), 6, + ACTIONS(767), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1667), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(769), 35, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -170138,6 +188817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -170147,36 +188827,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36460] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [51057] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1890), 1, anon_sym_LPAREN2, - STATE(739), 1, - sym__immediate_decimal, - STATE(1729), 1, + ACTIONS(1900), 1, + sym__unquoted_pattern, + ACTIONS(4432), 1, + anon_sym_DOT_DOT2, + ACTIONS(4436), 1, + sym_filesize_unit, + ACTIONS(4438), 1, + sym_duration_unit, + STATE(1958), 1, sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(738), 2, + STATE(4976), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 6, + ACTIONS(4434), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(815), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1671), 29, + ACTIONS(904), 31, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -170204,35 +188888,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36527] = 10, + [51126] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(741), 1, - sym__immediate_decimal, - STATE(1730), 1, + ACTIONS(4412), 1, + anon_sym_DOT2, + STATE(1959), 1, sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(740), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 6, + STATE(1978), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2068), 1, + sym_path, + STATE(2101), 1, + sym_cell_path, + ACTIONS(1809), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1807), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [51189] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4440), 1, + anon_sym_DOT, + ACTIONS(4442), 1, + aux_sym__immediate_decimal_token5, + STATE(1960), 1, + sym_comment, + ACTIONS(767), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1675), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(769), 34, anon_sym_in, + anon_sym_DASH2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -170252,6 +188983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -170261,93 +188993,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36594] = 12, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [51248] = 17, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1731), 1, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(2818), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2828), 1, + anon_sym_COLON2, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + STATE(1961), 1, sym_comment, - STATE(1746), 1, - aux_sym__types_body_repeat1, - STATE(1831), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, - sym__all_type, - STATE(4808), 1, - sym__composite_argument_body, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [36665] = 12, + STATE(2213), 1, + sym__val_number_decimal, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(5066), 1, + sym__command_name, + ACTIONS(4293), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4295), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4079), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [51329] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + STATE(1962), 1, + sym_comment, + STATE(2213), 1, + sym__val_number_decimal, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(5177), 1, + sym__command_name, + ACTIONS(4293), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4295), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4079), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [51407] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3970), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(4247), 1, anon_sym_oneof, - STATE(1732), 1, + ACTIONS(4444), 1, + anon_sym_GT2, + ACTIONS(4446), 1, + anon_sym_AT2, + STATE(1963), 1, sym_comment, - STATE(1746), 1, - aux_sym__types_body_repeat1, - STATE(1831), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, + STATE(4575), 1, sym__all_type, - STATE(5027), 1, - sym__composite_argument_body, - ACTIONS(3968), 2, + STATE(5309), 1, + sym_param_completer, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4978), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170379,134 +189179,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36736] = 7, - ACTIONS(3), 1, + [51475] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3982), 1, - anon_sym_QMARK2, - ACTIONS(3984), 1, - anon_sym_BANG, - STATE(1733), 1, - sym_comment, - STATE(1833), 1, - sym__path_suffix, - ACTIONS(1446), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + ACTIONS(1946), 1, anon_sym_DQUOTE, + ACTIONS(1948), 1, anon_sym_SQUOTE, + ACTIONS(1950), 1, anon_sym_BQUOTE, - [36797] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1734), 1, - sym_comment, - STATE(1742), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - STATE(1866), 1, - sym_cell_path, - ACTIONS(1643), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1641), 37, + ACTIONS(1952), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + STATE(1964), 1, + sym_comment, + STATE(2213), 1, + sym__val_number_decimal, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(5066), 1, + sym__command_name, + ACTIONS(4293), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(4295), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [36860] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1735), 1, - sym_comment, - STATE(1742), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - STATE(1858), 1, - sym_cell_path, - ACTIONS(1432), 3, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4079), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1434), 37, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170524,104 +189234,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [36923] = 6, + [51553] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, - anon_sym_DOT, - ACTIONS(3988), 1, - aux_sym__immediate_decimal_token5, - STATE(1736), 1, - sym_comment, - ACTIONS(739), 8, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4446), 1, + anon_sym_AT2, + ACTIONS(4448), 1, anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [36982] = 11, + STATE(1965), 1, + sym_comment, + STATE(4690), 1, + sym__all_type, + STATE(5419), 1, + sym_param_completer, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4978), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [51621] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4247), 1, anon_sym_oneof, - ACTIONS(3990), 1, - anon_sym_GT2, - ACTIONS(3992), 1, + ACTIONS(4446), 1, anon_sym_AT2, - STATE(1737), 1, + ACTIONS(4450), 1, + anon_sym_GT2, + STATE(1966), 1, sym_comment, - STATE(4431), 1, + STATE(4699), 1, sym__all_type, - STATE(4807), 1, + STATE(5019), 1, sym_param_completer, - ACTIONS(3749), 2, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(4712), 4, + STATE(4978), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170653,24 +189355,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [37050] = 8, + [51689] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, + ACTIONS(4452), 1, anon_sym_DOT2, - STATE(1738), 1, + STATE(1967), 1, sym_comment, - STATE(1812), 1, + STATE(2049), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, + STATE(2103), 1, sym_path, - STATE(1908), 1, + STATE(2107), 1, sym_cell_path, - ACTIONS(1681), 3, + ACTIONS(1823), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1679), 36, + ACTIONS(1821), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -170707,36 +189409,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37112] = 11, + [51751] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(3996), 1, - anon_sym_DOT_DOT2, - ACTIONS(4000), 1, - sym_filesize_unit, - ACTIONS(4002), 1, - sym_duration_unit, - STATE(1739), 1, + ACTIONS(4454), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4456), 1, + aux_sym__immediate_decimal_token5, + STATE(1968), 1, sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3998), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + ACTIONS(1922), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 30, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1920), 34, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -170755,6 +189449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -170764,7 +189459,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [37180] = 16, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [51809] = 16, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(93), 1, @@ -170775,32 +189472,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(2916), 1, + ACTIONS(2954), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3669), 1, + ACTIONS(4129), 1, aux_sym_cmd_identifier_token1, - STATE(1740), 1, + STATE(1969), 1, sym_comment, - STATE(1976), 1, + STATE(2219), 1, sym__val_number_decimal, - STATE(3951), 1, + STATE(4150), 1, sym__command_name, - STATE(4246), 1, + STATE(4431), 1, sym_cmd_identifier, - STATE(4248), 1, + STATE(4432), 1, sym_val_string, - ACTIONS(3768), 2, + ACTIONS(4293), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(4295), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(480), 4, + STATE(494), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3665), 25, + ACTIONS(4125), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -170826,26 +189523,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [37258] = 8, + [51887] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, + ACTIONS(4458), 1, anon_sym_DOT2, - STATE(1741), 1, + STATE(2068), 1, + sym_path, + STATE(1970), 2, sym_comment, - STATE(1812), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - STATE(1898), 1, - sym_cell_path, - ACTIONS(1643), 3, + ACTIONS(1642), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 36, + ACTIONS(1644), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170872,6 +189565,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -170880,23 +189575,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37320] = 7, + [51945] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1742), 1, + ACTIONS(4461), 1, + anon_sym_QMARK2, + ACTIONS(4463), 1, + anon_sym_BANG, + STATE(1971), 1, sym_comment, - STATE(1743), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - ACTIONS(1458), 3, + STATE(2088), 1, + sym__path_suffix, + ACTIONS(1594), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1460), 37, + anon_sym_DOT2, + ACTIONS(1596), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170923,8 +189620,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -170933,22 +189628,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37380] = 6, + [52005] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4004), 1, - anon_sym_DOT2, - STATE(1825), 1, - sym_path, - STATE(1743), 2, + ACTIONS(1568), 1, + anon_sym_DQUOTE, + ACTIONS(1570), 1, + anon_sym_SQUOTE, + ACTIONS(1572), 1, + anon_sym_BQUOTE, + ACTIONS(1582), 1, + sym_raw_string_begin, + ACTIONS(4255), 1, + aux_sym_cmd_identifier_token1, + STATE(1972), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + STATE(1989), 1, + aux_sym__command_list_body_repeat1, + STATE(2332), 1, + sym__val_number_decimal, + STATE(4672), 1, + sym__command_name, + STATE(4909), 1, + sym_cmd_identifier, + STATE(4913), 1, + sym_val_string, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4251), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1526), 37, - sym_raw_string_begin, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4253), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170972,37 +189691,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + [52085] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1946), 1, anon_sym_DQUOTE, + ACTIONS(1948), 1, anon_sym_SQUOTE, + ACTIONS(1950), 1, anon_sym_BQUOTE, - [37438] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4007), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - aux_sym__immediate_decimal_token5, - STATE(1744), 1, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + STATE(1973), 1, sym_comment, - ACTIONS(739), 6, + STATE(2213), 1, + sym__val_number_decimal, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(4547), 1, + sym__command_name, + ACTIONS(4293), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4295), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4079), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171020,106 +189746,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + [52163] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(2954), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + STATE(1974), 1, + sym_comment, + STATE(2213), 1, + sym__val_number_decimal, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(4275), 1, + sym__command_name, + ACTIONS(4293), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(4295), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4079), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [52241] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1568), 1, anon_sym_DQUOTE, + ACTIONS(1570), 1, anon_sym_SQUOTE, + ACTIONS(1572), 1, anon_sym_BQUOTE, - [37496] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(4011), 1, - anon_sym_GT2, - STATE(1745), 1, + ACTIONS(1582), 1, + sym_raw_string_begin, + ACTIONS(4255), 1, + aux_sym_cmd_identifier_token1, + STATE(1975), 1, sym_comment, - STATE(4402), 1, - sym__all_type, - STATE(5025), 1, - sym_param_completer, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4712), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [37564] = 11, + STATE(1989), 1, + aux_sym__command_list_body_repeat1, + STATE(2332), 1, + sym__val_number_decimal, + STATE(4716), 1, + sym__command_name, + STATE(4909), 1, + sym_cmd_identifier, + STATE(4913), 1, + sym_val_string, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4251), 2, + anon_sym_export, + anon_sym_in, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4253), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [52321] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, + ACTIONS(4394), 1, sym__newline, - ACTIONS(3970), 1, + ACTIONS(4418), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(4420), 1, anon_sym_oneof, - STATE(1746), 1, + STATE(1976), 1, sym_comment, - STATE(1828), 1, + STATE(2062), 1, aux_sym__composite_argument_body_repeat1, - STATE(1934), 1, + STATE(2183), 1, aux_sym__types_body_repeat1, - STATE(4482), 1, + STATE(4659), 1, sym__all_type, - ACTIONS(3968), 2, + ACTIONS(4416), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4580), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(4414), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -171151,28 +189935,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [37632] = 6, + [52389] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4013), 1, - anon_sym_DOT, - ACTIONS(4015), 1, - aux_sym__immediate_decimal_token5, - STATE(1747), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(1900), 1, + sym__unquoted_pattern, + ACTIONS(4465), 1, + anon_sym_DOT_DOT2, + ACTIONS(4469), 1, + sym_filesize_unit, + ACTIONS(4471), 1, + sym_duration_unit, + STATE(1977), 1, sym_comment, - ACTIONS(1738), 7, + STATE(4976), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4467), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(815), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 34, + ACTIONS(904), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -171191,7 +189983,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -171201,71 +189992,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [37690] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4019), 1, - aux_sym__immediate_decimal_token5, - STATE(1748), 1, - sym_comment, - ACTIONS(747), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [37748] = 4, + [52457] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1749), 1, + ACTIONS(4412), 1, + anon_sym_DOT2, + STATE(1970), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1978), 1, sym_comment, - ACTIONS(1478), 4, + STATE(2068), 1, + sym_path, + ACTIONS(1651), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1480), 39, + ACTIONS(1653), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171303,19 +190045,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37802] = 4, + [52517] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1750), 1, + STATE(1979), 1, sym_comment, - ACTIONS(1543), 4, + ACTIONS(1700), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1545), 39, + ACTIONS(1702), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171355,18 +190095,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37856] = 4, + [52571] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1751), 1, + ACTIONS(4452), 1, + anon_sym_DOT2, + STATE(1980), 1, sym_comment, - ACTIONS(1466), 4, + STATE(2049), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2103), 1, + sym_path, + STATE(2123), 1, + sym_cell_path, + ACTIONS(1588), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1468), 39, + ACTIONS(1590), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171393,8 +190141,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -171403,19 +190149,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37910] = 4, + [52633] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1752), 1, + ACTIONS(4473), 1, + anon_sym_DOT, + ACTIONS(4475), 1, + aux_sym__immediate_decimal_token5, + STATE(1981), 1, sym_comment, - ACTIONS(1470), 4, + ACTIONS(767), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1472), 39, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(769), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171440,58 +190190,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37964] = 16, + [52691] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2701), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - STATE(1753), 1, + STATE(1982), 1, sym_comment, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(4950), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(4994), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(4293), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(4295), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(4079), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171517,93 +190263,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38042] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1754), 1, - sym_comment, - ACTIONS(1514), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1516), 39, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [38096] = 16, + [52769] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(2916), 1, + ACTIONS(2701), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - STATE(1755), 1, + STATE(1983), 1, sym_comment, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(5195), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(5253), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(4293), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(4295), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(4079), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171629,44 +190325,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38174] = 16, - ACTIONS(103), 1, + [52847] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1756), 1, + STATE(1984), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5197), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(1668), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1670), 39, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171684,291 +190354,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38252] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1757), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38306] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(4021), 1, - anon_sym_GT2, - STATE(1758), 1, - sym_comment, - STATE(4541), 1, - sym__all_type, - STATE(4897), 1, - sym_param_completer, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4712), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [38374] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1759), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38428] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1760), 1, - sym_comment, - ACTIONS(849), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(851), 35, - anon_sym_in, sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38482] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3988), 1, - aux_sym__immediate_decimal_token5, - STATE(1761), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38538] = 5, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [52901] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4023), 1, + ACTIONS(4477), 1, + anon_sym_DOT, + ACTIONS(4479), 1, aux_sym__immediate_decimal_token5, - STATE(1762), 1, + STATE(1985), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(1884), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 34, + ACTIONS(1882), 34, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -171999,47 +190427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38594] = 17, + [52959] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - STATE(1763), 1, + STATE(1986), 1, sym_comment, - STATE(1764), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4568), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, + ACTIONS(1672), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, + anon_sym_DOT2, + ACTIONS(1674), 39, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172063,45 +190462,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38674] = 16, - ACTIONS(3), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [53013] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4031), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4040), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(4043), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(4046), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(4049), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - STATE(2107), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + STATE(1987), 1, + sym_comment, + STATE(2213), 1, sym__val_number_decimal, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, + STATE(3723), 1, sym_val_string, - STATE(4744), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(3980), 1, sym__command_name, - ACTIONS(4025), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(4034), 2, + ACTIONS(4293), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4037), 2, + ACTIONS(4295), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(1764), 2, - sym_comment, - aux_sym__command_list_body_repeat1, - STATE(3505), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4028), 23, + ACTIONS(4079), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172119,30 +190532,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38752] = 6, + [53091] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4052), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4054), 1, - aux_sym__immediate_decimal_token5, - STATE(1765), 1, + STATE(1988), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(759), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1726), 34, + ACTIONS(761), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -172177,44 +190588,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [38810] = 16, - ACTIONS(103), 1, + sym_duration_unit, + [53145] = 16, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(4487), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4496), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(4499), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(4502), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(4505), 1, sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1766), 1, - sym_comment, - STATE(2099), 1, + STATE(2332), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(4834), 1, + sym__command_name, + STATE(4909), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(4913), 1, sym_val_string, - STATE(4836), 1, - sym__command_name, - ACTIONS(3768), 2, + ACTIONS(4481), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4490), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(4493), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(1989), 2, + sym_comment, + aux_sym__command_list_body_repeat1, + STATE(3705), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, + ACTIONS(4484), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172232,50 +190645,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38888] = 16, + [53223] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2701), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - STATE(1767), 1, + STATE(1990), 1, sym_comment, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(4171), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(5222), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(4293), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(4295), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(4079), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -172301,44 +190713,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38966] = 16, - ACTIONS(103), 1, + [53301] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1768), 1, + STATE(1991), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3845), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(1676), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1678), 39, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172356,170 +190742,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39044] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3745), 1, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - STATE(1769), 1, - sym_comment, - STATE(4849), 1, - sym__type_annotation, - STATE(5087), 1, - sym__one_type, - STATE(5102), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [39112] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - STATE(1764), 1, - aux_sym__command_list_body_repeat1, - STATE(1770), 1, - sym_comment, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4374), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - ACTIONS(3649), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39192] = 16, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [53355] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(2916), 1, + ACTIONS(2954), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - STATE(1771), 1, + STATE(1992), 1, sym_comment, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(4092), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(5023), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(4293), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(4295), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(4079), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -172545,25 +190825,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39270] = 7, + [53433] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4056), 1, - anon_sym_QMARK2, - ACTIONS(4058), 1, - anon_sym_BANG, - STATE(1772), 1, + STATE(1993), 1, sym_comment, - STATE(1867), 1, - sym__path_suffix, - ACTIONS(1446), 4, + ACTIONS(1680), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1448), 36, + ACTIONS(1682), 39, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172590,6 +190863,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -172598,44 +190873,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39330] = 16, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [53487] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1773), 1, + STATE(1994), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5023), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(1686), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1688), 39, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172653,31 +190904,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39408] = 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [53541] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, + ACTIONS(4452), 1, anon_sym_DOT2, - STATE(1774), 1, + STATE(1995), 1, sym_comment, - STATE(1812), 1, + STATE(2049), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, + STATE(2103), 1, sym_path, - STATE(1896), 1, + STATE(2117), 1, sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(1809), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 36, + ACTIONS(1807), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -172714,79 +190979,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39470] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1775), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5033), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39548] = 4, + [53603] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1776), 1, + ACTIONS(4508), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4510), 1, + aux_sym__immediate_decimal_token5, + STATE(1996), 1, sym_comment, - ACTIONS(1474), 4, + ACTIONS(759), 7, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1476), 39, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(761), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -172811,27 +191021,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [39602] = 4, + [53661] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1777), 1, + STATE(1997), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(894), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -172840,10 +191045,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 34, + ACTIONS(896), 35, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -172875,351 +191081,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [39655] = 16, + [53715] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1778), 1, + ACTIONS(4512), 1, + aux_sym__immediate_decimal_token5, + STATE(1998), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4084), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, + ACTIONS(775), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(777), 34, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39732] = 16, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [53771] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1779), 1, + ACTIONS(4442), 1, + aux_sym__immediate_decimal_token5, + STATE(1999), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4959), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, + ACTIONS(767), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(769), 34, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39809] = 4, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [53827] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1780), 1, + STATE(2000), 1, sym_comment, - ACTIONS(1478), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1480), 38, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(775), 8, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [39862] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1781), 1, - sym_comment, - ACTIONS(4060), 42, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(777), 35, + anon_sym_in, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, + anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_RBRACE, - [39913] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [53881] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1782), 1, - sym_comment, - ACTIONS(4062), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4239), 1, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [39964] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4247), 1, anon_sym_oneof, - STATE(1783), 1, + STATE(2001), 1, sym_comment, - STATE(1784), 1, - aux_sym__types_body_repeat3, - STATE(4531), 1, - sym__one_type, - STATE(4821), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40029] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4070), 1, - anon_sym_list, - ACTIONS(4073), 1, - anon_sym_oneof, - STATE(4701), 1, + STATE(5218), 1, sym__one_type, - STATE(4821), 1, + STATE(5227), 1, + sym__multiple_types, + STATE(5418), 1, sym__type_annotation, - ACTIONS(4067), 2, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(1784), 2, - sym_comment, - aux_sym__types_body_repeat3, - STATE(4281), 4, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4064), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173251,129 +191290,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40092] = 16, + [53949] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1785), 1, + STATE(2002), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4138), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, + ACTIONS(894), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(896), 34, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [40169] = 4, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [54002] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1786), 1, + STATE(2003), 1, sym_comment, - ACTIONS(1543), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1545), 38, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(759), 8, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40222] = 4, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(761), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [54055] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1787), 1, + ACTIONS(4475), 1, + aux_sym__immediate_decimal_token5, + STATE(2004), 1, sym_comment, - ACTIONS(1466), 4, + ACTIONS(767), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1468), 38, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(769), 35, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173397,43 +191427,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40275] = 10, + [54110] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4247), 1, anon_sym_oneof, - ACTIONS(4076), 1, + ACTIONS(4514), 1, sym__newline, - STATE(1788), 1, + STATE(2005), 1, sym_comment, - STATE(1970), 1, + STATE(2021), 1, aux_sym__repeat_newline, - STATE(4401), 1, + STATE(4782), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173465,30 +191493,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40340] = 10, + [54175] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(4076), 1, + ACTIONS(4479), 1, + aux_sym__immediate_decimal_token5, + STATE(2006), 1, + sym_comment, + ACTIONS(1884), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1882), 34, + anon_sym_in, sym__newline, - STATE(1789), 1, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [54230] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2007), 1, sym_comment, - STATE(1791), 1, - aux_sym__repeat_newline, - STATE(4408), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4516), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173518,93 +191583,89 @@ 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, - [40405] = 16, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [54281] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - STATE(1790), 1, + ACTIONS(4518), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4520), 1, + aux_sym__immediate_decimal_token5, + STATE(2008), 1, sym_comment, - STATE(1976), 1, - sym__val_number_decimal, - STATE(3942), 1, - sym__command_name, - STATE(4246), 1, - sym_cmd_identifier, - STATE(4248), 1, - sym_val_string, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, - anon_sym_export, + ACTIONS(1922), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1920), 33, anon_sym_in, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3667), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [40482] = 10, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [54338] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(4514), 1, + sym__newline, + ACTIONS(4526), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4528), 1, anon_sym_oneof, - ACTIONS(4076), 1, - sym__newline, - STATE(1791), 1, + STATE(2009), 1, sym_comment, - STATE(1970), 1, + STATE(2198), 1, aux_sym__repeat_newline, - STATE(4552), 1, + STATE(3279), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(4524), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(3361), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4522), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173636,17 +191697,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40547] = 3, + [54403] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1792), 1, - sym_comment, - ACTIONS(4078), 42, + ACTIONS(4514), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(4526), 1, + anon_sym_list, + ACTIONS(4528), 1, + anon_sym_oneof, + STATE(2010), 1, + sym_comment, + STATE(2016), 1, + aux_sym__repeat_newline, + STATE(3167), 1, + sym__type_annotation, + ACTIONS(4524), 2, + anon_sym_table, + anon_sym_record, + STATE(3361), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4522), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173676,20 +191750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [40598] = 3, + [54468] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1793), 1, + STATE(2011), 1, sym_comment, - ACTIONS(4080), 42, + ACTIONS(4530), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -173732,75 +191800,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [40649] = 10, + [54519] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, - anon_sym_list, - ACTIONS(4088), 1, - anon_sym_oneof, - STATE(1794), 1, + ACTIONS(4532), 1, + aux_sym__immediate_decimal_token5, + STATE(2012), 1, sym_comment, - STATE(1970), 1, - aux_sym__repeat_newline, - STATE(3026), 1, - sym__type_annotation, - ACTIONS(4084), 2, - anon_sym_table, - anon_sym_record, - STATE(3131), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4082), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40714] = 5, + ACTIONS(775), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(777), 35, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [54574] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4090), 1, - anon_sym_QMARK2, - STATE(1795), 1, + STATE(2013), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1668), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1440), 37, + ACTIONS(1670), 38, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173827,8 +191889,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -173837,197 +191897,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [40769] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1796), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [40822] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - STATE(1784), 1, - aux_sym__types_body_repeat3, - STATE(1797), 1, - sym_comment, - STATE(4559), 1, - sym__one_type, - STATE(4821), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40887] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1798), 1, - sym_comment, - ACTIONS(849), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(851), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [40940] = 16, + anon_sym_QMARK2, + anon_sym_BANG, + [54627] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - STATE(1799), 1, + STATE(2014), 1, sym_comment, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(5063), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(4006), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(4079), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4081), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174051,17 +191960,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41017] = 4, + [54704] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(2015), 1, sym_comment, - ACTIONS(1470), 4, + ACTIONS(1672), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1472), 38, + ACTIONS(1674), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -174100,113 +192009,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [41070] = 5, + [54757] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4015), 1, - aux_sym__immediate_decimal_token5, - STATE(1801), 1, - sym_comment, - ACTIONS(1738), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 34, - anon_sym_in, + ACTIONS(4514), 1, sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [41125] = 4, + ACTIONS(4526), 1, + anon_sym_list, + ACTIONS(4528), 1, + anon_sym_oneof, + STATE(2016), 1, + sym_comment, + STATE(2198), 1, + aux_sym__repeat_newline, + STATE(3183), 1, + sym__type_annotation, + ACTIONS(4524), 2, + anon_sym_table, + anon_sym_record, + STATE(3361), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4522), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [54822] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1802), 1, + ACTIONS(4514), 1, + sym__newline, + ACTIONS(4526), 1, + anon_sym_list, + ACTIONS(4528), 1, + anon_sym_oneof, + STATE(2009), 1, + aux_sym__repeat_newline, + STATE(2017), 1, sym_comment, - ACTIONS(1474), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1476), 38, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + STATE(3277), 1, + sym__type_annotation, + ACTIONS(4524), 2, + anon_sym_table, + anon_sym_record, + STATE(3361), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4522), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [54887] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4514), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41178] = 5, + STATE(2018), 1, + sym_comment, + STATE(2198), 1, + aux_sym__repeat_newline, + STATE(4701), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [54952] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4092), 1, + ACTIONS(4534), 1, aux_sym__immediate_decimal_token5, - STATE(1803), 1, + STATE(2019), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1958), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174214,7 +192189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 34, + ACTIONS(1956), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -174249,16 +192224,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41233] = 6, + [55007] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4094), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4096), 1, + ACTIONS(4536), 1, + anon_sym_DOT, + ACTIONS(4538), 1, aux_sym__immediate_decimal_token5, - STATE(1804), 1, + STATE(2020), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1884), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174266,7 +192241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 33, + ACTIONS(1882), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -174300,24 +192275,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41290] = 6, + [55064] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4098), 1, - anon_sym_DOT, - ACTIONS(4100), 1, - aux_sym__immediate_decimal_token5, - STATE(1805), 1, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + ACTIONS(4514), 1, + sym__newline, + STATE(2021), 1, + sym_comment, + STATE(2198), 1, + aux_sym__repeat_newline, + STATE(4616), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [55129] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2022), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(775), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1736), 33, + ACTIONS(777), 34, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -174351,61 +192378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41347] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1806), 1, - sym_comment, - ACTIONS(1514), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1516), 38, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41400] = 3, + sym_duration_unit, + [55182] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1807), 1, + STATE(2023), 1, sym_comment, - ACTIONS(4102), 42, + ACTIONS(4540), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -174448,12 +192427,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [41451] = 3, + [55233] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1808), 1, + STATE(2024), 1, sym_comment, - ACTIONS(4104), 42, + ACTIONS(4542), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -174496,146 +192475,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [41502] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1809), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3871), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [41579] = 10, + [55284] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, - anon_sym_list, - ACTIONS(4088), 1, - anon_sym_oneof, - STATE(1810), 1, + STATE(2025), 1, sym_comment, - STATE(1814), 1, - aux_sym__repeat_newline, - STATE(3053), 1, - sym__type_annotation, - ACTIONS(4084), 2, - anon_sym_table, - anon_sym_record, - STATE(3131), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4082), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [41644] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(4076), 1, + ACTIONS(4544), 42, sym__newline, - STATE(1788), 1, - aux_sym__repeat_newline, - STATE(1811), 1, - sym_comment, - STATE(4603), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174660,140 +192510,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_number, anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [41709] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1812), 1, - sym_comment, - STATE(1813), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - ACTIONS(1458), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1460), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [41768] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4106), 1, - anon_sym_DOT2, - STATE(1857), 1, - sym_path, - STATE(1813), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1526), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [41825] = 10, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [55335] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(4088), 1, + ACTIONS(4247), 1, anon_sym_oneof, - STATE(1814), 1, + STATE(2026), 1, sym_comment, - STATE(1970), 1, - aux_sym__repeat_newline, - STATE(3054), 1, + STATE(2027), 1, + aux_sym__types_body_repeat3, + STATE(4663), 1, + sym__one_type, + STATE(5079), 1, sym__type_annotation, - ACTIONS(4084), 2, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(3131), 4, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4082), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174825,30 +192578,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41890] = 10, + [55400] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, + ACTIONS(4552), 1, anon_sym_list, - ACTIONS(4088), 1, + ACTIONS(4555), 1, anon_sym_oneof, - STATE(1794), 1, - aux_sym__repeat_newline, - STATE(1815), 1, - sym_comment, - STATE(2916), 1, + STATE(4893), 1, + sym__one_type, + STATE(5079), 1, sym__type_annotation, - ACTIONS(4084), 2, + ACTIONS(4549), 2, anon_sym_table, anon_sym_record, - STATE(3131), 4, + STATE(2027), 2, + sym_comment, + aux_sym__types_body_repeat3, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4082), 31, + ACTIONS(4546), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174880,20 +192632,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41955] = 5, + [55463] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4090), 1, - anon_sym_BANG, - STATE(1816), 1, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + STATE(2028), 1, sym_comment, - ACTIONS(1438), 4, + STATE(2213), 1, + sym__val_number_decimal, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(5205), 1, + sym__command_name, + ACTIONS(4079), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 37, - sym_raw_string_begin, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4081), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174917,11 +192693,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + [55540] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2029), 1, + sym_comment, + ACTIONS(4558), 42, sym__newline, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, anon_sym_RBRACE, + [55591] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4560), 1, + anon_sym_DOT2, + STATE(2103), 1, + sym_path, + STATE(2030), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1642), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1644), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -174930,44 +192792,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [42010] = 16, + [55648] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - STATE(1817), 1, + STATE(2031), 1, sym_comment, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(4967), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(4528), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(4079), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4081), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174991,44 +192853,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42087] = 16, + [55725] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - STATE(1818), 1, + STATE(2032), 1, sym_comment, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(4279), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(5057), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(4079), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4081), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175052,44 +192914,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42164] = 16, + [55802] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - STATE(1819), 1, + STATE(2033), 1, sym_comment, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(4273), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(4326), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(4079), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4081), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175113,44 +192975,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42241] = 16, + [55879] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - STATE(1820), 1, + STATE(2034), 1, sym_comment, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(5036), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(4344), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(4079), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4081), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175174,44 +193036,93 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42318] = 16, + [55956] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + STATE(2035), 1, + sym_comment, + ACTIONS(1700), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1702), 38, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [56009] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4129), 1, aux_sym_cmd_identifier_token1, - STATE(1821), 1, + STATE(2036), 1, sym_comment, - STATE(2099), 1, + STATE(2219), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(4164), 1, + sym__command_name, + STATE(4431), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(4432), 1, sym_val_string, - STATE(5083), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + ACTIONS(4125), 2, + anon_sym_export, + anon_sym_in, + STATE(494), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4127), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175235,44 +193146,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42395] = 16, + [56086] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1946), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1948), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1950), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(4083), 1, aux_sym_cmd_identifier_token1, - STATE(1822), 1, + STATE(2037), 1, sym_comment, - STATE(2099), 1, + STATE(2213), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3723), 1, sym_val_string, - STATE(5194), 1, + STATE(3770), 1, + sym_cmd_identifier, + STATE(4497), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(4079), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(4091), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(4093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(4081), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175296,21 +193207,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42472] = 5, + [56163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4009), 1, - aux_sym__immediate_decimal_token5, - STATE(1823), 1, + ACTIONS(4563), 1, + anon_sym_BANG, + STATE(2038), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(1608), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, + anon_sym_DOT2, + ACTIONS(1610), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -175335,32 +193244,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [42527] = 5, + [56218] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4109), 1, - aux_sym__immediate_decimal_token5, - STATE(1824), 1, + ACTIONS(4563), 1, + anon_sym_QMARK2, + STATE(2039), 1, sym_comment, - ACTIONS(771), 6, + ACTIONS(1608), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, + anon_sym_DOT2, + ACTIONS(1610), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -175385,29 +193294,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [42582] = 4, + [56273] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1825), 1, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + STATE(2040), 1, sym_comment, - ACTIONS(1462), 4, + STATE(2213), 1, + sym__val_number_decimal, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(5297), 1, + sym__command_name, + ACTIONS(4079), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 37, - sym_raw_string_begin, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4081), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175431,145 +193368,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [42634] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(4111), 1, - anon_sym_DOT_DOT2, - STATE(1826), 1, - sym_comment, - ACTIONS(4113), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1974), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [42694] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(4115), 1, - anon_sym_DOT_DOT2, - STATE(1827), 1, - sym_comment, - ACTIONS(4117), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1964), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [42754] = 9, + [56350] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(4247), 1, anon_sym_oneof, - STATE(1828), 1, + STATE(2027), 1, + aux_sym__types_body_repeat3, + STATE(2041), 1, sym_comment, - STATE(1838), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4448), 1, - sym__all_type, - ACTIONS(3968), 2, + STATE(4708), 1, + sym__one_type, + STATE(5079), 1, + sym__type_annotation, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -175601,172 +193423,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42816] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1829), 1, - sym_comment, - ACTIONS(1728), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [42868] = 8, + [56415] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(876), 1, - anon_sym_DOT_DOT2, - ACTIONS(4119), 1, - sym_filesize_unit, - ACTIONS(4121), 1, - sym_duration_unit, - STATE(1830), 1, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + STATE(2042), 1, sym_comment, - ACTIONS(878), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 31, + STATE(2213), 1, + sym__val_number_decimal, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(5405), 1, + sym__command_name, + ACTIONS(4079), 2, + anon_sym_export, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [42928] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1831), 1, - sym_comment, - STATE(1838), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4484), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [42990] = 5, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4081), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [56492] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_QMARK2, - STATE(1832), 1, + STATE(2043), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1676), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1440), 36, + ACTIONS(1678), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -175803,18 +193531,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43044] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [56545] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1833), 1, + STATE(2044), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(1680), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1522), 37, + ACTIONS(1682), 38, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175841,8 +193572,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -175851,164 +193580,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43096] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1834), 1, - sym_comment, - ACTIONS(1804), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43148] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1835), 1, - sym_comment, - ACTIONS(1872), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43200] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + [56598] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4100), 1, - aux_sym__immediate_decimal_token5, - STATE(1836), 1, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + STATE(2045), 1, sym_comment, - ACTIONS(1738), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 33, + STATE(2213), 1, + sym__val_number_decimal, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(5186), 1, + sym__command_name, + ACTIONS(4079), 2, + anon_sym_export, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43254] = 5, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4081), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [56675] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_BANG, - STATE(1837), 1, + STATE(2046), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1686), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1440), 36, + ACTIONS(1688), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -176045,27 +193690,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43308] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + [56728] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(4083), 1, + aux_sym_cmd_identifier_token1, + STATE(2047), 1, + sym_comment, + STATE(2213), 1, + sym__val_number_decimal, + STATE(3723), 1, + sym_val_string, + STATE(3770), 1, + sym_cmd_identifier, + STATE(5021), 1, + sym__command_name, + ACTIONS(4079), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4091), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4093), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4081), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [56805] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4131), 1, + ACTIONS(4245), 1, anon_sym_list, - ACTIONS(4134), 1, + ACTIONS(4247), 1, anon_sym_oneof, - STATE(4736), 1, - sym__all_type, - ACTIONS(4128), 2, + ACTIONS(4514), 1, + sym__newline, + STATE(2018), 1, + aux_sym__repeat_newline, + STATE(2048), 1, + sym_comment, + STATE(4621), 1, + sym__type_annotation, + ACTIONS(4243), 2, anon_sym_table, anon_sym_record, - STATE(1838), 2, - sym_comment, - aux_sym__composite_argument_body_repeat1, - STATE(4464), 4, + STATE(4288), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4125), 31, + ACTIONS(4241), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176097,14 +193808,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43368] = 5, + [56870] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4452), 1, + anon_sym_DOT2, + STATE(2030), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2049), 1, + sym_comment, + STATE(2103), 1, + sym_path, + ACTIONS(1651), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1653), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [56929] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(823), 1, + anon_sym_DOT_DOT2, + ACTIONS(4565), 1, + sym_filesize_unit, + ACTIONS(4567), 1, + sym_duration_unit, + STATE(2050), 1, + sym_comment, + ACTIONS(825), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(815), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(904), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [56989] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2051), 1, + sym_comment, + ACTIONS(1690), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1692), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [57041] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4137), 1, - aux_sym__immediate_decimal_token5, - STATE(1839), 1, + STATE(2052), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1922), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176112,10 +193973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 33, + ACTIONS(1920), 34, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176146,19 +194008,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43422] = 4, + [57093] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1840), 1, + STATE(2053), 1, sym_comment, - ACTIONS(747), 6, + ACTIONS(759), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT_DOT2, sym_duration_unit, sym__unquoted_pattern, - ACTIONS(749), 35, + ACTIONS(761), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176194,27 +194056,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43474] = 9, + [57145] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(3320), 1, anon_sym_DOT_DOT2, - ACTIONS(4143), 1, + ACTIONS(4569), 1, sym_filesize_unit, - ACTIONS(4145), 1, + ACTIONS(4571), 1, sym_duration_unit, - ACTIONS(4147), 1, + ACTIONS(4573), 1, sym__unquoted_pattern, - STATE(1841), 1, + STATE(2054), 1, sym_comment, - ACTIONS(4141), 2, + ACTIONS(3322), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 3, + ACTIONS(815), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 32, + ACTIONS(904), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176247,20 +194109,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43536] = 4, + [57207] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1842), 1, + ACTIONS(4575), 1, + anon_sym_BANG, + STATE(2055), 1, sym_comment, - ACTIONS(771), 6, + ACTIONS(1608), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, + anon_sym_DOT2, + ACTIONS(1610), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176284,30 +194147,135 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43588] = 4, + [57261] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1843), 1, + ACTIONS(4418), 1, + anon_sym_list, + ACTIONS(4420), 1, + anon_sym_oneof, + STATE(2056), 1, + sym_comment, + STATE(2063), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4660), 1, + sym__all_type, + ACTIONS(4416), 2, + anon_sym_table, + anon_sym_record, + STATE(4580), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4414), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [57323] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + ACTIONS(4577), 1, + anon_sym_DOT_DOT2, + STATE(2057), 1, + sym_comment, + ACTIONS(4579), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2096), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2094), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57383] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2058), 1, sym_comment, - ACTIONS(849), 6, + ACTIONS(775), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT_DOT2, sym_duration_unit, sym__unquoted_pattern, - ACTIONS(851), 35, + ACTIONS(777), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176343,18 +194311,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43640] = 4, + [57435] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1844), 1, + STATE(2059), 1, + sym_comment, + ACTIONS(1958), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 34, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [57487] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4575), 1, + anon_sym_QMARK2, + STATE(2060), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(1608), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1537), 37, + ACTIONS(1610), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176381,8 +194400,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -176391,16 +194408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43692] = 4, + [57541] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1845), 1, + STATE(2061), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(894), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1476), 37, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(896), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176425,39 +194445,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43743] = 8, + [57593] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, + ACTIONS(4418), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(4420), 1, anon_sym_oneof, - STATE(1846), 1, + STATE(2062), 1, sym_comment, - STATE(4128), 1, + STATE(2063), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4765), 1, sym__all_type, - ACTIONS(3968), 2, + ACTIONS(4416), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4580), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(4414), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176489,12 +194509,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43802] = 4, + [57655] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1847), 1, + ACTIONS(4587), 1, + anon_sym_list, + ACTIONS(4590), 1, + anon_sym_oneof, + STATE(4916), 1, + sym__all_type, + ACTIONS(4584), 2, + anon_sym_table, + anon_sym_record, + STATE(2063), 2, + sym_comment, + aux_sym__composite_argument_body_repeat1, + STATE(4580), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4581), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [57715] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2064), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(2052), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176502,10 +194574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 33, + ACTIONS(2050), 34, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176536,12 +194609,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43853] = 4, + [57767] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1848), 1, + ACTIONS(4538), 1, + aux_sym__immediate_decimal_token5, + STATE(2065), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1884), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176549,7 +194624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 33, + ACTIONS(1882), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176583,23 +194658,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43904] = 4, + [57821] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1849), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + ACTIONS(4593), 1, + anon_sym_DOT_DOT2, + STATE(2066), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(4595), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2106), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 33, + ACTIONS(2104), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176618,7 +194701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -176628,29 +194710,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43955] = 8, + [57881] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(4149), 1, - anon_sym_DOT_DOT2, - STATE(1850), 1, + ACTIONS(4597), 1, + aux_sym__immediate_decimal_token5, + STATE(2067), 1, sym_comment, - ACTIONS(4151), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(1958), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 30, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176672,6 +194747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -176681,67 +194757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44014] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1851), 1, - sym_comment, - STATE(4770), 1, - sym__type_annotation, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4731), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [44073] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [57935] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1852), 1, + STATE(2068), 1, sym_comment, - ACTIONS(2094), 3, + ACTIONS(1657), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2092), 37, + anon_sym_DOT2, + ACTIONS(1659), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176779,87 +194807,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44124] = 28, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4159), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4167), 1, - anon_sym_DQUOTE, - ACTIONS(4169), 1, - anon_sym_SQUOTE, - ACTIONS(4171), 1, - anon_sym_BQUOTE, - ACTIONS(4173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, - aux_sym_unquoted_token1, - ACTIONS(4179), 1, - sym_raw_string_begin, - STATE(1853), 1, - sym_comment, - STATE(1854), 1, - sym__inter_single_quotes, - STATE(1856), 1, - sym__inter_double_quotes, - STATE(3750), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(3026), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4163), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5032), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4155), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1869), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1445), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [44223] = 4, + [57987] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1854), 1, + STATE(2069), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(1694), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 37, + anon_sym_DOT2, + ACTIONS(1696), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176897,67 +194855,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44274] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(4181), 1, - anon_sym_DOT_DOT2, - STATE(1855), 1, - sym_comment, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1974), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [44333] = 4, + [58039] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1856), 1, + STATE(2070), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(1668), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 37, + ACTIONS(1670), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176995,19 +194902,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44384] = 4, + [58090] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1857), 1, + STATE(2071), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(1992), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 36, + ACTIONS(1990), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177034,6 +194939,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -177042,16 +194949,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44435] = 4, + [58141] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1858), 1, + STATE(2072), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(2276), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1558), 37, + ACTIONS(2274), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177089,16 +194996,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44486] = 6, + [58192] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4185), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4187), 1, + ACTIONS(4599), 1, + anon_sym_DOT, + ACTIONS(4601), 1, aux_sym__immediate_decimal_token5, - STATE(1859), 1, + STATE(2073), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(767), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -177107,7 +195014,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(749), 30, + ACTIONS(769), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -177138,16 +195045,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [44541] = 4, + [58247] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4603), 1, + sym__entry_separator, + STATE(2074), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(4172), 38, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_GT2, + anon_sym_oneof, + [58298] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1860), 1, + STATE(2075), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(1676), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 37, + ACTIONS(1678), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177185,16 +195139,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44592] = 4, + [58349] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1861), 1, + STATE(2076), 1, + sym_comment, + ACTIONS(2052), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(2050), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [58400] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2077), 1, sym_comment, - ACTIONS(2264), 3, + ACTIONS(1680), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 37, + ACTIONS(1682), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177232,16 +195233,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44643] = 4, + [58451] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1862), 1, + STATE(2078), 1, sym_comment, - ACTIONS(1643), 3, + ACTIONS(2420), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 37, + ACTIONS(2418), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177279,74 +195280,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44694] = 8, + [58502] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - STATE(1863), 1, + ACTIONS(4565), 1, + sym_filesize_unit, + ACTIONS(4567), 1, + sym_duration_unit, + ACTIONS(4606), 1, + anon_sym_DOT_DOT2, + STATE(2079), 1, sym_comment, - STATE(4972), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [44753] = 6, + ACTIONS(4608), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(815), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(904), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58561] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2080), 1, + sym_comment, + ACTIONS(2424), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2422), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [58612] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2081), 1, + sym_comment, + ACTIONS(1686), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1688), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [58663] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2082), 1, + sym_comment, + ACTIONS(2430), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2428), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [58714] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4189), 1, + ACTIONS(4610), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4191), 1, + ACTIONS(4612), 1, aux_sym__immediate_decimal_token5, - STATE(1864), 1, + STATE(2083), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1922), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 32, + ACTIONS(1920), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -177379,16 +195521,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44808] = 4, + [58769] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1865), 1, + STATE(2084), 1, sym_comment, - ACTIONS(2274), 3, + ACTIONS(1672), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 37, + ACTIONS(1674), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177426,16 +195568,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44859] = 4, + [58820] = 28, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2818), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2828), 1, + anon_sym_COLON2, + ACTIONS(4614), 1, + anon_sym_null, + ACTIONS(4618), 1, + anon_sym_LPAREN, + ACTIONS(4620), 1, + anon_sym_DOLLAR, + ACTIONS(4622), 1, + anon_sym_DOT_DOT, + ACTIONS(4626), 1, + sym_val_date, + ACTIONS(4628), 1, + anon_sym_DQUOTE, + ACTIONS(4630), 1, + anon_sym_SQUOTE, + ACTIONS(4632), 1, + anon_sym_BQUOTE, + ACTIONS(4634), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4636), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4638), 1, + aux_sym_unquoted_token1, + ACTIONS(4640), 1, + sym_raw_string_begin, + STATE(2085), 1, + sym_comment, + STATE(2095), 1, + sym__inter_single_quotes, + STATE(2097), 1, + sym__inter_double_quotes, + STATE(4035), 1, + sym__val_number_decimal, + STATE(5202), 1, + sym_val_bool, + ACTIONS(3258), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3268), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3270), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4624), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5259), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4616), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2094), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1674), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [58919] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1866), 1, + STATE(2086), 1, sym_comment, - ACTIONS(1824), 3, + ACTIONS(2308), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1822), 37, + ACTIONS(2306), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177473,19 +195686,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44910] = 4, + [58970] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1867), 1, + STATE(2087), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(1714), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 36, + ACTIONS(1716), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177512,6 +195723,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -177520,17 +195733,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44961] = 4, + [59021] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1868), 1, + STATE(2088), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(1690), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1537), 36, + ACTIONS(1692), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -177567,17 +195780,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45012] = 4, + [59072] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1869), 1, + STATE(2089), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(1694), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 37, + anon_sym_DOT2, + ACTIONS(1696), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177604,8 +195819,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -177614,16 +195827,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45063] = 4, + [59123] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1870), 1, + ACTIONS(4418), 1, + anon_sym_list, + ACTIONS(4420), 1, + anon_sym_oneof, + STATE(2090), 1, + sym_comment, + STATE(4812), 1, + sym__type_annotation, + ACTIONS(4416), 2, + anon_sym_table, + anon_sym_record, + STATE(4877), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4414), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [59182] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2091), 1, + sym_comment, + ACTIONS(1922), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1920), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [59233] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4245), 1, + anon_sym_list, + ACTIONS(4247), 1, + anon_sym_oneof, + STATE(2092), 1, + sym_comment, + STATE(5054), 1, + sym__type_annotation, + ACTIONS(4243), 2, + anon_sym_table, + anon_sym_record, + STATE(4288), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4241), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [59292] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2093), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(2434), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1545), 37, + ACTIONS(2432), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177661,16 +196023,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45114] = 4, + [59343] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1871), 1, + STATE(2094), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1700), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 37, + ACTIONS(1702), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177708,16 +196070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45165] = 4, + [59394] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1872), 1, + STATE(2095), 1, sym_comment, - ACTIONS(2086), 3, + ACTIONS(2416), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 37, + ACTIONS(2414), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177755,16 +196117,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45216] = 4, + [59445] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4642), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4644), 1, + aux_sym__immediate_decimal_token5, + STATE(2096), 1, + sym_comment, + ACTIONS(759), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(761), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [59500] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1873), 1, + STATE(2097), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(2416), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 37, + ACTIONS(2414), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177802,16 +196213,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45267] = 4, + [59551] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1874), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + ACTIONS(4646), 1, + anon_sym_DOT_DOT2, + STATE(2098), 1, + sym_comment, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2096), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2094), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [59610] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2099), 1, + sym_comment, + ACTIONS(1958), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [59661] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4418), 1, + anon_sym_list, + ACTIONS(4420), 1, + anon_sym_oneof, + STATE(2100), 1, + sym_comment, + STATE(4741), 1, + sym__all_type, + ACTIONS(4416), 2, + anon_sym_table, + anon_sym_record, + STATE(4580), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4414), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [59720] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2101), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1823), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 37, + ACTIONS(1821), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177849,27 +196409,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45318] = 8, + [59771] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4119), 1, - sym_filesize_unit, - ACTIONS(4121), 1, - sym_duration_unit, - ACTIONS(4193), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + ACTIONS(4650), 1, anon_sym_DOT_DOT2, - STATE(1875), 1, + STATE(2102), 1, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4652), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + ACTIONS(2106), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 30, + ACTIONS(2104), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -177900,73 +196460,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45377] = 4, - ACTIONS(103), 1, + [59830] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4197), 1, - sym__entry_separator, - STATE(1876), 2, + STATE(2103), 1, sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 38, + ACTIONS(1657), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1659), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_GT2, - anon_sym_oneof, - [45428] = 8, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [59881] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, + ACTIONS(4418), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(4420), 1, anon_sym_oneof, - STATE(1877), 1, + STATE(2104), 1, sym_comment, - STATE(4566), 1, + STATE(4251), 1, sym__all_type, - ACTIONS(3968), 2, + ACTIONS(4416), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4580), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(4414), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177998,72 +196558,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [45487] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4200), 1, - anon_sym_DOT, - ACTIONS(4202), 1, - aux_sym__immediate_decimal_token5, - STATE(1878), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [45542] = 6, + [59940] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4204), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4206), 1, + ACTIONS(4656), 1, aux_sym__immediate_decimal_token5, - STATE(1879), 1, + STATE(2105), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1884), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 32, + ACTIONS(1882), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -178096,17 +196607,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45597] = 4, + [59995] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1880), 1, + STATE(2106), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(2416), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 37, + ACTIONS(2414), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178133,8 +196645,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -178143,16 +196653,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45648] = 4, + [60045] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1881), 1, + STATE(2107), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(1992), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 36, + ACTIONS(1990), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178189,73 +196699,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45698] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4208), 1, - anon_sym_QMARK2, - ACTIONS(4210), 1, - anon_sym_BANG, - STATE(1882), 1, - sym_comment, - STATE(2111), 1, - sym__path_suffix, - ACTIONS(1446), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [45754] = 8, + [60095] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, + ACTIONS(4658), 1, anon_sym_DOT2, - STATE(1883), 1, + STATE(2108), 1, sym_comment, - STATE(1947), 1, + STATE(2160), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2359), 1, sym_path, - STATE(2152), 1, + STATE(2413), 1, sym_cell_path, - ACTIONS(1884), 3, + ACTIONS(2010), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1882), 32, + ACTIONS(2008), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178288,16 +196749,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45812] = 4, + [60153] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1884), 1, + STATE(2109), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(1668), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1476), 36, + ACTIONS(1670), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178334,18 +196795,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45862] = 4, + [60203] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1885), 1, + ACTIONS(4658), 1, + anon_sym_DOT2, + STATE(2110), 1, sym_comment, - ACTIONS(2264), 3, + STATE(2160), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2359), 1, + sym_path, + STATE(2410), 1, + sym_cell_path, + ACTIONS(2048), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 36, + ACTIONS(2046), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178369,10 +196837,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178380,16 +196845,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45912] = 4, + [60261] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1886), 1, + STATE(2111), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(1672), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 36, + ACTIONS(1674), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178426,16 +196891,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45962] = 4, + [60311] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4660), 1, + anon_sym_DOT, + ACTIONS(4662), 1, + aux_sym__immediate_decimal_token5, + STATE(2112), 1, + sym_comment, + ACTIONS(767), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(769), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [60365] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1887), 1, + STATE(2113), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(1680), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 36, + ACTIONS(1682), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178472,25 +196985,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46012] = 8, + [60415] = 27, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4614), 1, + anon_sym_null, + ACTIONS(4618), 1, + anon_sym_LPAREN, + ACTIONS(4620), 1, + anon_sym_DOLLAR, + ACTIONS(4622), 1, + anon_sym_DOT_DOT, + ACTIONS(4626), 1, + sym_val_date, + ACTIONS(4628), 1, + anon_sym_DQUOTE, + ACTIONS(4630), 1, + anon_sym_SQUOTE, + ACTIONS(4632), 1, + anon_sym_BQUOTE, + ACTIONS(4634), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4636), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4638), 1, + aux_sym_unquoted_token1, + ACTIONS(4640), 1, + sym_raw_string_begin, + STATE(2095), 1, + sym__inter_single_quotes, + STATE(2097), 1, + sym__inter_double_quotes, + STATE(2114), 1, + sym_comment, + STATE(4035), 1, + sym__val_number_decimal, + STATE(5202), 1, + sym_val_bool, + ACTIONS(3258), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3268), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3270), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4624), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5259), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4616), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2094), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1674), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [60511] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4664), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4666), 1, + aux_sym__immediate_decimal_token5, + STATE(2115), 1, + sym_comment, + ACTIONS(759), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(761), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [60565] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1888), 1, + STATE(2116), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2205), 1, - sym_cell_path, - ACTIONS(1864), 3, + ACTIONS(2420), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1862), 32, + ACTIONS(2418), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178514,7 +197137,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178522,16 +197148,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46070] = 4, + [60615] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1889), 1, + STATE(2117), 1, sym_comment, - ACTIONS(2086), 3, + ACTIONS(1823), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 36, + ACTIONS(1821), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178568,16 +197194,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46120] = 4, + [60665] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1890), 1, + STATE(2118), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(2424), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 36, + ACTIONS(2422), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178614,18 +197240,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46170] = 4, + [60715] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1891), 1, + ACTIONS(4658), 1, + anon_sym_DOT2, + STATE(2119), 1, sym_comment, - ACTIONS(1470), 3, + STATE(2160), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2359), 1, + sym_path, + STATE(2404), 1, + sym_cell_path, + ACTIONS(1588), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 36, + ACTIONS(1590), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178649,10 +197282,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178660,23 +197290,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46220] = 6, + [60773] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4214), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4216), 1, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, aux_sym__immediate_decimal_token5, - STATE(1892), 1, + STATE(2120), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1884), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 31, + ACTIONS(1882), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -178708,72 +197338,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46274] = 6, - ACTIONS(103), 1, + [60827] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4218), 1, - anon_sym_DOT, - ACTIONS(4220), 1, - aux_sym__immediate_decimal_token5, - STATE(1893), 1, + STATE(2121), 1, sym_comment, - ACTIONS(739), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [46328] = 8, + ACTIONS(1700), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1702), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60877] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, + ACTIONS(4658), 1, anon_sym_DOT2, - STATE(1894), 1, + STATE(2122), 1, sym_comment, - STATE(1947), 1, + STATE(2160), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2359), 1, sym_path, - STATE(2150), 1, + STATE(2399), 1, sym_cell_path, - ACTIONS(1868), 3, + ACTIONS(2035), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1866), 32, + ACTIONS(2032), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178806,64 +197434,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46386] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4222), 1, - anon_sym_DOT, - ACTIONS(4224), 1, - aux_sym__immediate_decimal_token5, - STATE(1895), 1, - sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [46440] = 4, + [60935] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1896), 1, + STATE(2123), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(1714), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1558), 36, + ACTIONS(1716), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178900,85 +197480,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46490] = 27, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4159), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4167), 1, - anon_sym_DQUOTE, - ACTIONS(4169), 1, - anon_sym_SQUOTE, - ACTIONS(4171), 1, - anon_sym_BQUOTE, - ACTIONS(4173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, - aux_sym_unquoted_token1, - ACTIONS(4179), 1, - sym_raw_string_begin, - STATE(1854), 1, - sym__inter_single_quotes, - STATE(1856), 1, - sym__inter_double_quotes, - STATE(1897), 1, - sym_comment, - STATE(3750), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(3026), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4163), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5032), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4155), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1869), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1445), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46586] = 4, + [60985] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1898), 1, + STATE(2124), 1, sym_comment, - ACTIONS(1824), 3, + ACTIONS(2276), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1822), 36, + ACTIONS(2274), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179015,141 +197526,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46636] = 5, + [61035] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4226), 1, - aux_sym__immediate_decimal_token5, - STATE(1899), 1, + ACTIONS(4658), 1, + anon_sym_DOT2, + STATE(2125), 1, sym_comment, - ACTIONS(1804), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 32, + STATE(2160), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2359), 1, + sym_path, + STATE(2365), 1, + sym_cell_path, + ACTIONS(2022), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [46688] = 27, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4230), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, - anon_sym_DOLLAR, - ACTIONS(4234), 1, - anon_sym_DOT_DOT, - ACTIONS(4238), 1, - anon_sym_DQUOTE, - ACTIONS(4240), 1, - anon_sym_SQUOTE, - ACTIONS(4242), 1, - anon_sym_BQUOTE, - ACTIONS(4244), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4246), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4248), 1, - aux_sym_unquoted_token1, - ACTIONS(4250), 1, + ACTIONS(2020), 32, sym_raw_string_begin, - STATE(1881), 1, - sym__inter_double_quotes, - STATE(1900), 1, - sym_comment, - STATE(1915), 1, - sym__inter_single_quotes, - STATE(3811), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(3026), 2, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3036), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(4236), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4918), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4228), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1886), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1455), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46784] = 8, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [61093] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1901), 1, + STATE(2126), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2209), 1, - sym_cell_path, - ACTIONS(1853), 3, + ACTIONS(2430), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1850), 32, + ACTIONS(2428), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179173,7 +197611,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179181,204 +197622,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46842] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4252), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4254), 1, - aux_sym__immediate_decimal_token5, - STATE(1902), 1, - sym_comment, - ACTIONS(747), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [46896] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3734), 1, - sym__entry_separator, - STATE(1903), 1, - sym_comment, - ACTIONS(3732), 38, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_GT2, - anon_sym_oneof, - [46946] = 5, + [61143] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4206), 1, + ACTIONS(4672), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4674), 1, aux_sym__immediate_decimal_token5, - STATE(1904), 1, + STATE(2127), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1922), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 32, + ACTIONS(1920), 31, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [46998] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4256), 1, - aux_sym__immediate_decimal_token5, - STATE(1905), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [47050] = 4, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [61197] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1906), 1, + STATE(2128), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(1686), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 36, + ACTIONS(1688), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179415,18 +197716,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47100] = 4, + [61247] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1907), 1, + ACTIONS(4676), 1, + anon_sym_QMARK2, + ACTIONS(4678), 1, + anon_sym_BANG, + STATE(2129), 1, sym_comment, - ACTIONS(2274), 3, + STATE(2344), 1, + sym__path_suffix, + ACTIONS(1594), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 36, + anon_sym_DOT2, + ACTIONS(1596), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179450,10 +197757,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179461,18 +197765,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47150] = 4, + [61303] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4601), 1, + aux_sym__immediate_decimal_token5, + STATE(2130), 1, + sym_comment, + ACTIONS(767), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(769), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [61355] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1908), 1, + ACTIONS(4658), 1, + anon_sym_DOT2, + STATE(2131), 1, sym_comment, - ACTIONS(1643), 3, + STATE(2160), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2359), 1, + sym_path, + STATE(2376), 1, + sym_cell_path, + ACTIONS(2018), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 36, + ACTIONS(2016), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179496,10 +197854,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179507,25 +197862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47200] = 8, + [61413] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1909), 1, + STATE(2132), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2203), 1, - sym_cell_path, - ACTIONS(1880), 3, + ACTIONS(2308), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1878), 32, + ACTIONS(2306), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179549,7 +197897,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179557,16 +197908,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47258] = 4, + [61463] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1910), 1, + STATE(2133), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(2434), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 36, + ACTIONS(2432), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179603,24 +197954,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47308] = 8, + [61513] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, + ACTIONS(4658), 1, anon_sym_DOT2, - STATE(1911), 1, + STATE(2134), 1, sym_comment, - STATE(1947), 1, + STATE(2160), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2359), 1, sym_path, - STATE(2182), 1, + STATE(2406), 1, sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(2026), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 32, + ACTIONS(2024), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179653,14 +198004,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47366] = 5, + [61571] = 27, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2954), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4614), 1, + anon_sym_null, + ACTIONS(4626), 1, + sym_val_date, + ACTIONS(4682), 1, + anon_sym_LPAREN, + ACTIONS(4684), 1, + anon_sym_DOLLAR, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + anon_sym_DQUOTE, + ACTIONS(4692), 1, + anon_sym_SQUOTE, + ACTIONS(4694), 1, + anon_sym_BQUOTE, + ACTIONS(4696), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4698), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4700), 1, + aux_sym_unquoted_token1, + ACTIONS(4702), 1, + sym_raw_string_begin, + STATE(2106), 1, + sym__inter_double_quotes, + STATE(2135), 1, + sym_comment, + STATE(2139), 1, + sym__inter_single_quotes, + STATE(3977), 1, + sym__val_number_decimal, + STATE(5202), 1, + sym_val_bool, + ACTIONS(3258), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3268), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3270), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5036), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4680), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2121), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1682), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [61667] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4704), 1, aux_sym__immediate_decimal_token5, - STATE(1912), 1, + STATE(2136), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(775), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -179669,7 +198089,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(741), 30, + ACTIONS(777), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -179700,62 +198120,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [47418] = 4, + [61719] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1913), 1, + ACTIONS(4706), 1, + aux_sym__immediate_decimal_token5, + STATE(2137), 1, sym_comment, - ACTIONS(2094), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1958), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1956), 32, anon_sym_in, - ACTIONS(2092), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [47468] = 4, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [61771] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1914), 1, + STATE(2138), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(1676), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1545), 36, + ACTIONS(1678), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179792,16 +198213,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47518] = 4, + [61821] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1915), 1, + STATE(2139), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(2416), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 36, + ACTIONS(2414), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179838,71 +198259,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47568] = 8, + [61871] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1916), 1, + ACTIONS(4656), 1, + aux_sym__immediate_decimal_token5, + STATE(2140), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2207), 1, - sym_cell_path, - ACTIONS(1860), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1884), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1882), 32, anon_sym_in, - ACTIONS(1858), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [47626] = 5, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [61923] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4195), 1, + sym__entry_separator, + STATE(2141), 1, + sym_comment, + ACTIONS(4193), 38, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_GT2, + anon_sym_oneof, + [61973] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4258), 1, - aux_sym__immediate_decimal_token5, - STATE(1917), 1, + ACTIONS(4708), 1, + anon_sym_DOT_DOT2, + STATE(2142), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(4710), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1750), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 31, + ACTIONS(1856), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -179924,7 +198390,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [62026] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(815), 1, + anon_sym_COLON2, + ACTIONS(821), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4712), 1, + sym_filesize_unit, + ACTIONS(4714), 1, + sym_duration_unit, + STATE(2143), 1, + sym_comment, + ACTIONS(819), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(817), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [62083] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2098), 1, anon_sym_LPAREN2, + STATE(2144), 1, + sym_comment, + ACTIONS(2096), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2094), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -179934,22 +198495,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47677] = 6, + [62136] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2108), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2114), 1, sym__unquoted_pattern, - STATE(1918), 1, + STATE(2145), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(2752), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 31, + ACTIONS(2750), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -179981,22 +198542,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47730] = 6, + [62189] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2108), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2114), 1, sym__unquoted_pattern, - STATE(1919), 1, + STATE(2146), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(2106), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 31, + ACTIONS(2104), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180028,19 +198589,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47783] = 4, + [62242] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1920), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(2804), 1, + anon_sym_LPAREN2, + STATE(2147), 1, + sym_comment, + ACTIONS(2717), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2715), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [62295] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2758), 1, + anon_sym_LPAREN2, + ACTIONS(2760), 1, + sym__unquoted_pattern, + STATE(2148), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(2744), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(2742), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [62348] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2766), 1, + anon_sym_LPAREN2, + ACTIONS(2768), 1, sym__unquoted_pattern, - ACTIONS(2501), 32, + STATE(2149), 1, + sym_comment, + ACTIONS(2764), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2762), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180063,7 +198721,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [62401] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2746), 1, anon_sym_LPAREN2, + ACTIONS(2748), 1, + sym__unquoted_pattern, + STATE(2150), 1, + sym_comment, + ACTIONS(1750), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1856), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -180073,18 +198777,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47832] = 6, + [62454] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4262), 1, + ACTIONS(4718), 1, anon_sym_GT2, - ACTIONS(4264), 1, + ACTIONS(4720), 1, sym__entry_separator, - STATE(1876), 1, + STATE(2074), 1, aux_sym__types_body_repeat2, - STATE(1921), 1, + STATE(2151), 1, sym_comment, - ACTIONS(4260), 35, + ACTIONS(4716), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180120,18 +198824,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [47885] = 6, + [62507] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4720), 1, sym__entry_separator, - ACTIONS(4266), 1, + ACTIONS(4722), 1, anon_sym_RBRACK, - STATE(1876), 1, + STATE(2074), 1, aux_sym__types_body_repeat2, - STATE(1922), 1, + STATE(2152), 1, sym_comment, - ACTIONS(4268), 35, + ACTIONS(4724), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180167,18 +198871,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [47938] = 6, + [62560] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4720), 1, sym__entry_separator, - ACTIONS(4270), 1, + ACTIONS(4726), 1, anon_sym_RBRACK, - STATE(1876), 1, + STATE(2074), 1, aux_sym__types_body_repeat2, - STATE(1923), 1, + STATE(2153), 1, sym_comment, - ACTIONS(4268), 35, + ACTIONS(4724), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180214,22 +198918,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [47991] = 6, + [62613] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, + ACTIONS(2770), 1, anon_sym_LPAREN2, - STATE(1924), 1, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(2154), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(1016), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 31, + ACTIONS(1014), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180261,22 +198965,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48044] = 6, + [62666] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(2770), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2772), 1, sym__unquoted_pattern, - STATE(1925), 1, + STATE(2155), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(1024), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 31, + ACTIONS(1032), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180308,205 +199012,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48097] = 6, + [62719] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3268), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4682), 1, + anon_sym_LPAREN, + ACTIONS(4684), 1, + anon_sym_DOLLAR, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + anon_sym_DQUOTE, + ACTIONS(4692), 1, + anon_sym_SQUOTE, + ACTIONS(4694), 1, + anon_sym_BQUOTE, + ACTIONS(4696), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4698), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4700), 1, + aux_sym_unquoted_token1, + ACTIONS(4702), 1, + sym_raw_string_begin, + ACTIONS(4730), 1, + anon_sym_null, + ACTIONS(4734), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4738), 1, + sym_val_date, + STATE(2106), 1, + sym__inter_double_quotes, + STATE(2139), 1, + sym__inter_single_quotes, + STATE(2156), 1, + sym_comment, + STATE(3977), 1, + sym__val_number_decimal, + STATE(5202), 1, + sym_val_bool, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4728), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4736), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5036), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4732), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2121), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1678), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [62814] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4272), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1926), 1, + STATE(2157), 1, sym_comment, - ACTIONS(4268), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48150] = 6, - ACTIONS(3), 1, + ACTIONS(759), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(761), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [62863] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(1927), 1, + STATE(2158), 1, sym_comment, - ACTIONS(2637), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2635), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [48203] = 6, + ACTIONS(775), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(777), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [62912] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2159), 1, + sym_comment, + ACTIONS(894), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(896), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [62961] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(1928), 1, + ACTIONS(4658), 1, + anon_sym_DOT2, + STATE(2160), 1, sym_comment, - ACTIONS(1619), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1706), 31, + STATE(2161), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2359), 1, + sym_path, + ACTIONS(1651), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [48256] = 5, + ACTIONS(1653), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [63016] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4224), 1, - aux_sym__immediate_decimal_token5, - STATE(1929), 1, + ACTIONS(4740), 1, + anon_sym_DOT2, + STATE(2359), 1, + sym_path, + STATE(2161), 2, sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 31, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1642), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [48307] = 6, + ACTIONS(1644), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [63069] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4720), 1, sym__entry_separator, - ACTIONS(4274), 1, + ACTIONS(4743), 1, anon_sym_GT2, - STATE(1876), 1, + STATE(2074), 1, aux_sym__types_body_repeat2, - STATE(1930), 1, + STATE(2162), 1, sym_comment, - ACTIONS(4260), 35, + ACTIONS(4716), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180542,18 +199357,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [48360] = 6, + [63122] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4720), 1, sym__entry_separator, - ACTIONS(4276), 1, + ACTIONS(4745), 1, anon_sym_GT2, - STATE(1876), 1, + STATE(2074), 1, aux_sym__types_body_repeat2, - STATE(1931), 1, + STATE(2163), 1, + sym_comment, + ACTIONS(4716), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [63175] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4720), 1, + sym__entry_separator, + ACTIONS(4747), 1, + anon_sym_RBRACK, + STATE(2074), 1, + aux_sym__types_body_repeat2, + STATE(2164), 1, sym_comment, - ACTIONS(4260), 35, + ACTIONS(4724), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180589,22 +199451,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [48413] = 6, + [63228] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1932), 1, + STATE(2165), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(1922), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 31, + sym__unquoted_pattern, + ACTIONS(1920), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180627,6 +199486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -180636,26 +199496,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48466] = 6, + [63277] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1933), 1, + ACTIONS(4749), 1, + anon_sym_DOT_DOT2, + STATE(2166), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(4751), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2280), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 31, + ACTIONS(2278), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -180683,227 +199543,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48519] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4278), 1, - sym__newline, - STATE(1934), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3738), 36, - anon_sym_LBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48568] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4281), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1935), 1, - sym_comment, - ACTIONS(4268), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48621] = 27, + [63330] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3036), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4159), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4167), 1, - anon_sym_DQUOTE, - ACTIONS(4169), 1, - anon_sym_SQUOTE, - ACTIONS(4171), 1, - anon_sym_BQUOTE, - ACTIONS(4173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, - aux_sym_unquoted_token1, - ACTIONS(4179), 1, - sym_raw_string_begin, - ACTIONS(4285), 1, - anon_sym_null, - ACTIONS(4289), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4293), 1, - sym_val_date, - STATE(1854), 1, - sym__inter_single_quotes, - STATE(1856), 1, - sym__inter_double_quotes, - STATE(1936), 1, - sym_comment, - STATE(3750), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(4163), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4283), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4291), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5032), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4287), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1869), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1447), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [48716] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_COLON2, - ACTIONS(874), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4295), 1, - sym_filesize_unit, - ACTIONS(4297), 1, - sym_duration_unit, - STATE(1937), 1, + STATE(2167), 1, sym_comment, - ACTIONS(872), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(870), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [48773] = 6, + ACTIONS(2052), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2050), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [63379] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4720), 1, sym__entry_separator, - ACTIONS(4299), 1, + ACTIONS(4753), 1, anon_sym_GT2, - STATE(1876), 1, + STATE(2074), 1, aux_sym__types_body_repeat2, - STATE(1938), 1, + STATE(2168), 1, sym_comment, - ACTIONS(4260), 35, + ACTIONS(4716), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180939,14 +199635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [48826] = 5, + [63432] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4220), 1, + ACTIONS(4662), 1, aux_sym__immediate_decimal_token5, - STATE(1939), 1, + STATE(2169), 1, sym_comment, - ACTIONS(739), 7, + ACTIONS(767), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -180954,7 +199650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(741), 30, + ACTIONS(769), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -180985,34 +199681,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [48877] = 7, + [63483] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4305), 1, - sym_long_flag_identifier, - ACTIONS(4307), 1, - anon_sym_EQ2, - STATE(1940), 1, + STATE(2170), 1, sym_comment, - STATE(2191), 1, - sym__flag_equals_value, - ACTIONS(4303), 9, + ACTIONS(1700), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1702), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [63532] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2171), 1, + sym_comment, + ACTIONS(1668), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1670), 34, sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - ACTIONS(4301), 26, + anon_sym_QMARK2, + anon_sym_BANG, + [63581] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2172), 1, + sym_comment, + ACTIONS(1672), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1674), 34, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [63630] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2173), 1, + sym_comment, + ACTIONS(1676), 4, + anon_sym_export, aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1678), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -181026,24 +199845,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [63679] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2174), 1, + sym_comment, + ACTIONS(1680), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + anon_sym_DOT2, + ACTIONS(1682), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - [48932] = 4, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [63728] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1941), 1, + STATE(2175), 1, sym_comment, - ACTIONS(1514), 4, + ACTIONS(1686), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1516), 34, + ACTIONS(1688), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181078,14 +199951,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [48981] = 5, + [63777] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2176), 1, + sym_comment, + ACTIONS(2665), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2663), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [63826] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4755), 1, + sym_long_flag_identifier, + ACTIONS(4757), 1, + anon_sym_EQ2, + STATE(2177), 1, + sym_comment, + STATE(2412), 1, + sym__flag_equals_value, + ACTIONS(3756), 9, + sym_raw_string_begin, + aux_sym_cmd_identifier_token4, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + ACTIONS(3754), 26, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + [63881] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4670), 1, + aux_sym__immediate_decimal_token5, + STATE(2178), 1, + sym_comment, + ACTIONS(1884), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1882), 31, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [63932] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4759), 1, + aux_sym__immediate_decimal_token5, + STATE(2179), 1, + sym_comment, + ACTIONS(1958), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1956), 31, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [63983] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(4761), 1, aux_sym__immediate_decimal_token5, - STATE(1942), 1, + STATE(2180), 1, sym_comment, - ACTIONS(771), 7, + ACTIONS(775), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -181093,7 +200151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(773), 30, + ACTIONS(777), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -181124,321 +200182,375 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49032] = 27, + [64034] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3036), 1, + ACTIONS(3268), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4230), 1, + ACTIONS(4618), 1, anon_sym_LPAREN, - ACTIONS(4232), 1, + ACTIONS(4620), 1, anon_sym_DOLLAR, - ACTIONS(4234), 1, + ACTIONS(4622), 1, anon_sym_DOT_DOT, - ACTIONS(4238), 1, + ACTIONS(4628), 1, anon_sym_DQUOTE, - ACTIONS(4240), 1, + ACTIONS(4630), 1, anon_sym_SQUOTE, - ACTIONS(4242), 1, + ACTIONS(4632), 1, anon_sym_BQUOTE, - ACTIONS(4244), 1, + ACTIONS(4634), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4246), 1, + ACTIONS(4636), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4248), 1, + ACTIONS(4638), 1, aux_sym_unquoted_token1, - ACTIONS(4250), 1, + ACTIONS(4640), 1, sym_raw_string_begin, - ACTIONS(4285), 1, + ACTIONS(4730), 1, anon_sym_null, - ACTIONS(4289), 1, + ACTIONS(4734), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4293), 1, + ACTIONS(4738), 1, sym_val_date, - STATE(1881), 1, - sym__inter_double_quotes, - STATE(1915), 1, + STATE(2095), 1, sym__inter_single_quotes, - STATE(1943), 1, + STATE(2097), 1, + sym__inter_double_quotes, + STATE(2181), 1, sym_comment, - STATE(3811), 1, + STATE(4035), 1, sym__val_number_decimal, - STATE(5068), 1, + STATE(5202), 1, sym_val_bool, - ACTIONS(4236), 2, + ACTIONS(4624), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4283), 2, + ACTIONS(4728), 2, anon_sym_true, anon_sym_false, - ACTIONS(4291), 2, + ACTIONS(4736), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4918), 2, + STATE(5259), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4311), 3, + ACTIONS(4763), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(1886), 4, + STATE(2094), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(1458), 5, + STATE(1666), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - [49127] = 4, - ACTIONS(103), 1, + [64129] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1944), 1, + ACTIONS(4708), 1, + anon_sym_DOT_DOT2, + STATE(2182), 1, sym_comment, - ACTIONS(747), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49176] = 4, - ACTIONS(103), 1, + ACTIONS(4710), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2246), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2244), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [64182] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1945), 1, + ACTIONS(4765), 1, + sym__newline, + STATE(2183), 2, sym_comment, - ACTIONS(771), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49225] = 4, + aux_sym__types_body_repeat1, + ACTIONS(4188), 36, + anon_sym_LBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [64231] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(1946), 1, + ACTIONS(4720), 1, + sym__entry_separator, + ACTIONS(4768), 1, + anon_sym_RBRACK, + STATE(2074), 1, + aux_sym__types_body_repeat2, + STATE(2184), 1, sym_comment, - ACTIONS(849), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(851), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49274] = 7, + ACTIONS(4724), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [64284] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1947), 1, + ACTIONS(4770), 1, + anon_sym_DOT_DOT2, + STATE(2185), 1, sym_comment, - STATE(1948), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - ACTIONS(1458), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4772), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2234), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2232), 30, anon_sym_in, - ACTIONS(1460), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [49329] = 6, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [64337] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2254), 1, + anon_sym_EQ_GT, + ACTIONS(4708), 1, + anon_sym_DOT_DOT2, + STATE(2186), 1, + sym_comment, + ACTIONS(4710), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2246), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2244), 29, + anon_sym_in, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [64392] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4313), 1, - anon_sym_DOT2, - STATE(2133), 1, - sym_path, - STATE(1948), 2, + ACTIONS(4774), 1, + anon_sym_DOT_DOT2, + STATE(2187), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4776), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2096), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2094), 30, anon_sym_in, - ACTIONS(1526), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [49382] = 4, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [64445] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1949), 1, + ACTIONS(4778), 1, + anon_sym_DOT_DOT2, + STATE(2188), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(4780), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2106), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 32, + ACTIONS(2104), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181457,7 +200569,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -181467,23 +200578,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49431] = 4, + [64498] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1950), 1, + ACTIONS(4782), 1, + anon_sym_DOT_DOT2, + STATE(2189), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(4784), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2296), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 32, + ACTIONS(2294), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181502,7 +200616,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -181512,19 +200625,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49480] = 4, + [64551] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1951), 1, + ACTIONS(4786), 1, + anon_sym_DOT_DOT2, + STATE(2190), 1, + sym_comment, + ACTIONS(4788), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2320), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2318), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [64604] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2191), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1958), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1870), 32, + ACTIONS(1956), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181557,22 +200717,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49529] = 6, + [64653] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4792), 1, + anon_sym_RBRACK, + ACTIONS(4794), 1, + sym__entry_separator, + ACTIONS(4796), 1, + sym_raw_string_begin, + STATE(2192), 1, + sym_comment, + STATE(2269), 1, + aux_sym__types_body_repeat2, + ACTIONS(4790), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64707] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4720), 1, + sym__entry_separator, + STATE(2074), 1, + aux_sym__types_body_repeat2, + STATE(2193), 1, + sym_comment, + ACTIONS(4716), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [64757] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4757), 1, + anon_sym_EQ2, + STATE(2194), 1, + sym_comment, + STATE(2369), 1, + sym__flag_equals_value, + ACTIONS(3842), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(3840), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64809] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1900), 1, sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(1952), 1, + STATE(2195), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(815), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 31, + ACTIONS(904), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181604,17 +200900,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49582] = 4, + [64859] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1953), 1, + ACTIONS(4798), 1, + anon_sym_QMARK2, + STATE(2196), 1, sym_comment, - ACTIONS(1478), 4, + ACTIONS(1608), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1480), 34, + ACTIONS(1610), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181647,19 +200945,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49631] = 4, + [64909] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1954), 1, + ACTIONS(4804), 1, + anon_sym_DASH_DASH, + STATE(2364), 1, + sym_long_flag, + STATE(2197), 2, sym_comment, - ACTIONS(1543), 4, + aux_sym_decl_def_repeat1, + ACTIONS(4800), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1545), 34, + ACTIONS(4802), 31, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181684,7 +200984,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -181692,29 +200991,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49680] = 7, + [64961] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2136), 1, - anon_sym_EQ_GT, - ACTIONS(4316), 1, - anon_sym_DOT_DOT2, - STATE(1955), 1, + ACTIONS(4807), 1, + sym__newline, + STATE(2198), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 5, + ACTIONS(2217), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [65009] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2746), 1, + anon_sym_LPAREN2, + ACTIONS(2748), 1, + sym__unquoted_pattern, + STATE(2199), 1, + sym_comment, + ACTIONS(1750), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2134), 29, + ACTIONS(1856), 30, anon_sym_in, anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181742,23 +201081,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49735] = 6, + [65061] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4812), 1, + anon_sym_RBRACK, + ACTIONS(4814), 1, + sym__entry_separator, + ACTIONS(4816), 1, + sym_raw_string_begin, + STATE(2200), 1, + sym_comment, + STATE(2237), 1, + aux_sym__types_body_repeat2, + ACTIONS(4810), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [65115] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4320), 1, - anon_sym_DOT_DOT2, - STATE(1956), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + STATE(2201), 1, sym_comment, - ACTIONS(4322), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(2096), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 30, + ACTIONS(2094), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181789,23 +201174,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49788] = 6, + [65167] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4324), 1, - anon_sym_DOT_DOT2, - STATE(1957), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(2202), 1, sym_comment, - ACTIONS(4326), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(2752), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 30, + ACTIONS(2750), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181836,68 +201220,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49841] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1958), 1, - sym_comment, - ACTIONS(1466), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1468), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49890] = 6, + [65219] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4316), 1, - anon_sym_DOT_DOT2, - STATE(1959), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(2203), 1, sym_comment, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 5, + ACTIONS(2106), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 30, + ACTIONS(2104), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181928,23 +201266,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49943] = 6, + [65271] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4328), 1, - anon_sym_DOT_DOT2, - STATE(1960), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(2804), 1, + anon_sym_LPAREN2, + STATE(2204), 1, sym_comment, - ACTIONS(4330), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 5, + ACTIONS(2717), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2152), 30, + ACTIONS(2715), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181975,23 +201312,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49996] = 6, + [65323] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4332), 1, - anon_sym_DOT_DOT2, - STATE(1961), 1, + ACTIONS(2758), 1, + anon_sym_LPAREN2, + ACTIONS(2760), 1, + sym__unquoted_pattern, + STATE(2205), 1, sym_comment, - ACTIONS(4334), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 5, + ACTIONS(2744), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2100), 30, + ACTIONS(2742), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182022,23 +201358,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50049] = 6, + [65375] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4336), 1, - anon_sym_DOT_DOT2, - STATE(1962), 1, + STATE(2206), 1, sym_comment, - ACTIONS(4338), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 5, + ACTIONS(2665), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2076), 30, + sym__unquoted_pattern, + ACTIONS(2663), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182060,6 +201392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -182069,23 +201402,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50102] = 6, + [65423] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2207), 1, + sym_comment, + ACTIONS(759), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(761), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [65471] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4340), 1, - anon_sym_DOT_DOT2, - STATE(1963), 1, + ACTIONS(2766), 1, + anon_sym_LPAREN2, + ACTIONS(2768), 1, + sym__unquoted_pattern, + STATE(2208), 1, sym_comment, - ACTIONS(4342), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 5, + ACTIONS(2764), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2120), 30, + ACTIONS(2762), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182116,113 +201492,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50155] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1964), 1, - sym_comment, - ACTIONS(1470), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1472), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [50204] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1965), 1, - sym_comment, - ACTIONS(1474), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1476), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [50253] = 6, + [65523] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4316), 1, - anon_sym_DOT_DOT2, - STATE(1966), 1, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(2209), 1, sym_comment, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 5, + ACTIONS(1016), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2134), 30, + ACTIONS(1014), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182253,22 +201538,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50306] = 6, + [65575] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2770), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2772), 1, sym__unquoted_pattern, - STATE(1967), 1, + STATE(2210), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(1024), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 30, + ACTIONS(1032), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182299,71 +201584,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50358] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4346), 1, - anon_sym_RBRACK, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - STATE(1968), 1, - sym_comment, - STATE(2091), 1, - aux_sym__types_body_repeat2, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [50412] = 6, + [65627] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(1969), 1, + STATE(2211), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(1016), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 30, + ACTIONS(1014), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -182392,65 +201628,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50464] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4352), 1, - sym__newline, - STATE(1970), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1955), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [50512] = 4, + [65675] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1971), 1, + STATE(2212), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1024), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 31, + ACTIONS(1032), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -182470,7 +201663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -182480,19 +201672,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50560] = 4, + [65723] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4822), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4824), 1, + sym_filesize_unit, + ACTIONS(4826), 1, + sym_duration_unit, + STATE(2213), 1, + sym_comment, + ACTIONS(4820), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4818), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [65777] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1972), 1, + STATE(2214), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1922), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1802), 31, + ACTIONS(1920), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182524,19 +201763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50608] = 4, + [65825] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1973), 1, + STATE(2215), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1958), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1870), 31, + ACTIONS(1956), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182568,22 +201807,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50656] = 6, + [65873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(1974), 1, + STATE(2216), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(2052), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 30, + sym__unquoted_pattern, + ACTIONS(2050), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182605,6 +201841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -182614,69 +201851,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50708] = 5, + [65921] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4798), 1, + anon_sym_BANG, + STATE(2217), 1, + sym_comment, + ACTIONS(1608), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1610), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [65971] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1975), 1, + STATE(2218), 1, sym_comment, - ACTIONS(4268), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [50758] = 7, + ACTIONS(775), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(777), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [66019] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4359), 1, + ACTIONS(4832), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4361), 1, + ACTIONS(4834), 1, sym_filesize_unit, - ACTIONS(4363), 1, + ACTIONS(4836), 1, sym_duration_unit, - STATE(1976), 1, + STATE(2219), 1, sym_comment, - ACTIONS(4357), 5, + ACTIONS(4830), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4355), 29, + ACTIONS(4828), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -182706,23 +201987,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [50812] = 8, + [66073] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4838), 1, + sym__newline, + STATE(2220), 1, + sym_comment, + ACTIONS(4841), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3123), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3125), 27, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [66125] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, + ACTIONS(2426), 1, anon_sym_DOT2, - STATE(453), 1, + STATE(447), 1, sym_cell_path, - STATE(518), 1, + STATE(536), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, + STATE(775), 1, sym_path, - STATE(1977), 1, + STATE(2221), 1, sym_comment, - ACTIONS(1432), 2, + ACTIONS(1588), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(1434), 31, + ACTIONS(1590), 31, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -182754,62 +202081,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - [50868] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1978), 1, - sym_comment, - ACTIONS(1976), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1974), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50920] = 5, + [66181] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4814), 1, sym__entry_separator, - STATE(1876), 1, + ACTIONS(4816), 1, + sym_raw_string_begin, + ACTIONS(4843), 1, + anon_sym_RBRACK, + STATE(2222), 1, + sym_comment, + STATE(2237), 1, aux_sym__types_body_repeat2, - STATE(1979), 1, + ACTIONS(4810), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [66235] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2223), 1, sym_comment, - ACTIONS(4260), 35, + ACTIONS(3125), 37, + sym__newline, + anon_sym_LBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -182845,134 +202171,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [50970] = 6, + [66281] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4307), 1, - anon_sym_EQ2, - STATE(1980), 1, + STATE(2224), 1, sym_comment, - STATE(2173), 1, - sym__flag_equals_value, - ACTIONS(4365), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2764), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2762), 32, anon_sym_in, - ACTIONS(4367), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [51022] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4369), 1, sym__newline, - ACTIONS(4373), 1, - anon_sym_LBRACK, - ACTIONS(4378), 1, - anon_sym_DOT_DOT, - STATE(1981), 1, - sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 6, - anon_sym_DOLLAR, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, + anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [51078] = 13, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [66329] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2961), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(1982), 1, + STATE(2225), 1, sym_comment, - STATE(1997), 1, + STATE(2241), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2744), 19, + ACTIONS(2820), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -182992,35 +202268,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51144] = 12, + [66395] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2961), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(1983), 1, + STATE(2226), 1, sym_comment, - STATE(1999), 1, + STATE(2243), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(2822), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 23, + ACTIONS(2820), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -183044,29 +202320,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51208] = 9, + [66459] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2961), 1, sym__newline, - STATE(1984), 1, + STATE(2227), 1, sym_comment, - STATE(2001), 1, + STATE(2245), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2746), 3, + ACTIONS(2822), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2744), 26, + ACTIONS(2820), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -183093,25 +202369,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51266] = 7, + [66517] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2961), 1, sym__newline, - STATE(1985), 1, + STATE(2228), 1, sym_comment, - STATE(2003), 1, + STATE(2247), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2746), 5, + ACTIONS(2822), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2744), 28, + ACTIONS(2820), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -183140,56 +202416,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51320] = 18, + [66571] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2961), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4869), 1, anon_sym_bit_DASHor2, - STATE(1986), 1, + STATE(2229), 1, sym_comment, - STATE(2005), 1, + STATE(2249), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 4, + ACTIONS(2820), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183198,57 +202474,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51396] = 19, + [66647] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2961), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4869), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4871), 1, anon_sym_and2, - STATE(1987), 1, + STATE(2230), 1, sym_comment, - STATE(2007), 1, + STATE(2251), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 3, + ACTIONS(2820), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183257,58 +202533,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51474] = 20, + [66725] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4869), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4871), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4873), 1, anon_sym_xor2, - STATE(1988), 1, + STATE(2231), 1, sym_comment, - STATE(2009), 1, + STATE(2253), 1, aux_sym__repeat_newline, - ACTIONS(2744), 2, + ACTIONS(2820), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183317,40 +202593,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51554] = 14, + [66805] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2961), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(1989), 1, + STATE(2232), 1, sym_comment, - STATE(2011), 1, + STATE(2255), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183359,7 +202635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 11, + ACTIONS(2820), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183371,79 +202647,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51622] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - ACTIONS(4411), 1, - anon_sym_RBRACK, - STATE(1990), 1, - sym_comment, - STATE(2091), 1, - aux_sym__types_body_repeat2, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [51676] = 11, + [66873] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2961), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(1991), 1, + STATE(2233), 1, sym_comment, - STATE(2013), 1, + STATE(2257), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(2822), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2744), 25, + ACTIONS(2820), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -183469,45 +202698,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51738] = 15, + [66935] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2961), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(1992), 1, + STATE(2234), 1, sym_comment, - STATE(2015), 1, + STATE(2259), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2744), 7, + ACTIONS(2820), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183515,7 +202744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183524,54 +202753,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51808] = 16, + [67005] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2961), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - STATE(1993), 1, + STATE(2235), 1, sym_comment, - STATE(2017), 1, + STATE(2261), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2744), 6, + ACTIONS(2820), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183580,55 +202809,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51880] = 17, + [67077] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2961), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - STATE(1994), 1, + STATE(2236), 1, sym_comment, - STATE(2019), 1, + STATE(2263), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2744), 5, + ACTIONS(2820), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183637,20 +202866,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51954] = 7, + [67151] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4415), 1, + ACTIONS(4177), 1, + sym_raw_string_begin, + ACTIONS(4875), 1, + sym__entry_separator, + STATE(2237), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(4172), 34, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(4417), 1, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [67201] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4814), 1, sym__entry_separator, - ACTIONS(4419), 1, + ACTIONS(4816), 1, sym_raw_string_begin, - STATE(1995), 1, + ACTIONS(4878), 1, + anon_sym_RBRACK, + STATE(2237), 1, + aux_sym__types_body_repeat2, + STATE(2238), 1, sym_comment, - STATE(2102), 1, + ACTIONS(4810), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [67255] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4814), 1, + sym__entry_separator, + ACTIONS(4816), 1, + sym_raw_string_begin, + ACTIONS(4880), 1, + anon_sym_RBRACK, + STATE(2237), 1, aux_sym__types_body_repeat2, - ACTIONS(4413), 33, + STATE(2239), 1, + sym_comment, + ACTIONS(4810), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -183684,40 +203005,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [52008] = 13, + [67309] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(1996), 1, + STATE(2240), 1, sym_comment, - STATE(2032), 1, + STATE(2277), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2702), 19, + ACTIONS(2920), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -183737,38 +203058,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52074] = 12, + [67375] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(1997), 1, + STATE(2241), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2706), 20, + ACTIONS(2944), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -183789,35 +203110,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52138] = 12, + [67439] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(1998), 1, + STATE(2242), 1, sym_comment, - STATE(2033), 1, + STATE(2278), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 23, + ACTIONS(2920), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -183841,33 +203162,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52202] = 11, + [67503] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(1999), 1, + STATE(2243), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2946), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 24, + ACTIONS(2944), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -183892,29 +203213,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52264] = 9, + [67565] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2956), 1, sym__newline, - STATE(2000), 1, + STATE(2244), 1, sym_comment, - STATE(2034), 1, + STATE(2279), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2704), 3, + ACTIONS(2922), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2702), 26, + ACTIONS(2920), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -183941,27 +203262,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52322] = 8, + [67623] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2001), 1, + STATE(2245), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2708), 3, + ACTIONS(2946), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2706), 27, + ACTIONS(2944), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -183989,25 +203310,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52378] = 7, + [67679] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2956), 1, sym__newline, - STATE(2002), 1, + STATE(2246), 1, sym_comment, - STATE(2035), 1, + STATE(2280), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2704), 5, + ACTIONS(2922), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2702), 28, + ACTIONS(2920), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -184036,23 +203357,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52432] = 6, + [67733] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2003), 1, + STATE(2247), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2708), 5, + ACTIONS(2946), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2706), 29, + ACTIONS(2944), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -184082,56 +203403,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52484] = 18, + [67785] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4869), 1, anon_sym_bit_DASHor2, - STATE(2004), 1, + STATE(2248), 1, sym_comment, - STATE(2036), 1, + STATE(2281), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 4, + ACTIONS(2920), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184140,55 +203461,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52560] = 17, + [67861] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4904), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4906), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2005), 1, + STATE(2249), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 5, + ACTIONS(2944), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184197,57 +203518,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52634] = 19, + [67935] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4869), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4871), 1, anon_sym_and2, - STATE(2006), 1, + STATE(2250), 1, sym_comment, - STATE(2037), 1, + STATE(2282), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 3, + ACTIONS(2920), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184256,56 +203577,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52712] = 18, + [68013] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4904), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4906), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4908), 1, anon_sym_and2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2007), 1, + STATE(2251), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 4, + ACTIONS(2944), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184314,58 +203635,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52788] = 20, + [68089] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4869), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4871), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4873), 1, anon_sym_xor2, - STATE(2008), 1, + STATE(2252), 1, sym_comment, - STATE(2038), 1, + STATE(2283), 1, aux_sym__repeat_newline, - ACTIONS(2702), 2, + ACTIONS(2920), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184374,57 +203695,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52868] = 19, + [68169] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4904), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4906), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4908), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4910), 1, anon_sym_xor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2009), 1, + STATE(2253), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 3, + ACTIONS(2944), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184433,40 +203754,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52946] = 14, + [68247] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(2010), 1, + STATE(2254), 1, sym_comment, - STATE(2039), 1, + STATE(2284), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184475,7 +203796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 11, + ACTIONS(2920), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184487,38 +203808,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53014] = 13, + [68315] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2011), 1, + STATE(2255), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184527,7 +203848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 12, + ACTIONS(2944), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -184540,32 +203861,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53080] = 11, + [68381] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(2012), 1, + STATE(2256), 1, sym_comment, - STATE(2040), 1, + STATE(2285), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 25, + ACTIONS(2920), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -184591,30 +203912,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53142] = 10, + [68443] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2013), 1, + STATE(2257), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2946), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2706), 26, + ACTIONS(2944), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -184641,45 +203962,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53202] = 15, + [68503] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(2014), 1, + STATE(2258), 1, sym_comment, - STATE(2041), 1, + STATE(2286), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 7, + ACTIONS(2920), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184687,7 +204008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184696,43 +204017,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53272] = 14, + [68573] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2015), 1, + STATE(2259), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 8, + ACTIONS(2944), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -184741,7 +204062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184750,54 +204071,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53340] = 16, + [68641] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - STATE(2016), 1, + STATE(2260), 1, sym_comment, - STATE(2042), 1, + STATE(2287), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 6, + ACTIONS(2920), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184806,45 +204127,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53412] = 15, + [68713] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2017), 1, + STATE(2261), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 7, + ACTIONS(2944), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -184852,7 +204173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184861,55 +204182,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53482] = 17, + [68783] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2956), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - STATE(2018), 1, + STATE(2262), 1, sym_comment, - STATE(2043), 1, + STATE(2288), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 5, + ACTIONS(2920), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184918,54 +204239,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53556] = 16, + [68857] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4904), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2019), 1, + STATE(2263), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 6, + ACTIONS(2944), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184974,40 +204295,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53628] = 13, + [68929] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(3032), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(2020), 1, + STATE(2264), 1, sym_comment, - STATE(2045), 1, + STATE(2290), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2712), 19, + ACTIONS(2950), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185027,35 +204348,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53694] = 12, + [68995] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(3032), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(2021), 1, + STATE(2265), 1, sym_comment, - STATE(2047), 1, + STATE(2292), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + ACTIONS(2952), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 23, + ACTIONS(2950), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185079,29 +204400,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53758] = 9, + [69059] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(3032), 1, sym__newline, - STATE(2022), 1, + STATE(2266), 1, sym_comment, - STATE(2049), 1, + STATE(2294), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2714), 3, + ACTIONS(2952), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2712), 26, + ACTIONS(2950), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -185128,25 +204449,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53816] = 7, + [69117] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(3032), 1, sym__newline, - STATE(2023), 1, + STATE(2267), 1, sym_comment, - STATE(2051), 1, + STATE(2296), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2714), 5, + ACTIONS(2952), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2712), 28, + ACTIONS(2950), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -185175,56 +204496,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53870] = 18, + [69171] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(3032), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4869), 1, anon_sym_bit_DASHor2, - STATE(2024), 1, + STATE(2268), 1, sym_comment, - STATE(2053), 1, + STATE(2298), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 4, + ACTIONS(2950), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185233,117 +204554,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53946] = 19, - ACTIONS(3), 1, + [69247] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - STATE(2025), 1, + ACTIONS(4177), 1, + sym_raw_string_begin, + ACTIONS(4912), 1, + sym__entry_separator, + STATE(2269), 2, sym_comment, - STATE(2055), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2712), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + aux_sym__types_body_repeat2, + ACTIONS(4172), 34, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [54024] = 20, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_RBRACK, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [69297] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4869), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4871), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4873), 1, anon_sym_xor2, - STATE(2026), 1, + STATE(2270), 1, sym_comment, - STATE(2057), 1, + STATE(2302), 1, aux_sym__repeat_newline, - ACTIONS(2712), 2, + ACTIONS(2950), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185352,40 +204659,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54104] = 14, + [69377] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(3032), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(2027), 1, + STATE(2271), 1, sym_comment, - STATE(2059), 1, + STATE(2304), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185394,7 +204701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 11, + ACTIONS(2950), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185406,32 +204713,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54172] = 11, + [69445] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(3032), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(2028), 1, + STATE(2272), 1, sym_comment, - STATE(2061), 1, + STATE(2306), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + ACTIONS(2952), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2712), 25, + ACTIONS(2950), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185457,45 +204764,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54234] = 15, + [69507] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(3032), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(2029), 1, + STATE(2273), 1, sym_comment, - STATE(2063), 1, + STATE(2308), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 7, + ACTIONS(2950), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185503,7 +204810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185512,54 +204819,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54304] = 16, + [69577] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(3032), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - STATE(2030), 1, + STATE(2274), 1, sym_comment, - STATE(2065), 1, + STATE(2310), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 6, + ACTIONS(2950), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185568,55 +204875,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54376] = 17, + [69649] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(3032), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - STATE(2031), 1, + STATE(2275), 1, sym_comment, - STATE(2067), 1, + STATE(2312), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 5, + ACTIONS(2950), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185625,38 +204932,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54450] = 12, + [69723] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2276), 1, + sym_comment, + ACTIONS(894), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(896), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [69771] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2032), 1, + STATE(2277), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2720), 20, + ACTIONS(2814), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -185677,33 +205028,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54514] = 11, + [69835] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2033), 1, + STATE(2278), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2816), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 24, + ACTIONS(2814), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -185728,27 +205079,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54576] = 8, + [69897] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2034), 1, + STATE(2279), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, + ACTIONS(2816), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2720), 27, + ACTIONS(2814), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185776,23 +205127,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54632] = 6, + [69953] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2035), 1, + STATE(2280), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(2816), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 29, + ACTIONS(2814), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185822,55 +205173,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54684] = 17, + [70005] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4904), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4906), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2036), 1, + STATE(2281), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 5, + ACTIONS(2814), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185879,56 +205230,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54758] = 18, + [70079] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4904), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4906), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4908), 1, anon_sym_and2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2037), 1, + STATE(2282), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 4, + ACTIONS(2814), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185937,57 +205288,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54834] = 19, + [70155] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4904), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4906), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4908), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4910), 1, anon_sym_xor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2038), 1, + STATE(2283), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 3, + ACTIONS(2814), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185996,38 +205347,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54912] = 13, + [70233] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2039), 1, + STATE(2284), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186036,7 +205387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 12, + ACTIONS(2814), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186049,30 +205400,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54978] = 10, + [70299] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2040), 1, + STATE(2285), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2816), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 26, + ACTIONS(2814), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186099,43 +205450,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55038] = 14, + [70359] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2041), 1, + STATE(2286), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 8, + ACTIONS(2814), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186144,7 +205495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186153,45 +205504,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55106] = 15, + [70427] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2042), 1, + STATE(2287), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 7, + ACTIONS(2814), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186199,7 +205550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186208,54 +205559,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55176] = 16, + [70497] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4904), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2043), 1, + STATE(2288), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 6, + ACTIONS(2814), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186264,40 +205615,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55248] = 13, + [70569] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(3129), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(2044), 1, + STATE(2289), 1, sym_comment, - STATE(2068), 1, + STATE(2313), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2728), 19, + ACTIONS(2806), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -186317,38 +205668,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55314] = 12, + [70635] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2045), 1, + STATE(2290), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2732), 20, + ACTIONS(2834), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186369,35 +205720,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55378] = 12, + [70699] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(3129), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(2046), 1, + STATE(2291), 1, sym_comment, - STATE(2069), 1, + STATE(2314), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(2808), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 23, + ACTIONS(2806), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -186421,33 +205772,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55442] = 11, + [70763] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2047), 1, + STATE(2292), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2836), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 24, + ACTIONS(2834), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186472,29 +205823,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55504] = 9, + [70825] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(3129), 1, sym__newline, - STATE(2048), 1, + STATE(2293), 1, sym_comment, - STATE(2070), 1, + STATE(2315), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2730), 3, + ACTIONS(2808), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2728), 26, + ACTIONS(2806), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -186521,27 +205872,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55562] = 8, + [70883] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2049), 1, + STATE(2294), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2734), 3, + ACTIONS(2836), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2732), 27, + ACTIONS(2834), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186569,25 +205920,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55618] = 7, + [70939] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(3129), 1, sym__newline, - STATE(2050), 1, + STATE(2295), 1, sym_comment, - STATE(2071), 1, + STATE(2316), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2730), 5, + ACTIONS(2808), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2728), 28, + ACTIONS(2806), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -186616,23 +205967,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55672] = 6, + [70993] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2051), 1, + STATE(2296), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2734), 5, + ACTIONS(2836), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2732), 29, + ACTIONS(2834), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186662,56 +206013,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55724] = 18, + [71045] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(3129), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4869), 1, anon_sym_bit_DASHor2, - STATE(2052), 1, + STATE(2297), 1, sym_comment, - STATE(2072), 1, + STATE(2317), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 4, + ACTIONS(2806), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186720,55 +206071,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55800] = 17, + [71121] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4904), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4906), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2053), 1, + STATE(2298), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 5, + ACTIONS(2834), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186777,57 +206128,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55874] = 19, + [71195] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(3129), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4869), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4871), 1, anon_sym_and2, - STATE(2054), 1, + STATE(2299), 1, sym_comment, - STATE(2073), 1, + STATE(2318), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 3, + ACTIONS(2806), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186836,56 +206187,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55952] = 18, + [71273] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4904), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4906), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4908), 1, anon_sym_and2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2055), 1, + STATE(2300), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 4, + ACTIONS(2834), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186894,58 +206245,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56028] = 20, + [71349] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4869), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4871), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4873), 1, anon_sym_xor2, - STATE(2056), 1, + STATE(2301), 1, sym_comment, - STATE(2074), 1, + STATE(2319), 1, aux_sym__repeat_newline, - ACTIONS(2728), 2, + ACTIONS(2806), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186954,57 +206305,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56108] = 19, + [71429] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4904), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4906), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4908), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4910), 1, anon_sym_xor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2057), 1, + STATE(2302), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 3, + ACTIONS(2834), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187013,40 +206364,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56186] = 14, + [71507] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(3129), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(2058), 1, + STATE(2303), 1, sym_comment, - STATE(2075), 1, + STATE(2320), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187055,7 +206406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 11, + ACTIONS(2806), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187067,38 +206418,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56254] = 13, + [71575] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2059), 1, + STATE(2304), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187107,7 +206458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 12, + ACTIONS(2834), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187120,32 +206471,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56320] = 11, + [71641] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(3129), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - STATE(2060), 1, + STATE(2305), 1, sym_comment, - STATE(2076), 1, + STATE(2321), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(2808), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2728), 25, + ACTIONS(2806), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -187171,30 +206522,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56382] = 10, + [71703] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2061), 1, + STATE(2306), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2836), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2732), 26, + ACTIONS(2834), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -187221,275 +206572,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56442] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(2062), 1, - sym_comment, - STATE(2077), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2728), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4397), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [56512] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2063), 1, - sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2732), 8, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [56580] = 16, + [71763] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(3129), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - STATE(2064), 1, + STATE(2307), 1, sym_comment, - STATE(2078), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2728), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4397), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [56652] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(2322), 1, aux_sym__repeat_newline, - STATE(2065), 1, - sym_comment, - ACTIONS(4421), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 7, - sym__newline, + ACTIONS(2806), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [56722] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, anon_sym_bit_DASHxor2, - STATE(2066), 1, - sym_comment, - STATE(2079), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2728), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187498,193 +206627,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56796] = 16, + [71833] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2067), 1, - sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2732), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [56868] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2068), 1, + STATE(2308), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2740), 20, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [56932] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2069), 1, - sym_comment, - ACTIONS(2742), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2740), 24, - anon_sym_in, + ACTIONS(2834), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56994] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2070), 1, - sym_comment, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2742), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2740), 27, + ACTIONS(4898), 8, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187692,322 +206681,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57050] = 6, + [71901] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2071), 1, - sym_comment, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2742), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2740), 29, - anon_sym_in, + ACTIONS(3129), 1, sym__newline, + ACTIONS(4847), 1, anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57102] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2072), 1, - sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2740), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [57176] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - ACTIONS(4447), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2073), 1, - sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2740), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [57252] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - ACTIONS(4447), 1, - anon_sym_and2, - ACTIONS(4449), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2074), 1, + STATE(2309), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2740), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [57330] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - STATE(540), 1, + STATE(2323), 1, aux_sym__repeat_newline, - STATE(2075), 1, - sym_comment, - ACTIONS(4421), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 12, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57396] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2076), 1, - sym_comment, - ACTIONS(2742), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2740), 26, - anon_sym_in, - sym__newline, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2806), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4861), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -188015,65 +206737,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57456] = 14, + [71973] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - STATE(540), 1, + ACTIONS(4902), 1, + anon_sym_bit_DASHand2, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2077), 1, + STATE(2310), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 8, + ACTIONS(2834), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188082,53 +206792,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57524] = 15, + [72043] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(3129), 1, + sym__newline, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2078), 1, + ACTIONS(4867), 1, + anon_sym_bit_DASHxor2, + STATE(2311), 1, sym_comment, - ACTIONS(4421), 2, + STATE(2324), 1, + aux_sym__repeat_newline, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 7, - sym__newline, + ACTIONS(2806), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188137,54 +206849,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57594] = 16, + [72117] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4904), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2079), 1, + STATE(2312), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4882), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 6, + ACTIONS(2834), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188193,113 +206905,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57666] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2080), 1, - sym_comment, - ACTIONS(747), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [57714] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4455), 1, - anon_sym_DASH_DASH, - STATE(2148), 1, - sym_long_flag, - STATE(2081), 2, - sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(4451), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4453), 31, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [57766] = 4, + [72189] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(2082), 1, + ACTIONS(4884), 1, + anon_sym_DASH2, + ACTIONS(4894), 1, + anon_sym_PLUS2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2313), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(4882), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4886), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 32, + ACTIONS(4890), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4892), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4896), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4888), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2876), 20, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188310,40 +206950,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57814] = 4, + [72253] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(2083), 1, + ACTIONS(4884), 1, + anon_sym_DASH2, + ACTIONS(4894), 1, + anon_sym_PLUS2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2314), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(2878), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4886), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1018), 32, + ACTIONS(4890), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4892), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4896), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2876), 24, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188362,34 +207005,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57862] = 6, + [72315] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2084), 1, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2315), 1, sym_comment, - ACTIONS(2525), 5, - anon_sym_GT2, + ACTIONS(4886), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(4890), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4892), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2878), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2523), 30, + ACTIONS(2876), 27, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188408,215 +207051,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57914] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(974), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4458), 1, - sym_filesize_unit, - ACTIONS(4460), 1, - sym_duration_unit, - STATE(2085), 1, - sym_comment, - ACTIONS(972), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(970), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [57968] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - sym__newline, - STATE(2086), 1, - sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [58020] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - ACTIONS(4465), 1, - anon_sym_RBRACK, - STATE(2087), 1, - sym_comment, - STATE(2102), 1, - aux_sym__types_body_repeat2, - ACTIONS(4413), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58074] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2088), 1, - sym_comment, - ACTIONS(2940), 37, - sym__newline, - anon_sym_LBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [58120] = 4, + [72371] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2089), 1, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2316), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(4890), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2878), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 32, + ACTIONS(2876), 29, anon_sym_in, sym__newline, anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188635,8 +207095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -188644,117 +207102,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58168] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2090), 1, - sym_comment, - ACTIONS(771), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [58216] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4467), 1, - sym__entry_separator, - STATE(2091), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 34, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_RBRACK, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [58266] = 6, + [72423] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2092), 1, + ACTIONS(4884), 1, + anon_sym_DASH2, + ACTIONS(4894), 1, + anon_sym_PLUS2, + ACTIONS(4902), 1, + anon_sym_bit_DASHand2, + ACTIONS(4904), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4906), 1, + anon_sym_bit_DASHor2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2317), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(4882), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4886), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2567), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(4890), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4892), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4896), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4888), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4900), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2876), 5, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4898), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -188762,42 +207159,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + [72497] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4884), 1, + anon_sym_DASH2, + ACTIONS(4894), 1, + anon_sym_PLUS2, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, + ACTIONS(4904), 1, anon_sym_bit_DASHxor2, + ACTIONS(4906), 1, anon_sym_bit_DASHor2, - [58318] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2093), 1, + ACTIONS(4908), 1, + anon_sym_and2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2318), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(4882), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4886), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, + ACTIONS(4890), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4892), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4896), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2876), 4, + sym__newline, + anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, + ACTIONS(4888), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4900), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4898), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -188805,136 +207217,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [72573] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4884), 1, + anon_sym_DASH2, + ACTIONS(4894), 1, + anon_sym_PLUS2, + ACTIONS(4902), 1, + anon_sym_bit_DASHand2, + ACTIONS(4904), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4906), 1, + anon_sym_bit_DASHor2, + ACTIONS(4908), 1, + anon_sym_and2, + ACTIONS(4910), 1, + anon_sym_xor2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2319), 1, + sym_comment, + ACTIONS(4882), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4886), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4890), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4892), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4896), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2876), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58366] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4470), 1, - anon_sym_QMARK2, - STATE(2094), 1, - sym_comment, - ACTIONS(1438), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [58416] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4470), 1, - anon_sym_BANG, - STATE(2095), 1, - sym_comment, - ACTIONS(1438), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4898), 8, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [58466] = 6, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [72651] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2096), 1, + ACTIONS(4884), 1, + anon_sym_DASH2, + ACTIONS(4894), 1, + anon_sym_PLUS2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2320), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(4882), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4886), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2635), 30, + ACTIONS(4890), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4892), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4896), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4888), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4898), 8, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -188942,42 +207316,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(2876), 12, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58518] = 6, + [72717] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2097), 1, + ACTIONS(4884), 1, + anon_sym_DASH2, + ACTIONS(4894), 1, + anon_sym_PLUS2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2321), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(2878), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4886), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 30, + ACTIONS(4890), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4892), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2876), 26, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188996,36 +207374,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58570] = 5, + [72777] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(2098), 1, + ACTIONS(4884), 1, + anon_sym_DASH2, + ACTIONS(4894), 1, + anon_sym_PLUS2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2322), 1, sym_comment, - ACTIONS(868), 5, + ACTIONS(4882), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4886), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 31, - anon_sym_in, + ACTIONS(4890), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4892), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4896), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4888), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4900), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2876), 8, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4898), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189033,92 +207433,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [72845] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4884), 1, + anon_sym_DASH2, + ACTIONS(4894), 1, + anon_sym_PLUS2, + ACTIONS(4902), 1, + anon_sym_bit_DASHand2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2323), 1, + sym_comment, + ACTIONS(4882), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4886), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4890), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4892), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4896), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58620] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4476), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4478), 1, - sym_filesize_unit, - ACTIONS(4480), 1, - sym_duration_unit, - STATE(2099), 1, - sym_comment, - ACTIONS(4474), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4472), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [58674] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2100), 1, - sym_comment, - ACTIONS(1016), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1018), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(2876), 7, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4898), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189126,133 +207488,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [72915] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4884), 1, + anon_sym_DASH2, + ACTIONS(4894), 1, + anon_sym_PLUS2, + ACTIONS(4902), 1, + anon_sym_bit_DASHand2, + ACTIONS(4904), 1, + anon_sym_bit_DASHxor2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2324), 1, + sym_comment, + ACTIONS(4882), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4886), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4890), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4892), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4896), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58726] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(888), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4482), 1, - sym_filesize_unit, - ACTIONS(4484), 1, - sym_duration_unit, - STATE(2101), 1, - sym_comment, - ACTIONS(886), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(884), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [58780] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4486), 1, - sym__entry_separator, - STATE(2102), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(2876), 6, + sym__newline, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58830] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4898), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [72987] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4493), 1, + ACTIONS(910), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4495), 1, + ACTIONS(4915), 1, sym_filesize_unit, - ACTIONS(4497), 1, + ACTIONS(4917), 1, sym_duration_unit, - STATE(2103), 1, + STATE(2325), 1, sym_comment, - ACTIONS(4491), 5, + ACTIONS(908), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 29, + ACTIONS(906), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189277,97 +207586,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_starts_DASHwith, anon_sym_not_DASHstarts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [58884] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - ACTIONS(4499), 1, - anon_sym_RBRACK, - STATE(2102), 1, - aux_sym__types_body_repeat2, - STATE(2104), 1, - sym_comment, - ACTIONS(4413), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [73041] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4919), 1, + sym__newline, + ACTIONS(4923), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(4926), 1, 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, + STATE(2326), 1, + sym_comment, + ACTIONS(4841), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3123), 6, + anon_sym_DOLLAR, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [58938] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, + ACTIONS(3125), 26, sym_raw_string_begin, - ACTIONS(4501), 1, - anon_sym_RBRACK, - STATE(2102), 1, - aux_sym__types_body_repeat2, - STATE(2105), 1, - sym_comment, - ACTIONS(4413), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -189375,20 +207639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58992] = 7, + [73097] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4919), 1, sym__newline, - ACTIONS(4373), 1, + ACTIONS(4923), 1, anon_sym_LBRACK, - STATE(2106), 1, + STATE(2327), 1, sym_comment, - ACTIONS(4376), 2, + ACTIONS(4841), 2, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(2938), 7, + ACTIONS(3123), 7, anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -189396,7 +207659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 26, + ACTIONS(3125), 26, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -189423,67 +207686,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, - [59046] = 7, + [73151] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4507), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4509), 1, - sym_filesize_unit, - ACTIONS(4511), 1, - sym_duration_unit, - STATE(2107), 1, + ACTIONS(4720), 1, + sym__entry_separator, + STATE(2074), 1, + aux_sym__types_body_repeat2, + STATE(2328), 1, sym_comment, - ACTIONS(4505), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4503), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [59100] = 7, + ACTIONS(4724), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [73201] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(4794), 1, sym__entry_separator, - ACTIONS(4350), 1, + ACTIONS(4796), 1, sym_raw_string_begin, - ACTIONS(4513), 1, + ACTIONS(4929), 1, anon_sym_RBRACK, - STATE(2091), 1, + STATE(2269), 1, aux_sym__types_body_repeat2, - STATE(2108), 1, + STATE(2329), 1, sym_comment, - ACTIONS(4344), 33, + ACTIONS(4790), 33, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -189517,20 +207778,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59154] = 4, + [73255] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2109), 1, + ACTIONS(924), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4931), 1, + sym_filesize_unit, + ACTIONS(4933), 1, + sym_duration_unit, + STATE(2330), 1, sym_comment, - ACTIONS(849), 7, + ACTIONS(922), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, + ACTIONS(920), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [73309] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4939), 1, aux_sym_cmd_identifier_token6, + ACTIONS(4941), 1, sym_filesize_unit, - ACTIONS(851), 30, + ACTIONS(4943), 1, + sym_duration_unit, + STATE(2331), 1, + sym_comment, + ACTIONS(4937), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4935), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189560,21 +207872,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + [73363] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4949), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4951), 1, + sym_filesize_unit, + ACTIONS(4953), 1, sym_duration_unit, - [59202] = 7, + STATE(2332), 1, + sym_comment, + ACTIONS(4947), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4945), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [73417] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(4794), 1, sym__entry_separator, - ACTIONS(4350), 1, + ACTIONS(4796), 1, sym_raw_string_begin, - ACTIONS(4515), 1, + ACTIONS(4955), 1, anon_sym_RBRACK, - STATE(2091), 1, + STATE(2269), 1, aux_sym__types_body_repeat2, - STATE(2110), 1, + STATE(2333), 1, sym_comment, - ACTIONS(4344), 33, + ACTIONS(4790), 33, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -189608,22 +207966,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59256] = 4, - ACTIONS(3), 1, + [73471] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2111), 1, + ACTIONS(4794), 1, + sym__entry_separator, + ACTIONS(4796), 1, + sym_raw_string_begin, + ACTIONS(4957), 1, + anon_sym_RBRACK, + STATE(2269), 1, + aux_sym__types_body_repeat2, + STATE(2334), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(4790), 33, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 32, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -189637,13 +207999,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -189651,64 +208013,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59303] = 4, - ACTIONS(103), 1, + [73525] = 19, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2112), 1, + ACTIONS(3032), 1, + sym__newline, + ACTIONS(4847), 1, + anon_sym_DASH2, + ACTIONS(4857), 1, + anon_sym_PLUS2, + ACTIONS(4865), 1, + anon_sym_bit_DASHand2, + ACTIONS(4867), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4869), 1, + anon_sym_bit_DASHor2, + ACTIONS(4871), 1, + anon_sym_and2, + STATE(2300), 1, + aux_sym__repeat_newline, + STATE(2335), 1, sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(4845), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4849), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4853), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4855), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4859), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2950), 3, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [59350] = 4, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4851), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4863), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4861), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [73603] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2113), 1, + ACTIONS(1900), 1, + sym__unquoted_pattern, + STATE(2336), 1, sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 34, + ACTIONS(815), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(904), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [73652] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(2337), 1, + sym_comment, + ACTIONS(1024), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1032), 32, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -189722,14 +208146,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -189737,18 +208160,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59397] = 5, + [73701] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2970), 1, + anon_sym_DASH2, + ACTIONS(2980), 1, + anon_sym_PLUS2, + ACTIONS(2984), 1, + anon_sym_bit_DASHand2, + ACTIONS(2986), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2988), 1, + anon_sym_bit_DASHor2, + ACTIONS(3014), 1, + anon_sym_and2, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(3020), 1, + anon_sym_xor2, + ACTIONS(4959), 1, + anon_sym_or2, + STATE(2338), 1, + sym_comment, + STATE(2345), 1, + aux_sym__repeat_newline, + ACTIONS(2959), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2968), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2972), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2978), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2982), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2974), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2976), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2966), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [73780] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2339), 1, + sym_comment, + ACTIONS(2310), 36, + sym__newline, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [73825] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, + ACTIONS(4573), 1, sym__unquoted_pattern, - STATE(2114), 1, + STATE(2340), 1, sym_comment, - ACTIONS(2637), 3, + ACTIONS(815), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2635), 32, + ACTIONS(904), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189781,18 +208305,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59446] = 5, + [73874] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4147), 1, - sym__unquoted_pattern, - STATE(2115), 1, + ACTIONS(4961), 1, + anon_sym_LBRACK2, + STATE(2341), 1, sym_comment, - ACTIONS(868), 3, + ACTIONS(2250), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 32, + ACTIONS(2248), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189825,18 +208349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59495] = 5, + [73923] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, + ACTIONS(2748), 1, sym__unquoted_pattern, - STATE(2116), 1, + STATE(2342), 1, sym_comment, - ACTIONS(1619), 3, + ACTIONS(1750), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1706), 32, + ACTIONS(1856), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189869,107 +208393,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59544] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4517), 1, - sym__newline, - STATE(2117), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3738), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [59593] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - STATE(2102), 1, - aux_sym__types_body_repeat2, - STATE(2118), 1, - sym_comment, - ACTIONS(4413), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [59644] = 5, + [73972] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2119), 1, + STATE(2343), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(2665), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(994), 32, + sym__unquoted_pattern, + ACTIONS(2663), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190002,24 +208436,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59693] = 6, - ACTIONS(103), 1, + [74019] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - STATE(2091), 1, - aux_sym__types_body_repeat2, - STATE(2120), 1, + STATE(2344), 1, sym_comment, - ACTIONS(4344), 33, + ACTIONS(1690), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1692), 32, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -190033,13 +208465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190047,19 +208479,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59744] = 5, + [74066] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4520), 1, + ACTIONS(2994), 1, + anon_sym_DASH2, + ACTIONS(3004), 1, + anon_sym_PLUS2, + ACTIONS(3008), 1, + anon_sym_bit_DASHand2, + ACTIONS(3010), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3012), 1, + anon_sym_bit_DASHor2, + ACTIONS(3016), 1, + anon_sym_and2, + ACTIONS(3018), 1, sym__newline, - STATE(2121), 2, + ACTIONS(3022), 1, + anon_sym_xor2, + ACTIONS(4963), 1, + anon_sym_or2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2345), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 3, + ACTIONS(2964), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2992), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2996), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3002), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3006), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2998), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3000), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2990), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [74145] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2346), 1, + sym_comment, + ACTIONS(4195), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(4193), 34, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [74192] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(2347), 1, + sym_comment, + ACTIONS(1016), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3738), 31, + ACTIONS(1014), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190084,6 +208617,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190091,18 +208625,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59793] = 5, + [74241] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2122), 1, + STATE(2348), 1, sym_comment, - ACTIONS(1016), 3, + ACTIONS(1694), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1018), 32, + anon_sym_DOT2, + ACTIONS(1696), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190135,57 +208668,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59842] = 20, + [74288] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(4847), 1, anon_sym_DASH2, - ACTIONS(2847), 1, + ACTIONS(4857), 1, anon_sym_PLUS2, - ACTIONS(2858), 1, + ACTIONS(4865), 1, anon_sym_bit_DASHand2, - ACTIONS(2860), 1, + ACTIONS(4867), 1, anon_sym_bit_DASHxor2, - ACTIONS(2862), 1, + ACTIONS(4869), 1, anon_sym_bit_DASHor2, - ACTIONS(2908), 1, + ACTIONS(4871), 1, anon_sym_and2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(2914), 1, + ACTIONS(4873), 1, anon_sym_xor2, - ACTIONS(4523), 1, + ACTIONS(4965), 1, anon_sym_or2, - STATE(2123), 1, + STATE(2349), 1, sym_comment, - STATE(2124), 1, + STATE(2350), 1, aux_sym__repeat_newline, - ACTIONS(2835), 2, + ACTIONS(4845), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2839), 2, + ACTIONS(4849), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2843), 2, + ACTIONS(4853), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2845), 2, + ACTIONS(4855), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2849), 2, + ACTIONS(4859), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2841), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2856), 4, + ACTIONS(4863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2851), 8, + ACTIONS(4861), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190194,57 +208727,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59921] = 20, + [74367] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2792), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(4884), 1, anon_sym_DASH2, - ACTIONS(2798), 1, + ACTIONS(4894), 1, anon_sym_PLUS2, - ACTIONS(2802), 1, + ACTIONS(4902), 1, anon_sym_bit_DASHand2, - ACTIONS(2804), 1, + ACTIONS(4904), 1, anon_sym_bit_DASHxor2, - ACTIONS(2903), 1, + ACTIONS(4906), 1, anon_sym_bit_DASHor2, - ACTIONS(2910), 1, + ACTIONS(4908), 1, anon_sym_and2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(2918), 1, + ACTIONS(4910), 1, anon_sym_xor2, - ACTIONS(4525), 1, + ACTIONS(4967), 1, anon_sym_or2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2124), 1, + STATE(2350), 1, sym_comment, - ACTIONS(2782), 2, + ACTIONS(4882), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4886), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2784), 2, + ACTIONS(4890), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2786), 2, + ACTIONS(4892), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2800), 2, + ACTIONS(4896), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2794), 4, + ACTIONS(4888), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2796), 4, + ACTIONS(4900), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2788), 8, + ACTIONS(4898), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190253,110 +208786,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60000] = 5, + [74446] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(2125), 1, + ACTIONS(4969), 1, + sym__newline, + STATE(2351), 2, sym_comment, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60049] = 5, - ACTIONS(3), 1, + aux_sym__types_body_repeat1, + ACTIONS(4186), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(4188), 27, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [74495] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4527), 1, - anon_sym_LBRACK2, - STATE(2126), 1, - sym_comment, - ACTIONS(2130), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2128), 32, + ACTIONS(4814), 1, + sym__entry_separator, + ACTIONS(4816), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(2237), 1, + aux_sym__types_body_repeat2, + STATE(2352), 1, + sym_comment, + ACTIONS(4810), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60098] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [74546] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2127), 1, + ACTIONS(4794), 1, + sym__entry_separator, + ACTIONS(4796), 1, + sym_raw_string_begin, + STATE(2269), 1, + aux_sym__types_body_repeat2, + STATE(2353), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(4790), 33, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 32, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -190370,13 +208906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190384,57 +208920,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60145] = 20, + [74597] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4217), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4229), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4233), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4235), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4265), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4277), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4281), 1, anon_sym_xor2, - ACTIONS(4529), 1, + ACTIONS(4972), 1, anon_sym_or2, - STATE(2128), 1, + STATE(2354), 1, sym_comment, - STATE(2129), 1, + STATE(2355), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4215), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4219), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4221), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4223), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4213), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190443,57 +208979,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60224] = 20, + [74676] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(4423), 1, + ACTIONS(4199), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4209), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4271), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4273), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4275), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4279), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4283), 1, anon_sym_xor2, - ACTIONS(4531), 1, + ACTIONS(4974), 1, anon_sym_or2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2129), 1, + STATE(2355), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4197), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4201), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4205), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4207), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4211), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4203), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4269), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4267), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190502,135 +209038,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60303] = 20, + [74755] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2356), 1, + sym_comment, + ACTIONS(4195), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(4193), 34, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_RBRACK, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74802] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - ACTIONS(3826), 1, - anon_sym_xor2, - ACTIONS(4533), 1, - anon_sym_or2, - STATE(2130), 1, + ACTIONS(2768), 1, + sym__unquoted_pattern, + STATE(2357), 1, sym_comment, - STATE(2131), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(2764), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [60382] = 20, + ACTIONS(2762), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74851] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(4976), 1, sym__newline, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - ACTIONS(3862), 1, - anon_sym_xor2, - ACTIONS(4535), 1, - anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2131), 1, + STATE(2358), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(4186), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4188), 31, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74900] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2359), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(1657), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [60461] = 4, + anon_sym_DOT2, + ACTIONS(1659), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74947] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2132), 1, + STATE(2360), 1, sym_comment, - ACTIONS(2503), 4, + ACTIONS(2673), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - sym__unquoted_pattern, - ACTIONS(2501), 32, + ACTIONS(2671), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190663,17 +209254,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60508] = 4, + [74993] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4983), 1, + aux_sym_cmd_identifier_token6, + STATE(2361), 1, + sym_comment, + ACTIONS(4981), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4979), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [75041] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2133), 1, + STATE(2362), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(2308), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 32, + ACTIONS(2306), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190706,58 +209339,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60555] = 3, + [75087] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2134), 1, + STATE(2363), 1, sym_comment, - ACTIONS(2096), 36, + ACTIONS(3123), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3125), 28, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [60600] = 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [75133] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(2364), 1, sym_comment, - ACTIONS(2573), 3, + ACTIONS(4985), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2571), 32, + ACTIONS(4987), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190790,16 +209423,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60646] = 4, + [75179] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2136), 1, + STATE(2365), 1, sym_comment, - ACTIONS(2938), 3, + ACTIONS(2018), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2940), 32, + ACTIONS(2016), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190824,7 +209457,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190832,33 +209465,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60692] = 10, + [75225] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4991), 1, + anon_sym_DASH2, + ACTIONS(5001), 1, + anon_sym_PLUS2, + STATE(2366), 1, + sym_comment, + ACTIONS(4989), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4993), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4997), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4999), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5003), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4995), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2723), 19, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [75285] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4991), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(5001), 1, anon_sym_PLUS2, - STATE(2137), 1, + STATE(2367), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2725), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4539), 2, + ACTIONS(4993), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4997), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4999), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(5003), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 23, + ACTIONS(2723), 23, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -190880,28 +209562,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60750] = 7, + [75343] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2138), 1, + STATE(2368), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4993), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4997), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4999), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, + ACTIONS(2725), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2533), 26, + ACTIONS(2723), 26, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -190925,24 +209607,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60802] = 5, + [75395] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2139), 1, + STATE(2369), 1, + sym_comment, + ACTIONS(3932), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(3930), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75441] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2370), 1, sym_comment, - ACTIONS(4541), 2, + ACTIONS(4997), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, + ACTIONS(2725), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2533), 28, + ACTIONS(2723), 28, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -190968,52 +209692,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60850] = 16, + [75489] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2371), 1, + sym_comment, + ACTIONS(3936), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(3934), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75535] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4991), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(5001), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(5009), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(5011), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(5013), 1, anon_sym_bit_DASHor2, - STATE(2140), 1, + STATE(2372), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4989), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4993), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4997), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4999), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(5003), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2533), 4, - anon_sym_EQ_GT, + ACTIONS(2723), 4, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4553), 4, + ACTIONS(4995), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(5007), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(5005), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191022,53 +209788,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60920] = 17, + [75605] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2373), 1, + sym_comment, + ACTIONS(3940), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(3938), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75651] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4991), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(5001), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(5009), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(5011), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(5013), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, + ACTIONS(5015), 1, anon_sym_and2, - STATE(2141), 1, + STATE(2374), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4989), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4993), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4997), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4999), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(5003), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2533), 3, - anon_sym_EQ_GT, + ACTIONS(2723), 3, + anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4553), 4, + ACTIONS(4995), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(5007), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(5005), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191077,54 +209885,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60992] = 18, + [75723] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4991), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(5001), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(5009), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(5011), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(5013), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, + ACTIONS(5015), 1, anon_sym_and2, - ACTIONS(4565), 1, + ACTIONS(5017), 1, anon_sym_xor2, - STATE(2142), 1, + STATE(2375), 1, sym_comment, - ACTIONS(2533), 2, - anon_sym_EQ_GT, + ACTIONS(2723), 2, + anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4539), 2, + ACTIONS(4989), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4993), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4997), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4999), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(5003), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4995), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(5007), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(5005), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191133,36 +209941,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61066] = 12, + [75797] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2376), 1, + sym_comment, + ACTIONS(2798), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2796), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75843] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4991), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(5001), 1, anon_sym_PLUS2, - STATE(2143), 1, + STATE(2377), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4989), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4993), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4997), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4999), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(5003), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4995), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4549), 8, + ACTIONS(5005), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191171,8 +210021,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 11, - anon_sym_EQ_GT, + ACTIONS(2723), 11, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -191183,30 +210033,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [61128] = 9, + [75905] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4991), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(5001), 1, anon_sym_PLUS2, - STATE(2144), 1, + STATE(2378), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2725), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4539), 2, + ACTIONS(4993), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4997), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4999), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2533), 25, + ACTIONS(2723), 25, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -191230,49 +210080,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [61184] = 13, + [75961] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4991), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(5001), 1, anon_sym_PLUS2, - STATE(2145), 1, + STATE(2379), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4989), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4993), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4997), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4999), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(5003), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4995), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(5007), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 7, - anon_sym_EQ_GT, + ACTIONS(2723), 7, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4549), 8, + ACTIONS(5005), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191281,50 +210131,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61248] = 14, + [76025] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4991), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(5001), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(5009), 1, anon_sym_bit_DASHand2, - STATE(2146), 1, + STATE(2380), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4989), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4993), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4997), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4999), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(5003), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4995), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(5007), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 6, - anon_sym_EQ_GT, + ACTIONS(2723), 6, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4549), 8, + ACTIONS(5005), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191333,51 +210183,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61314] = 15, + [76091] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5019), 1, + sym__newline, + STATE(2381), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(2222), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2217), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [76139] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4991), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(5001), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(5009), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(5011), 1, anon_sym_bit_DASHxor2, - STATE(2147), 1, + STATE(2382), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4989), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4993), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4997), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4999), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(5003), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4995), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(5007), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 5, - anon_sym_EQ_GT, + ACTIONS(2723), 5, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4549), 8, + ACTIONS(5005), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191386,62 +210279,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61382] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2148), 1, - sym_comment, - ACTIONS(4567), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4569), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [61428] = 5, + [76207] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4575), 1, + ACTIONS(5026), 1, aux_sym_cmd_identifier_token6, - STATE(2149), 1, + STATE(2383), 1, sym_comment, - ACTIONS(4573), 5, + ACTIONS(5024), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4571), 29, + ACTIONS(5022), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -191471,16 +210322,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [61476] = 4, + [76255] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2150), 1, + STATE(2384), 1, sym_comment, - ACTIONS(2521), 3, + ACTIONS(2416), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2519), 32, + ACTIONS(2414), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191513,59 +210364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61522] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - aux_sym_cmd_identifier_token6, - STATE(2151), 1, - sym_comment, - ACTIONS(1000), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(998), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [61570] = 4, + [76301] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2152), 1, + STATE(2385), 1, sym_comment, - ACTIONS(1860), 3, + ACTIONS(2416), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1858), 32, + ACTIONS(2414), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191598,58 +210406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61616] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2153), 1, - sym_comment, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 28, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [61662] = 4, + [76347] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2386), 1, sym_comment, - ACTIONS(2086), 3, + ACTIONS(2420), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 32, + ACTIONS(2418), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191682,16 +210448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61708] = 4, + [76393] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2155), 1, + STATE(2387), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(2424), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 32, + ACTIONS(2422), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191724,16 +210490,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61754] = 4, + [76439] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2156), 1, + STATE(2388), 1, sym_comment, - ACTIONS(2274), 3, + ACTIONS(2430), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 32, + ACTIONS(2428), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191766,81 +210532,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61800] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4585), 1, - anon_sym_GT2, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - STATE(2157), 1, - sym_comment, - STATE(2224), 1, - aux_sym__types_body_repeat1, - STATE(2250), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4539), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - STATE(5104), 1, - sym__collection_body, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [61892] = 4, + [76485] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2158), 1, + STATE(2389), 1, sym_comment, - ACTIONS(1888), 3, + ACTIONS(2434), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1886), 32, + ACTIONS(2432), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191873,376 +210574,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61938] = 27, + [76531] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1568), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1570), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1572), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1582), 1, sym_raw_string_begin, - ACTIONS(3066), 1, + ACTIONS(3309), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + ACTIONS(5030), 1, anon_sym_null, - ACTIONS(4583), 1, + ACTIONS(5034), 1, sym__newline, - ACTIONS(4587), 1, + ACTIONS(5036), 1, + anon_sym_GT2, + ACTIONS(5038), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(5042), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(5044), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(5048), 1, sym_val_date, - ACTIONS(4599), 1, - anon_sym_GT2, - STATE(2159), 1, + STATE(2390), 1, sym_comment, - STATE(2224), 1, + STATE(2450), 1, aux_sym__types_body_repeat1, - STATE(2250), 1, + STATE(2475), 1, aux_sym__collection_body_repeat1, - STATE(3843), 1, + STATE(4073), 1, sym__val_number_decimal, - STATE(4539), 1, + STATE(4697), 1, sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - STATE(5019), 1, + STATE(5006), 1, sym__collection_body, - ACTIONS(4577), 2, + STATE(5196), 1, + sym_val_bool, + ACTIONS(5028), 2, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + ACTIONS(5040), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4239), 2, + STATE(4448), 2, sym_val_string, sym__unquoted_in_record, - STATE(4861), 2, + STATE(4996), 2, sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [62030] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2160), 1, - sym_comment, - ACTIONS(1478), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1480), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62076] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4605), 1, - aux_sym_cmd_identifier_token6, - STATE(2161), 1, - sym_comment, - ACTIONS(4603), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4601), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [62124] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2162), 1, - sym_comment, - ACTIONS(1543), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1545), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62170] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2163), 1, - sym_comment, - ACTIONS(1466), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1468), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62216] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2164), 1, - sym_comment, - ACTIONS(868), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(968), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62262] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2165), 1, - sym_comment, - ACTIONS(1470), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1472), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62308] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2166), 1, - sym_comment, - ACTIONS(1474), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1476), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, + sym__unquoted_anonymous_prefix, + ACTIONS(5032), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62354] = 4, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [76623] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2167), 1, + STATE(2391), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1700), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 32, + ACTIONS(1702), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192275,16 +210681,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62400] = 4, + [76669] = 27, ACTIONS(3), 1, anon_sym_POUND, - STATE(2168), 1, + ACTIONS(1568), 1, + anon_sym_DQUOTE, + ACTIONS(1570), 1, + anon_sym_SQUOTE, + ACTIONS(1572), 1, + anon_sym_BQUOTE, + ACTIONS(1582), 1, + sym_raw_string_begin, + ACTIONS(3309), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5030), 1, + anon_sym_null, + ACTIONS(5034), 1, + sym__newline, + ACTIONS(5038), 1, + anon_sym_DOT_DOT, + ACTIONS(5042), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5044), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(5048), 1, + sym_val_date, + ACTIONS(5050), 1, + anon_sym_GT2, + STATE(2392), 1, + sym_comment, + STATE(2450), 1, + aux_sym__types_body_repeat1, + STATE(2475), 1, + aux_sym__collection_body_repeat1, + STATE(4073), 1, + sym__val_number_decimal, + STATE(4697), 1, + sym__collection_entry, + STATE(5196), 1, + sym_val_bool, + STATE(5412), 1, + sym__collection_body, + ACTIONS(5028), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5040), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4448), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(4996), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(5032), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [76761] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2393), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(1668), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 32, + ACTIONS(1670), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192317,113 +210788,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62446] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2169), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2533), 19, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62506] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2170), 1, - sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 23, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62564] = 4, + [76807] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2171), 1, + STATE(2394), 1, sym_comment, - ACTIONS(1619), 3, + ACTIONS(1672), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1706), 32, + ACTIONS(1674), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192456,61 +210830,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62610] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2172), 1, - sym_comment, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2533), 26, - anon_sym_in, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62662] = 4, + [76853] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2173), 1, + STATE(2395), 1, sym_comment, - ACTIONS(4623), 3, + ACTIONS(1676), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4625), 32, + ACTIONS(1678), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192543,16 +210872,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62708] = 4, + [76899] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2174), 1, + STATE(2396), 1, sym_comment, - ACTIONS(4627), 3, + ACTIONS(1680), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4629), 32, + ACTIONS(1682), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192585,59 +210914,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62754] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2175), 1, - sym_comment, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2533), 28, - anon_sym_in, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62802] = 4, + [76945] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2176), 1, + STATE(2397), 1, sym_comment, - ACTIONS(4631), 3, + ACTIONS(1686), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4633), 32, + ACTIONS(1688), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192670,70 +210956,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62848] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, - anon_sym_bit_DASHor2, - STATE(2177), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [62918] = 4, + [76991] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2178), 1, + STATE(2398), 1, sym_comment, - ACTIONS(2114), 3, + ACTIONS(2006), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2112), 32, + ACTIONS(2004), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192766,16 +210998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62964] = 4, + [77037] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2179), 1, + STATE(2399), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(2048), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 32, + ACTIONS(2046), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192808,16 +211040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63010] = 4, + [77083] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2180), 1, + STATE(2400), 1, sym_comment, - ACTIONS(1876), 3, + ACTIONS(2802), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1874), 32, + ACTIONS(2800), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192850,16 +211082,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63056] = 4, + [77129] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2181), 1, + STATE(2401), 1, sym_comment, - ACTIONS(2507), 3, + ACTIONS(2740), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2505), 32, + ACTIONS(2738), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192892,16 +211124,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63102] = 4, + [77175] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2182), 1, + STATE(2402), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(2340), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1558), 32, + ACTIONS(2338), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192934,16 +211166,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63148] = 4, + [77221] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2183), 1, + STATE(2403), 1, sym_comment, - ACTIONS(2617), 3, + ACTIONS(2002), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2615), 32, + ACTIONS(2000), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192976,380 +211208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63194] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, - anon_sym_bit_DASHor2, - ACTIONS(4645), 1, - anon_sym_and2, - STATE(2184), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63266] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, - anon_sym_bit_DASHor2, - ACTIONS(4645), 1, - anon_sym_and2, - ACTIONS(4647), 1, - anon_sym_xor2, - STATE(2185), 1, - sym_comment, - ACTIONS(2533), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63340] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2186), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [63402] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2187), 1, - sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2533), 25, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [63458] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2188), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2533), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63522] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - STATE(2189), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2533), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63588] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - STATE(2190), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2533), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63656] = 4, + [77267] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2191), 1, + STATE(2404), 1, sym_comment, - ACTIONS(4649), 3, + ACTIONS(1714), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4651), 32, + ACTIONS(1716), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193382,20 +211250,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63702] = 5, + [77313] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1014), 1, + ACTIONS(5056), 1, aux_sym_cmd_identifier_token6, - STATE(2192), 1, + STATE(2405), 1, sym_comment, - ACTIONS(1012), 5, + ACTIONS(5054), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1010), 29, + ACTIONS(5052), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -193425,16 +211293,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [63750] = 4, + [77361] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2193), 1, + STATE(2406), 1, sym_comment, - ACTIONS(2565), 3, + ACTIONS(2368), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2563), 32, + ACTIONS(2366), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193467,16 +211335,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63796] = 4, + [77407] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2194), 1, + STATE(2407), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(815), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 32, + ACTIONS(904), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193509,59 +211377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63842] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1008), 1, - aux_sym_cmd_identifier_token6, - STATE(2195), 1, - sym_comment, - ACTIONS(1006), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1004), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [63890] = 4, + [77453] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2196), 1, + STATE(2408), 1, sym_comment, - ACTIONS(2220), 3, + ACTIONS(2677), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2218), 32, + ACTIONS(2675), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193594,16 +211419,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63936] = 4, + [77499] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2197), 1, + STATE(2409), 1, sym_comment, - ACTIONS(2264), 3, + ACTIONS(2681), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 32, + ACTIONS(2679), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193636,16 +211461,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63982] = 4, + [77545] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2198), 1, + STATE(2410), 1, sym_comment, - ACTIONS(2609), 3, + ACTIONS(2685), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2607), 32, + ACTIONS(2683), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193678,210 +211503,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64028] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4657), 1, - aux_sym_cmd_identifier_token6, - STATE(2199), 1, - sym_comment, - ACTIONS(4655), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4653), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [64076] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4663), 1, - aux_sym_cmd_identifier_token6, - STATE(2200), 1, - sym_comment, - ACTIONS(4661), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4659), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [64124] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4665), 1, - sym__newline, - STATE(2201), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1960), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1955), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [64172] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - ACTIONS(4668), 1, - anon_sym_GT2, - STATE(2202), 1, - sym_comment, - STATE(2224), 1, - aux_sym__types_body_repeat1, - STATE(2250), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4539), 1, - sym__collection_entry, - STATE(4871), 1, - sym__collection_body, - STATE(4928), 1, - sym_val_bool, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [64264] = 4, + [77591] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2203), 1, + STATE(2411), 1, sym_comment, - ACTIONS(2224), 3, + ACTIONS(2380), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2222), 32, + ACTIONS(2378), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193914,16 +211545,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64310] = 4, + [77637] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2204), 1, + STATE(2412), 1, sym_comment, - ACTIONS(2539), 3, + ACTIONS(3898), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2537), 32, + ACTIONS(3896), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193956,16 +211587,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64356] = 4, + [77683] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2205), 1, + STATE(2413), 1, sym_comment, - ACTIONS(2204), 3, + ACTIONS(2384), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2202), 32, + ACTIONS(2382), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193998,16 +211629,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64402] = 4, + [77729] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2206), 1, + STATE(2414), 1, sym_comment, - ACTIONS(2513), 3, + ACTIONS(2721), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2511), 32, + ACTIONS(2719), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194040,16 +211671,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64448] = 4, + [77775] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2207), 1, + STATE(2415), 1, sym_comment, - ACTIONS(2593), 3, + ACTIONS(1750), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2591), 32, + ACTIONS(1856), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194082,16 +211713,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64494] = 4, + [77821] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2208), 1, + STATE(2416), 1, sym_comment, - ACTIONS(2094), 3, + ACTIONS(2262), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2092), 32, + ACTIONS(2260), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194124,16 +211755,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64540] = 4, + [77867] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2209), 1, + STATE(2417), 1, sym_comment, - ACTIONS(1868), 3, + ACTIONS(2276), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1866), 32, + ACTIONS(2274), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194166,16 +211797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64586] = 4, + [77913] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2210), 1, + STATE(2418), 1, sym_comment, - ACTIONS(2196), 3, + ACTIONS(2669), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2194), 32, + ACTIONS(2667), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194208,16 +211839,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64632] = 4, + [77959] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2211), 1, + STATE(2419), 1, sym_comment, - ACTIONS(2517), 3, + ACTIONS(2790), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2515), 32, + ACTIONS(2788), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194250,36 +211881,428 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64678] = 11, + [78005] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5060), 1, + anon_sym_DASH2, + ACTIONS(5070), 1, + anon_sym_PLUS2, + STATE(2420), 1, + sym_comment, + ACTIONS(5058), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5062), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5066), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5068), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5072), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5064), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2723), 19, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [78065] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5060), 1, + anon_sym_DASH2, + ACTIONS(5070), 1, + anon_sym_PLUS2, + STATE(2421), 1, + sym_comment, + ACTIONS(2725), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5062), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5066), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5068), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5072), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2723), 23, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [78123] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2422), 1, + sym_comment, + ACTIONS(5062), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5066), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5068), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2725), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2723), 26, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [78175] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2423), 1, + sym_comment, + ACTIONS(5066), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2725), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2723), 28, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [78223] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5060), 1, + anon_sym_DASH2, + ACTIONS(5070), 1, + anon_sym_PLUS2, + ACTIONS(5078), 1, + anon_sym_bit_DASHand2, + ACTIONS(5080), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5082), 1, + anon_sym_bit_DASHor2, + STATE(2424), 1, + sym_comment, + ACTIONS(5058), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5062), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5066), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5068), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5072), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2723), 4, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(5064), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5076), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(5074), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [78293] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5060), 1, + anon_sym_DASH2, + ACTIONS(5070), 1, + anon_sym_PLUS2, + ACTIONS(5078), 1, + anon_sym_bit_DASHand2, + ACTIONS(5080), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5082), 1, + anon_sym_bit_DASHor2, + ACTIONS(5084), 1, + anon_sym_and2, + STATE(2425), 1, + sym_comment, + ACTIONS(5058), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5062), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5066), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5068), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5072), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2723), 3, + anon_sym_EQ_GT, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(5064), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5076), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(5074), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [78365] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(5060), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(5070), 1, anon_sym_PLUS2, - STATE(2212), 1, + ACTIONS(5078), 1, + anon_sym_bit_DASHand2, + ACTIONS(5080), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5082), 1, + anon_sym_bit_DASHor2, + ACTIONS(5084), 1, + anon_sym_and2, + ACTIONS(5086), 1, + anon_sym_xor2, + STATE(2426), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(2723), 2, + anon_sym_EQ_GT, + anon_sym_or2, + ACTIONS(5058), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5062), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(5066), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(5068), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(5072), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, + ACTIONS(5064), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5076), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(5074), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [78439] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5060), 1, + anon_sym_DASH2, + ACTIONS(5070), 1, + anon_sym_PLUS2, + STATE(2427), 1, + sym_comment, + ACTIONS(5058), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(5062), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5066), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5068), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5072), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5064), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 19, + ACTIONS(5074), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2723), 11, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [78501] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5060), 1, + anon_sym_DASH2, + ACTIONS(5070), 1, + anon_sym_PLUS2, + STATE(2428), 1, + sym_comment, + ACTIONS(2725), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5062), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5066), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5068), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2723), 25, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -194292,60 +212315,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [64738] = 18, + [78557] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2810), 1, + ACTIONS(5060), 1, anon_sym_DASH2, - ACTIONS(2822), 1, + ACTIONS(5070), 1, anon_sym_PLUS2, - ACTIONS(2826), 1, - anon_sym_bit_DASHand2, - ACTIONS(2828), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2830), 1, - anon_sym_bit_DASHor2, - ACTIONS(2864), 1, - anon_sym_and2, - ACTIONS(2866), 1, - anon_sym_xor2, - ACTIONS(4670), 1, - anon_sym_or2, - STATE(2213), 1, + STATE(2429), 1, sym_comment, - ACTIONS(2808), 2, + ACTIONS(5058), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2812), 2, + ACTIONS(5062), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2818), 2, + ACTIONS(5066), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2820), 2, + ACTIONS(5068), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2824), 2, + ACTIONS(5072), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2814), 4, + ACTIONS(5064), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2816), 4, + ACTIONS(5076), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2806), 8, + ACTIONS(2723), 7, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(5074), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194354,53 +212379,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64811] = 18, + [78621] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(5060), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(5070), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(5078), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, - anon_sym_bit_DASHor2, - ACTIONS(3890), 1, - anon_sym_and2, - ACTIONS(3892), 1, - anon_sym_xor2, - ACTIONS(4672), 1, - anon_sym_or2, - STATE(2214), 1, + STATE(2430), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(5058), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(5062), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(5066), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(5068), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(5072), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(5064), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(5076), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(2723), 6, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(5074), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194409,53 +212431,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64884] = 18, + [78687] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(5060), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(5070), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(5078), 1, anon_sym_bit_DASHand2, - ACTIONS(4641), 1, + ACTIONS(5080), 1, anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, - anon_sym_bit_DASHor2, - ACTIONS(4645), 1, - anon_sym_and2, - ACTIONS(4647), 1, - anon_sym_xor2, - ACTIONS(4674), 1, - anon_sym_or2, - STATE(2215), 1, + STATE(2431), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(5058), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(5062), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(5066), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(5068), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(5072), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(5064), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(5076), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4635), 8, + ACTIONS(2723), 5, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(5074), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194464,53 +212484,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64957] = 18, + [78755] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1022), 1, + aux_sym_cmd_identifier_token6, + STATE(2432), 1, + sym_comment, + ACTIONS(1020), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1018), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [78803] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1568), 1, + anon_sym_DQUOTE, + ACTIONS(1570), 1, + anon_sym_SQUOTE, + ACTIONS(1572), 1, + anon_sym_BQUOTE, + ACTIONS(1582), 1, + sym_raw_string_begin, + ACTIONS(3309), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5030), 1, + anon_sym_null, + ACTIONS(5034), 1, + sym__newline, + ACTIONS(5038), 1, + anon_sym_DOT_DOT, + ACTIONS(5042), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5044), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(5048), 1, + sym_val_date, + ACTIONS(5088), 1, + anon_sym_GT2, + STATE(2433), 1, + sym_comment, + STATE(2450), 1, + aux_sym__types_body_repeat1, + STATE(2475), 1, + aux_sym__collection_body_repeat1, + STATE(4073), 1, + sym__val_number_decimal, + STATE(4697), 1, + sym__collection_entry, + STATE(5196), 1, + sym_val_bool, + STATE(5264), 1, + sym__collection_body, + ACTIONS(5028), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5040), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4448), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(4996), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(5032), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [78895] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1030), 1, + aux_sym_cmd_identifier_token6, + STATE(2434), 1, + sym_comment, + ACTIONS(1028), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1026), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [78943] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1038), 1, + aux_sym_cmd_identifier_token6, + STATE(2435), 1, + sym_comment, + ACTIONS(1036), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1034), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [78991] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5094), 1, + aux_sym_cmd_identifier_token6, + STATE(2436), 1, + sym_comment, + ACTIONS(5092), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5090), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [79039] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2437), 1, + sym_comment, + ACTIONS(3123), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(3125), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [79085] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(3198), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(3206), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(3234), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(3236), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(3244), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, + ACTIONS(3246), 1, anon_sym_and2, - ACTIONS(4565), 1, + ACTIONS(3248), 1, anon_sym_xor2, - ACTIONS(4676), 1, + ACTIONS(5096), 1, anon_sym_or2, - STATE(2216), 1, + STATE(2438), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(3200), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(3202), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(3204), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, + ACTIONS(3226), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(3232), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3228), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(3230), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(3224), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194519,25 +212818,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65030] = 7, + [79158] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(2217), 1, + ACTIONS(4358), 1, + anon_sym_DASH2, + ACTIONS(4362), 1, + anon_sym_and2, + ACTIONS(4364), 1, + anon_sym_xor2, + ACTIONS(4374), 1, + anon_sym_PLUS2, + ACTIONS(4378), 1, + anon_sym_bit_DASHand2, + ACTIONS(4380), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4382), 1, + anon_sym_bit_DASHor2, + ACTIONS(5098), 1, + anon_sym_or2, + STATE(2439), 1, sym_comment, - ACTIONS(4682), 2, + ACTIONS(4356), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4684), 4, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4370), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4372), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4376), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4366), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4686), 4, + ACTIONS(4368), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4678), 8, + ACTIONS(4354), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194546,70 +212873,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4680), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [65081] = 18, + [79231] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(4991), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(5001), 1, anon_sym_PLUS2, - ACTIONS(2964), 1, + ACTIONS(5009), 1, anon_sym_bit_DASHand2, - ACTIONS(2966), 1, + ACTIONS(5011), 1, anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, + ACTIONS(5013), 1, anon_sym_bit_DASHor2, - ACTIONS(2974), 1, + ACTIONS(5015), 1, anon_sym_and2, - ACTIONS(3024), 1, + ACTIONS(5017), 1, anon_sym_xor2, - ACTIONS(4688), 1, + ACTIONS(5100), 1, anon_sym_or2, - STATE(2218), 1, + STATE(2440), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(4989), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(4993), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(4997), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(4999), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(5003), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(4995), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, + ACTIONS(5007), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2944), 8, + ACTIONS(5005), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194618,12 +212928,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65154] = 4, + [79304] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2219), 1, + STATE(2441), 1, + sym_comment, + ACTIONS(5106), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5108), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5110), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(5102), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(5104), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79355] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2442), 1, sym_comment, - ACTIONS(2098), 8, + ACTIONS(2312), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -194632,7 +212986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2096), 26, + ACTIONS(2310), 26, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -194659,53 +213013,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [65199] = 18, + [79400] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3079), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3089), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3101), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3103), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3105), 1, anon_sym_bit_DASHor2, - ACTIONS(3930), 1, + ACTIONS(3107), 1, anon_sym_and2, - ACTIONS(3932), 1, + ACTIONS(3127), 1, anon_sym_xor2, - ACTIONS(4690), 1, + ACTIONS(5112), 1, anon_sym_or2, - STATE(2220), 1, + STATE(2443), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3077), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3081), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3085), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3087), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3091), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3099), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3097), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194714,25 +213068,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65272] = 7, + [79473] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(2221), 1, + ACTIONS(5060), 1, + anon_sym_DASH2, + ACTIONS(5070), 1, + anon_sym_PLUS2, + ACTIONS(5078), 1, + anon_sym_bit_DASHand2, + ACTIONS(5080), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5082), 1, + anon_sym_bit_DASHor2, + ACTIONS(5084), 1, + anon_sym_and2, + ACTIONS(5086), 1, + anon_sym_xor2, + ACTIONS(5114), 1, + anon_sym_or2, + STATE(2444), 1, sym_comment, - ACTIONS(4694), 2, + ACTIONS(5058), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4696), 4, + ACTIONS(5062), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5066), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5068), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5072), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5064), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4698), 4, + ACTIONS(5076), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4692), 8, + ACTIONS(5074), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194741,33 +213123,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4680), 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, + [79546] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4303), 1, + anon_sym_DASH2, + ACTIONS(4313), 1, + anon_sym_PLUS2, + ACTIONS(4321), 1, + anon_sym_bit_DASHand2, + ACTIONS(4323), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4325), 1, + anon_sym_bit_DASHor2, + ACTIONS(4327), 1, anon_sym_and2, + ACTIONS(4329), 1, anon_sym_xor2, + ACTIONS(5116), 1, anon_sym_or2, - [65322] = 5, + STATE(2445), 1, + sym_comment, + ACTIONS(4301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4305), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4309), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4311), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4315), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4307), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4319), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4317), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [79619] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4700), 1, + ACTIONS(5120), 1, + anon_sym_RBRACE, + ACTIONS(5122), 1, sym__entry_separator, - STATE(2222), 2, + ACTIONS(5124), 1, + sym_raw_string_begin, + STATE(2446), 1, sym_comment, + STATE(2449), 1, aux_sym__types_body_repeat2, - ACTIONS(3710), 30, + ACTIONS(5118), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194778,7 +213202,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194798,20 +213221,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65368] = 7, + [79669] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4705), 1, - anon_sym_RBRACE, - ACTIONS(4707), 1, + ACTIONS(5122), 1, sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(5124), 1, sym_raw_string_begin, - STATE(2222), 1, + ACTIONS(5126), 1, + anon_sym_RBRACE, + STATE(2447), 1, + sym_comment, + STATE(2449), 1, aux_sym__types_body_repeat2, - STATE(2223), 1, + ACTIONS(5118), 29, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym_unquoted_token1, + [79719] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym__newline, + STATE(2448), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(2222), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_record_token1, + ACTIONS(2217), 24, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [79765] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4177), 1, + sym_raw_string_begin, + ACTIONS(5131), 1, + sym__entry_separator, + STATE(2449), 2, sym_comment, - ACTIONS(4703), 29, + aux_sym__types_body_repeat2, + ACTIONS(4172), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194822,6 +213326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -194841,81 +213346,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65418] = 25, + [79811] = 25, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1568), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1570), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1572), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1582), 1, sym_raw_string_begin, - ACTIONS(3066), 1, + ACTIONS(3309), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + ACTIONS(5030), 1, anon_sym_null, - ACTIONS(4583), 1, + ACTIONS(5034), 1, sym__newline, - ACTIONS(4587), 1, + ACTIONS(5038), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(5042), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(5044), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(5048), 1, sym_val_date, - STATE(2224), 1, + STATE(2450), 1, sym_comment, - STATE(2246), 1, + STATE(2477), 1, aux_sym__collection_body_repeat1, - STATE(2386), 1, + STATE(2639), 1, aux_sym__types_body_repeat1, - STATE(3843), 1, + STATE(4073), 1, sym__val_number_decimal, - STATE(4439), 1, + STATE(4650), 1, sym__collection_entry, - STATE(4928), 1, + STATE(5196), 1, sym_val_bool, - ACTIONS(4577), 2, + ACTIONS(5028), 2, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + ACTIONS(5040), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4239), 2, + STATE(4448), 2, sym_val_string, sym__unquoted_in_record, - STATE(4861), 2, + STATE(4996), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + ACTIONS(5032), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, + STATE(3705), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [65504] = 7, + [79897] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2451), 1, + sym_comment, + ACTIONS(5136), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5138), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5140), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(5134), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(5104), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79947] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(5122), 1, sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(5124), 1, sym_raw_string_begin, - ACTIONS(4711), 1, + ACTIONS(5142), 1, anon_sym_RBRACE, - STATE(2222), 1, + STATE(2449), 1, aux_sym__types_body_repeat2, - STATE(2225), 1, + STATE(2452), 1, sym_comment, - ACTIONS(4703), 29, + ACTIONS(5118), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194945,61 +213493,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65554] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4713), 1, - sym__newline, - STATE(2226), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1960), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_record_token1, - ACTIONS(1955), 24, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [65600] = 7, + [79997] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(4177), 1, sym_raw_string_begin, - ACTIONS(4716), 1, - anon_sym_RBRACE, - STATE(2222), 1, - aux_sym__types_body_repeat2, - STATE(2227), 1, + ACTIONS(5144), 1, + sym__entry_separator, + STATE(2453), 2, sym_comment, - ACTIONS(4703), 29, + aux_sym__types_body_repeat2, + ACTIONS(4172), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195007,10 +213511,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -195028,139 +213532,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [65650] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2228), 1, - sym_comment, - ACTIONS(1478), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1480), 29, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - [65693] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2229), 1, - sym_comment, - ACTIONS(1470), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1472), 29, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - [65736] = 4, + aux_sym__unquoted_in_list_token1, + [80042] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2230), 1, - sym_comment, - ACTIONS(1474), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1476), 29, - anon_sym_if, - anon_sym_in, + ACTIONS(5147), 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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - [65779] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, - STATE(2231), 1, + STATE(2454), 2, sym_comment, - STATE(2245), 1, - aux_sym__types_body_repeat2, - ACTIONS(4720), 2, - anon_sym_RBRACK, + aux_sym__types_body_repeat1, + ACTIONS(4186), 7, + anon_sym__, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(4188), 23, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195173,36 +213563,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [65828] = 7, + [80087] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(5154), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(5156), 1, sym_raw_string_begin, - STATE(2232), 1, - sym_comment, - STATE(2245), 1, + STATE(2453), 1, aux_sym__types_body_repeat2, - ACTIONS(4726), 2, + STATE(2455), 1, + sym_comment, + ACTIONS(5152), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(5150), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195230,16 +213615,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [65877] = 4, + [80136] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2233), 1, + STATE(2456), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1672), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1516), 29, + ACTIONS(1674), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195269,21 +213654,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [65920] = 7, + [80179] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(5154), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(5156), 1, sym_raw_string_begin, - STATE(2234), 1, - sym_comment, - STATE(2245), 1, + STATE(2453), 1, aux_sym__types_body_repeat2, - ACTIONS(4728), 2, + STATE(2457), 1, + sym_comment, + ACTIONS(5158), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(5150), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195311,21 +213696,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [65969] = 7, + [80228] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(5154), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(5156), 1, sym_raw_string_begin, - STATE(2235), 1, - sym_comment, - STATE(2245), 1, + STATE(2453), 1, aux_sym__types_body_repeat2, - ACTIONS(4730), 2, + STATE(2458), 1, + sym_comment, + ACTIONS(5160), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(5150), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195353,21 +213738,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66018] = 7, + [80277] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(5154), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(5156), 1, sym_raw_string_begin, - STATE(2236), 1, - sym_comment, - STATE(2245), 1, + STATE(2453), 1, aux_sym__types_body_repeat2, - ACTIONS(4730), 2, + STATE(2459), 1, + sym_comment, + ACTIONS(5158), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(5150), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195395,100 +213780,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66067] = 8, + [80326] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, - sym__newline, - ACTIONS(4373), 1, - anon_sym_LBRACK, - ACTIONS(4378), 1, - anon_sym_DOT_DOT, - STATE(2237), 1, + STATE(2460), 1, sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 5, + ACTIONS(2312), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 22, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [66118] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2310), 25, sym_raw_string_begin, - STATE(2238), 1, - sym_comment, - STATE(2245), 1, - aux_sym__types_body_repeat2, - ACTIONS(4720), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4718), 27, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66167] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [80369] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2239), 1, + STATE(2461), 1, sym_comment, - ACTIONS(3734), 2, + ACTIONS(4195), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(3732), 30, + ACTIONS(4193), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195519,18 +213858,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [66210] = 6, + [80412] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(5154), 1, sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(5156), 1, sym_raw_string_begin, - STATE(2222), 1, + STATE(2453), 1, aux_sym__types_body_repeat2, - STATE(2240), 1, + STATE(2462), 1, sym_comment, - ACTIONS(4703), 29, + ACTIONS(5160), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(5150), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195541,8 +213883,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -195559,24 +213899,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [66257] = 5, + aux_sym__unquoted_in_list_token1, + [80461] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4732), 1, + ACTIONS(4919), 1, sym__newline, - STATE(2241), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, - anon_sym__, + ACTIONS(4923), 1, + anon_sym_LBRACK, + ACTIONS(4926), 1, anon_sym_DOT_DOT, + STATE(2463), 1, + sym_comment, + ACTIONS(4841), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3123), 5, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3738), 23, + aux_sym__unquoted_in_list_token1, + ACTIONS(3125), 22, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -195584,7 +213928,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, @@ -195600,16 +213943,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66302] = 4, + [80512] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2242), 1, + STATE(2464), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(1668), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1545), 29, + ACTIONS(1670), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195639,16 +213982,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [66345] = 4, + [80555] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2243), 1, + STATE(2465), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1700), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1468), 29, + ACTIONS(1702), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195678,56 +214021,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [66388] = 4, - ACTIONS(3), 1, + [80598] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2244), 1, + ACTIONS(5154), 1, + sym__entry_separator, + ACTIONS(5156), 1, + sym_raw_string_begin, + STATE(2453), 1, + aux_sym__types_body_repeat2, + STATE(2466), 1, sym_comment, - ACTIONS(2098), 7, - anon_sym_DOLLAR, + ACTIONS(5162), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_record_token1, - ACTIONS(2096), 25, - sym_raw_string_begin, + ACTIONS(5150), 27, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [66431] = 5, + aux_sym__unquoted_in_list_token1, + [80647] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4735), 1, + ACTIONS(5122), 1, sym__entry_separator, - STATE(2245), 2, - sym_comment, + ACTIONS(5124), 1, + sym_raw_string_begin, + STATE(2449), 1, aux_sym__types_body_repeat2, - ACTIONS(3710), 29, + STATE(2467), 1, + sym_comment, + ACTIONS(5118), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195735,10 +214082,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -195756,80 +214103,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66476] = 23, + aux_sym_unquoted_token1, + [80694] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + STATE(2468), 1, + sym_comment, + ACTIONS(1676), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1678), 29, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [80737] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2469), 1, + sym_comment, + ACTIONS(1680), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1682), 29, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [80780] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2470), 1, + sym_comment, + ACTIONS(1686), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1688), 29, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [80823] = 22, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5167), 1, anon_sym_null, - ACTIONS(4587), 1, + ACTIONS(5173), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(5179), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(5182), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(5188), 1, sym_val_date, - STATE(2246), 1, - sym_comment, - STATE(2249), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, + ACTIONS(5191), 1, + anon_sym_DQUOTE, + ACTIONS(5194), 1, + anon_sym_SQUOTE, + ACTIONS(5197), 1, + anon_sym_BQUOTE, + ACTIONS(5200), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5203), 1, + sym_raw_string_begin, + STATE(4073), 1, sym__val_number_decimal, - STATE(4445), 1, + STATE(4911), 1, sym__collection_entry, - STATE(4928), 1, + STATE(5196), 1, sym_val_bool, - ACTIONS(4577), 2, + ACTIONS(5164), 2, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + ACTIONS(5176), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + ACTIONS(5185), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4239), 2, + STATE(2471), 2, + sym_comment, + aux_sym__collection_body_repeat1, + STATE(4806), 2, sym_val_string, sym__unquoted_in_record, - STATE(4861), 2, + STATE(4996), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + ACTIONS(5170), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, + STATE(3705), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [66556] = 5, + [80901] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5154), 1, + sym__entry_separator, + ACTIONS(5156), 1, + sym_raw_string_begin, + STATE(2453), 1, + aux_sym__types_body_repeat2, + STATE(2472), 1, + sym_comment, + ACTIONS(5150), 28, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_list_token1, + [80947] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4738), 1, + ACTIONS(5206), 1, sym__newline, - STATE(2247), 2, + STATE(2473), 2, sym_comment, aux_sym__types_body_repeat1, - ACTIONS(3736), 6, + ACTIONS(4186), 6, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3738), 23, + ACTIONS(4188), 23, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -195853,15 +214356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66600] = 4, + [80991] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2248), 1, + STATE(2474), 1, sym_comment, - ACTIONS(3734), 2, + ACTIONS(4195), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(3732), 29, + ACTIONS(4193), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195891,125 +214394,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66642] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_null, - ACTIONS(4750), 1, - anon_sym_DOT_DOT, - ACTIONS(4756), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4759), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4765), 1, - sym_val_date, - ACTIONS(4768), 1, - anon_sym_DQUOTE, - ACTIONS(4771), 1, - anon_sym_SQUOTE, - ACTIONS(4774), 1, - anon_sym_BQUOTE, - ACTIONS(4777), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4780), 1, - sym_raw_string_begin, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4729), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - ACTIONS(4741), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4753), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4762), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2249), 2, - sym_comment, - aux_sym__collection_body_repeat1, - STATE(4618), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4747), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66720] = 23, + [81033] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1568), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1570), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1572), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1582), 1, sym_raw_string_begin, - ACTIONS(3066), 1, + ACTIONS(3309), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + ACTIONS(5030), 1, anon_sym_null, - ACTIONS(4587), 1, + ACTIONS(5038), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(5042), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(5044), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(5048), 1, sym_val_date, - STATE(2249), 1, + STATE(2471), 1, aux_sym__collection_body_repeat1, - STATE(2250), 1, + STATE(2475), 1, sym_comment, - STATE(3843), 1, + STATE(4073), 1, sym__val_number_decimal, - STATE(4441), 1, + STATE(4651), 1, sym__collection_entry, - STATE(4928), 1, + STATE(5196), 1, sym_val_bool, - ACTIONS(4577), 2, + ACTIONS(5028), 2, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + ACTIONS(5040), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4239), 2, + STATE(4448), 2, sym_val_string, sym__unquoted_in_record, - STATE(4861), 2, + STATE(4996), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + ACTIONS(5032), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, + STATE(3705), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [66800] = 4, + [81113] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2251), 1, + STATE(2476), 1, sym_comment, - ACTIONS(2938), 7, + ACTIONS(3123), 7, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -196017,7 +214464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2940), 24, + ACTIONS(3125), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -196042,91 +214489,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66842] = 6, - ACTIONS(103), 1, + [81155] = 23, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(1568), 1, + anon_sym_DQUOTE, + ACTIONS(1570), 1, + anon_sym_SQUOTE, + ACTIONS(1572), 1, + anon_sym_BQUOTE, + ACTIONS(1582), 1, sym_raw_string_begin, - STATE(2245), 1, - aux_sym__types_body_repeat2, - STATE(2252), 1, - sym_comment, - ACTIONS(4718), 28, - anon_sym_true, - anon_sym_false, + ACTIONS(3309), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5030), 1, anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5038), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(5042), 1, aux_sym__val_number_decimal_token1, + ACTIONS(5044), 1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5048), 1, sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66888] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2253), 1, + STATE(2471), 1, + aux_sym__collection_body_repeat1, + STATE(2477), 1, sym_comment, - ACTIONS(2938), 6, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 24, - sym_raw_string_begin, + STATE(4073), 1, + sym__val_number_decimal, + STATE(4754), 1, + sym__collection_entry, + STATE(5196), 1, + sym_val_bool, + ACTIONS(5028), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5040), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(5046), 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, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [66929] = 6, + STATE(4448), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(4996), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(5032), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3705), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [81235] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2254), 1, + STATE(2478), 1, sym_comment, - STATE(3109), 1, + STATE(3424), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(5211), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196135,7 +214562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(5213), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196144,7 +214571,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(4783), 13, + ACTIONS(5209), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196158,14 +214585,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [66974] = 6, + [81280] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2255), 1, + STATE(2479), 1, sym_comment, - STATE(3079), 1, + ACTIONS(3123), 6, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3125), 24, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [81321] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2480), 1, + sym_comment, + STATE(3366), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(5211), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196174,7 +214638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(5213), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196183,7 +214647,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(4789), 13, + ACTIONS(5215), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196197,14 +214661,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [67019] = 6, + [81366] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2256), 1, + STATE(2481), 1, sym_comment, - STATE(3295), 1, + STATE(3535), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(5217), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196213,7 +214677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(5219), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196222,7 +214686,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(4791), 12, + ACTIONS(5209), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196234,8 +214699,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, - [67063] = 25, + [81410] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196246,63 +214710,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4799), 1, + ACTIONS(5227), 1, anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2257), 1, + STATE(2482), 1, sym_comment, - STATE(2370), 1, + STATE(2485), 1, + aux_sym__repeat_newline, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2776), 1, + STATE(2965), 1, sym__binary_predicate_parenthesized, - STATE(2777), 1, + STATE(2966), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - STATE(3134), 1, + STATE(3338), 1, sym_val_closure, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67145] = 4, + [81492] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2258), 1, + STATE(2483), 1, sym_comment, - ACTIONS(1556), 2, - anon_sym_EQ, - anon_sym_DOT_DOT2, - ACTIONS(1558), 27, - anon_sym_if, - anon_sym_in, + STATE(3494), 1, + sym_redirection, + ACTIONS(5211), 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(5213), 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(5231), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196314,21 +214793,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [67185] = 25, + [81536] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2484), 1, + sym_comment, + STATE(3493), 1, + sym_redirection, + ACTIONS(5211), 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(5213), 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(5233), 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, + [81580] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196339,60 +214843,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4799), 1, + ACTIONS(5227), 1, anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2257), 1, - aux_sym__repeat_newline, - STATE(2259), 1, + STATE(2485), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2763), 1, + STATE(2956), 1, sym__binary_predicate_parenthesized, - STATE(2770), 1, + STATE(2957), 1, sym_where_predicate, - STATE(3096), 1, + STATE(3142), 1, + aux_sym__repeat_newline, + STATE(3321), 1, sym_val_closure, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67267] = 6, + [81662] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2260), 1, + STATE(2486), 1, sym_comment, - STATE(3230), 1, + STATE(3526), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(5217), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196401,7 +214905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(5219), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196410,7 +214914,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(4803), 12, + ACTIONS(5215), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196422,34 +214927,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, - [67311] = 6, + [81706] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2261), 1, + STATE(2487), 1, sym_comment, - STATE(3334), 1, - sym_redirection, - ACTIONS(4805), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4807), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(4789), 12, - ts_builtin_sym_end, + ACTIONS(1714), 2, + anon_sym_EQ, + anon_sym_DOT_DOT2, + ACTIONS(1716), 27, + anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196461,33 +214949,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, - [67355] = 6, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [81746] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2262), 1, + ACTIONS(5235), 1, + anon_sym_QMARK2, + ACTIONS(5237), 1, + anon_sym_BANG, + STATE(465), 1, + sym__path_suffix, + STATE(2488), 1, sym_comment, - STATE(3229), 1, - sym_redirection, - ACTIONS(4805), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4807), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(4783), 12, - ts_builtin_sym_end, + ACTIONS(1594), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1596), 23, + anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196499,21 +214991,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, - [67399] = 7, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [81791] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4809), 1, - anon_sym_QMARK2, - ACTIONS(4811), 1, - anon_sym_BANG, - STATE(437), 1, - sym__path_suffix, - STATE(2263), 1, - sym_comment, - ACTIONS(1446), 2, + ACTIONS(1651), 1, anon_sym_DOT_DOT2, + ACTIONS(5239), 1, anon_sym_DOT2, - ACTIONS(1448), 23, + STATE(463), 1, + sym_path, + STATE(2489), 1, + sym_comment, + STATE(2512), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1653), 23, anon_sym_if, anon_sym_in, sym__newline, @@ -196537,7 +215038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [67444] = 23, + [81835] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196548,49 +215049,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2264), 1, + STATE(2490), 1, sym_comment, - STATE(2370), 1, + STATE(2506), 1, + aux_sym__repeat_newline, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2759), 1, + STATE(2899), 1, sym__binary_predicate_parenthesized, - STATE(2765), 1, + STATE(2900), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67520] = 23, + [81911] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196601,49 +215102,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2264), 1, - aux_sym__repeat_newline, - STATE(2265), 1, + STATE(2491), 1, sym_comment, - STATE(2370), 1, + STATE(2508), 1, + aux_sym__repeat_newline, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2749), 1, + STATE(2902), 1, sym__binary_predicate_parenthesized, - STATE(2750), 1, + STATE(2903), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67596] = 23, + [81987] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196654,49 +215155,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2266), 1, + STATE(2492), 1, sym_comment, - STATE(2370), 1, + STATE(2510), 1, + aux_sym__repeat_newline, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2718), 1, + STATE(2904), 1, sym__binary_predicate_parenthesized, - STATE(2719), 1, + STATE(2906), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67672] = 23, + [82063] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196707,49 +215208,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2267), 1, + STATE(2493), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2672), 1, - sym__binary_predicate_parenthesized, - STATE(2673), 1, + STATE(2955), 1, sym_where_predicate, - STATE(3065), 1, + STATE(2962), 1, + sym__binary_predicate_parenthesized, + STATE(3142), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67748] = 23, + [82139] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196760,155 +215261,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2896), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(5241), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5243), 1, + anon_sym_DOLLAR, + ACTIONS(5245), 1, anon_sym_DASH2, - ACTIONS(4799), 1, + ACTIONS(5247), 1, anon_sym_LBRACE, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(1343), 1, sym__expr_unary_minus, - STATE(2268), 1, + STATE(2494), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2783), 1, sym__where_predicate_lhs, - STATE(2743), 1, + STATE(3051), 1, sym__binary_predicate, - STATE(2744), 1, + STATE(3052), 1, sym_where_predicate, - STATE(3161), 1, + STATE(3550), 1, sym_val_closure, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67824] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2269), 1, - sym_comment, - STATE(2279), 1, - aux_sym__repeat_newline, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2727), 1, - sym__binary_predicate_parenthesized, - STATE(2729), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67900] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2270), 1, - sym_comment, - STATE(2280), 1, - aux_sym__repeat_newline, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2738), 1, - sym__binary_predicate_parenthesized, - STATE(2739), 1, - sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(2346), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2451), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(3053), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67976] = 23, + [82215] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196919,140 +215314,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2271), 1, + STATE(2495), 1, sym_comment, - STATE(2281), 1, + STATE(2503), 1, aux_sym__repeat_newline, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2746), 1, - sym__binary_predicate_parenthesized, - STATE(2753), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68052] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2272), 1, - sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2754), 1, + STATE(2933), 1, sym__binary_predicate_parenthesized, - STATE(2755), 1, + STATE(2961), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68128] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1432), 1, - anon_sym_DOT_DOT2, - ACTIONS(4813), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2258), 1, - sym_cell_path, - STATE(2273), 1, - sym_comment, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 22, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [68174] = 23, + [82291] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197063,49 +215367,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2274), 1, + STATE(2496), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2771), 1, + STATE(2901), 1, sym__binary_predicate_parenthesized, - STATE(2772), 1, + STATE(2907), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3142), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68250] = 23, + [82367] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197116,102 +215420,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2275), 1, + STATE(2497), 1, sym_comment, - STATE(2289), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2775), 1, + STATE(2985), 1, sym__binary_predicate_parenthesized, - STATE(2781), 1, + STATE(2986), 1, sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68326] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2267), 1, + STATE(3142), 1, aux_sym__repeat_newline, - STATE(2276), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2788), 1, - sym__binary_predicate_parenthesized, - STATE(2804), 1, - sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68402] = 23, + [82443] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197222,49 +215473,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2277), 1, + STATE(2498), 1, sym_comment, - STATE(2278), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2646), 1, + STATE(2989), 1, sym__binary_predicate_parenthesized, - STATE(2680), 1, + STATE(2990), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3142), 1, + aux_sym__repeat_newline, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68478] = 23, + [82519] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197275,49 +215526,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2278), 1, + STATE(2496), 1, + aux_sym__repeat_newline, + STATE(2499), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2676), 1, - sym__binary_predicate_parenthesized, - STATE(2677), 1, + STATE(2880), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + STATE(2997), 1, + sym__binary_predicate_parenthesized, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68554] = 23, + [82595] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197328,49 +215579,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5227), 1, + anon_sym_LBRACE, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2279), 1, + STATE(2500), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2649), 1, - sym__binary_predicate_parenthesized, - STATE(2650), 1, + STATE(2881), 1, + sym__binary_predicate, + STATE(2884), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + STATE(3343), 1, + sym_val_closure, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68630] = 23, + [82671] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197381,49 +215632,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2280), 1, + STATE(2501), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2654), 1, + STATE(2993), 1, sym__binary_predicate_parenthesized, - STATE(2655), 1, + STATE(2994), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3142), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68706] = 23, + [82747] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197434,49 +215685,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2281), 1, + STATE(2502), 1, sym_comment, - STATE(2370), 1, + STATE(2515), 1, + aux_sym__repeat_newline, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2658), 1, + STATE(3018), 1, sym__binary_predicate_parenthesized, - STATE(2659), 1, + STATE(3019), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68782] = 23, + [82823] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197487,90 +215738,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(5221), 1, + sym__newline, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4821), 1, - anon_sym_LBRACE, - STATE(1294), 1, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2282), 1, + STATE(2503), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2823), 1, - sym__binary_predicate, - STATE(2827), 1, + STATE(2872), 1, + sym__binary_predicate_parenthesized, + STATE(2875), 1, sym_where_predicate, - STATE(3287), 1, - sym_val_closure, - ACTIONS(2174), 2, + STATE(3142), 1, + aux_sym__repeat_newline, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68858] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(4823), 1, - anon_sym_DOT, - STATE(2283), 1, - sym_comment, - STATE(2409), 1, - sym__immediate_decimal, - ACTIONS(4825), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4827), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2503), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [68910] = 23, + [82899] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197581,49 +215791,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2284), 1, - sym_comment, - STATE(2288), 1, + STATE(2501), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2504), 1, + sym_comment, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2730), 1, + STATE(2897), 1, sym__binary_predicate_parenthesized, - STATE(2731), 1, + STATE(2898), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68986] = 23, + [82975] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197634,49 +215844,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2285), 1, + STATE(2505), 1, sym_comment, - STATE(2294), 1, + STATE(2519), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2732), 1, + STATE(3032), 1, sym__binary_predicate_parenthesized, - STATE(2740), 1, + STATE(3033), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69062] = 23, + [83051] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197687,49 +215897,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2266), 1, - aux_sym__repeat_newline, - STATE(2286), 1, + STATE(2506), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2741), 1, + STATE(3034), 1, sym__binary_predicate_parenthesized, - STATE(2742), 1, + STATE(3035), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3142), 1, + aux_sym__repeat_newline, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69138] = 23, + [83127] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + ACTIONS(5249), 1, + anon_sym_DOT, + STATE(2507), 1, + sym_comment, + STATE(2614), 1, + sym__immediate_decimal, + ACTIONS(5251), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5253), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2736), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1734), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83179] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197740,49 +215991,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2272), 1, - aux_sym__repeat_newline, - STATE(2287), 1, + STATE(2508), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2747), 1, + STATE(3038), 1, sym__binary_predicate_parenthesized, - STATE(2748), 1, + STATE(3039), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3142), 1, + aux_sym__repeat_newline, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69214] = 23, + [83255] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1588), 1, + anon_sym_DOT_DOT2, + ACTIONS(5239), 1, + anon_sym_DOT2, + STATE(463), 1, + sym_path, + STATE(2487), 1, + sym_cell_path, + STATE(2489), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2509), 1, + sym_comment, + ACTIONS(1590), 22, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [83301] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197793,49 +216082,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2288), 1, + STATE(2510), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2697), 1, - sym__binary_predicate_parenthesized, - STATE(2698), 1, + STATE(2883), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3041), 1, + sym__binary_predicate_parenthesized, + STATE(3142), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69290] = 23, + [83377] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197846,62 +216135,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2289), 1, + STATE(2497), 1, + aux_sym__repeat_newline, + STATE(2511), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2668), 1, + STATE(2891), 1, sym__binary_predicate_parenthesized, - STATE(2669), 1, + STATE(2892), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69366] = 7, + [83453] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1458), 1, + ACTIONS(1642), 1, anon_sym_DOT_DOT2, - ACTIONS(4813), 1, + ACTIONS(5255), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(463), 1, sym_path, - STATE(2290), 1, + STATE(2512), 2, sym_comment, - STATE(2291), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 23, + ACTIONS(1644), 23, anon_sym_if, anon_sym_in, sym__newline, @@ -197925,21 +216213,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [69410] = 6, + [83495] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1524), 1, + ACTIONS(1809), 1, anon_sym_DOT_DOT2, - ACTIONS(4829), 1, + ACTIONS(5239), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(463), 1, sym_path, - STATE(2291), 2, - sym_comment, + STATE(481), 1, + sym_cell_path, + STATE(2489), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 23, + STATE(2513), 1, + sym_comment, + ACTIONS(1807), 22, anon_sym_if, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -197961,22 +216251,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [69452] = 8, + [83541] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, + ACTIONS(1823), 1, anon_sym_DOT_DOT2, - ACTIONS(4813), 1, + ACTIONS(5239), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(463), 1, sym_path, - STATE(465), 1, + STATE(484), 1, sym_cell_path, - STATE(2290), 1, + STATE(2489), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2292), 1, + STATE(2514), 1, sym_comment, - ACTIONS(1679), 22, + ACTIONS(1821), 22, anon_sym_if, sym__newline, anon_sym_SEMI, @@ -197999,45 +216289,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [69498] = 8, + [83587] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - anon_sym_DOT_DOT2, - ACTIONS(4813), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(466), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2293), 1, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(2854), 1, + aux_sym_expr_unary_token1, + ACTIONS(5221), 1, + sym__newline, + ACTIONS(5223), 1, + anon_sym_LPAREN, + ACTIONS(5225), 1, + anon_sym_DASH2, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(961), 1, + sym__expr_unary_minus, + STATE(2515), 1, sym_comment, - ACTIONS(1641), 22, - anon_sym_if, + STATE(2607), 1, + sym_val_string, + STATE(2643), 1, + sym__where_predicate_lhs_path_head, + STATE(2762), 1, + sym__where_predicate_lhs, + STATE(2976), 1, + sym__binary_predicate_parenthesized, + STATE(2977), 1, + sym_where_predicate, + STATE(3142), 1, + aux_sym__repeat_newline, + ACTIONS(2076), 2, + anon_sym_true, + anon_sym_false, + STATE(2441), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2885), 2, + sym_expr_unary, + sym_val_bool, + STATE(433), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [83663] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(2854), 1, + aux_sym_expr_unary_token1, + ACTIONS(5221), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69544] = 23, + ACTIONS(5223), 1, + anon_sym_LPAREN, + ACTIONS(5225), 1, + anon_sym_DASH2, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(961), 1, + sym__expr_unary_minus, + STATE(2516), 1, + sym_comment, + STATE(2607), 1, + sym_val_string, + STATE(2643), 1, + sym__where_predicate_lhs_path_head, + STATE(2762), 1, + sym__where_predicate_lhs, + STATE(2983), 1, + sym__binary_predicate_parenthesized, + STATE(2998), 1, + sym_where_predicate, + STATE(3142), 1, + aux_sym__repeat_newline, + ACTIONS(2076), 2, + anon_sym_true, + anon_sym_false, + STATE(2441), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2885), 2, + sym_expr_unary, + sym_val_bool, + STATE(433), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [83739] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198048,49 +216406,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2294), 1, + STATE(2493), 1, + aux_sym__repeat_newline, + STATE(2517), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2703), 1, + STATE(2882), 1, sym__binary_predicate_parenthesized, - STATE(2712), 1, + STATE(2908), 1, sym_where_predicate, - STATE(3065), 1, + ACTIONS(2076), 2, + anon_sym_true, + anon_sym_false, + STATE(2441), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2885), 2, + sym_expr_unary, + sym_val_bool, + STATE(433), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [83815] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(2854), 1, + aux_sym_expr_unary_token1, + ACTIONS(5221), 1, + sym__newline, + ACTIONS(5223), 1, + anon_sym_LPAREN, + ACTIONS(5225), 1, + anon_sym_DASH2, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(961), 1, + sym__expr_unary_minus, + STATE(2498), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + STATE(2518), 1, + sym_comment, + STATE(2607), 1, + sym_val_string, + STATE(2643), 1, + sym__where_predicate_lhs_path_head, + STATE(2762), 1, + sym__where_predicate_lhs, + STATE(2895), 1, + sym__binary_predicate_parenthesized, + STATE(2896), 1, + sym_where_predicate, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69620] = 23, + [83891] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198101,61 +216512,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(5221), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2274), 1, + STATE(2519), 1, + sym_comment, + STATE(2607), 1, + sym_val_string, + STATE(2643), 1, + sym__where_predicate_lhs_path_head, + STATE(2762), 1, + sym__where_predicate_lhs, + STATE(3004), 1, + sym__binary_predicate_parenthesized, + STATE(3008), 1, + sym_where_predicate, + STATE(3142), 1, aux_sym__repeat_newline, - STATE(2295), 1, + ACTIONS(2076), 2, + anon_sym_true, + anon_sym_false, + STATE(2441), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2885), 2, + sym_expr_unary, + sym_val_bool, + STATE(433), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [83967] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(2854), 1, + aux_sym_expr_unary_token1, + ACTIONS(5221), 1, + sym__newline, + ACTIONS(5223), 1, + anon_sym_LPAREN, + ACTIONS(5225), 1, + anon_sym_DASH2, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(961), 1, + sym__expr_unary_minus, + STATE(2516), 1, + aux_sym__repeat_newline, + STATE(2520), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2751), 1, + STATE(3025), 1, sym__binary_predicate_parenthesized, - STATE(2752), 1, + STATE(3027), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69696] = 5, + [84043] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1700), 1, - anon_sym_BANG, - STATE(2296), 1, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(2521), 1, sym_comment, - ACTIONS(1438), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 23, - anon_sym_if, - anon_sym_in, + STATE(2793), 1, + sym__immediate_decimal, + ACTIONS(5258), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5260), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(749), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1801), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198168,38 +216642,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_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69735] = 10, + [84092] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(3055), 1, anon_sym_DOLLAR, - STATE(2297), 1, + STATE(2522), 1, sym_comment, - STATE(2502), 1, + STATE(2790), 1, sym__immediate_decimal, - ACTIONS(1592), 2, + ACTIONS(5258), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1594), 2, + ACTIONS(5260), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2501), 2, + STATE(731), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 16, + ACTIONS(1734), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198216,32 +216685,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69784] = 11, + [84141] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - ACTIONS(4834), 1, - anon_sym_DOT, - STATE(2298), 1, + ACTIONS(1852), 1, + anon_sym_BANG, + STATE(2523), 1, sym_comment, - STATE(2436), 1, - sym__immediate_decimal, - ACTIONS(4836), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4838), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2580), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 15, - ts_builtin_sym_end, + ACTIONS(1608), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1610), 23, + anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198253,32 +216709,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69835] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [84180] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(1787), 1, + anon_sym_DOT, + ACTIONS(3055), 1, anon_sym_DOLLAR, - STATE(2299), 1, + STATE(2524), 1, sym_comment, - STATE(2533), 1, + STATE(2735), 1, sym__immediate_decimal, - ACTIONS(4840), 2, + ACTIONS(1744), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, + ACTIONS(1746), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(2734), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 16, + ACTIONS(1783), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198295,29 +216758,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69884] = 10, + [84229] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, + ACTIONS(1774), 1, sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(1793), 1, + anon_sym_LPAREN2, + ACTIONS(5262), 1, anon_sym_DOLLAR, - STATE(2300), 1, + ACTIONS(5264), 1, + anon_sym_DOT, + STATE(2525), 1, sym_comment, - STATE(2535), 1, + STATE(2657), 1, sym__immediate_decimal, - ACTIONS(4840), 2, + ACTIONS(5266), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, + ACTIONS(5268), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(2742), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1631), 16, + ACTIONS(1734), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198329,34 +216795,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69933] = 10, + [84280] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1651), 1, + ACTIONS(1793), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(5262), 1, anon_sym_DOLLAR, - STATE(2301), 1, + STATE(2526), 1, sym_comment, - STATE(2603), 1, + STATE(2851), 1, sym__immediate_decimal, - ACTIONS(4844), 2, + ACTIONS(5270), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, + ACTIONS(5272), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1311), 2, + STATE(1293), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 15, + ACTIONS(1801), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -198372,7 +216836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69981] = 21, + [84328] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198383,45 +216847,388 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(2854), 1, + aux_sym_expr_unary_token1, + ACTIONS(5223), 1, + anon_sym_LPAREN, + ACTIONS(5225), 1, + anon_sym_DASH2, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(961), 1, + sym__expr_unary_minus, + STATE(2527), 1, + sym_comment, + STATE(2607), 1, + sym_val_string, + STATE(2643), 1, + sym__where_predicate_lhs_path_head, + STATE(2762), 1, + sym__where_predicate_lhs, + STATE(2941), 1, + sym__binary_predicate, + STATE(2942), 1, + sym_where_predicate, + ACTIONS(2076), 2, + anon_sym_true, + anon_sym_false, + STATE(2441), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2885), 2, + sym_expr_unary, + sym_val_bool, + STATE(433), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [84398] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2896), 1, + aux_sym_expr_unary_token1, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(5241), 1, + anon_sym_LPAREN, + ACTIONS(5243), 1, + anon_sym_DOLLAR, + ACTIONS(5245), 1, + anon_sym_DASH2, + STATE(1343), 1, + sym__expr_unary_minus, + STATE(2528), 1, + sym_comment, + STATE(2607), 1, + sym_val_string, + STATE(2643), 1, + sym__where_predicate_lhs_path_head, + STATE(2783), 1, + sym__where_predicate_lhs, + STATE(3077), 1, + sym__binary_predicate, + STATE(3078), 1, + sym_where_predicate, + ACTIONS(2346), 2, + anon_sym_true, + anon_sym_false, + STATE(2451), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(3053), 2, + sym_expr_unary, + sym_val_bool, + STATE(433), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [84468] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(2854), 1, + aux_sym_expr_unary_token1, + ACTIONS(5223), 1, + anon_sym_LPAREN, + ACTIONS(5225), 1, + anon_sym_DASH2, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(961), 1, + sym__expr_unary_minus, + STATE(2529), 1, + sym_comment, + STATE(2607), 1, + sym_val_string, + STATE(2643), 1, + sym__where_predicate_lhs_path_head, + STATE(2762), 1, + sym__where_predicate_lhs, + STATE(2943), 1, + sym__binary_predicate, + STATE(2944), 1, + sym_where_predicate, + ACTIONS(2076), 2, + anon_sym_true, + anon_sym_false, + STATE(2441), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2885), 2, + sym_expr_unary, + sym_val_bool, + STATE(433), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [84538] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2896), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(5241), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, + ACTIONS(5243), 1, anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(5245), 1, anon_sym_DASH2, - STATE(1294), 1, + STATE(1343), 1, + sym__expr_unary_minus, + STATE(2530), 1, + sym_comment, + STATE(2607), 1, + sym_val_string, + STATE(2643), 1, + sym__where_predicate_lhs_path_head, + STATE(2783), 1, + sym__where_predicate_lhs, + STATE(3087), 1, + sym__binary_predicate, + STATE(3088), 1, + sym_where_predicate, + ACTIONS(2346), 2, + anon_sym_true, + anon_sym_false, + STATE(2451), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(3053), 2, + sym_expr_unary, + sym_val_bool, + STATE(433), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [84608] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2896), 1, + aux_sym_expr_unary_token1, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(5241), 1, + anon_sym_LPAREN, + ACTIONS(5243), 1, + anon_sym_DOLLAR, + ACTIONS(5245), 1, + anon_sym_DASH2, + STATE(1343), 1, + sym__expr_unary_minus, + STATE(2531), 1, + sym_comment, + STATE(2607), 1, + sym_val_string, + STATE(2643), 1, + sym__where_predicate_lhs_path_head, + STATE(2783), 1, + sym__where_predicate_lhs, + STATE(3101), 1, + sym__binary_predicate, + STATE(3117), 1, + sym_where_predicate, + ACTIONS(2346), 2, + anon_sym_true, + anon_sym_false, + STATE(2451), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(3053), 2, + sym_expr_unary, + sym_val_bool, + STATE(433), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [84678] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(2854), 1, + aux_sym_expr_unary_token1, + ACTIONS(5223), 1, + anon_sym_LPAREN, + ACTIONS(5225), 1, + anon_sym_DASH2, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(961), 1, + sym__expr_unary_minus, + STATE(2532), 1, + sym_comment, + STATE(2607), 1, + sym_val_string, + STATE(2643), 1, + sym__where_predicate_lhs_path_head, + STATE(2762), 1, + sym__where_predicate_lhs, + STATE(2945), 1, + sym__binary_predicate, + STATE(2946), 1, + sym_where_predicate, + ACTIONS(2076), 2, + anon_sym_true, + anon_sym_false, + STATE(2441), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2885), 2, + sym_expr_unary, + sym_val_bool, + STATE(433), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [84748] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(2854), 1, + aux_sym_expr_unary_token1, + ACTIONS(5223), 1, + anon_sym_LPAREN, + ACTIONS(5225), 1, + anon_sym_DASH2, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(961), 1, + sym__expr_unary_minus, + STATE(2533), 1, + sym_comment, + STATE(2607), 1, + sym_val_string, + STATE(2643), 1, + sym__where_predicate_lhs_path_head, + STATE(2762), 1, + sym__where_predicate_lhs, + STATE(2947), 1, + sym__binary_predicate, + STATE(2949), 1, + sym_where_predicate, + ACTIONS(2076), 2, + anon_sym_true, + anon_sym_false, + STATE(2441), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2885), 2, + sym_expr_unary, + sym_val_bool, + STATE(433), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [84818] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(2854), 1, + aux_sym_expr_unary_token1, + ACTIONS(5223), 1, + anon_sym_LPAREN, + ACTIONS(5225), 1, + anon_sym_DASH2, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2302), 1, + STATE(2534), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2854), 1, + STATE(2950), 1, sym__binary_predicate, - STATE(2855), 1, + STATE(2951), 1, sym_where_predicate, - ACTIONS(2174), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70051] = 21, + [84888] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198432,83 +217239,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(2854), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - STATE(1294), 1, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(961), 1, sym__expr_unary_minus, - STATE(2303), 1, + STATE(2535), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2762), 1, sym__where_predicate_lhs, - STATE(2861), 1, + STATE(2952), 1, sym__binary_predicate, - STATE(2862), 1, + STATE(2953), 1, sym_where_predicate, - ACTIONS(2174), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2441), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2885), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70121] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(2304), 1, - sym_comment, - STATE(2618), 1, - sym__immediate_decimal, - ACTIONS(4844), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1343), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [70169] = 21, + [84958] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198519,65 +217288,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2896), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(5229), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(5241), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5243), 1, + anon_sym_DOLLAR, + ACTIONS(5245), 1, anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(1343), 1, sym__expr_unary_minus, - STATE(2305), 1, + STATE(2536), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2783), 1, sym__where_predicate_lhs, - STATE(2798), 1, + STATE(3096), 1, sym__binary_predicate, - STATE(2799), 1, + STATE(3099), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(2346), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2451), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(3053), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70239] = 9, + [85028] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(3055), 1, anon_sym_DOLLAR, - STATE(722), 1, + STATE(730), 1, sym__immediate_decimal, - STATE(2306), 1, + STATE(2537), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1746), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1805), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(721), 2, + STATE(729), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 16, + ACTIONS(1783), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198594,27 +217363,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70285] = 9, + [85074] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(3055), 1, anon_sym_DOLLAR, - STATE(737), 1, + STATE(744), 1, sym__immediate_decimal, - STATE(2307), 1, + STATE(2538), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1746), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1805), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(736), 2, + STATE(743), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1667), 16, + ACTIONS(1831), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198631,27 +217400,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70331] = 9, + [85120] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(3055), 1, anon_sym_DOLLAR, - STATE(739), 1, + STATE(746), 1, sym__immediate_decimal, - STATE(2308), 1, + STATE(2539), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1746), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1805), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(738), 2, + STATE(745), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1671), 16, + ACTIONS(1835), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198668,27 +217437,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70377] = 9, + [85166] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(3055), 1, anon_sym_DOLLAR, - STATE(741), 1, + STATE(748), 1, sym__immediate_decimal, - STATE(2309), 1, + STATE(2540), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1746), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1805), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(740), 2, + STATE(747), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 16, + ACTIONS(1839), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198705,181 +217474,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70423] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2310), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2800), 1, - sym__binary_predicate, - STATE(2801), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70493] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2311), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2802), 1, - sym__binary_predicate, - STATE(2803), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70563] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2312), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2805), 1, - sym__binary_predicate, - STATE(2808), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70633] = 13, + [85212] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1734), 1, sym__space, - ACTIONS(1615), 1, + ACTIONS(1774), 1, sym__unquoted_pattern, - ACTIONS(3212), 1, + ACTIONS(3395), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(4123), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(5274), 1, anon_sym_DOT, - ACTIONS(4850), 1, + ACTIONS(5276), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, + ACTIONS(5278), 1, aux_sym__immediate_decimal_token2, - STATE(2313), 1, + STATE(2541), 1, sym_comment, - STATE(2509), 1, + STATE(2719), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(5280), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2608), 2, + STATE(2823), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 13, + ACTIONS(1738), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198893,29 +217515,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [70687] = 10, + [85266] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(5282), 1, + anon_sym_DOT, + ACTIONS(5284), 1, + aux_sym__immediate_decimal_token5, + STATE(2542), 1, + sym_comment, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [85306] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1793), 1, anon_sym_LPAREN2, - ACTIONS(1687), 1, + ACTIONS(1860), 1, anon_sym_DOT, - ACTIONS(4832), 1, + ACTIONS(5262), 1, anon_sym_DOLLAR, - STATE(2314), 1, + STATE(2543), 1, sym_comment, - STATE(2579), 1, + STATE(2806), 1, sym__immediate_decimal, - ACTIONS(1655), 2, + ACTIONS(1797), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1657), 2, + ACTIONS(1799), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2578), 2, + STATE(2805), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 15, + ACTIONS(1783), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -198931,105 +217587,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70735] = 21, + [85354] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2315), 1, + ACTIONS(5286), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5288), 1, + aux_sym__immediate_decimal_token5, + STATE(2544), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2809), 1, - sym__binary_predicate, - STATE(2810), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70805] = 21, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(761), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [85394] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(1793), 1, + anon_sym_LPAREN2, + ACTIONS(5262), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2316), 1, + STATE(2545), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2812), 1, - sym__binary_predicate, - STATE(2813), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, + STATE(2824), 1, + sym__immediate_decimal, + ACTIONS(5270), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5272), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1331), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70875] = 21, + ACTIONS(1734), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85442] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199040,45 +217670,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(2896), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(5241), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, + ACTIONS(5243), 1, anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(5245), 1, anon_sym_DASH2, - STATE(1294), 1, + STATE(1343), 1, sym__expr_unary_minus, - STATE(2317), 1, + STATE(2546), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2783), 1, sym__where_predicate_lhs, - STATE(2864), 1, + STATE(3061), 1, sym__binary_predicate, - STATE(2865), 1, + STATE(3072), 1, sym_where_predicate, - ACTIONS(2174), 2, + ACTIONS(2346), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2451), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(3053), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70945] = 21, + [85512] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199089,155 +217719,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(2896), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, + ACTIONS(5229), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(5241), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, + ACTIONS(5243), 1, anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(5245), 1, anon_sym_DASH2, - STATE(1294), 1, + STATE(1343), 1, sym__expr_unary_minus, - STATE(2318), 1, + STATE(2547), 1, sym_comment, - STATE(2370), 1, + STATE(2607), 1, sym_val_string, - STATE(2389), 1, + STATE(2643), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2783), 1, sym__where_predicate_lhs, - STATE(2890), 1, - sym_where_predicate, - STATE(2915), 1, + STATE(3118), 1, sym__binary_predicate, - ACTIONS(2174), 2, + STATE(3121), 1, + sym_where_predicate, + ACTIONS(2346), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2451), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(3053), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(433), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71015] = 21, - ACTIONS(3), 1, + [85582] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, + ACTIONS(1801), 1, + sym__space, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(3395), 1, + anon_sym_LPAREN2, + ACTIONS(4123), 1, anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2319), 1, + ACTIONS(5290), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5292), 1, + aux_sym__immediate_decimal_token2, + STATE(2548), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2856), 1, - sym__binary_predicate, - STATE(2858), 1, - sym_where_predicate, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, + STATE(2999), 1, + sym__immediate_decimal, + ACTIONS(5294), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3151), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71085] = 21, - ACTIONS(3), 1, + ACTIONS(1803), 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, + [85633] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, + ACTIONS(1734), 1, + sym__space, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(3395), 1, + anon_sym_LPAREN2, + ACTIONS(4123), 1, anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2320), 1, + ACTIONS(5290), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5292), 1, + aux_sym__immediate_decimal_token2, + STATE(2549), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2859), 1, - sym__binary_predicate, - STATE(2860), 1, - sym_where_predicate, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, + STATE(2980), 1, + sym__immediate_decimal, + ACTIONS(5294), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3285), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71155] = 6, + ACTIONS(1738), 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, + [85684] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4856), 1, + ACTIONS(5296), 1, anon_sym_DOT, - ACTIONS(4858), 1, + ACTIONS(5298), 1, aux_sym__immediate_decimal_token5, - STATE(2321), 1, + STATE(2550), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(767), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(769), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199249,8 +217860,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -199259,19 +217868,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71195] = 6, + [85723] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1783), 1, + sym__space, + ACTIONS(3395), 1, + anon_sym_LPAREN2, + ACTIONS(4123), 1, + anon_sym_DOLLAR, + ACTIONS(5276), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5278), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5300), 1, + anon_sym_DOT, + STATE(2551), 1, + sym_comment, + STATE(2819), 1, + sym__immediate_decimal, + ACTIONS(5280), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2817), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1785), 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, + [85774] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4860), 1, + ACTIONS(5302), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4862), 1, + ACTIONS(5304), 1, aux_sym__immediate_decimal_token5, - STATE(2322), 1, + STATE(2552), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(759), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(761), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199283,8 +217932,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -199293,27 +217940,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71235] = 9, + [85813] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1890), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(1900), 1, + sym__unquoted_pattern, + ACTIONS(5306), 1, + anon_sym_DOT_DOT2, + ACTIONS(5310), 1, + sym_filesize_unit, + ACTIONS(5312), 1, + sym_duration_unit, + STATE(2553), 1, + sym_comment, + STATE(4976), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5308), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(904), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85860] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1793), 1, + anon_sym_LPAREN2, + ACTIONS(5262), 1, anon_sym_DOLLAR, - STATE(1342), 1, + STATE(1307), 1, sym__immediate_decimal, - STATE(2323), 1, + STATE(2554), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1799), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1870), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1341), 2, + STATE(1342), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 15, + ACTIONS(1783), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199329,17 +218013,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71280] = 5, + [85905] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(5284), 1, aux_sym__immediate_decimal_token5, - STATE(2324), 1, + STATE(2555), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(767), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(769), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199361,32 +218045,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71317] = 12, - ACTIONS(103), 1, + [85942] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, + ACTIONS(1793), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(5262), 1, anon_sym_DOLLAR, - ACTIONS(4850), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(4866), 1, - anon_sym_DOT, - STATE(2325), 1, - sym_comment, - STATE(2607), 1, + STATE(1288), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + STATE(2556), 1, + sym_comment, + ACTIONS(1799), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2606), 2, + ACTIONS(1870), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1287), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 13, + ACTIONS(1831), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199398,37 +218078,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, - [71368] = 13, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85987] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3251), 1, + ACTIONS(1793), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(5262), 1, anon_sym_DOLLAR, - ACTIONS(4868), 1, - anon_sym_DOT, - ACTIONS(4870), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, - aux_sym__immediate_decimal_token2, - STATE(2326), 1, - sym_comment, - STATE(2560), 1, + STATE(1290), 1, sym__immediate_decimal, - ACTIONS(1596), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4874), 2, + STATE(2557), 1, + sym_comment, + ACTIONS(1799), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2706), 2, + ACTIONS(1870), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1289), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 11, + ACTIONS(1835), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199440,19 +218114,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, - [71421] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86032] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4876), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4878), 1, - aux_sym__immediate_decimal_token5, - STATE(2327), 1, + ACTIONS(1793), 1, + anon_sym_LPAREN2, + ACTIONS(5262), 1, + anon_sym_DOLLAR, + STATE(1292), 1, + sym__immediate_decimal, + STATE(2558), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, + ACTIONS(1799), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1870), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1291), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1839), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199468,25 +218153,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71460] = 6, + [86077] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4880), 1, - anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(5314), 1, aux_sym__immediate_decimal_token5, - STATE(2328), 1, + STATE(2559), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 20, - ts_builtin_sym_end, + ACTIONS(777), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199498,6 +218175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -199506,32 +218185,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71499] = 12, + [86114] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__space, - ACTIONS(1639), 1, + ACTIONS(1774), 1, sym__unquoted_pattern, - ACTIONS(3212), 1, + ACTIONS(3359), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(4115), 1, anon_sym_DOLLAR, - ACTIONS(4884), 1, + ACTIONS(5316), 1, + anon_sym_DOT, + ACTIONS(5318), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, + ACTIONS(5320), 1, aux_sym__immediate_decimal_token2, - STATE(2329), 1, + STATE(2560), 1, sym_comment, - STATE(2713), 1, + STATE(2759), 1, sym__immediate_decimal, - ACTIONS(4888), 2, + ACTIONS(1734), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5322), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3013), 2, + STATE(2874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 13, + ACTIONS(1738), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199543,34 +218225,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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [71550] = 12, + [86167] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(3359), 1, + anon_sym_LPAREN2, + ACTIONS(4115), 1, + anon_sym_DOLLAR, + ACTIONS(5318), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5320), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5324), 1, + anon_sym_DOT, + STATE(2561), 1, + sym_comment, + STATE(3026), 1, + sym__immediate_decimal, + ACTIONS(1783), 2, + ts_builtin_sym_end, sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, + ACTIONS(5322), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3003), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1785), 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, + [86217] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1831), 1, + sym__space, + ACTIONS(3395), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(4123), 1, anon_sym_DOLLAR, - ACTIONS(4884), 1, + ACTIONS(5326), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, + ACTIONS(5328), 1, aux_sym__immediate_decimal_token2, - STATE(2330), 1, + STATE(2562), 1, sym_comment, - STATE(2708), 1, + STATE(3145), 1, sym__immediate_decimal, - ACTIONS(4888), 2, + ACTIONS(5280), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2982), 2, + STATE(3144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 13, + ACTIONS(1833), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199584,27 +218300,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [71601] = 10, + [86265] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(4890), 1, - anon_sym_DOT_DOT2, - ACTIONS(4894), 1, - sym_filesize_unit, - ACTIONS(4896), 1, - sym_duration_unit, - STATE(2331), 1, + ACTIONS(5330), 1, + anon_sym_DOT, + ACTIONS(5332), 1, + aux_sym__immediate_decimal_token5, + STATE(2563), 1, sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4892), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 16, + ACTIONS(1884), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1882), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199621,28 +218329,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71648] = 9, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [86303] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1835), 1, + sym__space, + ACTIONS(3395), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(4123), 1, anon_sym_DOLLAR, - STATE(1337), 1, - sym__immediate_decimal, - STATE(2332), 1, + ACTIONS(5326), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5328), 1, + aux_sym__immediate_decimal_token2, + STATE(2564), 1, sym_comment, - ACTIONS(1657), 2, + STATE(3147), 1, + sym__immediate_decimal, + ACTIONS(5280), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1336), 2, + STATE(3146), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1667), 15, - ts_builtin_sym_end, + ACTIONS(1837), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199654,31 +218367,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_and2, - anon_sym_xor2, - anon_sym_or2, - [71693] = 9, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [86351] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1839), 1, + sym__space, + ACTIONS(3395), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(4123), 1, anon_sym_DOLLAR, - STATE(1271), 1, - sym__immediate_decimal, - STATE(2333), 1, + ACTIONS(5326), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5328), 1, + aux_sym__immediate_decimal_token2, + STATE(2565), 1, sym_comment, - ACTIONS(1657), 2, + STATE(3149), 1, + sym__immediate_decimal, + ACTIONS(5280), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1269), 2, + STATE(3148), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 15, - ts_builtin_sym_end, + ACTIONS(1841), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199690,30 +218404,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [71738] = 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + [86399] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(1340), 1, - sym__immediate_decimal, - STATE(2334), 1, + ACTIONS(5298), 1, + aux_sym__immediate_decimal_token5, + STATE(2566), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1339), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 15, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199729,17 +218432,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71783] = 5, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [86435] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4858), 1, + ACTIONS(5334), 1, aux_sym__immediate_decimal_token5, - STATE(2335), 1, + STATE(2567), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(777), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199751,8 +218460,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -199761,15 +218468,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71820] = 4, + [86471] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5336), 1, + anon_sym_DOT, + ACTIONS(5338), 1, + aux_sym__immediate_decimal_token5, + STATE(2568), 1, + sym_comment, + ACTIONS(769), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(767), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [86509] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2336), 1, + STATE(2569), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(759), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(761), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199791,19 +218530,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71854] = 6, + [86543] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4898), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4900), 1, - aux_sym__immediate_decimal_token5, - STATE(2337), 1, + ACTIONS(5340), 1, + anon_sym_DOT2, + STATE(463), 1, + sym_path, + STATE(733), 1, + sym_cell_path, + STATE(2489), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2570), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 19, + ACTIONS(2024), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199816,34 +218557,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [86583] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1783), 1, + sym__space, + ACTIONS(3395), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [71892] = 10, + ACTIONS(4123), 1, + anon_sym_DOLLAR, + ACTIONS(5326), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5328), 1, + aux_sym__immediate_decimal_token2, + STATE(2571), 1, + sym_comment, + STATE(3284), 1, + sym__immediate_decimal, + ACTIONS(5280), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3283), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1785), 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, + [86631] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1890), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1984), 1, sym__unquoted_pattern, - ACTIONS(4902), 1, + ACTIONS(5342), 1, anon_sym_DOT_DOT2, - ACTIONS(4906), 1, + ACTIONS(5346), 1, sym_filesize_unit, - ACTIONS(4908), 1, + ACTIONS(5348), 1, sym_duration_unit, - STATE(2338), 1, + STATE(2572), 1, sym_comment, - STATE(4775), 1, + STATE(4958), 1, sym__expr_parenthesized_immediate, - ACTIONS(4904), 2, + ACTIONS(5344), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 15, + ACTIONS(904), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199859,15 +218636,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71938] = 4, + [86677] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2339), 1, + ACTIONS(5340), 1, + anon_sym_DOT2, + STATE(463), 1, + sym_path, + STATE(742), 1, + sym_cell_path, + STATE(2489), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2573), 1, sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 21, + ACTIONS(2008), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199880,42 +218663,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [86717] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5350), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5352), 1, + aux_sym__immediate_decimal_token5, + STATE(2574), 1, + sym_comment, + ACTIONS(761), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71972] = 12, + ACTIONS(759), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [86755] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(3359), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(4115), 1, anon_sym_DOLLAR, - ACTIONS(4870), 1, + ACTIONS(5354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, + ACTIONS(5356), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4910), 1, - anon_sym_DOT, - STATE(2340), 1, + STATE(2575), 1, sym_comment, - STATE(2705), 1, + STATE(3124), 1, sym__immediate_decimal, - ACTIONS(1582), 2, + ACTIONS(1734), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, + ACTIONS(5358), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2704), 2, + STATE(3399), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 11, + ACTIONS(1738), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199927,30 +218739,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, - [72022] = 11, - ACTIONS(103), 1, + [86805] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, - aux_sym__immediate_decimal_token2, - STATE(2341), 1, + STATE(2576), 1, sym_comment, - STATE(2981), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2979), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 13, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(777), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199964,15 +218761,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72070] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [86839] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2342), 1, + STATE(2577), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(894), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(896), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199994,30 +218799,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [72104] = 11, + [86873] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1667), 1, - sym__space, - ACTIONS(3212), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(3359), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(4115), 1, anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(5354), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, + ACTIONS(5356), 1, aux_sym__immediate_decimal_token2, - STATE(2343), 1, + STATE(2578), 1, sym_comment, - STATE(3008), 1, + STATE(3138), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(1801), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5358), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3006), 2, + STATE(3425), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 13, + ACTIONS(1803), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200029,32 +218837,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, - [72152] = 11, - ACTIONS(103), 1, + [86923] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1671), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(5360), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, - aux_sym__immediate_decimal_token2, - STATE(2344), 1, + ACTIONS(5362), 1, + aux_sym__immediate_decimal_token5, + STATE(2579), 1, sym_comment, - STATE(3010), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 13, + ACTIONS(1922), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1920), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200068,30 +218863,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72200] = 11, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [86961] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1675), 1, + ACTIONS(904), 1, sym__space, - ACTIONS(3212), 1, + ACTIONS(1890), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, - aux_sym__immediate_decimal_token2, - STATE(2345), 1, + ACTIONS(5364), 1, + anon_sym_DOT_DOT2, + ACTIONS(5368), 1, + sym_filesize_unit, + ACTIONS(5370), 1, + sym_duration_unit, + ACTIONS(5372), 1, + sym__unquoted_pattern, + STATE(2580), 1, sym_comment, - STATE(3012), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3011), 2, + STATE(4866), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 13, + ACTIONS(5366), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(815), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200105,55 +218905,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72248] = 12, + [87008] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4916), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, - aux_sym__immediate_decimal_token2, - STATE(2346), 1, + ACTIONS(5376), 1, + anon_sym_GT2, + ACTIONS(5378), 1, + sym__entry_separator, + ACTIONS(5380), 1, + sym_raw_string_begin, + STATE(2581), 1, sym_comment, - STATE(2875), 1, - sym__immediate_decimal, - ACTIONS(1596), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3199), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [72298] = 5, + STATE(2605), 1, + aux_sym__types_body_repeat2, + ACTIONS(5374), 18, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [87047] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4922), 1, - aux_sym__immediate_decimal_token5, - STATE(2347), 1, + ACTIONS(5382), 1, + anon_sym_QMARK2, + ACTIONS(5384), 1, + anon_sym_BANG, + STATE(789), 1, + sym__path_suffix, + STATE(2582), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(1594), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 20, + anon_sym_DOT2, + ACTIONS(1596), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200169,24 +218967,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72334] = 6, + [87086] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5378), 1, + sym__entry_separator, + ACTIONS(5380), 1, + sym_raw_string_begin, + ACTIONS(5386), 1, + anon_sym_GT2, + STATE(2583), 1, + sym_comment, + STATE(2605), 1, + aux_sym__types_body_repeat2, + ACTIONS(5374), 18, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [87125] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4924), 1, - anon_sym_DOT, - ACTIONS(4926), 1, + ACTIONS(5388), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5390), 1, aux_sym__immediate_decimal_token5, - STATE(2348), 1, + STATE(2584), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1922), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 19, + ACTIONS(1920), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200198,64 +219026,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [72372] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(724), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2349), 1, - sym_comment, - ACTIONS(1862), 19, - anon_sym_if, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [72412] = 6, + [87162] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4930), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4932), 1, + ACTIONS(5338), 1, aux_sym__immediate_decimal_token5, - STATE(2350), 1, + STATE(2585), 1, sym_comment, - ACTIONS(749), 6, + ACTIONS(769), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(747), 15, + ACTIONS(767), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200271,21 +219062,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [72450] = 7, + [87197] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5378), 1, + sym__entry_separator, + ACTIONS(5380), 1, + sym_raw_string_begin, + ACTIONS(5392), 1, + anon_sym_GT2, + STATE(2586), 1, + sym_comment, + STATE(2605), 1, + aux_sym__types_body_repeat2, + ACTIONS(5374), 18, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [87236] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(735), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2351), 1, + STATE(2587), 1, sym_comment, - ACTIONS(1878), 19, - anon_sym_if, + ACTIONS(894), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(896), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200297,30 +219115,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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72490] = 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [87269] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4934), 1, - anon_sym_DOT, - ACTIONS(4936), 1, + ACTIONS(5394), 1, aux_sym__immediate_decimal_token5, - STATE(2352), 1, + STATE(2588), 1, sym_comment, - ACTIONS(741), 6, + ACTIONS(777), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(739), 15, + ACTIONS(775), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200336,33 +219153,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [72528] = 12, + [87304] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(3251), 1, + ACTIONS(3359), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(4115), 1, anon_sym_DOLLAR, - ACTIONS(4916), 1, + ACTIONS(5396), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, + ACTIONS(5398), 1, aux_sym__immediate_decimal_token2, - STATE(2353), 1, + STATE(2589), 1, sym_comment, - STATE(2894), 1, + STATE(3373), 1, sym__immediate_decimal, - ACTIONS(1631), 2, + ACTIONS(1835), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4920), 2, + ACTIONS(5322), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3138), 2, + STATE(3372), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 11, + ACTIONS(1837), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200374,17 +219189,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, - [72578] = 5, + [87351] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4882), 1, - aux_sym__immediate_decimal_token5, - STATE(2354), 1, + STATE(2590), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(759), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 20, + ACTIONS(761), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200405,16 +219218,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [72614] = 4, - ACTIONS(3), 1, + [87384] = 11, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2355), 1, + ACTIONS(3359), 1, + anon_sym_LPAREN2, + ACTIONS(4115), 1, + anon_sym_DOLLAR, + ACTIONS(5396), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5398), 1, + aux_sym__immediate_decimal_token2, + STATE(2591), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, + STATE(3432), 1, + sym__immediate_decimal, + ACTIONS(1783), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5322), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3431), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1785), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200426,39 +219254,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72647] = 11, + [87431] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(3359), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(4115), 1, anon_sym_DOLLAR, - ACTIONS(4938), 1, + ACTIONS(5396), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, + ACTIONS(5398), 1, aux_sym__immediate_decimal_token2, - STATE(2356), 1, + STATE(2592), 1, sym_comment, - STATE(3132), 1, + STATE(3368), 1, sym__immediate_decimal, - ACTIONS(1675), 2, + ACTIONS(1831), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, + ACTIONS(5322), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3125), 2, + STATE(3351), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 11, + ACTIONS(1833), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200470,24 +219290,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, - [72694] = 6, - ACTIONS(103), 1, + [87478] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4942), 1, - anon_sym_DOT, - ACTIONS(4944), 1, - aux_sym__immediate_decimal_token5, - STATE(2357), 1, + STATE(2593), 1, sym_comment, - ACTIONS(741), 7, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(777), 20, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200499,33 +219311,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [87511] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5400), 1, + anon_sym_QMARK2, + ACTIONS(5402), 1, + anon_sym_BANG, + STATE(2594), 1, + sym_comment, + STATE(2730), 1, + sym__path_suffix, + ACTIONS(1594), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [72731] = 11, + anon_sym_DOT2, + ACTIONS(1596), 16, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [87550] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(3359), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(4115), 1, anon_sym_DOLLAR, - ACTIONS(4938), 1, + ACTIONS(5396), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, + ACTIONS(5398), 1, aux_sym__immediate_decimal_token2, - STATE(2358), 1, + STATE(2595), 1, sym_comment, - STATE(3195), 1, + STATE(3423), 1, sym__immediate_decimal, - ACTIONS(1582), 2, + ACTIONS(1839), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, + ACTIONS(5322), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3182), 2, + STATE(3394), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 11, + ACTIONS(1841), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200537,22 +219387,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, - [72778] = 7, - ACTIONS(3), 1, + [87597] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_QMARK2, - ACTIONS(4948), 1, - anon_sym_BANG, - STATE(784), 1, - sym__path_suffix, - STATE(2359), 1, + ACTIONS(5404), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5406), 1, + aux_sym__immediate_decimal_token5, + STATE(2596), 1, sym_comment, - ACTIONS(1446), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1448), 17, + ACTIONS(761), 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(759), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200564,85 +219416,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [72817] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [87634] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4926), 1, - aux_sym__immediate_decimal_token5, - STATE(2360), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3461), 1, + anon_sym_LPAREN2, + ACTIONS(4287), 1, + anon_sym_DOLLAR, + ACTIONS(5408), 1, + anon_sym_DOT, + ACTIONS(5410), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5412), 1, + aux_sym__immediate_decimal_token2, + STATE(2597), 1, sym_comment, + STATE(2811), 1, + sym__immediate_decimal, ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 19, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5414), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3115), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1734), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [72852] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4950), 1, - sym__entry_separator, - STATE(2361), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 19, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [72887] = 7, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [87685] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4955), 1, - anon_sym_GT2, - ACTIONS(4957), 1, + ACTIONS(5378), 1, sym__entry_separator, - ACTIONS(4959), 1, + ACTIONS(5380), 1, sym_raw_string_begin, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2362), 1, + ACTIONS(5416), 1, + anon_sym_GT2, + STATE(2598), 1, sym_comment, - ACTIONS(4953), 18, + STATE(2605), 1, + aux_sym__types_body_repeat2, + ACTIONS(5374), 18, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200661,58 +219488,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [72926] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(4961), 1, - anon_sym_DOT_DOT2, - ACTIONS(4965), 1, - sym_filesize_unit, - ACTIONS(4967), 1, - sym_duration_unit, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2363), 1, - sym_comment, - STATE(4625), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4963), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - [72973] = 8, + [87724] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, + ACTIONS(1809), 1, anon_sym_DOT_DOT2, - ACTIONS(4971), 1, + ACTIONS(5418), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(775), 1, sym_path, - STATE(932), 1, + STATE(948), 1, sym_cell_path, - STATE(2364), 1, + STATE(2599), 1, sym_comment, - STATE(2387), 1, + STATE(2636), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1679), 17, + ACTIONS(1807), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200730,20 +219521,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73014] = 6, - ACTIONS(3), 1, + [87765] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4973), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4975), 1, + ACTIONS(5420), 1, + anon_sym_DOT, + ACTIONS(5422), 1, aux_sym__immediate_decimal_token5, - STATE(2365), 1, + STATE(2600), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 18, + ACTIONS(769), 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(767), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200755,23 +219550,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73051] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [87802] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4977), 1, + ACTIONS(5332), 1, aux_sym__immediate_decimal_token5, - STATE(2366), 1, + STATE(2601), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1884), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 19, + ACTIONS(1882), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200791,22 +219582,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73086] = 8, + [87837] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, + ACTIONS(1588), 1, anon_sym_DOT_DOT2, - ACTIONS(4971), 1, + ACTIONS(5418), 1, anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(935), 1, + STATE(447), 1, sym_cell_path, - STATE(2367), 1, + STATE(775), 1, + sym_path, + STATE(2602), 1, sym_comment, - STATE(2387), 1, + STATE(2636), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1641), 17, + ACTIONS(1590), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200824,24 +219615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73127] = 6, - ACTIONS(103), 1, + [87878] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4979), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4981), 1, + ACTIONS(5424), 1, aux_sym__immediate_decimal_token5, - STATE(2368), 1, + STATE(2603), 1, sym_comment, - ACTIONS(749), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 13, + ACTIONS(1958), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200853,21 +219637,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_DOT_DOT2, - sym__unquoted_pattern, - [73164] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [87913] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4983), 1, + ACTIONS(5426), 1, anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(5428), 1, aux_sym__immediate_decimal_token5, - STATE(2369), 1, + STATE(2604), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1884), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 18, + ACTIONS(1882), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200886,21 +219676,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73201] = 7, + [87950] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4177), 1, + sym_raw_string_begin, + ACTIONS(5430), 1, + sym__entry_separator, + STATE(2605), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(4172), 19, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [87985] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1823), 1, + anon_sym_DOT_DOT2, + ACTIONS(5418), 1, + anon_sym_DOT2, + STATE(775), 1, + sym_path, + STATE(938), 1, + sym_cell_path, + STATE(2606), 1, + sym_comment, + STATE(2636), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1821), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [88026] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1663), 1, + ACTIONS(1827), 1, anon_sym_QMARK2, - ACTIONS(1665), 1, + ACTIONS(1829), 1, anon_sym_BANG, - STATE(2370), 1, + STATE(2607), 1, sym_comment, - STATE(2496), 1, + STATE(2707), 1, sym__path_suffix, - ACTIONS(4989), 2, + ACTIONS(5435), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4987), 17, + ACTIONS(5433), 17, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -200918,21 +219771,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_DOT2, - [73240] = 5, + [88065] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2608), 1, + sym_comment, + ACTIONS(1668), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1670), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [88097] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4936), 1, + ACTIONS(5422), 1, aux_sym__immediate_decimal_token5, - STATE(2371), 1, + STATE(2609), 1, sym_comment, - ACTIONS(741), 6, + ACTIONS(769), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(739), 15, + ACTIONS(767), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [88131] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5437), 1, + anon_sym_DOT2, + STATE(2610), 1, + sym_comment, + STATE(2669), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2743), 1, + sym_path, + STATE(2867), 1, + sym_cell_path, + ACTIONS(1590), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1588), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200947,53 +219860,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [73275] = 7, + [88171] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - ACTIONS(4991), 1, - anon_sym_GT2, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2372), 1, + ACTIONS(5439), 1, + aux_sym__immediate_decimal_token5, + STATE(2611), 1, sym_comment, - ACTIONS(4953), 18, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73314] = 7, + ACTIONS(777), 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(775), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [88205] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(5378), 1, sym__entry_separator, - ACTIONS(4959), 1, + ACTIONS(5380), 1, sym_raw_string_begin, - ACTIONS(4993), 1, - anon_sym_GT2, - STATE(2361), 1, + STATE(2605), 1, aux_sym__types_body_repeat2, - STATE(2373), 1, + STATE(2612), 1, sym_comment, - ACTIONS(4953), 18, + ACTIONS(5374), 18, anon_sym_true, anon_sym_false, anon_sym_null, @@ -201012,48 +219919,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [73353] = 7, + [88241] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4995), 1, - anon_sym_QMARK2, - ACTIONS(4997), 1, - anon_sym_BANG, - STATE(2374), 1, - sym_comment, - STATE(2476), 1, - sym__path_suffix, - ACTIONS(1446), 3, - anon_sym_DASH2, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + ACTIONS(5441), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1448), 16, - anon_sym_EQ, - sym_identifier, + STATE(2613), 1, + sym_comment, + ACTIONS(5443), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2094), 16, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73392] = 4, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88279] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2375), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, sym__unquoted_pattern, - ACTIONS(773), 20, - ts_builtin_sym_end, + ACTIONS(5445), 1, + anon_sym_DOT_DOT2, + STATE(2614), 1, + sym_comment, + ACTIONS(5447), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201065,111 +219976,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73425] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - ACTIONS(4999), 1, - anon_sym_GT2, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2376), 1, - sym_comment, - ACTIONS(4953), 18, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73464] = 11, - ACTIONS(103), 1, + [88317] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3461), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(4287), 1, anon_sym_DOLLAR, - ACTIONS(4938), 1, + ACTIONS(5449), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, + ACTIONS(5451), 1, aux_sym__immediate_decimal_token2, - STATE(2377), 1, + STATE(2615), 1, sym_comment, - STATE(3111), 1, + STATE(3218), 1, sym__immediate_decimal, - ACTIONS(1667), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4874), 2, + ACTIONS(1738), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5453), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3110), 2, + STATE(3534), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 11, + ACTIONS(1734), 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, - [73511] = 13, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [88365] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1819), 1, sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, + ACTIONS(3461), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(4287), 1, anon_sym_DOLLAR, - ACTIONS(5001), 1, - anon_sym_DOT, - ACTIONS(5003), 1, + ACTIONS(5449), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5005), 1, + ACTIONS(5451), 1, aux_sym__immediate_decimal_token2, - STATE(2378), 1, + STATE(2616), 1, sym_comment, - STATE(2637), 1, + STATE(3234), 1, sym__immediate_decimal, - ACTIONS(1598), 2, + ACTIONS(1803), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, + ACTIONS(5453), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2913), 2, + STATE(3558), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 9, + ACTIONS(1801), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -201179,16 +220053,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [73562] = 4, - ACTIONS(3), 1, + [88413] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2379), 1, + ACTIONS(5455), 1, + anon_sym_QMARK2, + ACTIONS(5457), 1, + anon_sym_BANG, + STATE(2617), 1, sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 20, - ts_builtin_sym_end, + STATE(2746), 1, + sym__path_suffix, + ACTIONS(1596), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1594), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201200,29 +220080,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73595] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [88451] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5009), 1, - aux_sym__immediate_decimal_token5, - STATE(2380), 1, + STATE(2618), 1, sym_comment, - ACTIONS(773), 6, + ACTIONS(761), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(771), 15, + ACTIONS(759), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201238,31 +220112,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [73630] = 11, + [88483] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4938), 1, + ACTIONS(5459), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token2, - STATE(2381), 1, + ACTIONS(5461), 1, + aux_sym__immediate_decimal_token5, + STATE(2619), 1, sym_comment, - STATE(3121), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, - ts_builtin_sym_end, + ACTIONS(1920), 4, sym__space, - ACTIONS(4874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3112), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1922), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201274,23 +220138,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, - [73677] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1432), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(4971), 1, - anon_sym_DOT2, - STATE(453), 1, - sym_cell_path, - STATE(783), 1, - sym_path, - STATE(2382), 1, + sym__unquoted_pattern, + [88519] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2620), 1, sym_comment, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 17, - ts_builtin_sym_end, + ACTIONS(777), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(775), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201302,62 +220166,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73718] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5013), 1, - aux_sym__immediate_decimal_token2, - STATE(2383), 1, - sym_comment, - STATE(2994), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5015), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3221), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 9, - 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, - [73766] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5019), 1, - aux_sym__immediate_decimal_token5, - STATE(2384), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [88551] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2621), 1, sym_comment, - ACTIONS(1726), 4, + ACTIONS(896), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(894), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201373,77 +220198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [73802] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2385), 1, - sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 19, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73834] = 5, + [88583] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5021), 1, - sym__newline, - STATE(2386), 2, + STATE(2622), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3738), 16, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [73868] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1458), 1, + ACTIONS(1700), 2, anon_sym_DOT_DOT2, - ACTIONS(4971), 1, anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(2387), 1, - sym_comment, - STATE(2407), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 17, + ACTIONS(1702), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201461,24 +220224,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73906] = 8, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [88615] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2388), 1, + STATE(2623), 1, sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2615), 1, - sym_cell_path, - ACTIONS(1641), 3, - sym__space, + ACTIONS(1672), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1674), 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 14, + anon_sym_QMARK2, + anon_sym_BANG, + [88647] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2624), 1, + sym_comment, + ACTIONS(1676), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1678), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201490,49 +220275,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [73946] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [88679] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2389), 1, + STATE(2625), 1, sym_comment, - STATE(2417), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(5028), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5026), 16, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - [73984] = 4, + ACTIONS(1680), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1682), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [88711] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2390), 1, + STATE(2626), 1, sym_comment, - ACTIONS(1514), 2, + ACTIONS(1686), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1516), 19, + ACTIONS(1688), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201552,19 +220338,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [74016] = 4, + [88743] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2391), 1, + ACTIONS(5463), 1, + anon_sym_DOT, + ACTIONS(5465), 1, + aux_sym__immediate_decimal_token5, + STATE(2627), 1, sym_comment, - ACTIONS(851), 6, + ACTIONS(1882), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(849), 15, + ACTIONS(1884), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201580,33 +220368,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [74048] = 12, + [88779] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(3461), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(4287), 1, anon_sym_DOLLAR, - ACTIONS(5003), 1, + ACTIONS(5410), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5005), 1, + ACTIONS(5412), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5030), 1, + ACTIONS(5467), 1, anon_sym_DOT, - STATE(2392), 1, + STATE(2628), 1, sym_comment, - STATE(2909), 1, + STATE(3113), 1, sym__immediate_decimal, - ACTIONS(1586), 2, + ACTIONS(1785), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, + ACTIONS(5414), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2906), 2, + STATE(3109), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 9, + ACTIONS(1783), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -201616,22 +220404,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [74096] = 5, - ACTIONS(103), 1, + [88827] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4944), 1, + ACTIONS(5469), 1, aux_sym__immediate_decimal_token5, - STATE(2393), 1, + STATE(2629), 1, sym_comment, - ACTIONS(741), 7, + ACTIONS(1958), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 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(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201643,57 +220427,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [74130] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2394), 1, - sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2627), 1, - sym_cell_path, - ACTIONS(1434), 3, - sym__space, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1432), 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, - [74170] = 6, + [88861] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5471), 1, anon_sym_DOT, - ACTIONS(5034), 1, + ACTIONS(5473), 1, aux_sym__immediate_decimal_token5, - STATE(2395), 1, + STATE(2630), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(767), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(741), 13, + ACTIONS(769), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -201707,23 +220463,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74206] = 6, + [88897] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5036), 1, + ACTIONS(5475), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5038), 1, + ACTIONS(5477), 1, aux_sym__immediate_decimal_token5, - STATE(2396), 1, + STATE(2631), 1, sym_comment, - ACTIONS(747), 6, + ACTIONS(759), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(749), 13, + ACTIONS(761), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -201737,30 +220493,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74242] = 11, - ACTIONS(103), 1, + [88933] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(5040), 1, + STATE(2632), 1, + sym_comment, + ACTIONS(1922), 2, anon_sym_DOT_DOT2, - ACTIONS(5044), 1, - sym_filesize_unit, - ACTIONS(5046), 1, - sym_duration_unit, - ACTIONS(5048), 1, sym__unquoted_pattern, - STATE(2397), 1, - sym_comment, - STATE(4725), 1, - sym__expr_parenthesized_immediate, - ACTIONS(968), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5042), 2, + ACTIONS(1920), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 11, + [88965] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2633), 1, + sym_comment, + ACTIONS(1958), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201772,15 +220541,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, - [74288] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [88997] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2398), 1, + STATE(2634), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(2052), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 19, + ACTIONS(2050), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201800,22 +220577,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74320] = 5, + [89029] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5050), 1, - aux_sym__immediate_decimal_token5, - STATE(2399), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(5479), 1, + anon_sym_DOT_DOT2, + ACTIONS(5483), 1, + sym_filesize_unit, + ACTIONS(5485), 1, + sym_duration_unit, + ACTIONS(5487), 1, + sym__unquoted_pattern, + STATE(2635), 1, sym_comment, - ACTIONS(773), 7, + STATE(4878), 1, + sym__expr_parenthesized_immediate, + ACTIONS(904), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, + ACTIONS(5481), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 13, + ACTIONS(815), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201827,17 +220612,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [74354] = 4, + [89075] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2400), 1, - sym_comment, - ACTIONS(1804), 2, + ACTIONS(1651), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 19, + ACTIONS(5418), 1, + anon_sym_DOT2, + STATE(775), 1, + sym_path, + STATE(2636), 1, + sym_comment, + STATE(2637), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1653), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201849,23 +220638,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74386] = 4, + [89113] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2401), 1, - sym_comment, - ACTIONS(1872), 2, + ACTIONS(1642), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 19, + ACTIONS(5489), 1, + anon_sym_DOT2, + STATE(775), 1, + sym_path, + STATE(2637), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1644), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201877,32 +220668,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74418] = 6, + [89149] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2402), 1, + STATE(2638), 1, sym_comment, - ACTIONS(4953), 18, + ACTIONS(4195), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(4193), 19, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_GT2, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -201915,16 +220701,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [74454] = 4, + [89181] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2403), 1, + ACTIONS(5492), 1, + sym__newline, + STATE(2639), 2, sym_comment, - ACTIONS(1474), 2, - anon_sym_DOT_DOT2, + aux_sym__types_body_repeat1, + ACTIONS(4186), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4188), 16, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [89215] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2012), 1, anon_sym_DOT2, - ACTIONS(1476), 19, - ts_builtin_sym_end, + STATE(431), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(463), 1, + sym_path, + STATE(2640), 1, + sym_comment, + ACTIONS(5497), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5495), 16, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [89253] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5437), 1, + anon_sym_DOT2, + STATE(2641), 1, + sym_comment, + STATE(2669), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2743), 1, + sym_path, + STATE(2825), 1, + sym_cell_path, + ACTIONS(1807), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1809), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201936,29 +220790,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74486] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [89293] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5052), 1, - anon_sym_QMARK2, - ACTIONS(5054), 1, - anon_sym_BANG, - STATE(2404), 1, + ACTIONS(5437), 1, + anon_sym_DOT2, + STATE(2642), 1, sym_comment, - STATE(2566), 1, - sym__path_suffix, - ACTIONS(1448), 3, + STATE(2669), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2743), 1, + sym_path, + STATE(2839), 1, + sym_cell_path, + ACTIONS(1821), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 15, + ACTIONS(1823), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201973,19 +220825,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, + [89333] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2012), 1, anon_sym_DOT2, - [74524] = 5, + STATE(463), 1, + sym_path, + STATE(2640), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2643), 1, + sym_comment, + ACTIONS(5501), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5499), 16, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [89371] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4985), 1, - aux_sym__immediate_decimal_token5, - STATE(2405), 1, + ACTIONS(5340), 1, + anon_sym_DOT2, + STATE(463), 1, + sym_path, + STATE(973), 1, + sym_cell_path, + STATE(2489), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2644), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 18, - ts_builtin_sym_end, + ACTIONS(2020), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201997,27 +220881,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74558] = 7, + [89409] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5056), 1, - anon_sym_DOT_DOT2, - STATE(2406), 1, + ACTIONS(5340), 1, + anon_sym_DOT2, + STATE(463), 1, + sym_path, + STATE(974), 1, + sym_cell_path, + STATE(2489), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2645), 1, sym_comment, - ACTIONS(5058), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 16, + ACTIONS(2032), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202030,24 +220913,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74596] = 6, + [89447] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1524), 1, - anon_sym_DOT_DOT2, - ACTIONS(5060), 1, + ACTIONS(5340), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(463), 1, sym_path, - STATE(2407), 2, + STATE(967), 1, + sym_cell_path, + STATE(2489), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2646), 1, sym_comment, + ACTIONS(2016), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89485] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5340), 1, + anon_sym_DOT2, + STATE(463), 1, + sym_path, + STATE(913), 1, + sym_cell_path, + STATE(2489), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 17, - ts_builtin_sym_end, + STATE(2647), 1, + sym_comment, + ACTIONS(2046), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202059,20 +220974,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_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74632] = 4, + [89523] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2408), 1, + ACTIONS(5428), 1, + aux_sym__immediate_decimal_token5, + STATE(2648), 1, sym_comment, - ACTIONS(1466), 2, + ACTIONS(1884), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1468), 19, + sym__unquoted_pattern, + ACTIONS(1882), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202088,25 +221006,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [89557] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2649), 1, + sym_comment, + ACTIONS(1674), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1672), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_QMARK2, anon_sym_BANG, - [74664] = 7, - ACTIONS(3), 1, + anon_sym_DOT2, + [89588] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5063), 1, + ACTIONS(904), 1, + sym__space, + ACTIONS(3320), 1, anon_sym_DOT_DOT2, - STATE(2409), 1, + ACTIONS(5368), 1, + sym_filesize_unit, + ACTIONS(5370), 1, + sym_duration_unit, + ACTIONS(5372), 1, + sym__unquoted_pattern, + STATE(2650), 1, sym_comment, - ACTIONS(5065), 2, + ACTIONS(3322), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 16, + ACTIONS(815), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202120,22 +221068,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74702] = 4, + [89629] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2410), 1, + ACTIONS(5503), 1, + aux_sym__immediate_decimal_token5, + STATE(2651), 1, sym_comment, - ACTIONS(749), 6, + ACTIONS(1956), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 15, + ACTIONS(1958), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202151,15 +221096,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [74734] = 4, - ACTIONS(3), 1, + [89662] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2411), 1, + ACTIONS(5505), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5507), 1, + aux_sym__immediate_decimal_token5, + STATE(2652), 1, sym_comment, - ACTIONS(1470), 2, + ACTIONS(1920), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1922), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1472), 19, + sym__unquoted_pattern, + [89697] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + ACTIONS(5509), 1, + anon_sym_DOT_DOT2, + STATE(2653), 1, + sym_comment, + ACTIONS(5511), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2094), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202175,28 +221155,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + [89734] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5513), 1, anon_sym_QMARK2, + ACTIONS(5515), 1, anon_sym_BANG, - [74766] = 8, + STATE(2654), 1, + sym_comment, + STATE(2847), 1, + sym__path_suffix, + ACTIONS(1596), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1594), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [89771] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2412), 1, + STATE(2655), 1, sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2601), 1, - sym_cell_path, - ACTIONS(1679), 3, + ACTIONS(1688), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 14, + ACTIONS(1686), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202211,20 +221209,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [74806] = 7, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [89802] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2656), 1, + sym_comment, + ACTIONS(777), 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(775), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [89833] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(930), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2413), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + ACTIONS(5517), 1, + anon_sym_DOT_DOT2, + STATE(2657), 1, sym_comment, - ACTIONS(1882), 17, + ACTIONS(5519), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202236,26 +221266,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_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74844] = 7, + [89870] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2658), 1, + sym_comment, + ACTIONS(896), 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(894), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [89901] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(923), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2414), 1, + STATE(2659), 1, sym_comment, - ACTIONS(1850), 17, + ACTIONS(1922), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1920), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202267,26 +221317,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_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74882] = 7, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [89932] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(936), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2415), 1, + STATE(2660), 1, sym_comment, - ACTIONS(1858), 17, + ACTIONS(1958), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202298,26 +221344,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_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74920] = 7, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [89963] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(899), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2416), 1, + STATE(2661), 1, sym_comment, - ACTIONS(1866), 17, + ACTIONS(2052), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(2050), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202329,70 +221371,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74958] = 7, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [89994] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(420), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, - sym_path, - STATE(2417), 1, + STATE(2662), 1, sym_comment, - ACTIONS(5069), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5067), 16, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - [74996] = 12, - ACTIONS(3), 1, + ACTIONS(3123), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3125), 17, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [90025] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, + ACTIONS(5521), 1, + anon_sym_DOT, + ACTIONS(5523), 1, + aux_sym__immediate_decimal_token5, + STATE(2663), 1, + sym_comment, + ACTIONS(1882), 5, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5013), 1, - aux_sym__immediate_decimal_token2, - STATE(2418), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1884), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [90060] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5473), 1, + aux_sym__immediate_decimal_token5, + STATE(2664), 1, sym_comment, - STATE(2991), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, + ACTIONS(767), 6, sym_identifier, anon_sym_DASH2, - ACTIONS(5015), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3351), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 9, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(769), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -202400,47 +221455,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [75044] = 5, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [90093] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5071), 1, + ACTIONS(5525), 1, aux_sym__immediate_decimal_token5, - STATE(2419), 1, + STATE(2665), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(775), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 18, - ts_builtin_sym_end, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(777), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75078] = 4, + [90126] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2420), 1, + ACTIONS(5527), 1, + anon_sym_QMARK2, + STATE(2666), 1, sym_comment, - ACTIONS(1478), 2, + ACTIONS(1608), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1480), 19, - ts_builtin_sym_end, + ACTIONS(1610), 16, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [90159] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1922), 1, + sym__unquoted_pattern, + ACTIONS(5529), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5531), 1, + aux_sym__immediate_decimal_token5, + STATE(2667), 1, + sym_comment, + ACTIONS(1920), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202452,26 +221540,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, + [90194] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5527), 1, + anon_sym_BANG, + STATE(2668), 1, + sym_comment, + ACTIONS(1608), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1610), 16, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [75110] = 4, + [90227] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2421), 1, + ACTIONS(5437), 1, + anon_sym_DOT2, + STATE(2669), 1, sym_comment, - ACTIONS(773), 6, + STATE(2671), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2743), 1, + sym_path, + ACTIONS(1653), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 15, + ACTIONS(1651), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202486,17 +221604,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75142] = 4, + [90264] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2422), 1, + ACTIONS(1884), 1, + sym__unquoted_pattern, + ACTIONS(5533), 1, + anon_sym_DOT, + ACTIONS(5535), 1, + aux_sym__immediate_decimal_token5, + STATE(2670), 1, sym_comment, - ACTIONS(1543), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1545), 19, - ts_builtin_sym_end, + ACTIONS(1882), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202508,28 +221627,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [75174] = 6, + anon_sym_LPAREN2, + [90299] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5073), 1, - anon_sym_DOT, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - STATE(2423), 1, + ACTIONS(5537), 1, + anon_sym_DOT2, + STATE(2743), 1, + sym_path, + STATE(2671), 2, sym_comment, - ACTIONS(1736), 4, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1644), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 15, + ACTIONS(1642), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202544,17 +221662,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75210] = 4, - ACTIONS(3), 1, + [90334] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2424), 1, + ACTIONS(5540), 1, + anon_sym_DOT2, + STATE(2672), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 18, + STATE(2694), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2846), 1, + sym_path, + STATE(3006), 1, + sym_cell_path, + ACTIONS(1807), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1809), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202566,31 +221692,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_DOT_DOT2, + [90373] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5542), 1, anon_sym_LPAREN2, + ACTIONS(5544), 1, + anon_sym_DOT_DOT2, + ACTIONS(5548), 1, + sym_filesize_unit, + ACTIONS(5550), 1, + sym_duration_unit, + ACTIONS(5552), 1, + sym__unquoted_pattern_in_record, + STATE(2673), 1, + sym_comment, + STATE(4934), 1, + sym__expr_parenthesized_immediate, + ACTIONS(815), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5546), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75241] = 8, + ACTIONS(904), 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, + [90418] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5540), 1, anon_sym_DOT2, - STATE(2425), 1, + STATE(2674), 1, sym_comment, - STATE(2489), 1, + STATE(2694), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2846), 1, sym_path, - STATE(2701), 1, + STATE(2968), 1, sym_cell_path, - ACTIONS(1434), 4, + ACTIONS(1590), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1432), 12, + ACTIONS(1588), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202603,20 +221758,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [75280] = 4, - ACTIONS(103), 1, + [90457] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2426), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN2, + ACTIONS(4287), 1, + anon_sym_DOLLAR, + ACTIONS(5554), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5556), 1, + aux_sym__immediate_decimal_token2, + STATE(2675), 1, + sym_comment, + STATE(3533), 1, + sym__immediate_decimal, + ACTIONS(1785), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5414), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3532), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1783), 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, + [90502] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2258), 1, + anon_sym_BANG, + STATE(2676), 1, sym_comment, - ACTIONS(851), 7, + ACTIONS(1608), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1610), 17, 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(849), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202628,33 +221815,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_DOT_DOT2, - sym__unquoted_pattern, - [75311] = 11, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [90535] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(3461), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(4287), 1, anon_sym_DOLLAR, - ACTIONS(5079), 1, + ACTIONS(5554), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, + ACTIONS(5556), 1, aux_sym__immediate_decimal_token2, - STATE(2427), 1, + STATE(2677), 1, sym_comment, - STATE(3279), 1, + STATE(3511), 1, sym__immediate_decimal, - ACTIONS(1669), 2, + ACTIONS(1833), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, + ACTIONS(5414), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3275), 2, + STATE(3496), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1667), 9, + ACTIONS(1831), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -202664,31 +221854,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [75356] = 11, + [90580] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(3461), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(4287), 1, anon_sym_DOLLAR, - ACTIONS(5079), 1, + ACTIONS(5554), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, + ACTIONS(5556), 1, aux_sym__immediate_decimal_token2, - STATE(2428), 1, + STATE(2678), 1, sym_comment, - STATE(3304), 1, + STATE(3523), 1, sym__immediate_decimal, - ACTIONS(1673), 2, + ACTIONS(1837), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, + ACTIONS(5414), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3285), 2, + STATE(3520), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1671), 9, + ACTIONS(1835), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -202698,31 +221888,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [75401] = 11, + [90625] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(3461), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(4287), 1, anon_sym_DOLLAR, - ACTIONS(5079), 1, + ACTIONS(5554), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, + ACTIONS(5556), 1, aux_sym__immediate_decimal_token2, - STATE(2429), 1, + STATE(2679), 1, sym_comment, - STATE(3220), 1, + STATE(3543), 1, sym__immediate_decimal, - ACTIONS(1677), 2, + ACTIONS(1841), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, + ACTIONS(5414), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3305), 2, + STATE(3539), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 9, + ACTIONS(1839), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -202732,22 +221922,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [75446] = 7, + [90670] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, + ACTIONS(5465), 1, + aux_sym__immediate_decimal_token5, + STATE(2680), 1, sym_comment, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - ACTIONS(1460), 3, + ACTIONS(1882), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1458), 14, + ACTIONS(1884), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202762,22 +221949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [75483] = 6, + sym__unquoted_pattern, + [90703] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5083), 1, - anon_sym_DOT, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - STATE(2431), 1, + STATE(2681), 1, sym_comment, - ACTIONS(1736), 5, - ts_builtin_sym_end, + ACTIONS(1678), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 13, + ACTIONS(1676), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202789,27 +221971,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75518] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [90734] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2432), 1, + STATE(2682), 1, sym_comment, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2756), 1, - sym_cell_path, - ACTIONS(1679), 4, - ts_builtin_sym_end, + ACTIONS(1702), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 12, + ACTIONS(1700), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202821,23 +221998,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - [75557] = 7, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [90765] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5087), 1, - anon_sym_DOT_DOT2, - STATE(2433), 1, + STATE(2683), 1, sym_comment, - ACTIONS(5089), 2, + ACTIONS(1682), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 15, - ts_builtin_sym_end, + ACTIONS(1680), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202849,24 +222025,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_and2, - anon_sym_xor2, - anon_sym_or2, - [75594] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [90796] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5091), 1, + ACTIONS(5540), 1, anon_sym_DOT2, - STATE(2542), 1, - sym_path, - STATE(2434), 2, + STATE(2684), 1, sym_comment, + STATE(2694), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 3, + STATE(2846), 1, + sym_path, + STATE(2894), 1, + sym_cell_path, + ACTIONS(1821), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1524), 14, + ACTIONS(1823), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202878,21 +222061,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, - [75629] = 6, - ACTIONS(3), 1, + [90835] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(5094), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5096), 1, - aux_sym__immediate_decimal_token5, - STATE(2435), 1, + STATE(2685), 1, sym_comment, - ACTIONS(1726), 17, + ACTIONS(1670), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1668), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202906,26 +222085,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [75664] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [90866] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, + STATE(2686), 1, + sym_comment, + ACTIONS(761), 7, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, - ACTIONS(1984), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(759), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(5098), 1, + [90897] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5560), 1, anon_sym_DOT_DOT2, - STATE(2436), 1, + STATE(2687), 1, sym_comment, - ACTIONS(5100), 2, + ACTIONS(5562), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 15, - ts_builtin_sym_end, + ACTIONS(5558), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202937,52 +222138,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [75701] = 11, - ACTIONS(3), 1, + [90929] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, - aux_sym__immediate_decimal_token2, - STATE(2437), 1, + STATE(2688), 1, sym_comment, - STATE(3347), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3345), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 9, - anon_sym_EQ, + ACTIONS(1682), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1680), 15, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [75746] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [90959] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2438), 1, - sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, + ACTIONS(1922), 1, sym__unquoted_pattern, - ACTIONS(1802), 18, + ACTIONS(5564), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token5, + STATE(2689), 1, + sym_comment, + ACTIONS(1920), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202999,49 +222197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75777] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2439), 1, - sym_comment, - ACTIONS(2938), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(2940), 17, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [75808] = 4, + [90993] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2440), 1, + STATE(2690), 1, sym_comment, - ACTIONS(773), 7, + ACTIONS(1674), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 13, + ACTIONS(1672), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203054,17 +222220,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75839] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [91023] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2441), 1, + STATE(2691), 1, sym_comment, - ACTIONS(1516), 3, + ACTIONS(1688), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1514), 17, + ACTIONS(1686), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203076,27 +222245,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_DOT_DOT2, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [75870] = 5, + [91053] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5034), 1, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5570), 1, aux_sym__immediate_decimal_token5, - STATE(2442), 1, + STATE(2692), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(1884), 4, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(741), 13, + ACTIONS(1882), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -203110,22 +222277,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75903] = 6, + [91087] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(97), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(5572), 1, + anon_sym_LPAREN, + ACTIONS(5574), 1, + anon_sym_DOLLAR, + ACTIONS(5576), 1, + sym__unquoted_naive, + STATE(1317), 1, + sym__inter_double_quotes, + STATE(1359), 1, + sym__inter_single_quotes, + STATE(2693), 1, + sym_comment, + STATE(494), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3524), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [91139] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5102), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5104), 1, - aux_sym__immediate_decimal_token5, - STATE(2443), 1, + ACTIONS(5540), 1, + anon_sym_DOT2, + STATE(2694), 1, sym_comment, - ACTIONS(1726), 5, + STATE(2712), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2846), 1, + sym_path, + ACTIONS(1653), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 13, + ACTIONS(1651), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203138,79 +222343,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75938] = 11, + [91175] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5108), 1, - anon_sym_DOT_DOT2, - ACTIONS(5112), 1, - sym_filesize_unit, - ACTIONS(5114), 1, - sym_duration_unit, - ACTIONS(5116), 1, - sym__unquoted_pattern_in_record, - STATE(2444), 1, + ACTIONS(5578), 1, + anon_sym_DOT2, + STATE(775), 1, + sym_path, + STATE(1298), 1, + sym_cell_path, + STATE(2636), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2695), 1, sym_comment, - STATE(4649), 1, - sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5110), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 10, - anon_sym_EQ, + ACTIONS(2032), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [91211] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1288), 1, + anon_sym_DQUOTE, + ACTIONS(1290), 1, + anon_sym_SQUOTE, + ACTIONS(1292), 1, + anon_sym_BQUOTE, + ACTIONS(1294), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1296), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1306), 1, + sym_raw_string_begin, + ACTIONS(3035), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [75983] = 5, + ACTIONS(5580), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, + sym__unquoted_naive, + STATE(1639), 1, + sym__inter_single_quotes, + STATE(1640), 1, + sym__inter_double_quotes, + STATE(2696), 1, + sym_comment, + STATE(1579), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + STATE(1608), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [91263] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_QMARK2, - STATE(2445), 1, + ACTIONS(5578), 1, + anon_sym_DOT2, + STATE(775), 1, + sym_path, + STATE(1302), 1, + sym_cell_path, + STATE(2636), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2697), 1, sym_comment, - ACTIONS(1438), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(2016), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [91299] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5578), 1, anon_sym_DOT2, - ACTIONS(1440), 16, - anon_sym_EQ, - sym_identifier, + STATE(775), 1, + sym_path, + STATE(1303), 1, + sym_cell_path, + STATE(2636), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2698), 1, + sym_comment, + ACTIONS(2024), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76016] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [91335] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2446), 1, + STATE(2699), 1, sym_comment, - ACTIONS(1545), 3, + ACTIONS(1670), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1543), 17, + ACTIONS(1668), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203222,24 +222489,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_DOT_DOT2, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [76047] = 6, + [91365] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5120), 1, - anon_sym_DOT, - ACTIONS(5122), 1, - aux_sym__immediate_decimal_token5, - STATE(2447), 1, + ACTIONS(5578), 1, + anon_sym_DOT2, + STATE(775), 1, + sym_path, + STATE(1319), 1, + sym_cell_path, + STATE(2636), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2700), 1, sym_comment, - ACTIONS(1736), 17, + ACTIONS(2046), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203251,31 +222519,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [76082] = 9, - ACTIONS(103), 1, + [91401] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(4965), 1, - sym_filesize_unit, - ACTIONS(4967), 1, - sym_duration_unit, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2448), 1, + ACTIONS(5578), 1, + anon_sym_DOT2, + STATE(775), 1, + sym_path, + STATE(1340), 1, + sym_cell_path, + STATE(2636), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2701), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 13, + ACTIONS(2008), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203287,21 +222548,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, - [76123] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [91437] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5124), 1, - aux_sym__immediate_decimal_token5, - STATE(2449), 1, + STATE(2702), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1956), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 15, + ACTIONS(1958), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203317,20 +222577,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76156] = 4, + [91467] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2450), 1, + ACTIONS(5584), 1, + aux_sym__immediate_decimal_token5, + STATE(2703), 1, sym_comment, - ACTIONS(749), 7, + ACTIONS(1956), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 13, + ACTIONS(1958), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203344,16 +222604,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76187] = 4, - ACTIONS(103), 1, + [91499] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2451), 1, + ACTIONS(5560), 1, + anon_sym_DOT_DOT2, + STATE(2704), 1, sym_comment, - ACTIONS(1472), 3, - sym__space, + ACTIONS(5562), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 17, + ACTIONS(5558), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203367,109 +222628,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [91531] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5560), 1, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76218] = 5, + STATE(2705), 1, + sym_comment, + ACTIONS(5562), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5558), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [91563] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5126), 1, - aux_sym__immediate_decimal_token5, - STATE(2452), 1, + STATE(2706), 1, sym_comment, - ACTIONS(771), 6, - sym_identifier, + ACTIONS(1657), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(773), 13, + anon_sym_DOT2, + ACTIONS(1659), 16, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76251] = 4, + [91593] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2453), 1, + STATE(2707), 1, + sym_comment, + ACTIONS(5588), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5586), 17, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_DOT2, + [91623] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5590), 1, + anon_sym_DOT2, + STATE(2706), 1, + sym_path, + STATE(2708), 1, sym_comment, - ACTIONS(1728), 2, + STATE(2769), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3093), 1, + sym_cell_path, + ACTIONS(1823), 2, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 18, - ts_builtin_sym_end, + ACTIONS(1821), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76282] = 4, - ACTIONS(103), 1, + [91661] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2454), 1, + ACTIONS(5590), 1, + anon_sym_DOT2, + STATE(2706), 1, + sym_path, + STATE(2709), 1, sym_comment, - ACTIONS(1480), 3, - sym__space, + STATE(2769), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3085), 1, + sym_cell_path, + ACTIONS(1588), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1590), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1478), 17, + [91699] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5592), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5594), 1, + aux_sym__immediate_decimal_token5, + STATE(2710), 1, + sym_comment, + ACTIONS(1922), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1920), 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_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76313] = 7, + 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, + [91733] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5128), 1, - anon_sym_QMARK2, - ACTIONS(5130), 1, - anon_sym_BANG, - STATE(2455), 1, + STATE(2711), 1, sym_comment, - STATE(2609), 1, - sym__path_suffix, - ACTIONS(1448), 4, + ACTIONS(1678), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 13, + ACTIONS(1676), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203482,26 +222821,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - [76350] = 8, + [91763] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5596), 1, anon_sym_DOT2, - STATE(2456), 1, + STATE(2846), 1, + sym_path, + STATE(2712), 2, sym_comment, - STATE(2489), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2761), 1, - sym_cell_path, - ACTIONS(1641), 4, + ACTIONS(1644), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 12, + ACTIONS(1642), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203514,43 +222852,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [76389] = 4, - ACTIONS(103), 1, + [91797] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2457), 1, + STATE(2713), 1, sym_comment, - ACTIONS(1468), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1466), 17, + ACTIONS(759), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(761), 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_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76420] = 4, + 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, + [91827] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2458), 1, + STATE(2714), 1, sym_comment, - ACTIONS(1476), 3, + ACTIONS(2050), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1474), 17, + ACTIONS(2052), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203565,50 +222903,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76451] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2164), 1, - anon_sym_BANG, - STATE(2459), 1, - sym_comment, - ACTIONS(1438), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76484] = 5, + sym__unquoted_pattern, + [91857] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - STATE(2460), 1, - sym_comment, - ACTIONS(1736), 4, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2094), 1, sym__space, + ACTIONS(2098), 1, anon_sym_LPAREN2, + ACTIONS(5599), 1, + anon_sym_DOT_DOT2, + STATE(2715), 1, + sym_comment, + ACTIONS(5601), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 15, + ACTIONS(2096), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203622,47 +222934,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76517] = 5, + [91895] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_BANG, - STATE(2461), 1, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1934), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_DQUOTE, + ACTIONS(1948), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, + anon_sym_BQUOTE, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(5603), 1, + anon_sym_DOLLAR, + ACTIONS(5605), 1, + sym__unquoted_naive, + STATE(750), 1, + sym__inter_single_quotes, + STATE(751), 1, + sym__inter_double_quotes, + STATE(2716), 1, + sym_comment, + STATE(2465), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3358), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [91947] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2717), 1, sym_comment, - ACTIONS(1438), 3, + ACTIONS(775), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 16, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(777), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76550] = 4, + [91977] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(2462), 1, + ACTIONS(3320), 1, + anon_sym_DOT_DOT2, + ACTIONS(5483), 1, + sym_filesize_unit, + ACTIONS(5485), 1, + sym_duration_unit, + ACTIONS(5487), 1, + sym__unquoted_pattern, + STATE(2718), 1, sym_comment, - ACTIONS(1545), 4, + ACTIONS(904), 2, ts_builtin_sym_end, sym__space, + ACTIONS(3322), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1543), 15, + ACTIONS(815), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203674,21 +223028,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_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76580] = 4, + [92017] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2463), 1, - sym_comment, - ACTIONS(1476), 4, - ts_builtin_sym_end, + ACTIONS(2104), 1, sym__space, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + ACTIONS(5607), 1, + anon_sym_DOT_DOT2, + STATE(2719), 1, + sym_comment, + ACTIONS(5609), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1474), 15, + ACTIONS(2106), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203700,184 +223056,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76610] = 15, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92055] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(843), 1, + ACTIONS(992), 1, sym_raw_string_begin, - ACTIONS(3224), 1, + ACTIONS(3371), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(3373), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(3375), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, + ACTIONS(3377), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, + ACTIONS(3379), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, + ACTIONS(4113), 1, anon_sym_LPAREN, - ACTIONS(3663), 1, + ACTIONS(4115), 1, anon_sym_DOLLAR, - ACTIONS(5132), 1, + ACTIONS(5611), 1, sym__unquoted_naive, - STATE(2464), 1, + STATE(2720), 1, sym_comment, - STATE(3063), 1, + STATE(3309), 1, sym__inter_single_quotes, - STATE(3066), 1, + STATE(3310), 1, sym__inter_double_quotes, - STATE(2454), 4, + STATE(2727), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2967), 4, + STATE(3331), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - [76662] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2465), 1, - sym_comment, - ACTIONS(1516), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1514), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76692] = 7, + [92107] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1274), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2466), 1, + ACTIONS(892), 1, + sym_raw_string_begin, + ACTIONS(3407), 1, + anon_sym_DQUOTE, + ACTIONS(3409), 1, + anon_sym_SQUOTE, + ACTIONS(3411), 1, + anon_sym_BQUOTE, + ACTIONS(3413), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3415), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4121), 1, + anon_sym_LPAREN, + ACTIONS(4123), 1, + anon_sym_DOLLAR, + ACTIONS(5613), 1, + sym__unquoted_naive, + STATE(2721), 1, sym_comment, - ACTIONS(1866), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [76728] = 14, + STATE(3207), 1, + sym__inter_single_quotes, + STATE(3208), 1, + sym__inter_double_quotes, + STATE(2682), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3168), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [92159] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5144), 1, - anon_sym_LPAREN, - ACTIONS(5146), 1, - anon_sym_DASH2, - STATE(2467), 1, + STATE(2722), 1, sym_comment, - STATE(2621), 1, - sym_flag_capsule, - STATE(2623), 1, - aux_sym_parameter_repeat1, - STATE(3374), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5136), 7, + ACTIONS(894), 6, sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(896), 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, - [76778] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2468), 1, - sym_comment, - ACTIONS(1726), 4, - sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76808] = 9, - ACTIONS(103), 1, + [92189] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(5560), 1, anon_sym_DOT_DOT2, - ACTIONS(5044), 1, - sym_filesize_unit, - ACTIONS(5046), 1, - sym_duration_unit, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(2469), 1, + STATE(2723), 1, sym_comment, - ACTIONS(968), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4141), 2, + ACTIONS(5562), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 11, + ACTIONS(1856), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203889,20 +223180,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, - [76848] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92221] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(5578), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(775), 1, sym_path, - STATE(1292), 1, + STATE(1305), 1, sym_cell_path, - STATE(2387), 1, + STATE(2636), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2470), 1, + STATE(2724), 1, sym_comment, - ACTIONS(1850), 15, + ACTIONS(2020), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203918,16 +223214,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76884] = 5, + [92257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(5148), 1, - aux_sym__immediate_decimal_token5, - STATE(2471), 1, + STATE(2725), 1, + sym_comment, + ACTIONS(1694), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1696), 16, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [92287] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5615), 1, + anon_sym_QMARK2, + STATE(2726), 1, sym_comment, - ACTIONS(1802), 17, + ACTIONS(1610), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1608), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203941,21 +223265,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [76916] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [92319] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2472), 1, + STATE(2727), 1, sym_comment, - ACTIONS(1480), 4, + ACTIONS(1702), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1478), 15, + ACTIONS(1700), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203971,20 +223293,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [76946] = 4, + [92349] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2473), 1, + ACTIONS(5590), 1, + anon_sym_DOT2, + STATE(2706), 1, + sym_path, + STATE(2728), 1, sym_comment, - ACTIONS(849), 6, - sym_identifier, + STATE(2769), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3090), 1, + sym_cell_path, + ACTIONS(1809), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(851), 13, + ACTIONS(1807), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -203994,49 +223321,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76976] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1272), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2474), 1, - sym_comment, - ACTIONS(1858), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77012] = 5, + [92387] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2475), 1, + ACTIONS(1884), 1, + sym__unquoted_pattern, + ACTIONS(5535), 1, + aux_sym__immediate_decimal_token5, + STATE(2729), 1, sym_comment, - ACTIONS(5154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + ACTIONS(1882), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204053,16 +223349,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77044] = 4, + anon_sym_LPAREN2, + [92419] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2476), 1, + STATE(2730), 1, sym_comment, - ACTIONS(1520), 3, + ACTIONS(1690), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1522), 16, + ACTIONS(1692), 16, anon_sym_EQ, sym_identifier, sym__newline, @@ -204079,21 +223376,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77074] = 7, + [92449] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1273), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2477), 1, + ACTIONS(1958), 1, + sym__unquoted_pattern, + ACTIONS(5617), 1, + aux_sym__immediate_decimal_token5, + STATE(2731), 1, sym_comment, - ACTIONS(1862), 15, - ts_builtin_sym_end, + ACTIONS(1956), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204105,20 +223397,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_and2, anon_sym_xor2, anon_sym_or2, - [77110] = 5, + anon_sym_LPAREN2, + [92481] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1626), 1, + anon_sym_COMMA, + ACTIONS(5621), 1, + anon_sym_EQ, + ACTIONS(5623), 1, + sym__newline, + ACTIONS(5625), 1, + anon_sym_COLON, + ACTIONS(5627), 1, + anon_sym_LPAREN, + ACTIONS(5629), 1, + anon_sym_DASH2, + STATE(2732), 1, + sym_comment, + STATE(2840), 1, + sym_flag_capsule, + STATE(2841), 1, + aux_sym_parameter_repeat1, + STATE(3596), 1, + aux_sym_parameter_repeat2, + STATE(4310), 1, + aux_sym__repeat_newline, + STATE(3492), 2, + sym_param_type, + sym_param_value, + ACTIONS(5619), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [92531] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, + ACTIONS(5631), 1, anon_sym_DOT_DOT2, - STATE(2478), 1, + STATE(2733), 1, sym_comment, - ACTIONS(5154), 2, + ACTIONS(5633), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 16, + ACTIONS(2294), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204135,21 +223466,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77142] = 7, + [92563] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1320), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2479), 1, + ACTIONS(5635), 1, + anon_sym_DOT_DOT2, + STATE(2734), 1, sym_comment, - ACTIONS(1882), 15, - ts_builtin_sym_end, + ACTIONS(5637), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2318), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204161,22 +223488,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77178] = 6, + [92595] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5156), 1, - anon_sym_DOT, - ACTIONS(5158), 1, - aux_sym__immediate_decimal_token5, - STATE(2480), 1, + ACTIONS(5639), 1, + anon_sym_DOT_DOT2, + STATE(2735), 1, sym_comment, - ACTIONS(1736), 16, - ts_builtin_sym_end, + ACTIONS(5641), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2278), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204188,21 +223515,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [77212] = 5, + [92627] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, + ACTIONS(5643), 1, anon_sym_DOT_DOT2, - STATE(2481), 1, + STATE(2736), 1, sym_comment, - ACTIONS(5154), 2, + ACTIONS(5645), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + ACTIONS(2232), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204219,145 +223547,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77244] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5160), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5162), 1, - aux_sym__immediate_decimal_token5, - STATE(2482), 1, - sym_comment, - ACTIONS(1728), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 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, - [77278] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2483), 1, - sym_comment, - ACTIONS(747), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(749), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - 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, - [77308] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(5166), 1, - sym__unquoted_naive, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(2484), 1, - sym_comment, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3209), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77360] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(97), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(5168), 1, - anon_sym_LPAREN, - ACTIONS(5170), 1, - anon_sym_DOLLAR, - ACTIONS(5172), 1, - sym__unquoted_naive, - STATE(1325), 1, - sym__inter_single_quotes, - STATE(1326), 1, - sym__inter_double_quotes, - STATE(2485), 1, - sym_comment, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3310), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77412] = 4, + [92659] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2486), 1, + STATE(2737), 1, sym_comment, - ACTIONS(1472), 4, - ts_builtin_sym_end, + ACTIONS(1920), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 15, + ACTIONS(1922), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204369,21 +223569,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [77442] = 4, + sym__unquoted_pattern, + [92689] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2487), 1, + ACTIONS(5523), 1, + aux_sym__immediate_decimal_token5, + STATE(2738), 1, sym_comment, - ACTIONS(1870), 4, + ACTIONS(1882), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 15, + ACTIONS(1884), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204395,55 +223598,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [77472] = 6, + [92721] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(1884), 1, + sym__unquoted_pattern, + ACTIONS(5647), 1, anon_sym_DOT, - ACTIONS(5176), 1, + ACTIONS(5649), 1, aux_sym__immediate_decimal_token5, - STATE(2488), 1, - sym_comment, - ACTIONS(1738), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77506] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, + STATE(2739), 1, sym_comment, - STATE(2492), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - ACTIONS(1460), 4, + ACTIONS(1882), 16, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1458), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204455,18 +223624,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, - [77542] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [92755] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2490), 1, + ACTIONS(5615), 1, + anon_sym_BANG, + STATE(2740), 1, sym_comment, - ACTIONS(1468), 4, - ts_builtin_sym_end, + ACTIONS(1610), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1466), 15, + ACTIONS(1608), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204478,56 +223651,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, anon_sym_DOT2, - [77572] = 8, - ACTIONS(3), 1, + [92787] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(3685), 1, + sym__space, + ACTIONS(5437), 1, anon_sym_DOT2, - STATE(2491), 1, + STATE(2669), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2741), 1, sym_comment, - STATE(2511), 1, + STATE(2743), 1, sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2868), 1, + STATE(3179), 1, sym_cell_path, - ACTIONS(1643), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1641), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(3687), 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, - [77610] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + [92824] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5180), 1, - anon_sym_DOT2, - STATE(2611), 1, - sym_path, - STATE(2492), 2, + ACTIONS(5651), 1, + anon_sym_DOT_DOT2, + STATE(2742), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5653), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1524), 12, + ACTIONS(2232), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204539,21 +223707,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [77644] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92855] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - STATE(2493), 1, + STATE(2743), 1, sym_comment, - ACTIONS(1736), 5, - ts_builtin_sym_end, + ACTIONS(1659), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 13, + ACTIONS(1657), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204565,112 +223731,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, - sym__unquoted_pattern, - [77676] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2494), 1, - sym_comment, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2863), 1, - sym_cell_path, - ACTIONS(1432), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1434), 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, - [77714] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(3263), 1, - anon_sym_DQUOTE, - ACTIONS(3265), 1, - anon_sym_SQUOTE, - ACTIONS(3267), 1, - anon_sym_BQUOTE, - ACTIONS(3269), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, - anon_sym_LPAREN, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(5183), 1, - sym__unquoted_naive, - STATE(2495), 1, - sym_comment, - STATE(3091), 1, - sym__inter_single_quotes, - STATE(3098), 1, - sym__inter_double_quotes, - STATE(2472), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3092), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77766] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2496), 1, - sym_comment, - ACTIONS(5187), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5185), 17, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT2, - [77796] = 5, + [92884] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, + ACTIONS(5655), 1, anon_sym_DOT_DOT2, - STATE(2497), 1, + STATE(2744), 1, sym_comment, - ACTIONS(5154), 2, + ACTIONS(5657), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + ACTIONS(5558), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204682,51 +223758,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_and2, anon_sym_xor2, anon_sym_or2, - [77828] = 8, - ACTIONS(3), 1, + [92915] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2498), 1, + ACTIONS(5659), 1, + anon_sym_QMARK2, + STATE(2745), 1, sym_comment, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2900), 1, - sym_cell_path, - ACTIONS(1681), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1679), 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, + ACTIONS(1610), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77866] = 5, - ACTIONS(3), 1, + ACTIONS(1608), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [92946] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5122), 1, - aux_sym__immediate_decimal_token5, - STATE(2499), 1, + STATE(2746), 1, sym_comment, - ACTIONS(1736), 17, + ACTIONS(1692), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1690), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204740,21 +223810,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [77898] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5189), 1, anon_sym_DOT_DOT2, - STATE(2500), 1, + anon_sym_DOT2, + [92975] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2747), 1, sym_comment, - ACTIONS(5191), 2, + ACTIONS(1956), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 16, + ACTIONS(1958), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204766,22 +223835,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [93004] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5663), 1, + anon_sym_DASH2, + STATE(2748), 1, + sym_comment, + ACTIONS(5661), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77930] = 5, + [93033] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5193), 1, - anon_sym_DOT_DOT2, - STATE(2501), 1, + ACTIONS(2766), 1, + anon_sym_LPAREN2, + ACTIONS(2768), 1, + sym__unquoted_pattern, + STATE(2749), 1, sym_comment, - ACTIONS(5195), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 16, + ACTIONS(2762), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204798,17 +223888,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77962] = 5, + [93064] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_DOT_DOT2, - STATE(2502), 1, + ACTIONS(1922), 1, + sym__unquoted_pattern, + STATE(2750), 1, sym_comment, - ACTIONS(5199), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 16, + ACTIONS(1920), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204825,17 +223912,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77994] = 5, + anon_sym_LPAREN2, + [93093] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5201), 1, - anon_sym_DOT_DOT2, - STATE(2503), 1, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(2751), 1, sym_comment, - ACTIONS(5203), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 16, + ACTIONS(1014), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204852,19 +223939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78026] = 6, + [93124] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1958), 1, sym__unquoted_pattern, - ACTIONS(5205), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5207), 1, - aux_sym__immediate_decimal_token5, - STATE(2504), 1, + STATE(2752), 1, sym_comment, - ACTIONS(1726), 16, - ts_builtin_sym_end, + ACTIONS(1956), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204876,27 +223958,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [78060] = 8, - ACTIONS(103), 1, + [93153] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(2052), 1, sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5209), 1, - anon_sym_DOT_DOT2, - STATE(2505), 1, + STATE(2753), 1, sym_comment, - ACTIONS(5211), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 13, + ACTIONS(2050), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204910,18 +223985,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78098] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [93182] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5213), 1, - anon_sym_BANG, - STATE(2506), 1, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(2754), 1, sym_comment, - ACTIONS(1440), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 15, + ACTIONS(1032), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204935,21 +224012,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78130] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [93213] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2507), 1, + ACTIONS(5570), 1, + aux_sym__immediate_decimal_token5, + STATE(2755), 1, sym_comment, - ACTIONS(771), 6, + ACTIONS(1884), 4, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(773), 13, + ACTIONS(1882), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -204963,76 +224041,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78160] = 4, + [93244] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2508), 1, + ACTIONS(5665), 1, + aux_sym__immediate_decimal_token5, + STATE(2756), 1, sym_comment, - ACTIONS(1535), 3, + ACTIONS(1958), 4, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1537), 16, + sym__unquoted_pattern_in_record, + ACTIONS(1956), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78190] = 8, - ACTIONS(103), 1, + [93275] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5215), 1, + ACTIONS(5655), 1, anon_sym_DOT_DOT2, - STATE(2509), 1, + STATE(2757), 1, sym_comment, - ACTIONS(5217), 2, + ACTIONS(5657), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 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, - [78228] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5219), 1, - aux_sym__immediate_decimal_token5, - STATE(2510), 1, - sym_comment, - ACTIONS(1802), 5, + ACTIONS(5558), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205044,21 +224090,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78260] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [93306] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2511), 1, - sym_comment, - ACTIONS(1462), 3, + ACTIONS(5669), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1464), 16, + STATE(2758), 1, + sym_comment, + ACTIONS(5667), 17, anon_sym_EQ, sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, anon_sym_LBRACK, @@ -205070,50 +224116,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78290] = 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + [93335] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5213), 1, - anon_sym_QMARK2, - STATE(2512), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + ACTIONS(5671), 1, + anon_sym_DOT_DOT2, + STATE(2759), 1, sym_comment, - ACTIONS(1440), 3, + ACTIONS(2104), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(5673), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 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, - anon_sym_DOT2, - [78322] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1279), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2513), 1, - sym_comment, - ACTIONS(1878), 15, - ts_builtin_sym_end, + ACTIONS(2106), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205125,20 +224147,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78358] = 4, + [93372] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2514), 1, + ACTIONS(5659), 1, + anon_sym_BANG, + STATE(2760), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1610), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 15, + ACTIONS(1608), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205150,20 +224171,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, - sym__unquoted_pattern, - [78388] = 5, + anon_sym_DOT2, + [93403] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2515), 1, + ACTIONS(5655), 1, + anon_sym_DOT_DOT2, + STATE(2761), 1, sym_comment, - ACTIONS(1706), 16, + ACTIONS(5657), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5558), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205175,48 +224196,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78419] = 8, - ACTIONS(103), 1, + [93434] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2516), 1, + STATE(2762), 1, sym_comment, - STATE(2542), 1, - sym_path, - STATE(2932), 1, - sym_cell_path, - ACTIONS(1860), 13, + ACTIONS(5106), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5108), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5110), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(5102), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [93467] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5677), 1, + anon_sym_DASH2, + STATE(2763), 1, + sym_comment, + ACTIONS(5675), 17, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [78456] = 4, + [93496] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, + ACTIONS(5681), 1, anon_sym_DASH2, - STATE(2517), 1, + STATE(2764), 1, sym_comment, - ACTIONS(5221), 17, + ACTIONS(5679), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -205234,19 +224276,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [78485] = 5, + [93525] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5225), 1, - anon_sym_BANG, - STATE(2518), 1, - sym_comment, - ACTIONS(1440), 4, - ts_builtin_sym_end, + ACTIONS(2032), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 13, + ACTIONS(5437), 1, + anon_sym_DOT2, + STATE(2669), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2743), 1, + sym_path, + STATE(2765), 1, + sym_comment, + STATE(3172), 1, + sym_cell_path, + ACTIONS(2035), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205258,24 +224303,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78516] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93562] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(3657), 1, sym__space, - ACTIONS(5024), 1, + ACTIONS(5437), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(2669), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2519), 1, - sym_comment, - STATE(2542), 1, + STATE(2743), 1, sym_path, - STATE(3025), 1, + STATE(2766), 1, + sym_comment, + STATE(3287), 1, sym_cell_path, - ACTIONS(1868), 13, + ACTIONS(3659), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205289,18 +224334,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78553] = 5, + [93599] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2520), 1, + ACTIONS(5685), 1, + anon_sym_DASH2, + STATE(2767), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, - ts_builtin_sym_end, + ACTIONS(5683), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [93628] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + STATE(2768), 1, + sym_comment, + STATE(4977), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5687), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205312,46 +224380,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_and2, anon_sym_xor2, anon_sym_or2, - [78584] = 8, - ACTIONS(103), 1, + [93659] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5590), 1, anon_sym_DOT2, - ACTIONS(5233), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2521), 1, - sym_comment, - STATE(2542), 1, + STATE(2706), 1, sym_path, - STATE(3003), 1, - sym_cell_path, - ACTIONS(5231), 13, + STATE(2769), 1, + sym_comment, + STATE(2803), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1651), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1653), 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, - [78621] = 4, - 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, + [93694] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(2522), 1, + ACTIONS(5689), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5691), 1, + aux_sym__immediate_decimal_token5, + STATE(2770), 1, sym_comment, - ACTIONS(2501), 17, + ACTIONS(1920), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1922), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205365,20 +224439,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [78650] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2523), 1, + [93727] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2024), 1, + sym__space, + ACTIONS(5437), 1, + anon_sym_DOT2, + STATE(2669), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2743), 1, + sym_path, + STATE(2771), 1, sym_comment, - ACTIONS(1964), 16, + STATE(3188), 1, + sym_cell_path, + ACTIONS(2026), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205392,19 +224469,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78681] = 5, - ACTIONS(3), 1, + [93764] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2524), 1, + ACTIONS(3667), 1, + sym__space, + ACTIONS(5437), 1, + anon_sym_DOT2, + STATE(2669), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2743), 1, + sym_path, + STATE(2772), 1, sym_comment, - ACTIONS(994), 16, + STATE(3288), 1, + sym_cell_path, + ACTIONS(3669), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205418,70 +224498,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78712] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5235), 1, - aux_sym__immediate_decimal_token5, - STATE(2525), 1, - sym_comment, - ACTIONS(1804), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 13, - 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, - [78743] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5239), 1, - anon_sym_DASH2, - STATE(2526), 1, - sym_comment, - ACTIONS(5237), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78772] = 5, - ACTIONS(3), 1, + [93801] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2527), 1, + ACTIONS(2046), 1, + sym__space, + ACTIONS(5437), 1, + anon_sym_DOT2, + STATE(2669), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2743), 1, + sym_path, + STATE(2773), 1, sym_comment, - ACTIONS(2635), 16, + STATE(3193), 1, + sym_cell_path, + ACTIONS(2048), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205495,19 +224527,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78803] = 5, + [93838] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1890), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2528), 1, + STATE(2774), 1, sym_comment, - ACTIONS(2575), 16, + STATE(4977), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5687), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205524,18 +224553,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78834] = 4, + [93869] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2529), 1, - sym_comment, - ACTIONS(1802), 5, - ts_builtin_sym_end, + ACTIONS(2008), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 13, + ACTIONS(5437), 1, + anon_sym_DOT2, + STATE(2669), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2743), 1, + sym_path, + STATE(2775), 1, + sym_comment, + STATE(3199), 1, + sym_cell_path, + ACTIONS(2010), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205547,16 +224580,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78863] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93906] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5243), 1, + ACTIONS(5695), 1, anon_sym_DASH2, - STATE(2530), 1, + STATE(2776), 1, sym_comment, - ACTIONS(5241), 17, + ACTIONS(5693), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -205574,18 +224607,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [78892] = 4, + [93935] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2531), 1, - sym_comment, - ACTIONS(1726), 5, - ts_builtin_sym_end, + ACTIONS(2020), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 13, + ACTIONS(5437), 1, + anon_sym_DOT2, + STATE(2669), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2743), 1, + sym_path, + STATE(2777), 1, + sym_comment, + STATE(3219), 1, + sym_cell_path, + ACTIONS(2022), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205597,18 +224634,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78921] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93972] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2532), 1, + STATE(2778), 1, sym_comment, - ACTIONS(1537), 3, + ACTIONS(2050), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 15, + ACTIONS(2052), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205620,20 +224659,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, - anon_sym_DOT2, - [78950] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, sym__unquoted_pattern, - STATE(2533), 1, + [94001] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2779), 1, sym_comment, - ACTIONS(1974), 16, + ACTIONS(1920), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1922), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205645,21 +224684,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78981] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [94030] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1774), 1, sym__unquoted_pattern, - ACTIONS(2629), 1, + ACTIONS(2098), 1, anon_sym_LPAREN2, - STATE(2534), 1, + STATE(2780), 1, sym_comment, - ACTIONS(2523), 16, + ACTIONS(2094), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205676,16 +224712,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79012] = 5, - ACTIONS(3), 1, + [94061] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2535), 1, + ACTIONS(2016), 1, + sym__space, + ACTIONS(5437), 1, + anon_sym_DOT2, + STATE(2669), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2743), 1, + sym_path, + STATE(2781), 1, sym_comment, - ACTIONS(2567), 16, + STATE(3259), 1, + sym_cell_path, + ACTIONS(2018), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205699,19 +224741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79043] = 4, + [94098] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2536), 1, + STATE(2782), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(1700), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1472), 15, + ACTIONS(1702), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -205727,25 +224766,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [79072] = 6, + [94127] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2537), 1, + STATE(2783), 1, sym_comment, - ACTIONS(4682), 2, + ACTIONS(5136), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4684), 4, + ACTIONS(5138), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4686), 4, + ACTIONS(5140), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4678), 8, + ACTIONS(5134), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -205754,51 +224793,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [79105] = 8, - ACTIONS(103), 1, + [94160] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5247), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2538), 1, + STATE(2784), 1, sym_comment, - STATE(2542), 1, - sym_path, - STATE(3037), 1, - sym_cell_path, - ACTIONS(5245), 13, + ACTIONS(1668), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1670), 15, + 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, - [79142] = 8, - ACTIONS(103), 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, + anon_sym_QMARK2, + anon_sym_BANG, + [94189] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, + STATE(2785), 1, + sym_comment, + ACTIONS(1672), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(5251), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2539), 1, + ACTIONS(1674), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [94218] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(2786), 1, sym_comment, - STATE(2542), 1, - sym_path, - STATE(3036), 1, - sym_cell_path, - ACTIONS(5249), 13, + ACTIONS(2750), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205812,66 +224866,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79179] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94249] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5255), 1, - anon_sym_DASH2, - STATE(2540), 1, + STATE(2787), 1, sym_comment, - ACTIONS(5253), 17, + ACTIONS(1676), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1678), 15, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [79208] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [94278] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5259), 1, - anon_sym_DASH2, - STATE(2541), 1, + STATE(2788), 1, sym_comment, - ACTIONS(5257), 17, + ACTIONS(1680), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1682), 15, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [79237] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [94307] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2542), 1, + STATE(2789), 1, sym_comment, - ACTIONS(1464), 3, - sym__space, + ACTIONS(1686), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1688), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 15, + anon_sym_QMARK2, + anon_sym_BANG, + [94336] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(2790), 1, + sym_comment, + ACTIONS(2104), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205885,21 +224967,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [79266] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94367] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5261), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5263), 1, - aux_sym__immediate_decimal_token5, - STATE(2543), 1, + STATE(2791), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1696), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1694), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205913,48 +224993,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [79299] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2544), 1, - sym_comment, - ACTIONS(1474), 3, - anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1476), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79328] = 8, - ACTIONS(103), 1, + [94396] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5267), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2545), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(2804), 1, + anon_sym_LPAREN2, + STATE(2792), 1, sym_comment, - STATE(3016), 1, - sym_cell_path, - ACTIONS(5265), 13, + ACTIONS(2715), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205968,16 +225018,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79365] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94427] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(2758), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2760), 1, sym__unquoted_pattern, - STATE(2546), 1, + STATE(2793), 1, sym_comment, - ACTIONS(1018), 16, + ACTIONS(2742), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205994,16 +225047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79396] = 5, + [94458] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2547), 1, + ACTIONS(2665), 1, + sym__unquoted_pattern, + STATE(2794), 1, sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + ACTIONS(2663), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206020,47 +225071,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79427] = 4, + anon_sym_LPAREN2, + [94487] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2548), 1, - sym_comment, - ACTIONS(1478), 3, - anon_sym_DASH2, + ACTIONS(5655), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1480), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + STATE(2795), 1, + sym_comment, + ACTIONS(5657), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79456] = 8, + ACTIONS(1856), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94518] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5273), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2549), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + ACTIONS(5697), 1, + anon_sym_DOT_DOT2, + STATE(2796), 1, sym_comment, - STATE(3005), 1, - sym_cell_path, - ACTIONS(5271), 13, + ACTIONS(2094), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5699), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2096), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206072,21 +225127,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, - [79493] = 6, + [94555] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5275), 1, + ACTIONS(5701), 1, anon_sym_DOT, - ACTIONS(5277), 1, + ACTIONS(5703), 1, aux_sym__immediate_decimal_token5, - STATE(2550), 1, + STATE(2797), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1882), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1738), 14, + ACTIONS(1884), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206101,19 +225154,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, sym__unquoted_pattern, - [79526] = 5, - ACTIONS(103), 1, + [94588] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5225), 1, - anon_sym_QMARK2, - STATE(2551), 1, + ACTIONS(1884), 1, + sym__unquoted_pattern, + ACTIONS(5649), 1, + aux_sym__immediate_decimal_token5, + STATE(2798), 1, sym_comment, - ACTIONS(1440), 4, + ACTIONS(1882), 16, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206125,49 +225176,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_DOT_DOT2, - anon_sym_DOT2, - [79557] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [94619] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2552), 1, + ACTIONS(2746), 1, + anon_sym_LPAREN2, + ACTIONS(2748), 1, + sym__unquoted_pattern, + STATE(2799), 1, sym_comment, - ACTIONS(1514), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1516), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(1856), 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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79586] = 8, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94650] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(3677), 1, sym__space, - ACTIONS(5024), 1, + ACTIONS(5437), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(2669), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(2743), 1, sym_path, - STATE(2553), 1, + STATE(2800), 1, sym_comment, - STATE(2968), 1, + STATE(3299), 1, sym_cell_path, - ACTIONS(1884), 13, + ACTIONS(3679), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206181,22 +225235,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79623] = 8, + [94687] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1878), 1, + ACTIONS(3681), 1, sym__space, - ACTIONS(5024), 1, + ACTIONS(5437), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(2669), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(2743), 1, sym_path, - STATE(2554), 1, + STATE(2801), 1, sym_comment, - STATE(2987), 1, + STATE(3289), 1, sym_cell_path, - ACTIONS(1880), 13, + ACTIONS(3683), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206210,16 +225264,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79660] = 5, + [94724] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(1958), 1, sym__unquoted_pattern, - ACTIONS(5158), 1, + ACTIONS(5705), 1, aux_sym__immediate_decimal_token5, - STATE(2555), 1, + STATE(2802), 1, sym_comment, - ACTIONS(1736), 16, + ACTIONS(1956), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206236,21 +225290,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [79691] = 7, + [94755] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5707), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2706), 1, sym_path, - STATE(2556), 1, - sym_comment, - STATE(2575), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1458), 2, + ACTIONS(1642), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1460), 13, + STATE(2803), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1644), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -206264,22 +225317,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79726] = 8, - ACTIONS(103), 1, + [94788] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2557), 1, + ACTIONS(5710), 1, + anon_sym_DOT_DOT2, + STATE(2804), 1, sym_comment, - STATE(2931), 1, - sym_cell_path, - ACTIONS(1864), 13, + ACTIONS(5712), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2294), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206291,16 +225340,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, - [79763] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94819] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - STATE(2558), 1, + ACTIONS(5714), 1, + anon_sym_DOT_DOT2, + STATE(2805), 1, sym_comment, - ACTIONS(1726), 17, + ACTIONS(5716), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2318), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206312,24 +225366,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [79792] = 4, - ACTIONS(103), 1, + [94850] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2559), 1, + ACTIONS(5718), 1, + anon_sym_DOT_DOT2, + STATE(2806), 1, sym_comment, - ACTIONS(1870), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(5720), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 13, + ACTIONS(2278), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206341,26 +225392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [79821] = 8, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94881] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1890), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5279), 1, - anon_sym_DOT_DOT2, - STATE(2560), 1, + STATE(2807), 1, sym_comment, - ACTIONS(1974), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5281), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 11, + STATE(4977), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5687), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206372,42 +225416,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, - [79858] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94912] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2561), 1, - sym_comment, - ACTIONS(1543), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(5540), 1, anon_sym_DOT2, - ACTIONS(1545), 15, - anon_sym_EQ, - sym_identifier, + STATE(2694), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2808), 1, + sym_comment, + STATE(2846), 1, + sym_path, + STATE(3370), 1, + sym_cell_path, + ACTIONS(3657), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(3659), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79887] = 5, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [94948] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2562), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + STATE(2809), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, + STATE(4959), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5687), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206423,44 +225474,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79918] = 6, - ACTIONS(3), 1, + [94978] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2563), 1, + ACTIONS(5722), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5724), 1, + aux_sym__immediate_decimal_token5, + STATE(2810), 1, sym_comment, - ACTIONS(4694), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4696), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4698), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4692), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [79951] = 5, + ACTIONS(1920), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1922), 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, + sym__unquoted_pattern, + [95010] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, + ACTIONS(2106), 1, + anon_sym_DASH2, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern_in_record, + ACTIONS(5726), 1, anon_sym_DOT_DOT2, - STATE(2564), 1, + STATE(2811), 1, sym_comment, - ACTIONS(5229), 2, + ACTIONS(5728), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 15, + ACTIONS(2104), 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, + [95046] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(2812), 1, + sym_comment, + ACTIONS(1032), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206476,24 +225553,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79982] = 8, + [95076] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1626), 1, + anon_sym_COMMA, + ACTIONS(5621), 1, + anon_sym_EQ, + ACTIONS(5623), 1, + sym__newline, + ACTIONS(5625), 1, + anon_sym_COLON, + ACTIONS(5732), 1, + anon_sym_DASH2, + STATE(2813), 1, + sym_comment, + STATE(2967), 1, + aux_sym_parameter_repeat1, + STATE(3600), 1, + aux_sym_parameter_repeat2, + STATE(4310), 1, + aux_sym__repeat_newline, + STATE(3492), 2, + sym_param_type, + sym_param_value, + ACTIONS(5730), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95120] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5283), 1, - anon_sym_DOT_DOT2, - STATE(2565), 1, + ACTIONS(5734), 1, + anon_sym_DOT, + ACTIONS(5736), 1, + aux_sym__immediate_decimal_token5, + STATE(2814), 1, sym_comment, - ACTIONS(1964), 2, + ACTIONS(1882), 3, ts_builtin_sym_end, sym__space, - ACTIONS(5285), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 11, + anon_sym_LPAREN2, + ACTIONS(1884), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206505,16 +225610,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, - [80019] = 4, + sym__unquoted_pattern, + [95152] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2566), 1, - sym_comment, - ACTIONS(1522), 3, + ACTIONS(2294), 1, sym__space, + ACTIONS(5738), 1, + anon_sym_DOT_DOT2, + STATE(2815), 1, + sym_comment, + ACTIONS(5740), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1520), 15, + ACTIONS(2296), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206528,18 +225637,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [80048] = 5, + [95184] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(2108), 1, anon_sym_LPAREN2, - STATE(2567), 1, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(2816), 1, sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + ACTIONS(2750), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206551,44 +225659,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80079] = 4, - ACTIONS(3), 1, + [95214] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2568), 1, - sym_comment, - ACTIONS(1466), 3, - anon_sym_DASH2, + ACTIONS(2318), 1, + sym__space, + ACTIONS(5742), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1468), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + STATE(2817), 1, + sym_comment, + ACTIONS(5744), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [80108] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(2569), 1, - sym_comment, - ACTIONS(1802), 17, + ACTIONS(2320), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206602,22 +225688,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80137] = 4, + [95246] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_DASH2, - STATE(2570), 1, + STATE(2818), 1, sym_comment, - ACTIONS(5287), 17, + ACTIONS(2002), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(2000), 15, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, anon_sym_LBRACK, @@ -206626,19 +225708,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [80166] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [95274] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(2571), 1, + ACTIONS(2278), 1, + sym__space, + ACTIONS(5746), 1, + anon_sym_DOT_DOT2, + STATE(2819), 1, sym_comment, - ACTIONS(1870), 17, + ACTIONS(5748), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2280), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206652,20 +225738,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80195] = 5, + [95306] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(2746), 1, + anon_sym_LPAREN2, + ACTIONS(2748), 1, sym__unquoted_pattern, - ACTIONS(5291), 1, - aux_sym__immediate_decimal_token5, - STATE(2572), 1, + STATE(2820), 1, sym_comment, - ACTIONS(1802), 16, + ACTIONS(1856), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206681,23 +225763,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [95336] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2096), 1, + anon_sym_DASH2, + ACTIONS(2098), 1, anon_sym_LPAREN2, - [80226] = 8, + ACTIONS(5750), 1, + anon_sym_DOT_DOT2, + STATE(2821), 1, + sym_comment, + ACTIONS(5752), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2094), 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, + [95372] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1850), 1, - sym__space, - ACTIONS(5024), 1, + ACTIONS(5540), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(2694), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2573), 1, + STATE(2822), 1, sym_comment, - STATE(3050), 1, + STATE(2846), 1, + sym_path, + STATE(3404), 1, sym_cell_path, - ACTIONS(1853), 13, + ACTIONS(2024), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2026), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206709,20 +225819,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, - [80263] = 5, - ACTIONS(3), 1, + [95408] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5227), 1, + ACTIONS(2232), 1, + sym__space, + ACTIONS(5754), 1, anon_sym_DOT_DOT2, - STATE(2574), 1, + STATE(2823), 1, sym_comment, - ACTIONS(5229), 2, + ACTIONS(5756), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, - ts_builtin_sym_end, + ACTIONS(2234), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206734,47 +225843,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80294] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5293), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - ACTIONS(1524), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - STATE(2575), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [80327] = 5, + anon_sym_RBRACE, + [95440] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5296), 1, - anon_sym_DOT_DOT2, - STATE(2576), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(2824), 1, sym_comment, - ACTIONS(5298), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 15, + ACTIONS(2104), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206790,45 +225870,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80358] = 5, - ACTIONS(3), 1, + [95470] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token5, - STATE(2577), 1, + STATE(2825), 1, sym_comment, - ACTIONS(1738), 4, - sym_identifier, - anon_sym_DASH2, + ACTIONS(1821), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1823), 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, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 13, + [95498] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1626), 1, + anon_sym_COMMA, + ACTIONS(5621), 1, anon_sym_EQ, + ACTIONS(5623), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(5625), 1, anon_sym_COLON, + ACTIONS(5760), 1, + anon_sym_DASH2, + STATE(2826), 1, + sym_comment, + STATE(2967), 1, + aux_sym_parameter_repeat1, + STATE(3611), 1, + aux_sym_parameter_repeat2, + STATE(4310), 1, + aux_sym__repeat_newline, + STATE(3492), 2, + sym_param_type, + sym_param_value, + ACTIONS(5758), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [80389] = 5, + [95542] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5300), 1, - anon_sym_DOT_DOT2, - STATE(2578), 1, + ACTIONS(1626), 1, + anon_sym_COMMA, + ACTIONS(5621), 1, + anon_sym_EQ, + ACTIONS(5623), 1, + sym__newline, + ACTIONS(5625), 1, + anon_sym_COLON, + ACTIONS(5764), 1, + anon_sym_DASH2, + STATE(2813), 1, + aux_sym_parameter_repeat1, + STATE(2827), 1, sym_comment, - ACTIONS(5302), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 15, - ts_builtin_sym_end, + STATE(3571), 1, + aux_sym_parameter_repeat2, + STATE(4310), 1, + aux_sym__repeat_newline, + STATE(3492), 2, + sym_param_type, + sym_param_value, + ACTIONS(5762), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95586] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5766), 1, sym__newline, + ACTIONS(5768), 1, + sym__space, + ACTIONS(5772), 1, + anon_sym_COLON2, + ACTIONS(5774), 1, + anon_sym_EQ2, + STATE(2828), 1, + sym_comment, + STATE(3111), 1, + aux_sym_command_repeat1, + STATE(4501), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5770), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -206839,20 +225986,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80420] = 5, + anon_sym_RBRACE, + [95624] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5304), 1, - anon_sym_DOT_DOT2, - STATE(2579), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + STATE(2829), 1, sym_comment, - ACTIONS(5306), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 15, + ACTIONS(2094), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206868,18 +226012,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80451] = 5, - ACTIONS(3), 1, + [95654] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5308), 1, - anon_sym_DOT_DOT2, - STATE(2580), 1, + ACTIONS(3722), 1, + sym__space, + ACTIONS(5776), 1, + anon_sym_EQ2, + ACTIONS(5778), 1, + sym_short_flag_identifier, + STATE(2830), 1, sym_comment, - ACTIONS(5310), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 15, - ts_builtin_sym_end, + STATE(3254), 1, + sym__flag_equals_value, + ACTIONS(3720), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206891,19 +226037,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80482] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95688] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2581), 1, + ACTIONS(3710), 1, + sym__space, + ACTIONS(5780), 1, + anon_sym_DOT_DOT2, + STATE(2831), 1, sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + ACTIONS(5782), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3712), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206917,23 +226065,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80513] = 6, + [95720] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5312), 1, - anon_sym_DOT, - ACTIONS(5314), 1, - aux_sym__immediate_decimal_token5, - STATE(2582), 1, + ACTIONS(5540), 1, + anon_sym_DOT2, + STATE(2694), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2832), 1, sym_comment, - ACTIONS(1736), 3, + STATE(2846), 1, + sym_path, + STATE(3362), 1, + sym_cell_path, + ACTIONS(3677), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 12, + ACTIONS(3679), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206945,16 +226093,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [80545] = 4, - ACTIONS(3), 1, + [95756] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(2583), 1, + ACTIONS(5540), 1, + anon_sym_DOT2, + STATE(2694), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2833), 1, sym_comment, - ACTIONS(1802), 16, + STATE(2846), 1, + sym_path, + STATE(3364), 1, + sym_cell_path, + ACTIONS(3681), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(3683), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206966,59 +226121,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80573] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5318), 1, - anon_sym_DASH2, - STATE(2584), 1, - sym_comment, - STATE(2787), 1, - aux_sym_parameter_repeat1, - STATE(3394), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5316), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [80617] = 8, + [95792] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5540), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2694), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2585), 1, + STATE(2834), 1, sym_comment, - STATE(2611), 1, + STATE(2846), 1, sym_path, - STATE(3086), 1, + STATE(3365), 1, sym_cell_path, - ACTIONS(5247), 2, + ACTIONS(3685), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5245), 11, + ACTIONS(3687), 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, + [95828] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2052), 1, + sym__unquoted_pattern, + STATE(2835), 1, + sym_comment, + ACTIONS(2050), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207030,17 +226169,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, - [80653] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [95856] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5784), 1, aux_sym__immediate_decimal_token5, - STATE(2586), 1, + STATE(2836), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1956), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1804), 14, + ACTIONS(1958), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207055,16 +226198,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, sym__unquoted_pattern, - [80683] = 5, + [95886] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2665), 1, sym__unquoted_pattern, - STATE(2587), 1, + STATE(2837), 1, sym_comment, - ACTIONS(1706), 15, + ACTIONS(2663), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207080,72 +226221,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80713] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2588), 1, - sym_comment, - ACTIONS(1804), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [80741] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2589), 1, - sym_comment, - ACTIONS(1872), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 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, - [80769] = 9, + [95914] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5322), 1, - sym__newline, - ACTIONS(5324), 1, - sym__space, - ACTIONS(5328), 1, - anon_sym_COLON2, - ACTIONS(5330), 1, - anon_sym_EQ2, - STATE(2590), 1, + ACTIONS(5540), 1, + anon_sym_DOT2, + STATE(2694), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2838), 1, sym_comment, - STATE(2840), 1, - aux_sym_attribute_repeat1, - STATE(4319), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5326), 11, + STATE(2846), 1, + sym_path, + STATE(3342), 1, + sym_cell_path, + ACTIONS(2046), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2048), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -207156,16 +226250,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, - [80807] = 4, - ACTIONS(3), 1, + [95950] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(2591), 1, + STATE(2839), 1, sym_comment, - ACTIONS(1870), 16, - ts_builtin_sym_end, + ACTIONS(1990), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1992), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207177,35 +226271,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80835] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [95978] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(1626), 1, anon_sym_COMMA, - ACTIONS(5138), 1, + ACTIONS(5621), 1, anon_sym_EQ, - ACTIONS(5140), 1, + ACTIONS(5623), 1, sym__newline, - ACTIONS(5142), 1, + ACTIONS(5625), 1, anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5788), 1, anon_sym_DASH2, - STATE(2592), 1, - sym_comment, - STATE(2787), 1, + STATE(2826), 1, aux_sym_parameter_repeat1, - STATE(3384), 1, + STATE(2840), 1, + sym_comment, + STATE(3607), 1, aux_sym_parameter_repeat2, - STATE(4189), 1, + STATE(4310), 1, aux_sym__repeat_newline, - STATE(3256), 2, + STATE(3492), 2, sym_param_type, sym_param_value, - ACTIONS(5332), 7, + ACTIONS(5786), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -207213,17 +226306,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [80879] = 5, + [96022] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2593), 1, + ACTIONS(1626), 1, + anon_sym_COMMA, + ACTIONS(5621), 1, + anon_sym_EQ, + ACTIONS(5623), 1, + sym__newline, + ACTIONS(5625), 1, + anon_sym_COLON, + ACTIONS(5792), 1, + anon_sym_DASH2, + STATE(2841), 1, sym_comment, - STATE(4777), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, - ts_builtin_sym_end, + STATE(2967), 1, + aux_sym_parameter_repeat1, + STATE(3610), 1, + aux_sym_parameter_repeat2, + STATE(4310), 1, + aux_sym__repeat_newline, + STATE(3492), 2, + sym_param_type, + sym_param_value, + ACTIONS(5790), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96066] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2842), 1, + sym_comment, + ACTIONS(2004), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2006), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207235,26 +226359,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_and2, - anon_sym_xor2, - anon_sym_or2, - [80909] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [96094] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2594), 1, + STATE(2843), 1, sym_comment, - STATE(2611), 1, - sym_path, - STATE(3197), 1, - sym_cell_path, - ACTIONS(1878), 2, + ACTIONS(2000), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2002), 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, + [96122] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2844), 1, + sym_comment, + ACTIONS(1696), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1880), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1694), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207266,14 +226408,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, - [80945] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [96150] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - STATE(2595), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + STATE(2845), 1, sym_comment, - ACTIONS(1726), 16, + STATE(4959), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5687), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207289,17 +226435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80973] = 4, + [96180] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2596), 1, + STATE(2846), 1, sym_comment, - ACTIONS(1874), 3, + ACTIONS(1659), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1876), 14, + ACTIONS(1657), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207311,23 +226457,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - [81001] = 7, + anon_sym_DOT2, + [96208] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5338), 1, - sym__space, - ACTIONS(5340), 1, - anon_sym_EQ2, - ACTIONS(5342), 1, - sym_short_flag_identifier, - STATE(2597), 1, + STATE(2847), 1, sym_comment, - STATE(3073), 1, - sym__flag_equals_value, - ACTIONS(5336), 13, + ACTIONS(1692), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1690), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207339,21 +226481,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, - [81035] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [96236] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5346), 1, + ACTIONS(1856), 1, sym__space, - ACTIONS(5348), 1, + ACTIONS(5780), 1, anon_sym_DOT_DOT2, - STATE(2598), 1, + STATE(2848), 1, sym_comment, - ACTIONS(5350), 2, + ACTIONS(5782), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5344), 13, + ACTIONS(1750), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207367,23 +226509,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81067] = 8, - ACTIONS(103), 1, + [96268] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2599), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + STATE(2849), 1, sym_comment, - STATE(2611), 1, - sym_path, - STATE(3212), 1, - sym_cell_path, - ACTIONS(1866), 2, + STATE(4959), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5687), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1868), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207395,16 +226531,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, - [81103] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [96298] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(2804), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + STATE(2850), 1, + sym_comment, + ACTIONS(2715), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [96328] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2758), 1, + anon_sym_LPAREN2, + ACTIONS(2760), 1, sym__unquoted_pattern, - STATE(2600), 1, + STATE(2851), 1, sym_comment, - ACTIONS(2575), 15, + ACTIONS(2742), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207420,16 +226584,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81133] = 4, - ACTIONS(103), 1, + [96358] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2601), 1, + ACTIONS(2766), 1, + anon_sym_LPAREN2, + ACTIONS(2768), 1, + sym__unquoted_pattern, + STATE(2852), 1, sym_comment, - ACTIONS(1641), 3, + ACTIONS(2762), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [96388] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3756), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 14, + ACTIONS(5776), 1, + anon_sym_EQ2, + ACTIONS(5794), 1, + sym_long_flag_identifier, + STATE(2853), 1, + sym_comment, + STATE(3186), 1, + sym__flag_equals_value, + ACTIONS(3754), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207443,24 +226636,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [81161] = 8, + [96422] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5540), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2694), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2602), 1, - sym_comment, - STATE(2611), 1, + STATE(2846), 1, sym_path, - STATE(3143), 1, + STATE(2854), 1, + sym_comment, + STATE(3409), 1, sym_cell_path, - ACTIONS(1882), 2, + ACTIONS(2016), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1884), 11, + ACTIONS(2018), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207472,17 +226664,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, - [81197] = 5, + [96458] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1900), 1, sym__unquoted_pattern, - STATE(2603), 1, + STATE(2855), 1, sym_comment, - ACTIONS(1974), 15, - ts_builtin_sym_end, + ACTIONS(904), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207494,48 +226683,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81227] = 6, - ACTIONS(103), 1, + [96486] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(5348), 1, - anon_sym_DOT_DOT2, - STATE(2604), 1, + STATE(2856), 1, sym_comment, - ACTIONS(5350), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 13, + ACTIONS(2006), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(2004), 15, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [81259] = 6, - ACTIONS(103), 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, + [96514] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__space, - ACTIONS(5352), 1, - anon_sym_DOT_DOT2, - STATE(2605), 1, + STATE(2857), 1, sym_comment, - ACTIONS(5354), 2, + ACTIONS(1922), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1920), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 13, + [96542] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(2858), 1, + sym_comment, + ACTIONS(1014), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207547,21 +226758,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, - [81291] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [96572] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__space, - ACTIONS(5356), 1, - anon_sym_DOT_DOT2, - STATE(2606), 1, + ACTIONS(5540), 1, + anon_sym_DOT2, + STATE(2694), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2846), 1, + sym_path, + STATE(2859), 1, sym_comment, - ACTIONS(5358), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 13, + STATE(3336), 1, + sym_cell_path, + ACTIONS(2008), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2010), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207573,21 +226789,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, - [81323] = 6, - ACTIONS(103), 1, + [96608] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2076), 1, - sym__space, - ACTIONS(5360), 1, - anon_sym_DOT_DOT2, - STATE(2607), 1, + ACTIONS(1922), 1, + sym__unquoted_pattern, + STATE(2860), 1, sym_comment, - ACTIONS(5362), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 13, + ACTIONS(1920), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207599,21 +226809,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, - [81355] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [96636] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__space, - ACTIONS(5364), 1, - anon_sym_DOT_DOT2, - STATE(2608), 1, + ACTIONS(5540), 1, + anon_sym_DOT2, + STATE(2694), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2846), 1, + sym_path, + STATE(2861), 1, sym_comment, - ACTIONS(5366), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 13, + STATE(3332), 1, + sym_cell_path, + ACTIONS(2020), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2022), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207625,19 +226841,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, - [81387] = 4, - ACTIONS(103), 1, + [96672] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2609), 1, + ACTIONS(1958), 1, + sym__unquoted_pattern, + STATE(2862), 1, sym_comment, - ACTIONS(1522), 4, + ACTIONS(1956), 16, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1520), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207649,18 +226861,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81415] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [96700] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2610), 1, + STATE(2863), 1, sym_comment, - ACTIONS(1728), 3, + ACTIONS(1958), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1726), 14, + ACTIONS(1956), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -207675,17 +226889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [81443] = 4, + [96728] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2611), 1, + ACTIONS(5703), 1, + aux_sym__immediate_decimal_token5, + STATE(2864), 1, sym_comment, - ACTIONS(1464), 4, - ts_builtin_sym_end, + ACTIONS(1882), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 13, + anon_sym_LPAREN2, + ACTIONS(1884), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207697,25 +226911,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81471] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [96758] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1966), 1, + STATE(2865), 1, + sym_comment, + ACTIONS(2052), 3, anon_sym_DASH2, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5368), 1, anon_sym_DOT_DOT2, - STATE(2612), 1, - sym_comment, - ACTIONS(5370), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 11, + sym__unquoted_pattern_in_record, + ACTIONS(2050), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -207727,42 +226935,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [81507] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, anon_sym_LPAREN2, - STATE(2613), 1, - sym_comment, - STATE(4777), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [81537] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [96786] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2614), 1, + ACTIONS(5540), 1, + anon_sym_DOT2, + STATE(2694), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2846), 1, + sym_path, + STATE(2866), 1, sym_comment, - ACTIONS(2523), 15, + STATE(3428), 1, + sym_cell_path, + ACTIONS(2032), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2035), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207774,19 +226966,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [81567] = 4, + [96822] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2615), 1, + STATE(2867), 1, sym_comment, - ACTIONS(1822), 3, + ACTIONS(1716), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1824), 14, + ACTIONS(1714), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207801,47 +226990,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [81595] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2616), 1, - sym_comment, - ACTIONS(1876), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1874), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81623] = 8, + [96850] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5540), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2694), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2846), 1, sym_path, - STATE(2617), 1, + STATE(2868), 1, sym_comment, - STATE(3084), 1, + STATE(3371), 1, sym_cell_path, - ACTIONS(1862), 2, + ACTIONS(3667), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1864), 11, + ACTIONS(3669), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207853,17 +227018,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, - [81659] = 5, + [96886] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2618), 1, + STATE(2869), 1, sym_comment, - ACTIONS(2567), 15, - ts_builtin_sym_end, + ACTIONS(5687), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207875,20 +227035,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81689] = 5, + [96911] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2619), 1, + ACTIONS(5798), 1, + anon_sym_and2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2870), 1, sym_comment, - ACTIONS(2635), 15, - ts_builtin_sym_end, + ACTIONS(5796), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207900,17 +227061,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [81719] = 4, + [96940] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(2620), 1, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2871), 1, sym_comment, - ACTIONS(968), 16, + ACTIONS(5800), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207923,52 +227084,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81747] = 12, + [96967] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, + ACTIONS(5802), 1, sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5374), 1, - anon_sym_DASH2, - STATE(2584), 1, - aux_sym_parameter_repeat1, - STATE(2621), 1, + ACTIONS(5807), 1, + anon_sym_and2, + STATE(2872), 1, sym_comment, - STATE(3391), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, + STATE(2922), 1, aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5372), 7, - sym_identifier, + ACTIONS(5805), 13, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [81791] = 4, + anon_sym_xor2, + anon_sym_or2, + [96998] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2622), 1, + ACTIONS(5809), 1, + aux_sym__immediate_decimal_token5, + STATE(2873), 1, sym_comment, - ACTIONS(1886), 3, + ACTIONS(1956), 3, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1888), 14, + anon_sym_LPAREN2, + ACTIONS(1958), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207980,82 +227135,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, - [81819] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5378), 1, - anon_sym_DASH2, - STATE(2623), 1, - sym_comment, - STATE(2787), 1, - aux_sym_parameter_repeat1, - STATE(3367), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5376), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [81863] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2624), 1, - sym_comment, - ACTIONS(1888), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1886), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81891] = 8, + sym__unquoted_pattern, + [97027] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2625), 1, + ACTIONS(5811), 1, + anon_sym_DOT_DOT2, + STATE(2874), 1, sym_comment, - STATE(3094), 1, - sym_cell_path, - ACTIONS(1858), 2, + ACTIONS(2232), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1860), 11, + ACTIONS(5813), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2234), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208067,18 +227161,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, - [81927] = 5, + [97058] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2626), 1, - sym_comment, - ACTIONS(1964), 15, - ts_builtin_sym_end, + ACTIONS(5815), 1, sym__newline, + ACTIONS(5820), 1, + anon_sym_and2, + STATE(2875), 1, + sym_comment, + STATE(2923), 1, + aux_sym__repeat_newline, + ACTIONS(5818), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208089,19 +227183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [81957] = 4, - ACTIONS(103), 1, + [97089] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2627), 1, + ACTIONS(5824), 1, + anon_sym_and2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2876), 1, sym_comment, - ACTIONS(1558), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1556), 14, + ACTIONS(5822), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208114,25 +227208,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_DOT_DOT2, - [81985] = 8, + anon_sym_xor2, + anon_sym_or2, + [97118] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2628), 1, + STATE(2877), 1, sym_comment, - STATE(3122), 1, - sym_cell_path, - ACTIONS(5233), 2, - ts_builtin_sym_end, + ACTIONS(1920), 2, sym__space, - ACTIONS(5231), 11, + anon_sym_LPAREN2, + ACTIONS(1922), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208144,20 +227230,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, - [82021] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [97145] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5380), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5382), 1, - aux_sym__immediate_decimal_token5, - STATE(2629), 1, + STATE(2878), 1, sym_comment, - ACTIONS(1726), 3, - ts_builtin_sym_end, + ACTIONS(1956), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1728), 12, + ACTIONS(1958), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208169,24 +227253,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, sym__unquoted_pattern, - [82053] = 8, + [97172] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2630), 1, + STATE(2879), 1, sym_comment, - STATE(3097), 1, - sym_cell_path, - ACTIONS(5251), 2, - ts_builtin_sym_end, + ACTIONS(2050), 2, sym__space, - ACTIONS(5249), 11, + anon_sym_LPAREN2, + ACTIONS(2052), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208198,49 +227276,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, - [82089] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [97199] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5386), 1, - anon_sym_DASH2, - STATE(2592), 1, - aux_sym_parameter_repeat1, - STATE(2631), 1, + ACTIONS(5820), 1, + anon_sym_and2, + ACTIONS(5828), 1, + anon_sym_xor2, + STATE(2880), 1, sym_comment, - STATE(3363), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, + STATE(2926), 1, aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5384), 7, - sym_identifier, + ACTIONS(5826), 12, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [82133] = 5, + anon_sym_or2, + [97232] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2632), 1, + ACTIONS(5832), 1, + anon_sym_and2, + ACTIONS(5834), 1, + anon_sym_xor2, + ACTIONS(5836), 1, + anon_sym_or2, + STATE(2881), 1, sym_comment, - STATE(4777), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, - ts_builtin_sym_end, + ACTIONS(5830), 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, + [97263] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2882), 1, + sym_comment, + STATE(2964), 1, + aux_sym__repeat_newline, + ACTIONS(5838), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208252,27 +227349,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82163] = 8, - ACTIONS(103), 1, + [97290] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2633), 1, - sym_comment, - STATE(3213), 1, - sym_cell_path, - ACTIONS(1850), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1853), 11, + ACTIONS(3018), 1, sym__newline, + ACTIONS(5820), 1, + anon_sym_and2, + ACTIONS(5828), 1, + anon_sym_xor2, + STATE(2883), 1, + sym_comment, + STATE(3030), 1, + aux_sym__repeat_newline, + ACTIONS(5840), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208283,20 +227377,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, - [82199] = 7, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_or2, + [97323] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4303), 1, - sym__space, - ACTIONS(5340), 1, - anon_sym_EQ2, - ACTIONS(5388), 1, - sym_long_flag_identifier, - STATE(2634), 1, + ACTIONS(5844), 1, + anon_sym_and2, + ACTIONS(5846), 1, + anon_sym_xor2, + ACTIONS(5848), 1, + anon_sym_or2, + STATE(2884), 1, sym_comment, - STATE(2933), 1, - sym__flag_equals_value, - ACTIONS(4301), 13, + ACTIONS(5842), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208310,23 +227404,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82233] = 8, - ACTIONS(103), 1, + [97354] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2635), 1, + STATE(2885), 1, sym_comment, - STATE(3123), 1, - sym_cell_path, - ACTIONS(5273), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5271), 11, + ACTIONS(5104), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208338,23 +227421,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, - [82269] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [97379] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2636), 1, + STATE(2886), 1, sym_comment, - STATE(3124), 1, - sym_cell_path, - ACTIONS(5267), 2, + ACTIONS(2000), 4, ts_builtin_sym_end, sym__space, - ACTIONS(5265), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2002), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208366,45 +227448,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, - [82305] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1976), 1, - anon_sym_DASH2, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5390), 1, anon_sym_DOT_DOT2, - STATE(2637), 1, - sym_comment, - ACTIONS(5392), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 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, - [82341] = 5, - ACTIONS(103), 1, + [97406] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5277), 1, - aux_sym__immediate_decimal_token5, - STATE(2638), 1, + ACTIONS(5824), 1, + anon_sym_and2, + ACTIONS(5852), 1, + anon_sym_xor2, + ACTIONS(5854), 1, + anon_sym_or2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2887), 1, sym_comment, - ACTIONS(1736), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 14, + ACTIONS(5850), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208417,19 +227475,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [82371] = 5, - ACTIONS(3), 1, + [97439] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(1014), 1, + sym__space, + ACTIONS(2770), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2772), 1, sym__unquoted_pattern, - STATE(2639), 1, + STATE(2888), 1, sym_comment, - ACTIONS(994), 15, - ts_builtin_sym_end, + ACTIONS(1016), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208441,20 +227498,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, + [97470] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5798), 1, anon_sym_and2, + ACTIONS(5858), 1, anon_sym_xor2, + ACTIONS(5860), 1, anon_sym_or2, - [82401] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2640), 1, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2889), 1, sym_comment, - ACTIONS(1537), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 13, + ACTIONS(5856), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208466,19 +227525,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [82429] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + [97503] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(1032), 1, + sym__space, + ACTIONS(2770), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2772), 1, sym__unquoted_pattern, - STATE(2641), 1, + STATE(2890), 1, sym_comment, - ACTIONS(1018), 15, - ts_builtin_sym_end, + ACTIONS(1024), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208490,18 +227549,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82459] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97534] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(2642), 1, + STATE(2891), 1, sym_comment, - ACTIONS(2501), 16, - ts_builtin_sym_end, + STATE(2987), 1, + aux_sym__repeat_newline, + ACTIONS(5862), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208513,18 +227570,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [82487] = 4, + [97561] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2643), 1, + STATE(2892), 1, sym_comment, - ACTIONS(5394), 15, + STATE(2988), 1, + aux_sym__repeat_newline, + ACTIONS(5864), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208540,17 +227597,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82514] = 4, - ACTIONS(103), 1, + [97588] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2644), 1, + ACTIONS(5798), 1, + anon_sym_and2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2893), 1, sym_comment, - ACTIONS(1886), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1888), 12, + ACTIONS(5800), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208562,21 +227618,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, - [82541] = 6, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [97617] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5396), 1, - anon_sym_DOT_DOT2, - STATE(2645), 1, + STATE(2894), 1, sym_comment, - ACTIONS(1706), 2, + ACTIONS(1990), 4, ts_builtin_sym_end, sym__space, - ACTIONS(5398), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 11, + ACTIONS(1992), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208588,20 +227643,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, - [82572] = 7, + anon_sym_DOT_DOT2, + [97644] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5807), 1, anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2646), 1, + ACTIONS(5866), 1, + sym__newline, + STATE(2895), 1, sym_comment, - STATE(2678), 1, + STATE(2991), 1, aux_sym__repeat_newline, - ACTIONS(5400), 12, + ACTIONS(5862), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208613,20 +227667,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [82605] = 6, + [97675] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5820), 1, anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2647), 1, - sym_comment, - ACTIONS(5406), 13, + ACTIONS(5869), 1, sym__newline, + STATE(2896), 1, + sym_comment, + STATE(2992), 1, + aux_sym__repeat_newline, + ACTIONS(5864), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208638,20 +227692,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [82636] = 6, + [97706] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(5807), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5872), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2648), 1, + STATE(2897), 1, sym_comment, - ACTIONS(5412), 13, - sym__newline, + STATE(2995), 1, + aux_sym__repeat_newline, + ACTIONS(5862), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208664,15 +227720,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [82667] = 4, + [97739] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2643), 1, - aux_sym__repeat_newline, - STATE(2649), 1, - sym_comment, - ACTIONS(5418), 15, + ACTIONS(3018), 1, sym__newline, + ACTIONS(5820), 1, + anon_sym_and2, + ACTIONS(5828), 1, + anon_sym_xor2, + STATE(2898), 1, + sym_comment, + STATE(3016), 1, + aux_sym__repeat_newline, + ACTIONS(5864), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208684,17 +227745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [82694] = 4, + [97772] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2650), 1, + STATE(2899), 1, sym_comment, - STATE(2684), 1, + STATE(3036), 1, aux_sym__repeat_newline, - ACTIONS(5420), 15, + ACTIONS(5874), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208710,39 +227769,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82721] = 6, + [97799] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5422), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5424), 1, - aux_sym__immediate_decimal_token5, - STATE(2651), 1, + STATE(2900), 1, sym_comment, - ACTIONS(1728), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 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, - [82752] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, + STATE(3037), 1, aux_sym__repeat_newline, - STATE(2652), 1, - sym_comment, - ACTIONS(5426), 15, + ACTIONS(5876), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208758,15 +227792,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82779] = 4, + [97826] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2653), 1, - sym_comment, - ACTIONS(5428), 15, + ACTIONS(3018), 1, sym__newline, + ACTIONS(5807), 1, + anon_sym_and2, + ACTIONS(5872), 1, + anon_sym_xor2, + STATE(2901), 1, + sym_comment, + STATE(2925), 1, + aux_sym__repeat_newline, + ACTIONS(5805), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208778,21 +227817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [82806] = 6, + [97859] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5807), 1, anon_sym_and2, - ACTIONS(5430), 1, + ACTIONS(5878), 1, sym__newline, - STATE(2654), 1, + STATE(2902), 1, sym_comment, - STATE(2685), 1, + STATE(3040), 1, aux_sym__repeat_newline, - ACTIONS(5418), 13, + ACTIONS(5874), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208806,18 +227843,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [82837] = 6, + [97890] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5433), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5820), 1, anon_sym_and2, - STATE(2655), 1, - sym_comment, - STATE(2686), 1, + ACTIONS(5881), 1, + sym__newline, + STATE(2870), 1, aux_sym__repeat_newline, - ACTIONS(5420), 13, + STATE(2903), 1, + sym_comment, + ACTIONS(5876), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208831,17 +227868,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [82868] = 5, + [97921] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(5807), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2656), 1, + ACTIONS(5872), 1, + anon_sym_xor2, + STATE(2904), 1, sym_comment, - ACTIONS(5426), 14, - sym__newline, + STATE(2937), 1, + aux_sym__repeat_newline, + ACTIONS(5874), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208853,18 +227893,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [82897] = 5, + [97954] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2657), 1, + ACTIONS(1984), 1, + sym__unquoted_pattern, + STATE(2905), 1, sym_comment, - ACTIONS(5428), 14, + ACTIONS(904), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208876,23 +227914,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82926] = 7, + [97981] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(5402), 1, + ACTIONS(5820), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5828), 1, anon_sym_xor2, - STATE(2658), 1, + STATE(2906), 1, sym_comment, - STATE(2687), 1, + STATE(2916), 1, aux_sym__repeat_newline, - ACTIONS(5418), 12, + ACTIONS(5876), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208905,20 +227943,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [82959] = 7, + [98014] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(5436), 1, + ACTIONS(5820), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5828), 1, anon_sym_xor2, - STATE(2659), 1, + STATE(2907), 1, sym_comment, - STATE(2688), 1, + STATE(2927), 1, aux_sym__repeat_newline, - ACTIONS(5420), 12, + ACTIONS(5818), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208931,18 +227969,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [82992] = 6, + [98047] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(2871), 1, aux_sym__repeat_newline, - STATE(2660), 1, + STATE(2908), 1, sym_comment, - ACTIONS(5426), 13, + ACTIONS(5826), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208955,19 +227989,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [83023] = 6, + [98074] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5824), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5852), 1, anon_sym_xor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2661), 1, + STATE(2909), 1, sym_comment, - ACTIONS(5428), 13, + ACTIONS(5822), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208981,14 +228017,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83054] = 4, + [98105] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2662), 1, + STATE(2910), 1, sym_comment, - ACTIONS(5440), 15, + ACTIONS(5884), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209004,14 +228040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83081] = 4, + [98132] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2663), 1, + STATE(2911), 1, sym_comment, - ACTIONS(5442), 15, + ACTIONS(5886), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209027,16 +228063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83108] = 5, + [98159] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5824), 1, anon_sym_and2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2664), 1, + STATE(2912), 1, sym_comment, - ACTIONS(5440), 14, + ACTIONS(5884), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209051,16 +228087,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [83137] = 5, + [98188] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5798), 1, anon_sym_and2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2665), 1, + STATE(2913), 1, sym_comment, - ACTIONS(5442), 14, + ACTIONS(5886), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209075,18 +228111,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [83166] = 6, + [98217] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5824), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5852), 1, anon_sym_xor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2666), 1, + STATE(2914), 1, sym_comment, - ACTIONS(5440), 13, + ACTIONS(5884), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209100,18 +228136,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83197] = 6, + [98248] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5888), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5890), 1, + aux_sym__immediate_decimal_token5, + STATE(2915), 1, + sym_comment, + ACTIONS(1922), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1920), 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, + [98279] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5798), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5858), 1, anon_sym_xor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2667), 1, + STATE(2916), 1, sym_comment, - ACTIONS(5442), 13, + ACTIONS(5796), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209125,14 +228186,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83228] = 4, + [98310] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2668), 1, - sym_comment, - STATE(2689), 1, + ACTIONS(5798), 1, + anon_sym_and2, + ACTIONS(5858), 1, + anon_sym_xor2, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(5444), 15, + STATE(2917), 1, + sym_comment, + ACTIONS(5886), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209145,17 +228210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [83255] = 4, + [98341] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2669), 1, - sym_comment, - STATE(2690), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(5446), 15, + STATE(2918), 1, + sym_comment, + ACTIONS(5892), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209171,14 +228234,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83282] = 4, - ACTIONS(3), 1, + [98368] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2670), 1, + ACTIONS(5894), 1, + anon_sym_EQ2, + ACTIONS(5896), 1, + sym_short_flag_identifier, + STATE(2919), 1, sym_comment, - ACTIONS(5448), 15, + STATE(3306), 1, + sym__flag_equals_value, + ACTIONS(3722), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(3720), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209190,18 +228260,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [83309] = 4, - ACTIONS(3), 1, + [98401] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2671), 1, + ACTIONS(5898), 1, + anon_sym_DOT_DOT2, + STATE(2920), 1, sym_comment, - ACTIONS(5450), 15, + ACTIONS(3710), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5900), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(3712), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209213,22 +228285,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [83336] = 6, + [98432] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5452), 1, - sym__newline, - STATE(2672), 1, - sym_comment, - STATE(2691), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(5444), 13, + STATE(2921), 1, + sym_comment, + ACTIONS(5902), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209240,20 +228305,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83367] = 6, + [98459] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, + ACTIONS(5824), 1, anon_sym_and2, - ACTIONS(5455), 1, - sym__newline, - STATE(2673), 1, - sym_comment, - STATE(2692), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(5446), 13, + STATE(2922), 1, + sym_comment, + ACTIONS(5892), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209267,16 +228332,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [83398] = 5, + [98488] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5798), 1, anon_sym_and2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2674), 1, + STATE(2923), 1, sym_comment, - ACTIONS(5448), 14, + ACTIONS(5902), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209291,16 +228356,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [83427] = 5, - ACTIONS(3), 1, + [98517] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2675), 1, + ACTIONS(1882), 1, + sym__space, + ACTIONS(5465), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5904), 1, + anon_sym_DOT, + STATE(2924), 1, sym_comment, - ACTIONS(5450), 14, + ACTIONS(1884), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209313,22 +228380,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [83456] = 7, + anon_sym_RBRACE, + [98548] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5824), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5852), 1, anon_sym_xor2, - STATE(2676), 1, - sym_comment, - STATE(2693), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(5444), 12, + STATE(2925), 1, + sym_comment, + ACTIONS(5892), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209341,20 +228406,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83489] = 7, + [98579] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5798), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5858), 1, anon_sym_xor2, - STATE(2677), 1, - sym_comment, - STATE(2694), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(5446), 12, + STATE(2926), 1, + sym_comment, + ACTIONS(5800), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209367,18 +228431,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83522] = 6, + [98610] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5798), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5858), 1, anon_sym_xor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2678), 1, + STATE(2927), 1, sym_comment, - ACTIONS(5448), 13, + ACTIONS(5902), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209392,18 +228456,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83553] = 6, + [98641] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2679), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + ACTIONS(5908), 1, + aux_sym__immediate_decimal_token5, + STATE(2928), 1, sym_comment, - ACTIONS(5450), 13, + ACTIONS(1884), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1882), 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, + [98672] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5736), 1, + aux_sym__immediate_decimal_token5, + STATE(2929), 1, + sym_comment, + ACTIONS(1882), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1884), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209415,22 +228504,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_or2, - [83584] = 7, - ACTIONS(3), 1, + sym__unquoted_pattern, + [98701] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2679), 1, - aux_sym__repeat_newline, - STATE(2680), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(2224), 1, + sym__space, + STATE(2930), 1, sym_comment, - ACTIONS(5458), 12, + STATE(5247), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2226), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209442,19 +228529,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [83617] = 6, + anon_sym_RBRACE, + [98732] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, sym__space, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5460), 1, - anon_sym_DOT, - STATE(2681), 1, + STATE(2931), 1, sym_comment, - ACTIONS(1738), 13, + STATE(5247), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2288), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209468,20 +228555,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [83648] = 6, + [98763] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5462), 1, + ACTIONS(5898), 1, anon_sym_DOT_DOT2, - STATE(2682), 1, + STATE(2932), 1, sym_comment, - ACTIONS(2152), 2, + ACTIONS(1856), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5464), 2, + ACTIONS(5900), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 11, + ACTIONS(1750), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209493,39 +228580,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, - [83679] = 6, + [98794] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5466), 1, - anon_sym_DOT, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token5, - STATE(2683), 1, - sym_comment, - ACTIONS(1738), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 11, - anon_sym_EQ, + ACTIONS(5807), 1, + anon_sym_and2, + ACTIONS(5910), 1, sym__newline, + STATE(2876), 1, + aux_sym__repeat_newline, + STATE(2933), 1, + sym_comment, + ACTIONS(5838), 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, - anon_sym_LPAREN2, - [83710] = 4, + anon_sym_xor2, + anon_sym_or2, + [98825] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2684), 1, + STATE(2934), 1, sym_comment, - ACTIONS(5470), 15, + ACTIONS(5558), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209538,19 +228623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83737] = 5, + [98850] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2685), 1, + STATE(2935), 1, sym_comment, - ACTIONS(5394), 14, + ACTIONS(5687), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209563,18 +228645,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83766] = 5, + [98875] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2686), 1, + STATE(2936), 1, sym_comment, - ACTIONS(5470), 14, + ACTIONS(5558), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209587,20 +228667,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83795] = 6, + [98900] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5824), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5852), 1, anon_sym_xor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2687), 1, + STATE(2937), 1, sym_comment, - ACTIONS(5394), 13, + ACTIONS(5913), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209614,18 +228696,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83826] = 6, + [98931] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5915), 1, + anon_sym_DOT_DOT2, + STATE(2938), 1, + sym_comment, + ACTIONS(2294), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5917), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2296), 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, + [98962] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + STATE(2939), 1, + sym_comment, + ACTIONS(5558), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(5416), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2688), 1, + anon_sym_or2, + [98987] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2940), 1, sym_comment, - ACTIONS(5470), 13, + ACTIONS(5687), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209638,15 +228761,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [83857] = 4, + [99012] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2689), 1, + STATE(2941), 1, sym_comment, - ACTIONS(5472), 15, + ACTIONS(5919), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209659,17 +228783,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83884] = 4, + [99037] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2690), 1, + STATE(2942), 1, sym_comment, - ACTIONS(5474), 15, + ACTIONS(5921), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209682,19 +228805,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83911] = 5, + [99062] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5832), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2691), 1, + STATE(2943), 1, sym_comment, - ACTIONS(5472), 14, + ACTIONS(5919), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209707,18 +228829,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [83940] = 5, + [99089] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5844), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2692), 1, + STATE(2944), 1, sym_comment, - ACTIONS(5474), 14, + ACTIONS(5921), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209731,20 +228852,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [83969] = 6, + [99116] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5832), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5834), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2693), 1, + STATE(2945), 1, sym_comment, - ACTIONS(5472), 13, + ACTIONS(5919), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209757,19 +228877,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [84000] = 6, + [99145] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5844), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5846), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2694), 1, + STATE(2946), 1, sym_comment, - ACTIONS(5474), 13, + ACTIONS(5921), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209782,19 +228901,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_or2, - [84031] = 6, - ACTIONS(103), 1, + [99174] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2695), 1, + STATE(2947), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(5923), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209808,18 +228922,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84062] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [99199] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5314), 1, - aux_sym__immediate_decimal_token5, - STATE(2696), 1, - sym_comment, - ACTIONS(1736), 3, - ts_builtin_sym_end, + ACTIONS(3840), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 12, + ACTIONS(5776), 1, + anon_sym_EQ2, + STATE(2948), 1, + sym_comment, + STATE(3273), 1, + sym__flag_equals_value, + ACTIONS(3842), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209831,15 +228948,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [84091] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99230] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2697), 1, + STATE(2949), 1, sym_comment, - STATE(2806), 1, - aux_sym__repeat_newline, - ACTIONS(5476), 15, + ACTIONS(5925), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209852,17 +228968,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84118] = 4, + [99255] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2698), 1, + ACTIONS(5832), 1, + anon_sym_and2, + STATE(2950), 1, sym_comment, - STATE(2807), 1, - aux_sym__repeat_newline, - ACTIONS(5478), 15, + ACTIONS(5923), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209875,21 +228992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [84145] = 6, - ACTIONS(103), 1, + [99282] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2699), 1, + ACTIONS(5844), 1, + anon_sym_and2, + STATE(2951), 1, sym_comment, - ACTIONS(1966), 13, + ACTIONS(5925), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209903,14 +229016,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84176] = 4, + anon_sym_xor2, + anon_sym_or2, + [99309] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2700), 1, + ACTIONS(5832), 1, + anon_sym_and2, + ACTIONS(5834), 1, + anon_sym_xor2, + STATE(2952), 1, sym_comment, - ACTIONS(5480), 15, + ACTIONS(5923), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209923,20 +229040,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, + anon_sym_or2, + [99338] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5844), 1, anon_sym_and2, + ACTIONS(5846), 1, anon_sym_xor2, + STATE(2953), 1, + sym_comment, + ACTIONS(5925), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [84203] = 4, + [99367] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2701), 1, + STATE(2954), 1, sym_comment, - ACTIONS(1558), 4, + ACTIONS(2004), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1556), 12, + ACTIONS(2006), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209949,14 +229089,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [84230] = 4, + [99394] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(2921), 1, aux_sym__repeat_newline, - STATE(2702), 1, + STATE(2955), 1, sym_comment, - ACTIONS(5482), 15, + ACTIONS(5818), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209972,18 +229112,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84257] = 6, + [99421] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5484), 1, + ACTIONS(3018), 1, sym__newline, - STATE(2703), 1, - sym_comment, - STATE(2811), 1, + ACTIONS(5807), 1, + anon_sym_and2, + ACTIONS(5872), 1, + anon_sym_xor2, + ACTIONS(5929), 1, + anon_sym_or2, + STATE(2887), 1, aux_sym__repeat_newline, - ACTIONS(5476), 13, + STATE(2956), 1, + sym_comment, + ACTIONS(5927), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209995,23 +229139,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + [99456] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(5820), 1, + anon_sym_and2, + ACTIONS(5828), 1, anon_sym_xor2, + ACTIONS(5933), 1, anon_sym_or2, - [84288] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5487), 1, - anon_sym_DOT_DOT2, - STATE(2704), 1, + STATE(2889), 1, + aux_sym__repeat_newline, + STATE(2957), 1, sym_comment, - ACTIONS(2100), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5489), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 11, - sym__newline, + ACTIONS(5931), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210022,20 +229165,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, - [84319] = 6, + anon_sym_RPAREN, + [99491] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5491), 1, - anon_sym_DOT_DOT2, - STATE(2705), 1, - sym_comment, - ACTIONS(2076), 2, - ts_builtin_sym_end, + ACTIONS(1856), 1, sym__space, - ACTIONS(5493), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 11, + ACTIONS(2746), 1, + anon_sym_LPAREN2, + ACTIONS(2748), 1, + sym__unquoted_pattern, + STATE(2958), 1, + sym_comment, + ACTIONS(1750), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210047,20 +229189,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, - [84350] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99522] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5495), 1, - anon_sym_DOT_DOT2, - STATE(2706), 1, + ACTIONS(5824), 1, + anon_sym_and2, + ACTIONS(5852), 1, + anon_sym_xor2, + ACTIONS(5854), 1, + anon_sym_or2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2959), 1, sym_comment, - ACTIONS(2120), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5497), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 11, + ACTIONS(5935), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210072,18 +229216,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, - [84381] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + [99555] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, - sym__space, - STATE(2707), 1, + ACTIONS(5798), 1, + anon_sym_and2, + ACTIONS(5858), 1, + anon_sym_xor2, + ACTIONS(5860), 1, + anon_sym_or2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2960), 1, sym_comment, - ACTIONS(2577), 13, + ACTIONS(5937), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210096,20 +229243,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, - [84412] = 6, - ACTIONS(103), 1, + [99588] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2708), 1, - sym_comment, - ACTIONS(1976), 13, + ACTIONS(5820), 1, + anon_sym_and2, + ACTIONS(5939), 1, sym__newline, + STATE(2893), 1, + aux_sym__repeat_newline, + STATE(2961), 1, + sym_comment, + ACTIONS(5826), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210121,19 +229266,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, - [84443] = 5, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [99619] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token5, - STATE(2709), 1, + STATE(2918), 1, + aux_sym__repeat_newline, + STATE(2962), 1, sym_comment, - ACTIONS(1802), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 12, + ACTIONS(5805), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210145,19 +229287,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, - sym__unquoted_pattern, - [84472] = 6, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [99646] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1774), 1, sym__unquoted_pattern, - ACTIONS(2523), 1, + ACTIONS(2094), 1, sym__space, - ACTIONS(2629), 1, + ACTIONS(2098), 1, anon_sym_LPAREN2, - STATE(2710), 1, + STATE(2963), 1, sym_comment, - ACTIONS(2525), 13, + ACTIONS(2096), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210171,18 +229316,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84503] = 6, - ACTIONS(103), 1, + [99677] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5501), 1, - sym__space, - STATE(2711), 1, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2964), 1, sym_comment, - STATE(2840), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 13, + ACTIONS(5822), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210195,19 +229336,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [84534] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [99704] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5503), 1, + ACTIONS(3018), 1, sym__newline, - STATE(2712), 1, - sym_comment, - STATE(2814), 1, + ACTIONS(5807), 1, + anon_sym_and2, + ACTIONS(5872), 1, + anon_sym_xor2, + ACTIONS(5929), 1, + anon_sym_or2, + STATE(2959), 1, aux_sym__repeat_newline, - ACTIONS(5478), 13, + STATE(2965), 1, + sym_comment, + ACTIONS(5942), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210219,20 +229366,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + [99739] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(5820), 1, + anon_sym_and2, + ACTIONS(5828), 1, anon_sym_xor2, + ACTIONS(5933), 1, anon_sym_or2, - [84565] = 6, + STATE(2960), 1, + aux_sym__repeat_newline, + STATE(2966), 1, + sym_comment, + ACTIONS(5944), 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, + [99774] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5948), 1, + anon_sym_EQ, + ACTIONS(5951), 1, + sym__newline, + ACTIONS(5954), 1, + anon_sym_COLON, + ACTIONS(5957), 1, + anon_sym_DASH2, + STATE(4310), 1, + aux_sym__repeat_newline, + STATE(2967), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(3492), 2, + sym_param_type, + sym_param_value, + ACTIONS(5946), 8, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [99811] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__space, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2713), 1, + STATE(2968), 1, sym_comment, - ACTIONS(2569), 13, + ACTIONS(1716), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1714), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210244,18 +229443,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, - [84596] = 5, + anon_sym_DOT_DOT2, + [99838] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2714), 1, + STATE(2969), 1, sym_comment, - ACTIONS(5480), 14, + ACTIONS(5959), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210268,18 +229464,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_and2, anon_sym_xor2, anon_sym_or2, - [84625] = 5, + [99865] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(3798), 1, + sym__space, + STATE(2970), 1, + sym_comment, + STATE(4867), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3800), 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, + [99896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2715), 1, + STATE(2971), 1, sym_comment, - ACTIONS(5482), 14, + ACTIONS(5961), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210292,17 +229512,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84654] = 4, - ACTIONS(103), 1, + [99923] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2716), 1, + ACTIONS(5824), 1, + anon_sym_and2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2972), 1, sym_comment, - ACTIONS(2501), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2503), 14, + ACTIONS(5959), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210315,20 +229537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [84681] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [99952] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__space, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2717), 1, + ACTIONS(5798), 1, + anon_sym_and2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2973), 1, sym_comment, - ACTIONS(2637), 13, + ACTIONS(5961), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210341,21 +229561,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, - [84712] = 7, + anon_sym_xor2, + anon_sym_or2, + [99981] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5824), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5852), 1, anon_sym_xor2, - STATE(2647), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2718), 1, + STATE(2974), 1, sym_comment, - ACTIONS(5476), 12, + ACTIONS(5959), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210368,20 +229588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [84745] = 7, + [100012] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5798), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5858), 1, anon_sym_xor2, - STATE(2648), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2719), 1, + STATE(2975), 1, sym_comment, - ACTIONS(5478), 12, + ACTIONS(5961), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210394,18 +229613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [84778] = 6, + [100043] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(2910), 1, aux_sym__repeat_newline, - STATE(2720), 1, + STATE(2976), 1, sym_comment, - ACTIONS(5480), 13, + ACTIONS(5963), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210418,22 +229633,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [84809] = 7, - ACTIONS(103), 1, + [100070] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - ACTIONS(5508), 1, - sym_short_flag_identifier, - STATE(2721), 1, + STATE(2911), 1, + aux_sym__repeat_newline, + STATE(2977), 1, sym_comment, - STATE(3126), 1, - sym__flag_equals_value, - ACTIONS(5338), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5336), 11, + ACTIONS(5965), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210445,18 +229655,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, - [84842] = 6, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [100097] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(3844), 1, sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2722), 1, + ACTIONS(5776), 1, + anon_sym_EQ2, + STATE(2978), 1, sym_comment, - ACTIONS(996), 13, + STATE(3261), 1, + sym__flag_equals_value, + ACTIONS(3846), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210470,18 +229684,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84873] = 6, + [100128] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1018), 1, - sym__space, - ACTIONS(2583), 1, + ACTIONS(2108), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2114), 1, sym__unquoted_pattern, - STATE(2723), 1, + ACTIONS(2750), 1, + sym__space, + STATE(2979), 1, sym_comment, - ACTIONS(1016), 13, + ACTIONS(2752), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210495,18 +229709,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84904] = 6, - ACTIONS(3), 1, + [100159] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2724), 1, + ACTIONS(2104), 1, + sym__space, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(2980), 1, sym_comment, - ACTIONS(5482), 13, + ACTIONS(2106), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210519,21 +229733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [84935] = 7, + anon_sym_RBRACE, + [100190] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - ACTIONS(5512), 1, - anon_sym_or2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2725), 1, + STATE(2981), 1, sym_comment, - ACTIONS(5510), 12, + ACTIONS(5967), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210546,20 +229754,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [84968] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5414), 1, anon_sym_and2, - ACTIONS(5416), 1, anon_sym_xor2, - ACTIONS(5516), 1, anon_sym_or2, - STATE(540), 1, + [100217] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2726), 1, + STATE(2982), 1, sym_comment, - ACTIONS(5514), 12, + ACTIONS(5969), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210572,15 +229777,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85001] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [100244] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2652), 1, + ACTIONS(5807), 1, + anon_sym_and2, + ACTIONS(5971), 1, + sym__newline, + STATE(2912), 1, aux_sym__repeat_newline, - STATE(2727), 1, + STATE(2983), 1, sym_comment, - ACTIONS(5518), 15, - sym__newline, + ACTIONS(5963), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210592,23 +229803,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85028] = 6, + [100275] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5396), 1, - anon_sym_DOT_DOT2, - STATE(2728), 1, + ACTIONS(5894), 1, + anon_sym_EQ2, + ACTIONS(5974), 1, + sym_long_flag_identifier, + STATE(2984), 1, sym_comment, - ACTIONS(5346), 2, + STATE(3410), 1, + sym__flag_equals_value, + ACTIONS(3756), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5398), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5344), 11, + ACTIONS(3754), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210620,14 +229831,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, - [85059] = 4, + [100308] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2653), 1, + STATE(2969), 1, aux_sym__repeat_newline, - STATE(2729), 1, + STATE(2985), 1, sym_comment, - ACTIONS(5520), 15, + ACTIONS(5976), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210643,14 +229854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85086] = 4, + [100335] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2700), 1, + STATE(2971), 1, aux_sym__repeat_newline, - STATE(2730), 1, + STATE(2986), 1, sym_comment, - ACTIONS(5522), 15, + ACTIONS(5978), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210666,14 +229877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85113] = 4, + [100362] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2702), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2731), 1, + STATE(2987), 1, sym_comment, - ACTIONS(5524), 15, + ACTIONS(5980), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210689,18 +229900,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85140] = 6, + [100389] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5526), 1, - sym__newline, - STATE(2714), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2732), 1, + STATE(2988), 1, sym_comment, - ACTIONS(5522), 13, + ACTIONS(5982), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210712,21 +229920,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85171] = 6, - ACTIONS(103), 1, + [100416] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2144), 1, - sym__space, - STATE(2733), 1, - sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2146), 13, + ACTIONS(5807), 1, + anon_sym_and2, + ACTIONS(5984), 1, sym__newline, + STATE(2972), 1, + aux_sym__repeat_newline, + STATE(2989), 1, + sym_comment, + ACTIONS(5976), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210738,20 +229946,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, - [85202] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [100447] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2148), 1, - sym__space, - STATE(2734), 1, - sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2150), 13, + ACTIONS(5820), 1, + anon_sym_and2, + ACTIONS(5987), 1, sym__newline, + STATE(2973), 1, + aux_sym__repeat_newline, + STATE(2990), 1, + sym_comment, + ACTIONS(5978), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210763,21 +229971,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, - [85233] = 7, + anon_sym_xor2, + anon_sym_or2, + [100478] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5824), 1, anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - ACTIONS(5516), 1, - anon_sym_or2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2735), 1, + STATE(2991), 1, sym_comment, - ACTIONS(5529), 12, + ACTIONS(5980), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210790,18 +229995,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85266] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [100507] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2170), 1, - sym__space, - STATE(2736), 1, + ACTIONS(5798), 1, + anon_sym_and2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(2992), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2172), 13, + ACTIONS(5982), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210814,20 +230019,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, - [85297] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [100536] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2072), 1, - sym__space, - STATE(2737), 1, - sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2074), 13, + ACTIONS(3018), 1, sym__newline, + ACTIONS(5807), 1, + anon_sym_and2, + ACTIONS(5872), 1, + anon_sym_xor2, + STATE(2974), 1, + aux_sym__repeat_newline, + STATE(2993), 1, + sym_comment, + ACTIONS(5976), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210839,19 +230046,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, - [85328] = 6, + anon_sym_or2, + [100569] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5531), 1, + ACTIONS(3018), 1, sym__newline, - STATE(2656), 1, + ACTIONS(5820), 1, + anon_sym_and2, + ACTIONS(5828), 1, + anon_sym_xor2, + STATE(2975), 1, aux_sym__repeat_newline, - STATE(2738), 1, + STATE(2994), 1, sym_comment, - ACTIONS(5518), 13, + ACTIONS(5978), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210863,20 +230072,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [85359] = 6, + [100602] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, + ACTIONS(5824), 1, anon_sym_and2, - ACTIONS(5534), 1, - sym__newline, - STATE(2657), 1, + ACTIONS(5852), 1, + anon_sym_xor2, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2739), 1, + STATE(2995), 1, sym_comment, - ACTIONS(5520), 13, + ACTIONS(5980), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210888,20 +230097,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [85390] = 6, - ACTIONS(3), 1, + [100633] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5537), 1, - sym__newline, - STATE(2715), 1, - aux_sym__repeat_newline, - STATE(2740), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(2715), 1, + sym__space, + ACTIONS(2804), 1, + anon_sym_LPAREN2, + STATE(2996), 1, sym_comment, - ACTIONS(5524), 13, + ACTIONS(2717), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210913,22 +230122,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [85421] = 7, + anon_sym_RBRACE, + [100664] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(5402), 1, + ACTIONS(5807), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5872), 1, anon_sym_xor2, - STATE(2720), 1, + STATE(2909), 1, aux_sym__repeat_newline, - STATE(2741), 1, + STATE(2997), 1, sym_comment, - ACTIONS(5522), 12, + ACTIONS(5838), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210941,20 +230149,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85454] = 7, + [100697] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5820), 1, anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2724), 1, + ACTIONS(5990), 1, + sym__newline, + STATE(2913), 1, aux_sym__repeat_newline, - STATE(2742), 1, + STATE(2998), 1, sym_comment, - ACTIONS(5524), 12, + ACTIONS(5965), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210966,19 +230172,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [85487] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - ACTIONS(5544), 1, anon_sym_xor2, - ACTIONS(5546), 1, anon_sym_or2, - STATE(2743), 1, + [100728] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2742), 1, + sym__space, + ACTIONS(2758), 1, + anon_sym_LPAREN2, + ACTIONS(2760), 1, + sym__unquoted_pattern, + STATE(2999), 1, sym_comment, - ACTIONS(5540), 13, + ACTIONS(2744), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210992,18 +230199,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85518] = 6, + [100759] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5590), 1, + anon_sym_DOT2, + ACTIONS(5995), 1, + anon_sym_DASH2, + STATE(2706), 1, + sym_path, + STATE(2769), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3000), 1, + sym_comment, + STATE(3050), 1, + sym_cell_path, + ACTIONS(5993), 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, + [100794] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5824), 1, anon_sym_and2, - ACTIONS(5552), 1, - anon_sym_xor2, - ACTIONS(5554), 1, - anon_sym_or2, - STATE(2744), 1, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3001), 1, sym_comment, - ACTIONS(5548), 13, + ACTIONS(5967), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211016,13 +230248,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, - [85549] = 3, + anon_sym_xor2, + anon_sym_or2, + [100823] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2745), 1, + ACTIONS(5798), 1, + anon_sym_and2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3002), 1, sym_comment, - ACTIONS(4680), 16, + ACTIONS(5969), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211035,24 +230272,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85574] = 7, + [100852] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5997), 1, + anon_sym_DOT_DOT2, + STATE(3003), 1, + sym_comment, + ACTIONS(2318), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5999), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2320), 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, + [100883] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(5402), 1, + ACTIONS(5807), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5872), 1, anon_sym_xor2, - STATE(2660), 1, + STATE(2914), 1, aux_sym__repeat_newline, - STATE(2746), 1, + STATE(3004), 1, sym_comment, - ACTIONS(5518), 12, + ACTIONS(5963), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211065,14 +230325,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85607] = 4, - ACTIONS(3), 1, + [100916] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2747), 1, + ACTIONS(5774), 1, + anon_sym_EQ2, + ACTIONS(6001), 1, + sym__space, + STATE(3005), 1, sym_comment, - STATE(2757), 1, - aux_sym__repeat_newline, - ACTIONS(5556), 15, + STATE(3111), 1, + aux_sym_command_repeat1, + ACTIONS(5770), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211085,17 +230349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [85634] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [100947] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2748), 1, + STATE(3006), 1, sym_comment, - STATE(2758), 1, - aux_sym__repeat_newline, - ACTIONS(5558), 15, + ACTIONS(1821), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1823), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211107,22 +230372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [85661] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [100974] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5560), 1, - sym__newline, - STATE(2749), 1, + STATE(3007), 1, sym_comment, - STATE(2766), 1, - aux_sym__repeat_newline, - ACTIONS(5556), 13, + ACTIONS(2663), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2665), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211134,20 +230394,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [85692] = 6, + anon_sym_RBRACE, + sym__unquoted_pattern, + [101001] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5563), 1, + ACTIONS(3018), 1, sym__newline, - STATE(2750), 1, - sym_comment, - STATE(2767), 1, + ACTIONS(5820), 1, + anon_sym_and2, + ACTIONS(5828), 1, + anon_sym_xor2, + STATE(2917), 1, aux_sym__repeat_newline, - ACTIONS(5558), 13, + STATE(3008), 1, + sym_comment, + ACTIONS(5965), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211159,22 +230421,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [85723] = 7, - ACTIONS(3), 1, + [101034] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2751), 1, + ACTIONS(2762), 1, + sym__space, + ACTIONS(2766), 1, + anon_sym_LPAREN2, + ACTIONS(2768), 1, + sym__unquoted_pattern, + STATE(3009), 1, sym_comment, - STATE(2773), 1, - aux_sym__repeat_newline, - ACTIONS(5556), 12, + ACTIONS(2764), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211186,21 +230446,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [85756] = 7, + anon_sym_RBRACE, + [101065] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2035), 1, + anon_sym_DASH2, + ACTIONS(5590), 1, + anon_sym_DOT2, + STATE(2706), 1, + sym_path, + STATE(2769), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3010), 1, + sym_comment, + STATE(3050), 1, + sym_cell_path, + ACTIONS(2032), 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, + [101100] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2026), 1, + anon_sym_DASH2, + ACTIONS(5590), 1, + anon_sym_DOT2, + STATE(2706), 1, + sym_path, + STATE(2769), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3011), 1, + sym_comment, + STATE(3260), 1, + sym_cell_path, + ACTIONS(2024), 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, + [101135] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2048), 1, + anon_sym_DASH2, + ACTIONS(5590), 1, + anon_sym_DOT2, + STATE(2706), 1, + sym_path, + STATE(2769), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3012), 1, + sym_comment, + STATE(3066), 1, + sym_cell_path, + ACTIONS(2046), 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, + [101170] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2010), 1, + anon_sym_DASH2, + ACTIONS(5590), 1, + anon_sym_DOT2, + STATE(2706), 1, + sym_path, + STATE(2769), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3013), 1, + sym_comment, + STATE(3276), 1, + sym_cell_path, + ACTIONS(2008), 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, + [101205] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2022), 1, + anon_sym_DASH2, + ACTIONS(5590), 1, + anon_sym_DOT2, + STATE(2706), 1, + sym_path, + STATE(2769), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3014), 1, + sym_comment, + STATE(3084), 1, + sym_cell_path, + ACTIONS(2020), 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, + [101240] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2018), 1, + anon_sym_DASH2, + ACTIONS(5590), 1, + anon_sym_DOT2, + STATE(2706), 1, + sym_path, + STATE(2769), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3015), 1, + sym_comment, + STATE(3107), 1, + sym_cell_path, + ACTIONS(2016), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(5436), 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, + [101275] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5798), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5858), 1, anon_sym_xor2, - STATE(2752), 1, - sym_comment, - STATE(2774), 1, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(5558), 12, + STATE(3016), 1, + sym_comment, + ACTIONS(5982), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211213,20 +230634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85789] = 7, + [101306] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5824), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5852), 1, anon_sym_xor2, - STATE(2661), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2753), 1, + STATE(3017), 1, sym_comment, - ACTIONS(5520), 12, + ACTIONS(5967), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211239,14 +230659,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85822] = 4, + [101337] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2662), 1, + STATE(2981), 1, aux_sym__repeat_newline, - STATE(2754), 1, + STATE(3018), 1, sym_comment, - ACTIONS(5566), 15, + ACTIONS(6003), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211262,14 +230682,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85849] = 4, + [101364] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2663), 1, + STATE(2982), 1, aux_sym__repeat_newline, - STATE(2755), 1, + STATE(3019), 1, sym_comment, - ACTIONS(5568), 15, + ACTIONS(6005), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211285,17 +230705,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85876] = 4, - ACTIONS(103), 1, + [101391] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2756), 1, + ACTIONS(5798), 1, + anon_sym_and2, + ACTIONS(5858), 1, + anon_sym_xor2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3020), 1, sym_comment, - ACTIONS(1641), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 12, + ACTIONS(5969), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211307,15 +230728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [85903] = 4, + anon_sym_RPAREN, + anon_sym_or2, + [101422] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2757), 1, + STATE(3021), 1, sym_comment, - ACTIONS(5570), 15, + ACTIONS(6007), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211331,14 +230753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85930] = 4, + [101449] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2758), 1, + STATE(3022), 1, sym_comment, - ACTIONS(5572), 15, + ACTIONS(6009), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211354,18 +230776,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85957] = 6, + [101476] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5824), 1, anon_sym_and2, - ACTIONS(5574), 1, - sym__newline, - STATE(2664), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2759), 1, + STATE(3023), 1, sym_comment, - ACTIONS(5566), 13, + ACTIONS(6007), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211379,67 +230800,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85988] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - ACTIONS(5577), 1, - sym_long_flag_identifier, - STATE(2760), 1, - sym_comment, - STATE(3204), 1, - sym__flag_equals_value, - ACTIONS(4303), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4301), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [86021] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2761), 1, - sym_comment, - ACTIONS(1822), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1824), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [86048] = 6, - ACTIONS(103), 1, + [101505] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(5581), 1, - sym__space, - STATE(2762), 1, + ACTIONS(5798), 1, + anon_sym_and2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3024), 1, sym_comment, - STATE(4626), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5579), 13, + ACTIONS(6009), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211452,23 +230822,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [86079] = 8, + anon_sym_xor2, + anon_sym_or2, + [101534] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5807), 1, anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - ACTIONS(5585), 1, - anon_sym_or2, - STATE(2763), 1, - sym_comment, - STATE(2778), 1, + ACTIONS(6011), 1, + sym__newline, + STATE(3001), 1, aux_sym__repeat_newline, - ACTIONS(5583), 11, + STATE(3025), 1, + sym_comment, + ACTIONS(6003), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211480,15 +230847,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86114] = 4, + anon_sym_xor2, + anon_sym_or2, + [101565] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2764), 1, + ACTIONS(6014), 1, + anon_sym_DOT_DOT2, + STATE(3026), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(2278), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 14, + ACTIONS(6016), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2280), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211500,21 +230874,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, - sym__unquoted_pattern, - [86141] = 6, + [101596] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, + ACTIONS(5820), 1, anon_sym_and2, - ACTIONS(5587), 1, + ACTIONS(6018), 1, sym__newline, - STATE(2665), 1, + STATE(3002), 1, aux_sym__repeat_newline, - STATE(2765), 1, + STATE(3027), 1, sym_comment, - ACTIONS(5568), 13, + ACTIONS(6005), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211528,16 +230899,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [86172] = 5, - ACTIONS(3), 1, + [101627] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2766), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(2314), 1, + sym__space, + STATE(3028), 1, sym_comment, - ACTIONS(5570), 14, + STATE(5247), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2316), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211550,18 +230923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [86201] = 5, + anon_sym_RBRACE, + [101658] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5824), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5852), 1, + anon_sym_xor2, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2767), 1, + STATE(3029), 1, sym_comment, - ACTIONS(5572), 14, + ACTIONS(6007), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211574,17 +230948,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [86230] = 4, - ACTIONS(103), 1, + [101689] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2768), 1, + ACTIONS(5798), 1, + anon_sym_and2, + ACTIONS(5858), 1, + anon_sym_xor2, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3030), 1, sym_comment, - ACTIONS(1802), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 14, + ACTIONS(6009), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211597,17 +230973,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, - sym__unquoted_pattern, - [86257] = 4, + anon_sym_or2, + [101720] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2769), 1, - sym_comment, - ACTIONS(1870), 2, - sym__space, + ACTIONS(1890), 1, anon_sym_LPAREN2, - ACTIONS(1872), 14, + ACTIONS(2330), 1, + sym__space, + STATE(3031), 1, + sym_comment, + STATE(5247), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2332), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211621,23 +230999,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [86284] = 8, + [101751] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(5436), 1, + ACTIONS(5807), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5872), 1, anon_sym_xor2, - ACTIONS(5592), 1, - anon_sym_or2, - STATE(2735), 1, + STATE(3017), 1, aux_sym__repeat_newline, - STATE(2770), 1, + STATE(3032), 1, sym_comment, - ACTIONS(5590), 11, + ACTIONS(6003), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211649,20 +231024,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86319] = 7, + anon_sym_or2, + [101784] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(5402), 1, + ACTIONS(5820), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5828), 1, anon_sym_xor2, - STATE(2666), 1, + STATE(3020), 1, aux_sym__repeat_newline, - STATE(2771), 1, + STATE(3033), 1, sym_comment, - ACTIONS(5566), 12, + ACTIONS(6005), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211675,20 +231051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [86352] = 7, + [101817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2667), 1, + STATE(3021), 1, aux_sym__repeat_newline, - STATE(2772), 1, + STATE(3034), 1, sym_comment, - ACTIONS(5568), 12, + ACTIONS(6021), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211700,19 +231071,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [86385] = 6, + [101844] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(3022), 1, aux_sym__repeat_newline, - STATE(2773), 1, + STATE(3035), 1, sym_comment, - ACTIONS(5570), 13, + ACTIONS(5840), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211725,19 +231094,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [86416] = 6, + [101871] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2774), 1, + STATE(3036), 1, sym_comment, - ACTIONS(5572), 13, + ACTIONS(5913), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211750,15 +231117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [86447] = 4, + [101898] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2670), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2775), 1, + STATE(3037), 1, sym_comment, - ACTIONS(5400), 15, + ACTIONS(5796), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211774,22 +231143,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86474] = 8, + [101925] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5807), 1, anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - ACTIONS(5585), 1, - anon_sym_or2, - STATE(2725), 1, + ACTIONS(6023), 1, + sym__newline, + STATE(3023), 1, aux_sym__repeat_newline, - STATE(2776), 1, + STATE(3038), 1, sym_comment, - ACTIONS(5594), 11, + ACTIONS(6021), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211801,22 +231166,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86509] = 8, + anon_sym_xor2, + anon_sym_or2, + [101956] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5820), 1, anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - ACTIONS(5592), 1, - anon_sym_or2, - STATE(2726), 1, + ACTIONS(6026), 1, + sym__newline, + STATE(3024), 1, aux_sym__repeat_newline, - STATE(2777), 1, + STATE(3039), 1, sym_comment, - ACTIONS(5596), 11, + ACTIONS(5840), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211828,20 +231191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86544] = 7, + anon_sym_xor2, + anon_sym_or2, + [101987] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5824), 1, anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - ACTIONS(5512), 1, - anon_sym_or2, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2778), 1, + STATE(3040), 1, sym_comment, - ACTIONS(5598), 12, + ACTIONS(5913), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211854,13 +231215,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86577] = 3, + anon_sym_xor2, + anon_sym_or2, + [102016] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2779), 1, - sym_comment, - ACTIONS(5150), 16, + ACTIONS(3018), 1, sym__newline, + ACTIONS(5807), 1, + anon_sym_and2, + ACTIONS(5872), 1, + anon_sym_xor2, + STATE(3029), 1, + aux_sym__repeat_newline, + STATE(3041), 1, + sym_comment, + ACTIONS(6021), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211872,16 +231242,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [86602] = 3, + [102049] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(2780), 1, + ACTIONS(892), 1, + sym_raw_string_begin, + ACTIONS(3407), 1, + anon_sym_DQUOTE, + ACTIONS(3409), 1, + anon_sym_SQUOTE, + ACTIONS(3411), 1, + anon_sym_BQUOTE, + ACTIONS(3413), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3415), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6029), 1, + aux_sym_env_var_token1, + STATE(3042), 1, + sym_comment, + STATE(3207), 1, + sym__inter_single_quotes, + STATE(3208), 1, + sym__inter_double_quotes, + STATE(4981), 2, + sym_val_string, + sym_val_interpolated, + STATE(2682), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [102093] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + STATE(3043), 1, sym_comment, - ACTIONS(5269), 16, + STATE(5247), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2330), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2332), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211893,19 +231298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86627] = 4, + [102123] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2671), 1, - aux_sym__repeat_newline, - STATE(2781), 1, + STATE(3044), 1, sym_comment, - ACTIONS(5458), 15, + ACTIONS(5558), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211917,39 +231316,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_and2, anon_sym_xor2, anon_sym_or2, - [86654] = 3, + [102147] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2782), 1, + ACTIONS(6033), 1, + anon_sym_DASH2, + ACTIONS(6035), 1, + anon_sym_DOT_DOT2, + STATE(3045), 1, sym_comment, - ACTIONS(5150), 16, + ACTIONS(6037), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6031), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86679] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102177] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2783), 1, + ACTIONS(5693), 1, + anon_sym_EQ2, + STATE(3046), 1, sym_comment, - ACTIONS(5269), 16, + ACTIONS(5695), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211960,22 +231363,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86704] = 4, + anon_sym_COLON2, + [102203] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6039), 1, + sym_identifier, + ACTIONS(6041), 1, + sym__newline, + ACTIONS(6043), 1, + anon_sym_RBRACK, + ACTIONS(6045), 1, + anon_sym_DOLLAR, + ACTIONS(6047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, + anon_sym_DASH_DASH, + ACTIONS(6051), 1, + anon_sym_DASH2, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3047), 1, + sym_comment, + STATE(3335), 1, + aux_sym_parameter_parens_repeat1, + STATE(3449), 1, + aux_sym__repeat_newline, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [102255] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2784), 1, + STATE(3048), 1, sym_comment, - ACTIONS(1874), 4, + ACTIONS(1920), 3, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1876), 12, + anon_sym_LPAREN2, + ACTIONS(1922), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211987,40 +231421,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [86731] = 8, + sym__unquoted_pattern, + [102281] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - ACTIONS(5602), 1, + ACTIONS(6039), 1, + sym_identifier, + ACTIONS(6041), 1, + sym__newline, + ACTIONS(6045), 1, + anon_sym_DOLLAR, + ACTIONS(6047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, + anon_sym_DASH_DASH, + ACTIONS(6051), 1, anon_sym_DASH2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2785), 1, + ACTIONS(6053), 1, + anon_sym_RPAREN, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3049), 1, sym_comment, - STATE(2826), 1, - sym_cell_path, - ACTIONS(5600), 11, + STATE(3359), 1, + aux_sym_parameter_parens_repeat1, + STATE(3449), 1, + aux_sym__repeat_newline, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [102333] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2048), 1, + anon_sym_DASH2, + STATE(3050), 1, + sym_comment, + ACTIONS(2046), 14, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [86766] = 3, + [102359] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2786), 1, + ACTIONS(6055), 1, + anon_sym_and2, + ACTIONS(6057), 1, + anon_sym_xor2, + ACTIONS(6059), 1, + anon_sym_or2, + STATE(3051), 1, sym_comment, - ACTIONS(5150), 16, + ACTIONS(5830), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212032,51 +231503,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + [102389] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6061), 1, anon_sym_and2, + ACTIONS(6063), 1, anon_sym_xor2, + ACTIONS(6065), 1, anon_sym_or2, - [86791] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5606), 1, - anon_sym_EQ, - ACTIONS(5609), 1, - sym__newline, - ACTIONS(5612), 1, - anon_sym_COLON, - ACTIONS(5615), 1, - anon_sym_DASH2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(2787), 2, + STATE(3052), 1, sym_comment, - aux_sym_parameter_repeat1, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5604), 8, - sym_identifier, + ACTIONS(5842), 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, - [86828] = 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, + [102419] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5617), 1, - sym__newline, - STATE(2674), 1, - aux_sym__repeat_newline, - STATE(2788), 1, + STATE(3053), 1, sym_comment, - ACTIONS(5400), 13, + ACTIONS(5104), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212087,22 +231545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86859] = 6, + [102443] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5340), 1, + ACTIONS(5675), 1, anon_sym_EQ2, - ACTIONS(5622), 1, - sym__space, - STATE(2789), 1, + STATE(3054), 1, sym_comment, - STATE(2955), 1, - sym__flag_equals_value, - ACTIONS(5620), 13, + ACTIONS(5677), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212113,21 +231568,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, - [86890] = 6, + anon_sym_COLON2, + [102469] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - sym__space, - ACTIONS(5340), 1, + ACTIONS(5679), 1, anon_sym_EQ2, - STATE(2790), 1, + STATE(3055), 1, sym_comment, - STATE(3070), 1, - sym__flag_equals_value, - ACTIONS(4365), 13, + ACTIONS(5681), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212138,176 +231590,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [86921] = 8, + anon_sym_COLON2, + [102495] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1853), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2791), 1, + STATE(3056), 1, sym_comment, - STATE(2826), 1, - sym_cell_path, - ACTIONS(1850), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5687), 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, - [86956] = 8, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [102519] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2792), 1, - sym_comment, - STATE(2934), 1, - sym_cell_path, - ACTIONS(1862), 11, - anon_sym_EQ, + ACTIONS(6039), 1, sym_identifier, + ACTIONS(6041), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6045), 1, anon_sym_DOLLAR, + ACTIONS(6047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, anon_sym_DASH_DASH, - [86991] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1868), 1, + ACTIONS(6051), 1, anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2793), 1, - sym_comment, - STATE(2843), 1, - sym_cell_path, - ACTIONS(1866), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(6067), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [87026] = 8, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3057), 1, + sym_comment, + STATE(3064), 1, + aux_sym__repeat_newline, + STATE(3417), 1, + aux_sym_parameter_parens_repeat1, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [102571] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2794), 1, - sym_comment, - STATE(3032), 1, - sym_cell_path, - ACTIONS(1878), 11, - anon_sym_EQ, + ACTIONS(6039), 1, sym_identifier, + ACTIONS(6041), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6045), 1, anon_sym_DOLLAR, + ACTIONS(6047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, anon_sym_DASH_DASH, - [87061] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1884), 1, + ACTIONS(6051), 1, anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2795), 1, - sym_comment, - STATE(2899), 1, - sym_cell_path, - ACTIONS(1882), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(6069), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [87096] = 8, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3058), 1, + sym_comment, + STATE(3065), 1, + aux_sym__repeat_newline, + STATE(3426), 1, + aux_sym_parameter_parens_repeat1, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [102623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2796), 1, + STATE(3059), 1, sym_comment, - STATE(2914), 1, - sym_cell_path, - ACTIONS(1858), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5687), 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, - [87131] = 3, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [102647] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2797), 1, + ACTIONS(2248), 1, + sym__space, + ACTIONS(6071), 1, + anon_sym_LBRACK2, + STATE(3060), 1, sym_comment, - ACTIONS(5269), 16, + ACTIONS(2250), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212321,15 +231727,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87156] = 3, + [102675] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2798), 1, + STATE(3061), 1, sym_comment, - ACTIONS(5624), 16, + ACTIONS(5919), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212341,18 +231745,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87181] = 3, - ACTIONS(3), 1, + [102699] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2799), 1, + ACTIONS(5667), 1, + anon_sym_EQ2, + STATE(3062), 1, sym_comment, - ACTIONS(5626), 16, + ACTIONS(5669), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212363,19 +231768,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87206] = 4, + anon_sym_COLON2, + [102725] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - STATE(2800), 1, + STATE(3063), 1, sym_comment, - ACTIONS(5624), 15, + ACTIONS(6073), 15, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212389,16 +231791,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [87233] = 4, + [102749] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - STATE(2801), 1, + ACTIONS(6039), 1, + sym_identifier, + ACTIONS(6041), 1, + sym__newline, + ACTIONS(6045), 1, + anon_sym_DOLLAR, + ACTIONS(6047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, + anon_sym_DASH_DASH, + ACTIONS(6051), 1, + anon_sym_DASH2, + ACTIONS(6075), 1, + anon_sym_RBRACK, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3064), 1, + sym_comment, + STATE(3333), 1, + aux_sym_parameter_parens_repeat1, + STATE(3449), 1, + aux_sym__repeat_newline, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [102801] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6039), 1, + sym_identifier, + ACTIONS(6041), 1, + sym__newline, + ACTIONS(6045), 1, + anon_sym_DOLLAR, + ACTIONS(6047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, + anon_sym_DASH_DASH, + ACTIONS(6051), 1, + anon_sym_DASH2, + ACTIONS(6077), 1, + anon_sym_RPAREN, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3065), 1, + sym_comment, + STATE(3334), 1, + aux_sym_parameter_parens_repeat1, + STATE(3449), 1, + aux_sym__repeat_newline, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [102853] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2685), 1, + anon_sym_DASH2, + STATE(3066), 1, + sym_comment, + ACTIONS(2683), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102879] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5894), 1, + anon_sym_EQ2, + STATE(3067), 1, sym_comment, - ACTIONS(5626), 15, + STATE(3318), 1, + sym__flag_equals_value, + ACTIONS(3844), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(3846), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212410,20 +231907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [87260] = 5, - ACTIONS(3), 1, + [102909] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - ACTIONS(5544), 1, - anon_sym_xor2, - STATE(2802), 1, + STATE(3068), 1, sym_comment, - ACTIONS(5624), 14, + ACTIONS(5661), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5663), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212437,62 +231929,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or2, - [87289] = 5, + [102935] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - ACTIONS(5552), 1, - anon_sym_xor2, - STATE(2803), 1, + ACTIONS(1750), 1, + anon_sym_DASH2, + ACTIONS(6035), 1, + anon_sym_DOT_DOT2, + STATE(3069), 1, sym_comment, - ACTIONS(5626), 14, + ACTIONS(6037), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1856), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_or2, - [87318] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102965] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5628), 1, - sym__newline, - STATE(2675), 1, - aux_sym__repeat_newline, - STATE(2804), 1, + ACTIONS(6079), 1, + sym_identifier, + ACTIONS(6084), 1, + anon_sym_DOLLAR, + ACTIONS(6087), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6090), 1, + anon_sym_DASH_DASH, + ACTIONS(6093), 1, + anon_sym_DASH2, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + STATE(3070), 2, sym_comment, - ACTIONS(5458), 13, - anon_sym_SEMI, + aux_sym_parameter_parens_repeat1, + ACTIONS(6082), 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_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [87349] = 3, - ACTIONS(3), 1, + [103011] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2805), 1, + STATE(3071), 1, sym_comment, - ACTIONS(5631), 16, + ACTIONS(5667), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5669), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212506,17 +232007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87374] = 4, + [103037] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2806), 1, + STATE(3072), 1, sym_comment, - ACTIONS(5406), 15, + ACTIONS(5921), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212528,18 +232025,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87401] = 4, - ACTIONS(3), 1, + [103061] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2807), 1, + ACTIONS(2766), 1, + anon_sym_LPAREN2, + ACTIONS(2768), 1, + sym__unquoted_pattern, + STATE(3073), 1, sym_comment, - ACTIONS(5412), 15, + ACTIONS(2762), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2764), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212551,16 +232052,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87428] = 3, - ACTIONS(3), 1, + [103091] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2808), 1, + ACTIONS(2746), 1, + anon_sym_LPAREN2, + ACTIONS(2748), 1, + sym__unquoted_pattern, + STATE(3074), 1, sym_comment, - ACTIONS(5633), 16, + ACTIONS(1856), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1750), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212572,19 +232076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87453] = 4, + [103121] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - STATE(2809), 1, + STATE(3075), 1, sym_comment, - ACTIONS(5631), 15, + ACTIONS(5558), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212596,43 +232094,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87480] = 4, + [103145] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - STATE(2810), 1, + ACTIONS(2296), 1, + anon_sym_DASH2, + ACTIONS(6096), 1, + anon_sym_DOT_DOT2, + STATE(3076), 1, sym_comment, - ACTIONS(5633), 15, + ACTIONS(6098), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2294), 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_xor2, - anon_sym_or2, - [87507] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103175] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(6055), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2811), 1, + STATE(3077), 1, sym_comment, - ACTIONS(5406), 14, + ACTIONS(5919), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212644,19 +232141,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_xor2, anon_sym_or2, - [87536] = 5, + [103201] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, + ACTIONS(6061), 1, anon_sym_and2, - ACTIONS(5544), 1, - anon_sym_xor2, - STATE(2812), 1, + STATE(3078), 1, sym_comment, - ACTIONS(5631), 14, + ACTIONS(5921), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212668,45 +232163,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_xor2, anon_sym_or2, - [87565] = 5, + [103227] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - ACTIONS(5552), 1, - anon_sym_xor2, - STATE(2813), 1, - sym_comment, - ACTIONS(5633), 14, + ACTIONS(6100), 1, sym__newline, + STATE(870), 1, + aux_sym__pipe_separator, + STATE(3079), 1, + sym_comment, + STATE(3595), 1, + aux_sym__repeat_newline, + ACTIONS(6103), 3, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or2, - [87594] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2814), 1, - sym_comment, - ACTIONS(5412), 14, - sym__newline, - anon_sym_SEMI, + ACTIONS(2452), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -212716,18 +232190,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [87623] = 4, - ACTIONS(3), 1, + [103259] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1820), 1, - sym__unquoted_pattern, - STATE(2815), 1, - sym_comment, - ACTIONS(968), 15, + ACTIONS(5774), 1, + anon_sym_EQ2, + ACTIONS(6105), 1, ts_builtin_sym_end, + ACTIONS(6107), 1, + sym__space, + STATE(3080), 1, + sym_comment, + STATE(3286), 1, + aux_sym_command_repeat1, + ACTIONS(5770), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212739,22 +232215,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87650] = 6, + [103291] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(2108), 1, anon_sym_LPAREN2, - STATE(2816), 1, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(3081), 1, sym_comment, - ACTIONS(1964), 2, + ACTIONS(2750), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1966), 11, + ACTIONS(2752), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212766,16 +232239,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, - [87680] = 4, + [103321] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2817), 1, + STATE(3082), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(2663), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1804), 12, + ACTIONS(2665), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212788,88 +232261,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [87706] = 7, + [103347] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5635), 1, + ACTIONS(6039), 1, + sym_identifier, + ACTIONS(6041), 1, sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2818), 1, - sym_comment, - STATE(3365), 1, + ACTIONS(6045), 1, + anon_sym_DOLLAR, + ACTIONS(6047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, + anon_sym_DASH_DASH, + ACTIONS(6051), 1, + anon_sym_DASH2, + ACTIONS(6109), 1, + anon_sym_RBRACK, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3047), 1, aux_sym__repeat_newline, - ACTIONS(5638), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2303), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [87738] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2819), 1, + STATE(3083), 1, sym_comment, - ACTIONS(1870), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 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, - sym__unquoted_pattern, - [87764] = 4, - ACTIONS(103), 1, + STATE(3430), 1, + aux_sym_parameter_parens_repeat1, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [103399] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2820), 1, + ACTIONS(2018), 1, + anon_sym_DASH2, + STATE(3084), 1, sym_comment, - ACTIONS(2084), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2086), 13, + ACTIONS(2016), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [87790] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103425] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, + STATE(3085), 1, + sym_comment, + ACTIONS(1714), 2, anon_sym_DASH2, - ACTIONS(5644), 1, anon_sym_DOT_DOT2, - STATE(2821), 1, - sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5640), 11, + ACTIONS(1716), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -212881,15 +232338,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87820] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [103451] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2822), 1, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + ACTIONS(6111), 1, + anon_sym_DOT, + STATE(3086), 1, sym_comment, - ACTIONS(5257), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5259), 13, + STATE(3784), 1, + sym__immediate_decimal, + ACTIONS(6113), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6115), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3911), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1734), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [103491] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6055), 1, + anon_sym_and2, + ACTIONS(6057), 1, + anon_sym_xor2, + STATE(3087), 1, + sym_comment, + ACTIONS(5919), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212901,20 +232391,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, - [87846] = 6, + anon_sym_or2, + [103519] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, + ACTIONS(6061), 1, anon_sym_and2, - ACTIONS(5650), 1, + ACTIONS(6063), 1, anon_sym_xor2, - ACTIONS(5652), 1, - anon_sym_or2, - STATE(2823), 1, + STATE(3088), 1, sym_comment, - ACTIONS(5540), 12, + ACTIONS(5921), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -212927,19 +232414,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, - [87876] = 6, + anon_sym_or2, + [103547] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2824), 1, + ACTIONS(5523), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6117), 1, + anon_sym_DOT, + STATE(3089), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2144), 2, + ACTIONS(1882), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2146), 11, + ACTIONS(1884), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212951,18 +232439,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, - [87906] = 5, + [103577] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3090), 1, + sym_comment, + ACTIONS(1823), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1821), 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, + [103603] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(5908), 1, aux_sym__immediate_decimal_token5, - STATE(2825), 1, + STATE(3091), 1, sym_comment, - ACTIONS(1804), 3, + ACTIONS(1884), 3, sym_identifier, anon_sym_DASH2, sym__unquoted_pattern_in_record, - ACTIONS(1802), 11, + ACTIONS(1882), 11, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -212974,41 +232484,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [87934] = 4, + [103631] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5683), 1, + anon_sym_EQ2, + STATE(3092), 1, + sym_comment, + ACTIONS(5685), 14, + sym__newline, + sym__space, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + anon_sym_COLON2, + [103657] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - anon_sym_DASH2, - STATE(2826), 1, + STATE(3093), 1, sym_comment, - ACTIONS(1866), 14, + ACTIONS(1992), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1990), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87960] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [103683] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - ACTIONS(5660), 1, - anon_sym_or2, - STATE(2827), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + STATE(3094), 1, sym_comment, - ACTIONS(5548), 12, + STATE(5247), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2314), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2316), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213020,48 +232552,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, - [87990] = 14, + [103713] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5662), 1, + ACTIONS(6039), 1, sym_identifier, - ACTIONS(5667), 1, + ACTIONS(6041), 1, + sym__newline, + ACTIONS(6045), 1, anon_sym_DOLLAR, - ACTIONS(5670), 1, + ACTIONS(6047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5673), 1, + ACTIONS(6049), 1, anon_sym_DASH_DASH, - ACTIONS(5676), 1, + ACTIONS(6051), 1, anon_sym_DASH2, - STATE(2467), 1, + ACTIONS(6119), 1, + anon_sym_RPAREN, + STATE(2732), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2827), 1, sym__param_name, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, + STATE(3049), 1, + aux_sym__repeat_newline, + STATE(3095), 1, + sym_comment, + STATE(3389), 1, + aux_sym_parameter_parens_repeat1, + STATE(3485), 1, sym_param_rest, - STATE(3328), 1, + STATE(3490), 1, sym_param_opt, - STATE(3582), 1, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, sym_parameter, - STATE(2828), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(5665), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [88036] = 4, - ACTIONS(103), 1, + [103765] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5287), 1, - anon_sym_EQ2, - STATE(2829), 1, + STATE(3096), 1, sym_comment, - ACTIONS(5289), 14, + ACTIONS(5923), 15, + ts_builtin_sym_end, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213072,22 +232605,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_COLON2, - [88062] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [103789] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6121), 1, + aux_sym__immediate_decimal_token5, + STATE(3097), 1, + sym_comment, + ACTIONS(1958), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1956), 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, + [103817] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5506), 1, + ACTIONS(5774), 1, anon_sym_EQ2, - STATE(2830), 1, - sym_comment, - STATE(3135), 1, - sym__flag_equals_value, - ACTIONS(4367), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4365), 11, + ACTIONS(6123), 1, sym__newline, + ACTIONS(6125), 1, + sym__space, + STATE(3098), 1, + sym_comment, + STATE(3231), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6127), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213098,12 +232655,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, - [88092] = 3, + anon_sym_RPAREN, + [103849] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2831), 1, + STATE(3099), 1, sym_comment, - ACTIONS(4680), 15, + ACTIONS(5925), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213119,19 +232677,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88116] = 6, - ACTIONS(103), 1, + [103873] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2832), 1, + ACTIONS(6039), 1, + sym_identifier, + ACTIONS(6041), 1, + sym__newline, + ACTIONS(6045), 1, + anon_sym_DOLLAR, + ACTIONS(6047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, + anon_sym_DASH_DASH, + ACTIONS(6051), 1, + anon_sym_DASH2, + ACTIONS(6129), 1, + anon_sym_PIPE, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3100), 1, sym_comment, - STATE(4646), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5581), 2, + STATE(3308), 1, + aux_sym_parameter_parens_repeat1, + STATE(3449), 1, + aux_sym__repeat_newline, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [103925] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6055), 1, + anon_sym_and2, + STATE(3101), 1, + sym_comment, + ACTIONS(5923), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(5579), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213143,17 +232732,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, - [88146] = 4, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [103951] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2833), 1, - sym_comment, - ACTIONS(5241), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5243), 13, + ACTIONS(6131), 1, sym__newline, + STATE(870), 1, + aux_sym__pipe_separator, + STATE(3102), 1, + sym_comment, + STATE(3595), 1, + aux_sym__repeat_newline, + ACTIONS(6134), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2452), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -213163,21 +232759,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, - [88172] = 6, - ACTIONS(103), 1, + [103983] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2834), 1, + STATE(3103), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2148), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2150), 11, + ACTIONS(6136), 15, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213189,16 +232778,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, - [88202] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [104007] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5253), 1, - anon_sym_EQ2, - STATE(2835), 1, + STATE(3104), 1, sym_comment, - ACTIONS(5255), 14, - sym__newline, + ACTIONS(2050), 3, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, + ACTIONS(2052), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213209,18 +232801,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_COLON2, - [88228] = 4, + sym__unquoted_pattern, + [104033] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2836), 1, + STATE(3105), 1, sym_comment, - ACTIONS(2501), 3, - ts_builtin_sym_end, + ACTIONS(5679), 2, sym__space, - anon_sym_LPAREN2, - ACTIONS(2503), 12, + anon_sym_EQ2, + ACTIONS(5681), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213232,20 +232822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [88254] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [104059] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2837), 1, - sym_comment, - ACTIONS(994), 2, - ts_builtin_sym_end, + ACTIONS(6001), 1, sym__space, - ACTIONS(996), 11, + STATE(3106), 1, + sym_comment, + STATE(3134), 1, + aux_sym_command_repeat1, + ACTIONS(6138), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213257,19 +232845,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, - [88284] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [104087] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2798), 1, + anon_sym_DASH2, + STATE(3107), 1, + sym_comment, + ACTIONS(2796), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104113] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2838), 1, + STATE(3108), 1, sym_comment, - ACTIONS(1018), 2, + ACTIONS(1956), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1016), 11, + anon_sym_LPAREN2, + ACTIONS(1958), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213281,16 +232890,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, - [88314] = 5, + sym__unquoted_pattern, + [104139] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2320), 1, + anon_sym_DASH2, + ACTIONS(6140), 1, + anon_sym_DOT_DOT2, + STATE(3109), 1, + sym_comment, + ACTIONS(6142), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2318), 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, + [104169] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - STATE(2839), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + STATE(3110), 1, sym_comment, - STATE(2867), 1, - aux_sym_attribute_repeat1, - ACTIONS(5679), 13, + STATE(4883), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3798), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(3800), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213302,18 +232939,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, - [88342] = 5, + [104199] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, + ACTIONS(6001), 1, sym__space, - STATE(2840), 1, + STATE(3111), 1, sym_comment, - STATE(2857), 1, - aux_sym_attribute_repeat1, - ACTIONS(5681), 13, + STATE(3135), 1, + aux_sym_command_repeat1, + ACTIONS(6144), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213327,12 +232962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88370] = 3, + [104227] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2841), 1, + STATE(3112), 1, sym_comment, - ACTIONS(5150), 15, + ACTIONS(5687), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213348,16 +232983,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88394] = 4, + [104251] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2280), 1, + anon_sym_DASH2, + ACTIONS(6146), 1, + anon_sym_DOT_DOT2, + STATE(3113), 1, + sym_comment, + ACTIONS(6148), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2278), 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, + [104281] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5241), 1, + ACTIONS(5894), 1, anon_sym_EQ2, - STATE(2842), 1, + STATE(3114), 1, sym_comment, - ACTIONS(5243), 14, - sym__newline, + STATE(3401), 1, + sym__flag_equals_value, + ACTIONS(3840), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(3842), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213368,37 +233031,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_RBRACE, - anon_sym_COLON2, - [88420] = 4, + [104311] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2521), 1, + ACTIONS(2234), 1, anon_sym_DASH2, - STATE(2843), 1, + ACTIONS(6150), 1, + anon_sym_DOT_DOT2, + STATE(3115), 1, sym_comment, - ACTIONS(2519), 14, + ACTIONS(6152), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2232), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [88446] = 3, - ACTIONS(3), 1, + [104341] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2844), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + STATE(3116), 1, sym_comment, - ACTIONS(5269), 15, + ACTIONS(2094), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2096), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213410,15 +233079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88470] = 3, + [104371] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2845), 1, + ACTIONS(6061), 1, + anon_sym_and2, + STATE(3117), 1, sym_comment, - ACTIONS(5150), 15, + ACTIONS(5925), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213431,25 +233099,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88494] = 7, + [104397] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5683), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2846), 1, + ACTIONS(6055), 1, + anon_sym_and2, + ACTIONS(6057), 1, + anon_sym_xor2, + STATE(3118), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5686), 3, + ACTIONS(5923), 13, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -213459,80 +233123,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, - [88526] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5692), 1, - anon_sym_PIPE, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2847), 1, - sym_comment, - STATE(2852), 1, - aux_sym__repeat_newline, - STATE(3179), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [88578] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, - anon_sym_DQUOTE, - ACTIONS(3226), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5702), 1, - aux_sym_env_var_token1, - STATE(2848), 1, - sym_comment, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - STATE(4745), 2, - sym_val_string, - sym_val_interpolated, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [88622] = 3, - ACTIONS(3), 1, + anon_sym_or2, + [104425] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2849), 1, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(3119), 1, sym_comment, - ACTIONS(5704), 15, - anon_sym_else, - anon_sym_catch, + ACTIONS(1014), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1016), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213544,15 +233148,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, - [88646] = 3, - ACTIONS(3), 1, + [104455] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2850), 1, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(3120), 1, sym_comment, - ACTIONS(5269), 15, + ACTIONS(1032), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1024), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213564,15 +233172,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88670] = 3, + [104485] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2851), 1, + ACTIONS(6061), 1, + anon_sym_and2, + ACTIONS(6063), 1, + anon_sym_xor2, + STATE(3121), 1, sym_comment, - ACTIONS(5150), 15, + ACTIONS(5925), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213585,50 +233194,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [88694] = 17, + [104513] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(6035), 1, + anon_sym_DOT_DOT2, + ACTIONS(6156), 1, + anon_sym_DASH2, + STATE(3122), 1, + sym_comment, + ACTIONS(6037), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6154), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(5690), 1, sym__newline, - ACTIONS(5694), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5706), 1, - anon_sym_PIPE, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2852), 1, - sym_comment, - STATE(3151), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [88746] = 3, + [104543] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2853), 1, + STATE(3123), 1, sym_comment, - ACTIONS(5269), 15, + ACTIONS(5558), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213644,13 +233240,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88770] = 3, - ACTIONS(3), 1, + [104567] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2854), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(3124), 1, sym_comment, - ACTIONS(5624), 15, + ACTIONS(2104), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2106), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213662,39 +233264,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_and2, - anon_sym_xor2, - anon_sym_or2, - [88794] = 3, + [104597] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2855), 1, + ACTIONS(6158), 1, + anon_sym_LBRACK2, + STATE(3125), 1, sym_comment, - ACTIONS(5626), 15, - ts_builtin_sym_end, + ACTIONS(2250), 2, + anon_sym_LBRACK, + anon_sym_DASH2, + ACTIONS(2248), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [88818] = 4, - ACTIONS(3), 1, + 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, + [104625] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - STATE(2856), 1, + STATE(3126), 1, sym_comment, - ACTIONS(5624), 14, - ts_builtin_sym_end, + ACTIONS(2274), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2276), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213706,17 +233307,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_xor2, - anon_sym_or2, - [88844] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [104651] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5710), 1, + ACTIONS(904), 1, sym__space, - STATE(2857), 2, + ACTIONS(5372), 1, + sym__unquoted_pattern, + STATE(3127), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5708), 13, + ACTIONS(815), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213730,62 +233332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88870] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - STATE(2858), 1, - sym_comment, - ACTIONS(5626), 14, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [88896] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - ACTIONS(5650), 1, - anon_sym_xor2, - STATE(2859), 1, - sym_comment, - ACTIONS(5624), 13, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [88924] = 5, - ACTIONS(3), 1, + [104679] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - STATE(2860), 1, + STATE(3128), 1, sym_comment, - ACTIONS(5626), 13, - ts_builtin_sym_end, + ACTIONS(5693), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5695), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213797,14 +233352,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [88952] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [104705] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2861), 1, + ACTIONS(6001), 1, + sym__space, + STATE(3111), 1, + aux_sym_command_repeat1, + STATE(3129), 1, sym_comment, - ACTIONS(5631), 15, - ts_builtin_sym_end, + ACTIONS(5770), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213816,61 +233375,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_and2, - anon_sym_xor2, - anon_sym_or2, - [88976] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [104733] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2862), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(2804), 1, + anon_sym_LPAREN2, + STATE(3130), 1, sym_comment, - ACTIONS(5633), 15, + ACTIONS(2715), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2717), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [89000] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2863), 1, - sym_comment, - ACTIONS(1556), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1558), 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, - [89026] = 4, - 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, + [104763] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - STATE(2864), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + STATE(3131), 1, sym_comment, - ACTIONS(5631), 14, + STATE(5247), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2224), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2226), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213882,17 +233425,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_xor2, - anon_sym_or2, - [89052] = 4, - ACTIONS(3), 1, + [104793] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - STATE(2865), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + STATE(3132), 1, sym_comment, - ACTIONS(5633), 14, + STATE(5247), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2286), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2288), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213904,21 +233449,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_xor2, - anon_sym_or2, - [89078] = 6, + [104823] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5644), 1, + ACTIONS(6035), 1, anon_sym_DOT_DOT2, - ACTIONS(5715), 1, + ACTIONS(6162), 1, anon_sym_DASH2, - STATE(2866), 1, + STATE(3133), 1, sym_comment, - ACTIONS(5646), 2, + ACTIONS(6037), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5713), 11, + ACTIONS(6160), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -213930,16 +233473,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89108] = 5, + [104853] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, + ACTIONS(6001), 1, sym__space, - STATE(2857), 1, - aux_sym_attribute_repeat1, - STATE(2867), 1, + STATE(3134), 1, sym_comment, - ACTIONS(5717), 13, + STATE(3135), 1, + aux_sym_command_repeat1, + ACTIONS(6164), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213953,38 +233496,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89136] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2868), 1, - sym_comment, - ACTIONS(1824), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1822), 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, - [89162] = 4, + [104881] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5221), 1, - anon_sym_EQ2, - STATE(2869), 1, + ACTIONS(6168), 1, + sym__space, + STATE(3135), 2, sym_comment, - ACTIONS(5223), 14, + aux_sym_command_repeat1, + ACTIONS(6166), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213995,18 +233516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [89188] = 4, + [104907] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_EQ2, - STATE(2870), 1, + STATE(3136), 1, sym_comment, - ACTIONS(5239), 14, - sym__newline, + ACTIONS(2306), 2, sym__space, + anon_sym_LPAREN2, + ACTIONS(2308), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214017,45 +233538,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [89214] = 6, + [104933] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - ACTIONS(5721), 1, - anon_sym_DASH2, - STATE(2871), 1, - sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5719), 11, - anon_sym_EQ, + ACTIONS(6039), 1, sym_identifier, + ACTIONS(6041), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6045), 1, anon_sym_DOLLAR, + ACTIONS(6047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, anon_sym_DASH_DASH, - [89244] = 6, + ACTIONS(6051), 1, + anon_sym_DASH2, + ACTIONS(6171), 1, + anon_sym_PIPE, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3100), 1, + aux_sym__repeat_newline, + STATE(3137), 1, + sym_comment, + STATE(3305), 1, + aux_sym_parameter_parens_repeat1, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [104985] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2639), 1, + ACTIONS(2758), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2760), 1, sym__unquoted_pattern, - STATE(2872), 1, + STATE(3138), 1, sym_comment, - ACTIONS(2635), 2, + ACTIONS(2742), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2637), 11, + ACTIONS(2744), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214067,19 +233599,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, - [89274] = 6, + [105015] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2873), 1, + STATE(3139), 1, sym_comment, - ACTIONS(2575), 2, - ts_builtin_sym_end, + ACTIONS(5675), 2, sym__space, - ACTIONS(2577), 11, + anon_sym_EQ2, + ACTIONS(5677), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214091,14 +233619,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, - [89304] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [105041] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5257), 1, + ACTIONS(5661), 1, anon_sym_EQ2, - STATE(2874), 1, + STATE(3140), 1, sym_comment, - ACTIONS(5259), 14, + ACTIONS(5663), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -214113,19 +233643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [89330] = 6, + [105067] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2875), 1, + STATE(3141), 1, sym_comment, - ACTIONS(1974), 2, - ts_builtin_sym_end, + ACTIONS(5683), 2, sym__space, - ACTIONS(1976), 11, + anon_sym_EQ2, + ACTIONS(5685), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214137,21 +233663,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, - [89360] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [105093] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2876), 1, + ACTIONS(2222), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(6173), 1, + sym__newline, + STATE(3142), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(1706), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1619), 11, + ACTIONS(2217), 11, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [105120] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6100), 1, sym__newline, + STATE(870), 1, + aux_sym__pipe_separator, + STATE(3143), 1, + sym_comment, + STATE(3595), 1, + aux_sym__repeat_newline, + ACTIONS(6103), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2452), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -214161,19 +233711,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, - [89390] = 6, + [105151] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2877), 1, - sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2170), 2, - ts_builtin_sym_end, + ACTIONS(2386), 1, sym__space, - ACTIONS(2172), 11, + STATE(3144), 1, + sym_comment, + ACTIONS(2388), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214185,19 +233730,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, - [89420] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [105176] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2878), 1, - sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2072), 2, - ts_builtin_sym_end, + ACTIONS(2390), 1, sym__space, - ACTIONS(2074), 11, + STATE(3145), 1, + sym_comment, + ACTIONS(2392), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214209,86 +233751,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, - [89450] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5723), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2879), 1, - sym_comment, - STATE(3198), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89502] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5725), 1, anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2880), 1, - sym_comment, - STATE(3083), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89554] = 5, + anon_sym_RBRACE, + [105201] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2128), 1, + ACTIONS(2394), 1, sym__space, - ACTIONS(5727), 1, - anon_sym_LBRACK2, - STATE(2881), 1, + STATE(3146), 1, sym_comment, - ACTIONS(2130), 13, + ACTIONS(2396), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214302,19 +233774,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89582] = 6, + [105226] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2882), 1, - sym_comment, - ACTIONS(1736), 2, - ts_builtin_sym_end, + ACTIONS(2398), 1, sym__space, - ACTIONS(1738), 11, + STATE(3147), 1, + sym_comment, + ACTIONS(2400), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214326,62 +233793,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, - [89612] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token5, - STATE(2883), 1, - sym_comment, - ACTIONS(1738), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [89640] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_DASH2, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - STATE(2884), 1, - sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [89670] = 4, + anon_sym_RBRACE, + [105251] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2885), 1, - sym_comment, - ACTIONS(5253), 2, + ACTIONS(2402), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5255), 13, + STATE(3148), 1, + sym_comment, + ACTIONS(2404), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214395,78 +233816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89696] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2154), 1, - anon_sym_DASH2, - ACTIONS(5731), 1, - anon_sym_DOT_DOT2, - STATE(2886), 1, - sym_comment, - ACTIONS(5733), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [89726] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5735), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2887), 1, - sym_comment, - STATE(2901), 1, - aux_sym__repeat_newline, - STATE(3171), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89778] = 6, + [105276] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2888), 1, - sym_comment, - ACTIONS(2523), 2, - ts_builtin_sym_end, + ACTIONS(2406), 1, sym__space, - ACTIONS(2525), 11, + STATE(3149), 1, + sym_comment, + ACTIONS(2408), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214478,52 +233835,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, - [89808] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5737), 1, anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2889), 1, - sym_comment, - STATE(2902), 1, - aux_sym__repeat_newline, - STATE(3174), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89860] = 5, + anon_sym_RBRACE, + [105301] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - STATE(2890), 1, + STATE(3150), 1, sym_comment, - ACTIONS(5633), 13, + ACTIONS(6073), 14, ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214535,15 +233857,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_or2, - [89888] = 3, - ACTIONS(3), 1, + [105324] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2891), 1, + ACTIONS(2410), 1, + sym__space, + STATE(3151), 1, sym_comment, - ACTIONS(5739), 15, - anon_sym_else, - anon_sym_catch, + ACTIONS(2412), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214557,50 +233878,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89912] = 11, + [105349] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(5741), 1, - anon_sym_DOT, - STATE(2892), 1, - sym_comment, - STATE(3577), 1, - sym__immediate_decimal, - ACTIONS(5743), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3636), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 4, - anon_sym_if, + ACTIONS(6176), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [89952] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - STATE(2893), 1, + STATE(790), 1, + aux_sym__pipe_separator, + STATE(3152), 1, sym_comment, - STATE(3081), 1, - sym__flag_equals_value, - ACTIONS(5622), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5620), 11, - sym__newline, + STATE(3595), 1, + aux_sym__repeat_newline, + ACTIONS(6179), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2452), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -214610,19 +233902,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, - [89982] = 6, + [105380] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2894), 1, - sym_comment, - ACTIONS(2567), 2, - ts_builtin_sym_end, + ACTIONS(904), 1, sym__space, - ACTIONS(2569), 11, + STATE(3153), 1, + sym_comment, + ACTIONS(815), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214634,41 +233921,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, - [90012] = 7, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [105405] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5747), 1, - ts_builtin_sym_end, - ACTIONS(5749), 1, - sym__space, - STATE(2895), 1, + ACTIONS(1016), 1, + anon_sym_DASH2, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern_in_record, + STATE(3154), 1, sym_comment, - STATE(3009), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 11, + ACTIONS(1014), 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, - [90044] = 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, + [105434] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(1856), 1, sym__space, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2896), 1, + STATE(3155), 1, sym_comment, - ACTIONS(868), 13, + ACTIONS(1750), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214682,15 +233967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90072] = 4, + [105459] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2897), 1, - sym_comment, - ACTIONS(5287), 2, + ACTIONS(2260), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5289), 13, + STATE(3156), 1, + sym_comment, + ACTIONS(2262), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214704,37 +233988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90098] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5751), 1, - anon_sym_LBRACK2, - STATE(2898), 1, - sym_comment, - ACTIONS(2130), 2, - anon_sym_LBRACK, - anon_sym_DASH2, - ACTIONS(2128), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90126] = 4, + [105484] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1860), 1, + ACTIONS(2420), 1, anon_sym_DASH2, - STATE(2899), 1, + STATE(3157), 1, sym_comment, - ACTIONS(1858), 14, + ACTIONS(2418), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -214746,112 +234007,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90152] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2900), 1, - sym_comment, - ACTIONS(1643), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1641), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [90178] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5753), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2901), 1, - sym_comment, - STATE(3202), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90230] = 17, + [105509] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, + ACTIONS(6181), 1, + anon_sym_else, + ACTIONS(6183), 1, sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5755), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2902), 1, + STATE(3158), 1, sym_comment, - STATE(3172), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, + STATE(3268), 1, aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90282] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2903), 1, - sym_comment, - ACTIONS(1726), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 12, - sym__newline, + ACTIONS(6186), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214862,16 +234031,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, - sym__unquoted_pattern, - [90308] = 4, + anon_sym_RPAREN, + [105538] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2904), 1, + STATE(3159), 1, sym_comment, - ACTIONS(2092), 2, + ACTIONS(2274), 3, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(2094), 13, + ACTIONS(2276), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214883,18 +234053,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, - [90334] = 5, + [105563] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, + ACTIONS(2667), 1, sym__space, - STATE(2840), 1, - aux_sym_attribute_repeat1, - STATE(2905), 1, + STATE(3160), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(2669), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214908,39 +234074,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90362] = 6, + [105588] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, + ACTIONS(2424), 1, anon_sym_DASH2, - ACTIONS(5757), 1, - anon_sym_DOT_DOT2, - STATE(2906), 1, + STATE(3161), 1, sym_comment, - ACTIONS(5759), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 11, + ACTIONS(2422), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90392] = 4, + [105613] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2907), 1, - sym_comment, - ACTIONS(5221), 2, + ACTIONS(2788), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5223), 13, + STATE(3162), 1, + sym_comment, + ACTIONS(2790), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214954,16 +234116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90418] = 4, - ACTIONS(103), 1, + [105638] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2908), 1, - sym_comment, - ACTIONS(5237), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5239), 13, + ACTIONS(6188), 1, + anon_sym_catch, + ACTIONS(6190), 1, sym__newline, + STATE(3163), 1, + sym_comment, + STATE(3201), 1, + aux_sym__repeat_newline, + ACTIONS(6193), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214975,80 +234139,63 @@ static 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, - [90444] = 6, + [105667] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2078), 1, - anon_sym_DASH2, - ACTIONS(5761), 1, - anon_sym_DOT_DOT2, - STATE(2909), 1, - sym_comment, - ACTIONS(5763), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6195), 1, + anon_sym_else, + ACTIONS(6197), 1, sym__newline, + STATE(3164), 1, + sym_comment, + STATE(3269), 1, + aux_sym__repeat_newline, + ACTIONS(6200), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90474] = 17, + [105696] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, + ACTIONS(6202), 1, + anon_sym_else, + ACTIONS(6204), 1, sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5765), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2879), 1, - aux_sym__repeat_newline, - STATE(2910), 1, + STATE(3165), 1, sym_comment, - STATE(3077), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90526] = 7, + STATE(3270), 1, + aux_sym__repeat_newline, + ACTIONS(6207), 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, + [105725] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5330), 1, + STATE(3166), 1, + sym_comment, + ACTIONS(5667), 3, + ts_builtin_sym_end, + sym__space, anon_sym_EQ2, - ACTIONS(5767), 1, + ACTIONS(5669), 11, sym__newline, - ACTIONS(5769), 1, - sym__space, - STATE(2911), 1, - sym_comment, - STATE(3033), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5771), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215059,55 +234206,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, - [90558] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5773), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2880), 1, - aux_sym__repeat_newline, - STATE(2912), 1, - sym_comment, - STATE(3088), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90610] = 6, + [105750] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, + ACTIONS(6211), 1, + anon_sym_AT2, + ACTIONS(6213), 1, anon_sym_DASH2, - ACTIONS(5775), 1, - anon_sym_DOT_DOT2, - STATE(2913), 1, + STATE(3167), 1, sym_comment, - ACTIONS(5777), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 11, + STATE(3548), 1, + sym_param_completer, + ACTIONS(6209), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -215119,41 +234229,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90640] = 4, - ACTIONS(3), 1, + [105779] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2593), 1, - anon_sym_DASH2, - STATE(2914), 1, + ACTIONS(3926), 1, + sym__space, + STATE(3168), 1, sym_comment, - ACTIONS(2591), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(3928), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_RBRACE, + [105804] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(3055), 1, anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90666] = 5, + STATE(3169), 1, + sym_comment, + STATE(4104), 1, + sym__immediate_decimal, + ACTIONS(6215), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6217), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(731), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1734), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [105841] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - ACTIONS(5650), 1, - anon_sym_xor2, - STATE(2915), 1, + ACTIONS(6131), 1, + sym__newline, + STATE(870), 1, + aux_sym__pipe_separator, + STATE(3170), 1, sym_comment, - ACTIONS(5631), 13, + STATE(3595), 1, + aux_sym__repeat_newline, + ACTIONS(6134), 2, ts_builtin_sym_end, - sym__newline, anon_sym_SEMI, + ACTIONS(2452), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215163,19 +234301,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [90694] = 6, + [105872] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(5783), 1, + ACTIONS(1024), 1, anon_sym_DASH2, - STATE(2916), 1, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern_in_record, + STATE(3171), 1, sym_comment, - STATE(3241), 1, - sym_param_completer, - ACTIONS(5779), 11, + ACTIONS(1032), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -215187,18 +234324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90723] = 6, + [105901] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(2046), 1, sym__space, - STATE(2917), 1, + STATE(3172), 1, sym_comment, - STATE(3043), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5785), 11, + ACTIONS(2048), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215210,21 +234344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90752] = 7, - ACTIONS(3), 1, + anon_sym_RBRACE, + [105926] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5787), 1, - sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(2918), 1, + ACTIONS(2800), 1, + sym__space, + STATE(3173), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5790), 2, + ACTIONS(2802), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215234,18 +234364,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, - [90783] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [105951] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5792), 1, - anon_sym_else, - ACTIONS(5794), 1, - sym__newline, - STATE(2919), 1, + ACTIONS(2738), 1, + sym__space, + STATE(3174), 1, sym_comment, - STATE(3047), 1, - aux_sym__repeat_newline, - ACTIONS(5797), 11, + ACTIONS(2740), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215257,15 +234386,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90812] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [105976] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2268), 1, - sym__space, - STATE(2920), 1, + ACTIONS(2764), 1, + anon_sym_DASH2, + ACTIONS(2766), 1, + anon_sym_LPAREN2, + ACTIONS(2768), 1, + sym__unquoted_pattern_in_record, + STATE(3175), 1, + sym_comment, + ACTIONS(2762), 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, + [106005] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2096), 1, + anon_sym_DASH2, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + STATE(3176), 1, sym_comment, - ACTIONS(2270), 13, + ACTIONS(2094), 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, + [106034] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6219), 1, + anon_sym_catch, + ACTIONS(6221), 1, + sym__newline, + STATE(3177), 1, + sym_comment, + STATE(3272), 1, + aux_sym__repeat_newline, + ACTIONS(6224), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215277,15 +234456,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, - [90837] = 4, + [106063] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2272), 1, + ACTIONS(2338), 1, sym__space, - STATE(2921), 1, + STATE(3178), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(2340), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215299,16 +234477,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90862] = 4, + [106088] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2922), 1, - sym_comment, - ACTIONS(5241), 3, - ts_builtin_sym_end, + ACTIONS(3667), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5243), 11, + STATE(3179), 1, + sym_comment, + ACTIONS(3669), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215320,37 +234496,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, - [90887] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_DOT, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token5, - STATE(2923), 1, - sym_comment, - ACTIONS(1738), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1736), 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, - [90916] = 4, + anon_sym_RBRACE, + [106113] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, + ACTIONS(2416), 1, anon_sym_DASH2, - STATE(2924), 1, + STATE(3180), 1, sym_comment, - ACTIONS(2254), 13, + ACTIONS(2414), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215364,14 +234519,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90941] = 4, + [106138] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, + ACTIONS(2416), 1, anon_sym_DASH2, - STATE(2925), 1, + STATE(3181), 1, sym_comment, - ACTIONS(2254), 13, + ACTIONS(2414), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215385,17 +234540,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90966] = 5, + [106163] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5799), 1, + STATE(3182), 1, + sym_comment, + ACTIONS(5683), 3, ts_builtin_sym_end, - ACTIONS(5801), 1, sym__space, - STATE(2926), 2, - sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5708), 11, + anon_sym_EQ2, + ACTIONS(5685), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215407,18 +234561,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, - [90993] = 6, + [106188] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5806), 1, + ACTIONS(6211), 1, + anon_sym_AT2, + ACTIONS(6228), 1, anon_sym_DASH2, - STATE(2927), 1, + STATE(3183), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5804), 11, + STATE(3513), 1, + sym_param_completer, + ACTIONS(6226), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -215430,42 +234584,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91022] = 6, + [106217] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5810), 1, - anon_sym_DASH2, - STATE(2928), 1, + ACTIONS(6230), 1, + anon_sym_else, + ACTIONS(6232), 1, + sym__newline, + STATE(3165), 1, + aux_sym__repeat_newline, + STATE(3184), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5808), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6235), 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, + [106246] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6237), 1, + anon_sym_catch, + ACTIONS(6239), 1, sym__newline, + STATE(3177), 1, + aux_sym__repeat_newline, + STATE(3185), 1, + sym_comment, + ACTIONS(6242), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91051] = 6, + [106275] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3896), 1, + sym__space, + STATE(3186), 1, + sym_comment, + ACTIONS(3898), 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, + [106300] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3187), 1, + sym_comment, + ACTIONS(2306), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2308), 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, + [106325] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5747), 1, - ts_builtin_sym_end, - ACTIONS(5749), 1, - sym__space, - STATE(2929), 1, - sym_comment, - STATE(3009), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 11, + ACTIONS(2366), 1, + sym__space, + STATE(3188), 1, + sym_comment, + ACTIONS(2368), 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, + [106350] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6244), 1, + anon_sym_else, + ACTIONS(6246), 1, sym__newline, + STATE(3189), 1, + sym_comment, + STATE(3195), 1, + aux_sym__repeat_newline, + ACTIONS(6249), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215476,14 +234715,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, - [91080] = 4, + anon_sym_RPAREN, + [106379] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2671), 1, sym__space, - STATE(2930), 1, + STATE(3190), 1, sym_comment, - ACTIONS(2154), 13, + ACTIONS(2673), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215497,14 +234737,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91105] = 4, + [106404] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2202), 1, + ACTIONS(2675), 1, sym__space, - STATE(2931), 1, + STATE(3191), 1, sym_comment, - ACTIONS(2204), 13, + ACTIONS(2677), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215518,14 +234758,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91130] = 4, + [106429] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2591), 1, + ACTIONS(2679), 1, sym__space, - STATE(2932), 1, + STATE(3192), 1, sym_comment, - ACTIONS(2593), 13, + ACTIONS(2681), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215539,14 +234779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91155] = 4, + [106454] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4651), 1, + ACTIONS(2683), 1, sym__space, - STATE(2933), 1, + STATE(3193), 1, sym_comment, - ACTIONS(4649), 13, + ACTIONS(2685), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215560,37 +234800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91180] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2204), 1, - anon_sym_DASH2, - STATE(2934), 1, - sym_comment, - ACTIONS(2202), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91205] = 4, + [106479] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2935), 1, - sym_comment, - ACTIONS(2084), 3, + ACTIONS(6105), 1, ts_builtin_sym_end, + ACTIONS(6107), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2086), 11, + STATE(3194), 1, + sym_comment, + STATE(3286), 1, + aux_sym_command_repeat1, + ACTIONS(5770), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215602,39 +234823,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, - [91230] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2609), 1, - anon_sym_DASH2, - STATE(2936), 1, - sym_comment, - ACTIONS(2607), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91255] = 6, + [106508] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2219), 1, sym__newline, - ACTIONS(5812), 1, + ACTIONS(6251), 1, anon_sym_else, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(2937), 1, + STATE(3195), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(2217), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215646,40 +234846,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91284] = 7, + [106537] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5683), 1, + ACTIONS(2219), 1, sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2938), 1, - sym_comment, - STATE(3365), 1, + ACTIONS(6254), 1, + anon_sym_else, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(5686), 2, - ts_builtin_sym_end, - anon_sym_SEMI, - ACTIONS(2303), 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, - [91315] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2939), 1, + STATE(3196), 1, sym_comment, - ACTIONS(5704), 14, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, - sym__newline, + ACTIONS(2217), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215690,16 +234868,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, - [91338] = 4, + anon_sym_RPAREN, + [106566] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2940), 1, - sym_comment, - ACTIONS(5287), 3, - ts_builtin_sym_end, + ACTIONS(2378), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5289), 11, + STATE(3197), 1, + sym_comment, + ACTIONS(2380), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215711,87 +234888,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, - [91363] = 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + [106591] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(3055), 1, anon_sym_DOLLAR, - STATE(2941), 1, + STATE(3198), 1, sym_comment, - STATE(3635), 1, + STATE(4230), 1, sym__immediate_decimal, - ACTIONS(5743), 2, + ACTIONS(6215), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5745), 2, + ACTIONS(6217), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3634), 2, + STATE(749), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 4, + ACTIONS(1801), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [91400] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2513), 1, - anon_sym_DASH2, - STATE(2942), 1, - sym_comment, - ACTIONS(2511), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91425] = 4, - ACTIONS(3), 1, + [106628] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2517), 1, - anon_sym_DASH2, - STATE(2943), 1, + ACTIONS(2382), 1, + sym__space, + STATE(3199), 1, sym_comment, - ACTIONS(2515), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91450] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_else, - ACTIONS(5817), 1, + ACTIONS(2384), 13, sym__newline, - STATE(2944), 1, - sym_comment, - STATE(2963), 1, - aux_sym__repeat_newline, - ACTIONS(5820), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215803,41 +234937,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91479] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [106653] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5824), 1, - anon_sym_DASH2, - STATE(2945), 1, + ACTIONS(2719), 1, + sym__space, + STATE(3200), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5822), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91508] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5826), 1, - anon_sym_catch, - ACTIONS(5828), 1, + ACTIONS(2721), 13, sym__newline, - STATE(2946), 1, - sym_comment, - STATE(3048), 1, - aux_sym__repeat_newline, - ACTIONS(5831), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215849,15 +234958,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91537] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [106678] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2218), 1, - sym__space, - STATE(2947), 1, - sym_comment, - ACTIONS(2220), 13, + ACTIONS(6257), 1, + anon_sym_catch, + ACTIONS(6259), 1, sym__newline, + STATE(3201), 1, + sym_comment, + STATE(3249), 1, + aux_sym__repeat_newline, + ACTIONS(6262), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215869,91 +234982,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, - [91562] = 6, + [106707] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5835), 1, + ACTIONS(815), 1, anon_sym_DASH2, - STATE(2948), 1, + STATE(3202), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5833), 11, + ACTIONS(904), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91591] = 13, + [106732] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1734), 1, sym__entry_separator, - ACTIONS(1615), 1, + ACTIONS(1774), 1, sym__unquoted_pattern_in_list, - ACTIONS(1776), 1, + ACTIONS(1962), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6264), 1, anon_sym_LPAREN2, - ACTIONS(5839), 1, + ACTIONS(6266), 1, anon_sym_DOT, - ACTIONS(5841), 1, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, + ACTIONS(6270), 1, aux_sym__immediate_decimal_token2, - STATE(2949), 1, + STATE(3203), 1, sym_comment, - STATE(3606), 1, + STATE(3798), 1, sym__immediate_decimal, - ACTIONS(1598), 2, + ACTIONS(1738), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(5845), 2, + ACTIONS(6272), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3863), 2, + STATE(4032), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [91634] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5847), 1, - anon_sym_else, - ACTIONS(5849), 1, - sym__newline, - STATE(2950), 1, - sym_comment, - STATE(3057), 1, - aux_sym__repeat_newline, - ACTIONS(5852), 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, - [91663] = 4, + [106775] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, + ACTIONS(1750), 1, anon_sym_DASH2, - STATE(2951), 1, + STATE(3204), 1, sym_comment, - ACTIONS(2218), 13, + ACTIONS(1856), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215967,14 +235054,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91688] = 4, + [106800] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2260), 1, + ACTIONS(2262), 1, anon_sym_DASH2, - STATE(2952), 1, + STATE(3205), 1, sym_comment, - ACTIONS(2258), 13, + ACTIONS(2260), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215988,21 +235075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91713] = 7, + [106825] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5635), 1, + ACTIONS(2219), 1, sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2953), 1, - sym_comment, - STATE(3365), 1, + ACTIONS(6274), 1, + anon_sym_else, + STATE(675), 1, aux_sym__repeat_newline, - ACTIONS(5638), 2, - ts_builtin_sym_end, + STATE(3206), 1, + sym_comment, + ACTIONS(2217), 11, anon_sym_SEMI, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216012,35 +235097,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, - [91744] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2264), 1, - anon_sym_DASH2, - STATE(2954), 1, - sym_comment, - ACTIONS(2262), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91769] = 4, + [106854] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5856), 1, + ACTIONS(2414), 1, sym__space, - STATE(2955), 1, + STATE(3207), 1, sym_comment, - ACTIONS(5854), 13, + ACTIONS(2416), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216054,14 +235119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91794] = 4, + [106879] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(2414), 1, sym__space, - STATE(2956), 1, + STATE(3208), 1, sym_comment, - ACTIONS(4631), 13, + ACTIONS(2416), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216075,18 +235140,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91819] = 6, + [106904] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5749), 1, + ACTIONS(3938), 1, sym__space, - ACTIONS(5858), 1, - ts_builtin_sym_end, - STATE(2926), 1, - aux_sym_attribute_repeat1, - STATE(2957), 1, + STATE(3209), 1, sym_comment, - ACTIONS(5717), 11, + ACTIONS(3940), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216098,16 +235159,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, - [91848] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [106929] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2958), 1, + ACTIONS(6277), 1, + anon_sym_catch, + STATE(3210), 1, sym_comment, - ACTIONS(5253), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5255), 11, + ACTIONS(6279), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216119,92 +235180,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91873] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [106954] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2959), 1, + ACTIONS(2669), 1, + anon_sym_DASH2, + STATE(3211), 1, sym_comment, - ACTIONS(5221), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5223), 11, + ACTIONS(2667), 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, - [91898] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5860), 1, - anon_sym_DOT, - ACTIONS(5862), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, - aux_sym__immediate_decimal_token2, - STATE(2960), 1, - sym_comment, - STATE(3598), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3872), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [91941] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106979] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5642), 1, + ACTIONS(2790), 1, anon_sym_DASH2, - STATE(2961), 1, + STATE(3212), 1, sym_comment, - STATE(4655), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5640), 11, + ACTIONS(2788), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91970] = 6, + [107004] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1787), 1, + anon_sym_DOT, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(3213), 1, + sym_comment, + STATE(3910), 1, + sym__immediate_decimal, + ACTIONS(6113), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6115), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3909), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1783), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [107041] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5749), 1, + ACTIONS(6107), 1, sym__space, - ACTIONS(5868), 1, + ACTIONS(6281), 1, ts_builtin_sym_end, - STATE(2957), 1, - aux_sym_attribute_repeat1, - STATE(2962), 1, + STATE(3214), 1, sym_comment, - ACTIONS(5679), 11, + STATE(3292), 1, + aux_sym_command_repeat1, + ACTIONS(6164), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216216,18 +235274,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, - [91999] = 6, - ACTIONS(3), 1, + [107070] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(5870), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2963), 1, + ACTIONS(2418), 1, + sym__space, + STATE(3215), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(2420), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216239,18 +235294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92028] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [107095] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(5873), 1, - anon_sym_catch, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2964), 1, + ACTIONS(2422), 1, + sym__space, + STATE(3216), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(2424), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216262,58 +235315,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92057] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [107120] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2965), 1, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2752), 1, + anon_sym_DASH2, + STATE(3217), 1, sym_comment, - ACTIONS(5237), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5239), 11, + ACTIONS(2750), 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, - [92082] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107149] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5876), 1, - anon_sym_catch, - ACTIONS(5878), 1, - sym__newline, - STATE(2966), 1, + ACTIONS(2106), 1, + anon_sym_DASH2, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern_in_record, + STATE(3218), 1, sym_comment, - STATE(3042), 1, - aux_sym__repeat_newline, - ACTIONS(5881), 11, - anon_sym_SEMI, + ACTIONS(2104), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [92111] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107178] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5885), 1, + ACTIONS(2016), 1, sym__space, - STATE(2967), 1, + STATE(3219), 1, sym_comment, - ACTIONS(5883), 13, + ACTIONS(2018), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216327,39 +235383,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92136] = 4, - ACTIONS(103), 1, + [107203] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__space, - STATE(2968), 1, + ACTIONS(5542), 1, + anon_sym_LPAREN2, + ACTIONS(6285), 1, + anon_sym_DASH2, + STATE(3220), 1, sym_comment, - ACTIONS(1860), 13, + STATE(5189), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6283), 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, - [92161] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107232] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(5542), 1, anon_sym_LPAREN2, - ACTIONS(5715), 1, + ACTIONS(6289), 1, anon_sym_DASH2, - STATE(2969), 1, + STATE(3221), 1, sym_comment, - STATE(4655), 1, + STATE(5189), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6287), 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, + [107261] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5542), 1, + anon_sym_LPAREN2, + ACTIONS(6293), 1, + anon_sym_DASH2, + STATE(3222), 1, + sym_comment, + STATE(5189), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6291), 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, + [107290] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5542), 1, + anon_sym_LPAREN2, + ACTIONS(6297), 1, + anon_sym_DASH2, + STATE(3223), 1, + sym_comment, + STATE(5189), 1, sym__expr_parenthesized_immediate, - ACTIONS(5713), 11, + ACTIONS(6295), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216371,15 +235475,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92190] = 4, + [107319] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5889), 1, + ACTIONS(6123), 1, + sym__newline, + ACTIONS(6125), 1, sym__space, - STATE(2970), 1, + STATE(3224), 1, sym_comment, - ACTIONS(5887), 13, - sym__newline, + STATE(3230), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6299), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216391,15 +235498,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_RBRACE, - [92215] = 4, + [107348] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5542), 1, + anon_sym_LPAREN2, + ACTIONS(6033), 1, + anon_sym_DASH2, + STATE(3225), 1, + sym_comment, + STATE(4936), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6031), 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, + [107377] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5346), 1, - sym__space, - STATE(2971), 1, + ACTIONS(6301), 1, + anon_sym_LBRACK2, + STATE(3226), 1, sym_comment, - ACTIONS(5344), 13, + ACTIONS(2248), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2250), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216411,16 +235543,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, + [107404] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1819), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2717), 1, + anon_sym_DASH2, + ACTIONS(2804), 1, + anon_sym_LPAREN2, + STATE(3227), 1, + sym_comment, + ACTIONS(2715), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [92240] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107433] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5893), 1, - sym__space, - STATE(2972), 1, + ACTIONS(5487), 1, + sym__unquoted_pattern, + STATE(3228), 1, sym_comment, - ACTIONS(5891), 13, + ACTIONS(904), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(815), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216432,17 +235588,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, - [92265] = 4, + [107460] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5897), 1, + ACTIONS(6123), 1, + sym__newline, + ACTIONS(6125), 1, sym__space, - STATE(2973), 1, + STATE(3224), 1, + aux_sym__command_parenthesized_repeat1, + STATE(3229), 1, sym_comment, - ACTIONS(5895), 13, - sym__newline, + ACTIONS(6303), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216454,16 +235611,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, - [92290] = 4, + [107489] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5901), 1, + ACTIONS(6305), 1, + sym__newline, + ACTIONS(6308), 1, sym__space, - STATE(2974), 1, + STATE(3230), 2, sym_comment, - ACTIONS(5899), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6311), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216475,16 +235633,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, - [92315] = 4, + [107516] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5905), 1, + ACTIONS(6123), 1, + sym__newline, + ACTIONS(6125), 1, sym__space, - STATE(2975), 1, + STATE(3230), 1, + aux_sym__command_parenthesized_repeat1, + STATE(3231), 1, sym_comment, - ACTIONS(5903), 13, - sym__newline, + ACTIONS(6313), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216496,22 +235656,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, - [92340] = 7, - ACTIONS(3), 1, + [107545] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5907), 1, - sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(2976), 1, + STATE(3232), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5910), 2, + ACTIONS(5661), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5663), 11, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216521,14 +235677,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, - [92371] = 4, + [107570] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2198), 1, + ACTIONS(2294), 1, sym__space, - STATE(2977), 1, + STATE(3233), 1, sym_comment, - ACTIONS(2200), 13, + ACTIONS(2296), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216542,15 +235698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92396] = 4, + [107595] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2978), 1, - sym_comment, - ACTIONS(2503), 2, + ACTIONS(2744), 1, anon_sym_DASH2, + ACTIONS(2758), 1, + anon_sym_LPAREN2, + ACTIONS(2760), 1, sym__unquoted_pattern_in_record, - ACTIONS(2501), 12, + STATE(3234), 1, + sym_comment, + ACTIONS(2742), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216562,59 +235721,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [92421] = 4, - ACTIONS(103), 1, + [107624] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__space, - STATE(2979), 1, + ACTIONS(2802), 1, + anon_sym_DASH2, + STATE(3235), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2800), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [92446] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107649] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, + ACTIONS(2740), 1, anon_sym_DASH2, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_record, - STATE(2980), 1, + STATE(3236), 1, sym_comment, - ACTIONS(1706), 11, + ACTIONS(2738), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92475] = 4, + [107674] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3237), 1, + sym_comment, + ACTIONS(6136), 14, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [107697] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(3942), 1, sym__space, - STATE(2981), 1, + STATE(3238), 1, sym_comment, - ACTIONS(2078), 13, + ACTIONS(3944), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216628,14 +235804,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92500] = 4, + [107722] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(3710), 1, sym__space, - STATE(2982), 1, + STATE(3239), 1, sym_comment, - ACTIONS(2122), 13, + ACTIONS(3712), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216649,58 +235825,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92525] = 6, - ACTIONS(3), 1, + [107747] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1966), 1, - anon_sym_DASH2, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2983), 1, + ACTIONS(3954), 1, + sym__space, + STATE(3240), 1, sym_comment, - ACTIONS(1964), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3956), 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, - [92554] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [107772] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2984), 1, + ACTIONS(3962), 1, + sym__space, + STATE(3241), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(3964), 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, - [92579] = 4, + anon_sym_RBRACE, + [107797] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5914), 1, + ACTIONS(3966), 1, sym__space, - STATE(2985), 1, + STATE(3242), 1, sym_comment, - ACTIONS(5912), 13, + ACTIONS(3968), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216714,14 +235888,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92604] = 4, - ACTIONS(3), 1, + [107822] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5916), 1, - anon_sym_catch, - STATE(2986), 1, + ACTIONS(3970), 1, + sym__space, + STATE(3243), 1, sym_comment, - ACTIONS(5918), 13, + ACTIONS(3972), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216735,14 +235909,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92629] = 4, + [107847] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2222), 1, + ACTIONS(6107), 1, sym__space, - STATE(2987), 1, + ACTIONS(6315), 1, + ts_builtin_sym_end, + STATE(3214), 1, + aux_sym_command_repeat1, + STATE(3244), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(6138), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216754,16 +235932,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, - [92654] = 4, + [107876] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5581), 1, + ACTIONS(3798), 1, sym__space, - STATE(2988), 1, + STATE(3245), 1, sym_comment, - ACTIONS(5579), 13, + ACTIONS(3800), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216777,18 +235953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92679] = 6, + [107901] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2577), 1, - anon_sym_DASH2, - STATE(2989), 1, + STATE(3246), 1, sym_comment, - ACTIONS(2575), 11, + ACTIONS(2665), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(2663), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -216800,61 +235973,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92708] = 5, + anon_sym_LPAREN2, + [107926] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3247), 1, + sym_comment, + ACTIONS(5693), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5695), 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, + [107951] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5922), 1, - anon_sym_LT, - ACTIONS(5924), 1, + ACTIONS(2340), 1, anon_sym_DASH2, - STATE(2990), 1, + STATE(3248), 1, sym_comment, - ACTIONS(5920), 12, + ACTIONS(2338), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92735] = 6, + [107976] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1976), 1, - anon_sym_DASH2, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - STATE(2991), 1, - sym_comment, - ACTIONS(1974), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2219), 1, sym__newline, + ACTIONS(6317), 1, + anon_sym_catch, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3249), 1, + sym_comment, + ACTIONS(2217), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [92764] = 5, + [108005] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5924), 1, - anon_sym_DASH2, - ACTIONS(5926), 1, + ACTIONS(6322), 1, anon_sym_LT, - STATE(2992), 1, + ACTIONS(6324), 1, + anon_sym_DASH2, + STATE(3250), 1, sym_comment, - ACTIONS(5920), 12, + ACTIONS(6320), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -216867,18 +236061,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92791] = 6, + [108032] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2525), 1, + ACTIONS(6324), 1, anon_sym_DASH2, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2993), 1, + ACTIONS(6326), 1, + anon_sym_LT, + STATE(3251), 1, sym_comment, - ACTIONS(2523), 11, + ACTIONS(6320), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -216888,40 +236080,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92820] = 6, + [108059] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2569), 1, - anon_sym_DASH2, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, - STATE(2994), 1, - sym_comment, - ACTIONS(2567), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6328), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + STATE(790), 1, + aux_sym__pipe_separator, + STATE(3252), 1, + sym_comment, + STATE(3595), 1, + aux_sym__repeat_newline, + ACTIONS(6331), 2, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [92849] = 4, + ACTIONS(2452), 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, + [108090] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2995), 1, + STATE(3253), 1, sym_comment, - ACTIONS(1872), 2, + ACTIONS(1922), 2, anon_sym_DASH2, sym__unquoted_pattern_in_record, - ACTIONS(1870), 12, + ACTIONS(1920), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -216934,14 +236128,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [92874] = 4, + [108115] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2206), 1, + ACTIONS(3900), 1, sym__space, - STATE(2996), 1, + STATE(3254), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(3902), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216955,14 +236149,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92899] = 4, + [108140] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1750), 1, + anon_sym_DASH2, + ACTIONS(2746), 1, + anon_sym_LPAREN2, + ACTIONS(2748), 1, + sym__unquoted_pattern_in_record, + STATE(3255), 1, + sym_comment, + ACTIONS(1856), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108169] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(2428), 1, sym__space, - STATE(2997), 1, + STATE(3256), 1, sym_comment, - ACTIONS(2212), 13, + ACTIONS(2430), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216976,14 +236193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92924] = 4, + [108194] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2214), 1, + ACTIONS(2432), 1, sym__space, - STATE(2998), 1, + STATE(3257), 1, sym_comment, - ACTIONS(2216), 13, + ACTIONS(2434), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216997,66 +236214,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92949] = 11, + [108219] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(5928), 1, - anon_sym_DOT, - STATE(2999), 1, + STATE(3258), 1, sym_comment, - STATE(3680), 1, - sym__immediate_decimal, - ACTIONS(5930), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5932), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3636), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [92988] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2270), 1, + ACTIONS(1958), 2, anon_sym_DASH2, - STATE(3000), 1, - sym_comment, - ACTIONS(2268), 13, + sym__unquoted_pattern_in_record, + ACTIONS(1956), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93013] = 5, + anon_sym_LPAREN2, + [108244] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(3001), 1, - sym_comment, - ACTIONS(968), 2, - ts_builtin_sym_end, + ACTIONS(2796), 1, sym__space, - ACTIONS(868), 11, + STATE(3259), 1, + sym_comment, + ACTIONS(2798), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217068,14 +236254,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [93040] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [108269] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2274), 1, + ACTIONS(2368), 1, anon_sym_DASH2, - STATE(3002), 1, + STATE(3260), 1, sym_comment, - ACTIONS(2272), 13, + ACTIONS(2366), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -217089,14 +236277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93065] = 4, + [108294] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(3922), 1, sym__space, - STATE(3003), 1, + STATE(3261), 1, sym_comment, - ACTIONS(5249), 13, + ACTIONS(3924), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217110,63 +236298,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93090] = 10, + [108319] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(2673), 1, + anon_sym_DASH2, + STATE(3262), 1, + sym_comment, + ACTIONS(2671), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108344] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2677), 1, + anon_sym_DASH2, + STATE(3263), 1, + sym_comment, + ACTIONS(2675), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108369] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2681), 1, + anon_sym_DASH2, + STATE(3264), 1, + sym_comment, + ACTIONS(2679), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108394] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1639), 1, + ACTIONS(1774), 1, sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(3055), 1, anon_sym_DOLLAR, - STATE(3004), 1, + ACTIONS(6333), 1, + anon_sym_DOT, + STATE(3265), 1, sym_comment, - STATE(3926), 1, + STATE(3836), 1, sym__immediate_decimal, - ACTIONS(5934), 2, + ACTIONS(6335), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, + ACTIONS(6337), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(3911), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1631), 4, - anon_sym_if, + ACTIONS(1734), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [93127] = 4, - ACTIONS(103), 1, + [108433] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5940), 1, - sym__space, - STATE(3005), 1, + STATE(3266), 1, sym_comment, - ACTIONS(5938), 13, + ACTIONS(2052), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(2050), 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, - [93152] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [108458] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, - sym__space, - STATE(3006), 1, + ACTIONS(6339), 1, + anon_sym_else, + ACTIONS(6341), 1, + sym__newline, + STATE(3189), 1, + aux_sym__repeat_newline, + STATE(3267), 1, sym_comment, - ACTIONS(2228), 13, - sym__newline, + ACTIONS(6344), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217178,39 +236433,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, - [93177] = 6, + [108487] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2637), 1, - anon_sym_DASH2, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_record, - STATE(3007), 1, - sym_comment, - ACTIONS(2635), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6346), 1, + anon_sym_else, + ACTIONS(6348), 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, - [93206] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2230), 1, - sym__space, - STATE(3008), 1, + STATE(3196), 1, + aux_sym__repeat_newline, + STATE(3268), 1, sym_comment, - ACTIONS(2232), 13, - sym__newline, + ACTIONS(6351), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217222,20 +236456,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, - [93231] = 6, - ACTIONS(103), 1, + [108516] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5749), 1, - sym__space, - ACTIONS(5942), 1, - ts_builtin_sym_end, - STATE(2926), 1, - aux_sym_attribute_repeat1, - STATE(3009), 1, - sym_comment, - ACTIONS(5681), 11, + ACTIONS(6353), 1, + anon_sym_else, + ACTIONS(6355), 1, sym__newline, + STATE(3206), 1, + aux_sym__repeat_newline, + STATE(3269), 1, + sym_comment, + ACTIONS(6358), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217246,15 +236478,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, - [93260] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [108545] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2238), 1, - sym__space, - STATE(3010), 1, - sym_comment, - ACTIONS(2240), 13, + ACTIONS(2219), 1, sym__newline, + ACTIONS(6360), 1, + anon_sym_else, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3270), 1, + sym_comment, + ACTIONS(2217), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217266,16 +236502,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [93285] = 4, - ACTIONS(103), 1, + [108574] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2242), 1, - sym__space, - STATE(3011), 1, + ACTIONS(2380), 1, + anon_sym_DASH2, + STATE(3271), 1, sym_comment, - ACTIONS(2244), 13, + ACTIONS(2378), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108599] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2219), 1, sym__newline, + ACTIONS(6363), 1, + anon_sym_catch, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3272), 1, + sym_comment, + ACTIONS(2217), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217287,15 +236546,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, - [93310] = 4, + [108628] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(3930), 1, sym__space, - STATE(3012), 1, + STATE(3273), 1, sym_comment, - ACTIONS(2248), 13, + ACTIONS(3932), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217309,14 +236567,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93335] = 4, + [108653] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5542), 1, + anon_sym_LPAREN2, + ACTIONS(6156), 1, + anon_sym_DASH2, + STATE(3274), 1, + sym_comment, + STATE(4936), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6154), 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, + [108682] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2250), 1, + ACTIONS(3934), 1, sym__space, - STATE(3013), 1, + STATE(3275), 1, sym_comment, - ACTIONS(2252), 13, + ACTIONS(3936), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217330,41 +236611,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93360] = 6, + [108707] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(996), 1, + ACTIONS(2384), 1, anon_sym_DASH2, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(3014), 1, + STATE(3276), 1, sym_comment, - ACTIONS(994), 11, + ACTIONS(2382), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93389] = 6, + [108732] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1016), 1, + ACTIONS(6211), 1, + anon_sym_AT2, + ACTIONS(6368), 1, anon_sym_DASH2, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(3015), 1, + STATE(3277), 1, sym_comment, - ACTIONS(1018), 11, + STATE(3481), 1, + sym_param_completer, + ACTIONS(6366), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217376,56 +236655,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93418] = 4, - ACTIONS(103), 1, + [108761] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5247), 1, - sym__space, - STATE(3016), 1, + ACTIONS(2721), 1, + anon_sym_DASH2, + STATE(3278), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(2719), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [93443] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108786] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2537), 1, - sym__space, - STATE(3017), 1, + ACTIONS(6211), 1, + anon_sym_AT2, + ACTIONS(6213), 1, + anon_sym_DASH2, + STATE(3279), 1, sym_comment, - ACTIONS(2539), 13, + STATE(3527), 1, + sym_param_completer, + ACTIONS(6209), 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, - [93468] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108815] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2607), 1, - sym__space, - STATE(3018), 1, + STATE(3280), 1, sym_comment, - ACTIONS(2609), 13, + ACTIONS(5675), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5677), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217437,16 +236720,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, - [93493] = 4, + [108840] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2511), 1, + ACTIONS(2342), 1, sym__space, - STATE(3019), 1, + STATE(3281), 1, sym_comment, - ACTIONS(2513), 13, + ACTIONS(2344), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217460,14 +236741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93518] = 4, + [108865] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - STATE(3020), 1, + STATE(3282), 1, sym_comment, - ACTIONS(868), 13, + ACTIONS(5679), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5681), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217479,16 +236762,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, - [93543] = 4, + [108890] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(2318), 1, sym__space, - STATE(3021), 1, + STATE(3283), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(2320), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217502,14 +236783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93568] = 4, + [108915] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2515), 1, + ACTIONS(2278), 1, sym__space, - STATE(3022), 1, + STATE(3284), 1, sym_comment, - ACTIONS(2517), 13, + ACTIONS(2280), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217523,14 +236804,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93593] = 4, + [108940] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(2232), 1, sym__space, - STATE(3023), 1, + STATE(3285), 1, sym_comment, - ACTIONS(2114), 13, + ACTIONS(2234), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217544,37 +236825,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93618] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5721), 1, - anon_sym_DASH2, - STATE(3024), 1, - sym_comment, - STATE(4655), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5719), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93647] = 4, + [108965] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2519), 1, + ACTIONS(6107), 1, sym__space, - STATE(3025), 1, + ACTIONS(6370), 1, + ts_builtin_sym_end, + STATE(3286), 1, sym_comment, - ACTIONS(2521), 13, + STATE(3292), 1, + aux_sym_command_repeat1, + ACTIONS(6144), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217586,39 +236848,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, - [93672] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(5946), 1, - anon_sym_DASH2, - STATE(3026), 1, - sym_comment, - STATE(3284), 1, - sym_param_completer, - ACTIONS(5944), 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, - [93701] = 4, + [108994] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2505), 1, + ACTIONS(3982), 1, sym__space, - STATE(3027), 1, + STATE(3287), 1, sym_comment, - ACTIONS(2507), 13, + ACTIONS(3984), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217632,38 +236869,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93726] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5948), 1, - anon_sym_else, - ACTIONS(5950), 1, - sym__newline, - STATE(3028), 1, - sym_comment, - STATE(3044), 1, - aux_sym__repeat_newline, - ACTIONS(5953), 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, - [93755] = 3, - ACTIONS(3), 1, + [109019] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3029), 1, + ACTIONS(3986), 1, + sym__space, + STATE(3288), 1, sym_comment, - ACTIONS(5739), 14, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + ACTIONS(3988), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217675,14 +236888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [93778] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [109044] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2615), 1, + ACTIONS(3978), 1, sym__space, - STATE(3030), 1, + STATE(3289), 1, sym_comment, - ACTIONS(2617), 13, + ACTIONS(3980), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217696,18 +236911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93803] = 6, + [109069] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(6374), 1, sym__space, - STATE(2917), 1, - aux_sym__command_parenthesized_repeat1, - STATE(3031), 1, + STATE(3290), 1, sym_comment, - ACTIONS(5955), 11, + ACTIONS(6372), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217719,39 +236931,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93832] = 4, + anon_sym_RBRACE, + [109094] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2224), 1, + ACTIONS(5542), 1, + anon_sym_LPAREN2, + ACTIONS(6162), 1, anon_sym_DASH2, - STATE(3032), 1, + STATE(3291), 1, sym_comment, - ACTIONS(2222), 13, + STATE(4936), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6160), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93857] = 6, + [109123] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(6376), 1, + ts_builtin_sym_end, + ACTIONS(6378), 1, sym__space, - STATE(3033), 1, + STATE(3292), 2, sym_comment, - STATE(3043), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5957), 11, + aux_sym_command_repeat1, + ACTIONS(6166), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217762,36 +236977,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, - [93886] = 4, + [109150] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DASH2, - STATE(3034), 1, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5570), 1, + aux_sym__immediate_decimal_token5, + STATE(3293), 1, sym_comment, - ACTIONS(2537), 13, - anon_sym_EQ, + ACTIONS(1884), 2, sym_identifier, + anon_sym_DASH2, + ACTIONS(1882), 10, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93911] = 4, + [109179] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2617), 1, + ACTIONS(2434), 1, anon_sym_DASH2, - STATE(3035), 1, + STATE(3294), 1, sym_comment, - ACTIONS(2615), 13, + ACTIONS(2432), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -217805,14 +237021,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93936] = 4, + [109204] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5961), 1, + ACTIONS(2334), 1, sym__space, - STATE(3036), 1, + STATE(3295), 1, sym_comment, - ACTIONS(5959), 13, + ACTIONS(2336), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217826,14 +237042,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93961] = 4, + [109229] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5965), 1, + ACTIONS(2370), 1, sym__space, - STATE(3037), 1, + STATE(3296), 1, sym_comment, - ACTIONS(5963), 13, + ACTIONS(2372), 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, + [109254] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2374), 1, + sym__space, + STATE(3297), 1, + sym_comment, + ACTIONS(2376), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217847,14 +237084,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93986] = 4, + [109279] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2565), 1, + ACTIONS(2430), 1, anon_sym_DASH2, - STATE(3038), 1, + STATE(3298), 1, sym_comment, - ACTIONS(2563), 13, + ACTIONS(2428), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -217868,45 +237105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94011] = 10, - ACTIONS(3), 1, + [109304] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3039), 1, + ACTIONS(3657), 1, + sym__space, + STATE(3299), 1, sym_comment, - STATE(3909), 1, - sym__immediate_decimal, - ACTIONS(5934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [94048] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5967), 1, - anon_sym_else, - ACTIONS(5969), 1, + ACTIONS(3659), 13, sym__newline, - STATE(2944), 1, - aux_sym__repeat_newline, - STATE(3040), 1, - sym_comment, - ACTIONS(5972), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217918,18 +237125,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94077] = 6, + anon_sym_RBRACE, + [109329] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5974), 1, - anon_sym_catch, - ACTIONS(5976), 1, + ACTIONS(6355), 1, sym__newline, - STATE(2946), 1, - aux_sym__repeat_newline, - STATE(3041), 1, + ACTIONS(6381), 1, + anon_sym_else, + STATE(3300), 1, sym_comment, - ACTIONS(5979), 11, + STATE(3421), 1, + aux_sym__repeat_newline, + ACTIONS(6358), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217940,19 +237148,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, - [94106] = 6, + [109357] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5981), 1, - anon_sym_catch, - ACTIONS(5983), 1, - sym__newline, - STATE(2964), 1, - aux_sym__repeat_newline, - STATE(3042), 1, + STATE(3301), 1, sym_comment, - ACTIONS(5986), 11, + ACTIONS(6383), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217964,17 +237166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94135] = 5, + anon_sym_RBRACE, + [109379] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5988), 1, - sym__newline, - ACTIONS(5991), 1, - sym__space, - STATE(3043), 2, + STATE(3302), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5994), 11, + ACTIONS(2428), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2430), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217985,19 +237187,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, - [94162] = 6, + [109403] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_else, - ACTIONS(5998), 1, - sym__newline, - STATE(2937), 1, - aux_sym__repeat_newline, - STATE(3044), 1, + STATE(3303), 1, sym_comment, - ACTIONS(6001), 11, + ACTIONS(6385), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218009,16 +237205,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94191] = 4, + anon_sym_RBRACE, + [109425] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3045), 1, + STATE(3304), 1, sym_comment, - ACTIONS(2092), 3, + ACTIONS(2260), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2094), 11, + ACTIONS(2262), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218030,16 +237226,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, - [94216] = 4, + [109449] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6039), 1, + sym_identifier, + ACTIONS(6045), 1, + anon_sym_DOLLAR, + ACTIONS(6047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, + anon_sym_DASH_DASH, + ACTIONS(6051), 1, + anon_sym_DASH2, + ACTIONS(6129), 1, + anon_sym_PIPE, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3070), 1, + aux_sym_parameter_parens_repeat1, + STATE(3305), 1, + sym_comment, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [109495] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3046), 1, + STATE(3306), 1, sym_comment, - ACTIONS(5257), 3, + ACTIONS(3900), 2, ts_builtin_sym_end, sym__space, - anon_sym_EQ2, - ACTIONS(5259), 11, + ACTIONS(3902), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218051,18 +237277,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, - [94241] = 6, - ACTIONS(3), 1, + [109519] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6003), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3047), 1, + STATE(3307), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(2675), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2677), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218073,59 +237297,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, - [94270] = 6, + [109543] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6006), 1, - anon_sym_catch, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3048), 1, - sym_comment, - ACTIONS(1955), 11, - anon_sym_SEMI, + ACTIONS(6039), 1, + sym_identifier, + ACTIONS(6045), 1, + anon_sym_DOLLAR, + ACTIONS(6047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, + anon_sym_DASH_DASH, + ACTIONS(6051), 1, + anon_sym_DASH2, + ACTIONS(6387), 1, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [94299] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2258), 1, - sym__space, - STATE(3049), 1, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3070), 1, + aux_sym_parameter_parens_repeat1, + STATE(3308), 1, sym_comment, - ACTIONS(2260), 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, - [94324] = 4, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [109589] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__space, - STATE(3050), 1, + STATE(3309), 1, sym_comment, - ACTIONS(1868), 13, + ACTIONS(2414), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2416), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218137,16 +237348,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, - [94349] = 4, + [109613] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2563), 1, - sym__space, - STATE(3051), 1, + STATE(3310), 1, sym_comment, - ACTIONS(2565), 13, + ACTIONS(2414), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2416), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218158,16 +237368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [94374] = 4, - ACTIONS(103), 1, + [109637] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2571), 1, - sym__space, - STATE(3052), 1, + ACTIONS(6389), 1, + anon_sym_catch, + STATE(3311), 1, sym_comment, - ACTIONS(2573), 13, + ACTIONS(6279), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218179,108 +237388,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [94399] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(6011), 1, - anon_sym_DASH2, - STATE(3053), 1, - sym_comment, - STATE(3300), 1, - sym_param_completer, - ACTIONS(6009), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94428] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(5783), 1, - anon_sym_DASH2, - STATE(3054), 1, - sym_comment, - STATE(3239), 1, - sym_param_completer, - ACTIONS(5779), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94457] = 4, - ACTIONS(3), 1, + [109661] = 12, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3055), 1, - sym_comment, - ACTIONS(1728), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1734), 1, + sym__entry_separator, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6391), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(6393), 1, anon_sym_LPAREN2, - [94482] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_DASH2, - STATE(3056), 1, + ACTIONS(6395), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6397), 1, + aux_sym__immediate_decimal_token2, + STATE(3312), 1, sym_comment, - ACTIONS(968), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, + STATE(4120), 1, + sym__immediate_decimal, + ACTIONS(1738), 2, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94507] = 6, + anon_sym_DOT_DOT, + ACTIONS(6399), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4329), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109701] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6013), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3057), 1, + STATE(3313), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(6401), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218292,35 +237434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94536] = 4, + anon_sym_RBRACE, + [109723] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_DASH2, - STATE(3058), 1, - sym_comment, - ACTIONS(2571), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94561] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2194), 1, - sym__space, - STATE(3059), 1, + STATE(3314), 1, sym_comment, - ACTIONS(2196), 13, + ACTIONS(6403), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218334,14 +237454,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94586] = 4, - ACTIONS(103), 1, + [109745] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4629), 1, - sym__space, - STATE(3060), 1, + STATE(3315), 1, sym_comment, - ACTIONS(4627), 13, + ACTIONS(6405), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218355,56 +237473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94611] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_DASH2, - STATE(3061), 1, - sym_comment, - ACTIONS(1706), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94636] = 4, + [109767] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2114), 1, - anon_sym_DASH2, - STATE(3062), 1, - sym_comment, - ACTIONS(2112), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94661] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2254), 1, - sym__space, - STATE(3063), 1, + STATE(3316), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(6408), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218418,58 +237492,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94686] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6016), 1, - anon_sym_LBRACK2, - STATE(3064), 1, - sym_comment, - ACTIONS(2128), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2130), 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, - [94713] = 5, + [109789] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1960), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(6018), 1, - sym__newline, - STATE(3065), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1955), 11, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [94740] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2254), 1, - sym__space, - STATE(3066), 1, + STATE(3317), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(6410), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218483,14 +237511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94765] = 4, + [109811] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2262), 1, - sym__space, - STATE(3067), 1, + STATE(3318), 1, sym_comment, - ACTIONS(2264), 13, + ACTIONS(3922), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(3924), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218502,41 +237531,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, - [94790] = 4, + [109835] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2507), 1, + ACTIONS(815), 1, anon_sym_DASH2, - STATE(3068), 1, + ACTIONS(5552), 1, + sym__unquoted_pattern_in_record, + STATE(3319), 1, sym_comment, - ACTIONS(2505), 13, + ACTIONS(904), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94815] = 6, - ACTIONS(3), 1, + [109861] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6021), 1, - anon_sym_else, - ACTIONS(6023), 1, - sym__newline, - STATE(2919), 1, - aux_sym__repeat_newline, - STATE(3069), 1, + STATE(3320), 1, sym_comment, - ACTIONS(6026), 11, + ACTIONS(2374), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2376), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218547,15 +237572,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, - [94844] = 4, - ACTIONS(103), 1, + [109885] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4625), 1, - sym__space, - STATE(3070), 1, + STATE(3321), 1, sym_comment, - ACTIONS(4623), 13, + STATE(3400), 1, + aux_sym__repeat_newline, + ACTIONS(5931), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218568,59 +237592,55 @@ static 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, - [94869] = 6, + [109909] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6028), 1, - anon_sym_else, - ACTIONS(6030), 1, - sym__newline, - STATE(2950), 1, - aux_sym__repeat_newline, - STATE(3071), 1, + ACTIONS(6414), 1, + anon_sym_DASH2, + STATE(3322), 1, sym_comment, - ACTIONS(6033), 11, - anon_sym_SEMI, + ACTIONS(6412), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [94898] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [109933] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2196), 1, + ACTIONS(6418), 1, anon_sym_DASH2, - STATE(3072), 1, + STATE(3323), 1, sym_comment, - ACTIONS(2194), 13, + ACTIONS(6416), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94923] = 4, + anon_sym_LPAREN2, + [109957] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6037), 1, - sym__space, - STATE(3073), 1, + STATE(3324), 1, sym_comment, - ACTIONS(6035), 13, + ACTIONS(2667), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2669), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218632,16 +237652,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_RBRACE, - [94948] = 4, - ACTIONS(103), 1, + [109981] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, - sym__space, - STATE(3074), 1, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(730), 1, + sym__immediate_decimal, + STATE(3325), 1, + sym_comment, + ACTIONS(6115), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6420), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(729), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1783), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110015] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3326), 1, sym_comment, - ACTIONS(2236), 13, + ACTIONS(5937), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218654,92 +237697,118 @@ static 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, - [94973] = 9, + [110039] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1783), 1, + sym__entry_separator, + ACTIONS(1962), 1, + anon_sym_DOLLAR, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6268), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6422), 1, + anon_sym_DOT, + STATE(3327), 1, + sym_comment, + STATE(4031), 1, + sym__immediate_decimal, + ACTIONS(1785), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6272), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4030), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110079] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(3055), 1, anon_sym_DOLLAR, - STATE(737), 1, + STATE(744), 1, sym__immediate_decimal, - STATE(3075), 1, + STATE(3328), 1, sym_comment, - ACTIONS(5745), 2, + ACTIONS(6115), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, + ACTIONS(6420), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(736), 2, + STATE(743), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1667), 4, + ACTIONS(1831), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [95007] = 4, + [110113] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_else, - STATE(3076), 1, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(746), 1, + sym__immediate_decimal, + STATE(3329), 1, sym_comment, - ACTIONS(6043), 12, + ACTIONS(6115), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6420), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(745), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1835), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [95031] = 15, + anon_sym_EQ_GT, + [110147] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(3055), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5723), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3077), 1, + STATE(748), 1, + sym__immediate_decimal, + STATE(3330), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [95077] = 4, + ACTIONS(6115), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6420), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(747), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1839), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110181] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3078), 1, + STATE(3331), 1, sym_comment, - ACTIONS(2537), 2, + ACTIONS(3926), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2539), 11, + ACTIONS(3928), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218751,12 +237820,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95101] = 3, - ACTIONS(3), 1, + [110205] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3079), 1, + STATE(3332), 1, sym_comment, - ACTIONS(4783), 13, + ACTIONS(2016), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2018), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218768,142 +237840,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_RPAREN, - anon_sym_RBRACE, - [95123] = 13, - ACTIONS(103), 1, + [110229] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACK, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, + ACTIONS(6039), 1, + sym_identifier, ACTIONS(6045), 1, - anon_sym_DOT, + anon_sym_DOLLAR, ACTIONS(6047), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT_DOT_DOT, ACTIONS(6049), 1, - aux_sym__immediate_decimal_token2, - STATE(3080), 1, - sym_comment, - STATE(3673), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [95165] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3081), 1, + anon_sym_DASH_DASH, + ACTIONS(6051), 1, + anon_sym_DASH2, + ACTIONS(6424), 1, + anon_sym_RBRACK, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3070), 1, + aux_sym_parameter_parens_repeat1, + STATE(3333), 1, sym_comment, - ACTIONS(5856), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5854), 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, - [95189] = 9, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [110275] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(6039), 1, + sym_identifier, + ACTIONS(6045), 1, anon_sym_DOLLAR, - STATE(722), 1, - sym__immediate_decimal, - STATE(3082), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, + anon_sym_DASH_DASH, + ACTIONS(6051), 1, + anon_sym_DASH2, + ACTIONS(6426), 1, + anon_sym_RPAREN, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3070), 1, + aux_sym_parameter_parens_repeat1, + STATE(3334), 1, sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(721), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [95223] = 15, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [110321] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(6039), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(6045), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(6047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(6049), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(6051), 1, anon_sym_DASH2, - ACTIONS(6053), 1, - anon_sym_RPAREN, - STATE(2467), 1, + ACTIONS(6428), 1, + anon_sym_RBRACK, + STATE(2732), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2827), 1, sym__param_name, - STATE(2828), 1, + STATE(3070), 1, aux_sym_parameter_parens_repeat1, - STATE(3083), 1, + STATE(3335), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, + STATE(3485), 1, sym_param_rest, - STATE(3328), 1, + STATE(3490), 1, sym_param_opt, - STATE(3582), 1, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, sym_parameter, - [95269] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3084), 1, - sym_comment, - ACTIONS(2202), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2204), 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, - [95293] = 4, + [110367] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3085), 1, + STATE(3336), 1, sym_comment, - ACTIONS(5889), 2, + ACTIONS(2382), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5887), 11, + ACTIONS(2384), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218915,15 +237953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95317] = 4, + [110391] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3086), 1, + STATE(3337), 1, sym_comment, - ACTIONS(5965), 2, + ACTIONS(2679), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5963), 11, + ACTIONS(2681), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218935,12 +237973,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, - [95341] = 3, + [110415] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3087), 1, + STATE(3326), 1, + aux_sym__repeat_newline, + STATE(3338), 1, sym_comment, - ACTIONS(4789), 13, + ACTIONS(5944), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218953,47 +237993,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, - [95363] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5725), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3088), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [95409] = 4, + [110439] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3089), 1, - sym_comment, - ACTIONS(2505), 2, - ts_builtin_sym_end, + ACTIONS(6432), 1, sym__space, - ACTIONS(2507), 11, + STATE(3339), 1, + sym_comment, + ACTIONS(6430), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219005,43 +238012,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, - [95433] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__space, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6055), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, - aux_sym__immediate_decimal_token2, - STATE(3090), 1, - sym_comment, - STATE(4026), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6059), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3013), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [95473] = 4, + anon_sym_RPAREN, + [110463] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3091), 1, + STATE(3340), 1, sym_comment, - ACTIONS(2254), 2, + ACTIONS(2432), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2256), 11, + ACTIONS(2434), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219053,15 +238033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95497] = 4, + [110487] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3092), 1, + STATE(3341), 1, sym_comment, - ACTIONS(5885), 2, + ACTIONS(2738), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5883), 11, + ACTIONS(2740), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219073,35 +238053,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, - [95521] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6063), 1, - anon_sym_DASH2, - STATE(3093), 1, - sym_comment, - ACTIONS(6061), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95545] = 4, + [110511] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3094), 1, + STATE(3342), 1, sym_comment, - ACTIONS(2591), 2, + ACTIONS(2683), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2593), 11, + ACTIONS(2685), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219113,34 +238073,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, - [95569] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6067), 1, - anon_sym_DASH2, - STATE(3095), 1, - sym_comment, - ACTIONS(6065), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95593] = 4, + [110535] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3096), 1, + STATE(3343), 1, sym_comment, - STATE(3211), 1, - aux_sym__repeat_newline, - ACTIONS(5590), 12, + ACTIONS(5842), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219153,15 +238091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95617] = 4, + anon_sym_RBRACE, + [110557] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3097), 1, + STATE(3344), 1, sym_comment, - ACTIONS(5961), 2, + ACTIONS(2788), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5959), 11, + ACTIONS(2790), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219173,15 +238112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95641] = 4, + [110581] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3098), 1, + STATE(3345), 1, sym_comment, - ACTIONS(2254), 2, + ACTIONS(2378), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2256), 11, + ACTIONS(2380), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219193,43 +238132,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, - [95665] = 12, + [110605] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(1734), 1, sym__entry_separator, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6069), 1, + ACTIONS(1738), 1, + anon_sym_RBRACE, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1962), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(6264), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(6434), 1, + anon_sym_DOT, + ACTIONS(6436), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(6438), 1, aux_sym__immediate_decimal_token2, - STATE(3099), 1, + STATE(3346), 1, sym_comment, - STATE(3932), 1, + STATE(3930), 1, sym__immediate_decimal, - ACTIONS(1633), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, + ACTIONS(6440), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4123), 2, + STATE(4046), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [95705] = 4, + [110647] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6079), 1, - anon_sym_catch, - STATE(3100), 1, + ACTIONS(6444), 1, + anon_sym_DASH2, + STATE(3347), 1, + sym_comment, + ACTIONS(6442), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [110671] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3348), 1, sym_comment, - ACTIONS(5918), 12, + ACTIONS(2294), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2296), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219241,15 +238201,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, - [95729] = 4, + [110695] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3101), 1, + STATE(3349), 1, sym_comment, - ACTIONS(2206), 2, + ACTIONS(3934), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2208), 11, + ACTIONS(3936), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219261,12 +238221,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, - [95753] = 3, - ACTIONS(3), 1, + [110719] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3102), 1, + STATE(3350), 1, sym_comment, - ACTIONS(6081), 13, + ACTIONS(6374), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6372), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219278,17 +238241,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, - [95775] = 4, + [110743] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3103), 1, + STATE(3351), 1, sym_comment, - ACTIONS(2210), 2, + ACTIONS(2386), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2212), 11, + ACTIONS(2388), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219300,34 +238261,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, - [95799] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2098), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(3104), 1, - sym_comment, - ACTIONS(2096), 12, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - sym__newline, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [95823] = 4, + [110767] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5924), 1, + ACTIONS(6448), 1, anon_sym_DASH2, - STATE(3105), 1, + STATE(3352), 1, sym_comment, - ACTIONS(5920), 12, + ACTIONS(6446), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219337,105 +238278,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95847] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6083), 1, - anon_sym_else, - STATE(3106), 1, - sym_comment, - ACTIONS(6043), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [95871] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3107), 1, - sym_comment, - ACTIONS(2258), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2260), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [95895] = 12, + [110791] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(1801), 1, + sym__entry_separator, + ACTIONS(1819), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6391), 1, anon_sym_DOLLAR, - ACTIONS(4866), 1, - anon_sym_DOT, - ACTIONS(5862), 1, + ACTIONS(6393), 1, + anon_sym_LPAREN2, + ACTIONS(6395), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, + ACTIONS(6397), 1, aux_sym__immediate_decimal_token2, - STATE(3108), 1, + STATE(3353), 1, sym_comment, - STATE(3870), 1, + STATE(4147), 1, sym__immediate_decimal, - ACTIONS(1586), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, + ACTIONS(1803), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6399), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3869), 2, + STATE(4389), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [95935] = 3, + [110831] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3109), 1, + ACTIONS(6452), 1, + anon_sym_DASH2, + STATE(3354), 1, sym_comment, - ACTIONS(6085), 13, + ACTIONS(6450), 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_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [95957] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [110855] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3110), 1, + STATE(3355), 1, sym_comment, - ACTIONS(2226), 2, + ACTIONS(2418), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2228), 11, + ACTIONS(2420), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219447,15 +238349,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, - [95981] = 4, + [110879] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3111), 1, + STATE(3356), 1, sym_comment, - ACTIONS(2230), 2, + ACTIONS(2422), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2232), 11, + ACTIONS(2424), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219467,51 +238369,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, - [96005] = 4, + [110903] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3112), 1, + STATE(3357), 1, sym_comment, - ACTIONS(2234), 2, + ACTIONS(3938), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2236), 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, - [96029] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3113), 1, - sym_comment, - ACTIONS(6087), 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, - [96051] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3114), 1, - sym_comment, - ACTIONS(6089), 13, + ACTIONS(3940), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219523,14 +238389,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96073] = 3, + [110927] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3115), 1, + STATE(3358), 1, sym_comment, - ACTIONS(6091), 13, + ACTIONS(3926), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219544,36 +238408,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96095] = 4, + [110949] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6095), 1, - anon_sym_DASH2, - STATE(3116), 1, - sym_comment, - ACTIONS(6093), 12, - anon_sym_EQ, + ACTIONS(6039), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6045), 1, anon_sym_DOLLAR, - anon_sym_AT2, + ACTIONS(6047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, anon_sym_DASH_DASH, - [96119] = 5, + ACTIONS(6051), 1, + anon_sym_DASH2, + ACTIONS(6454), 1, + anon_sym_RPAREN, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3070), 1, + aux_sym_parameter_parens_repeat1, + STATE(3359), 1, + sym_comment, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [110995] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6099), 1, - anon_sym_QMARK, - ACTIONS(6101), 1, + ACTIONS(6324), 1, anon_sym_DASH2, - STATE(3117), 1, + STATE(3360), 1, sym_comment, - ACTIONS(6097), 11, + ACTIONS(6320), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219583,63 +238456,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96145] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3118), 1, - sym_comment, - ACTIONS(6103), 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, - [96167] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6105), 1, - anon_sym_DOT, - STATE(3119), 1, - sym_comment, - STATE(3862), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3861), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96207] = 4, + [111019] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6109), 1, + ACTIONS(6458), 1, anon_sym_DASH2, - STATE(3120), 1, + STATE(3361), 1, sym_comment, - ACTIONS(6107), 12, + ACTIONS(6456), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219652,15 +238479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96231] = 4, + [111043] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3121), 1, + STATE(3362), 1, sym_comment, - ACTIONS(2238), 2, + ACTIONS(3657), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2240), 11, + ACTIONS(3659), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219672,15 +238499,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, - [96255] = 4, + [111067] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3122), 1, + STATE(3363), 1, sym_comment, - ACTIONS(5251), 2, + ACTIONS(2338), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5249), 11, + ACTIONS(2340), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219692,15 +238519,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, - [96279] = 4, + [111091] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3123), 1, + STATE(3364), 1, sym_comment, - ACTIONS(5940), 2, + ACTIONS(3978), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5938), 11, + ACTIONS(3980), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219712,15 +238539,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, - [96303] = 4, + [111115] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3124), 1, + STATE(3365), 1, sym_comment, - ACTIONS(5247), 2, + ACTIONS(3667), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5245), 11, + ACTIONS(3669), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219732,15 +238559,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, - [96327] = 4, - ACTIONS(103), 1, + [111139] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3125), 1, + STATE(3366), 1, sym_comment, - ACTIONS(2242), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2244), 11, + ACTIONS(6460), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219752,15 +238576,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, - [96351] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [111161] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3126), 1, + STATE(3367), 1, sym_comment, - ACTIONS(6037), 2, + ACTIONS(2342), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6035), 11, + ACTIONS(2344), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219772,84 +238598,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, - [96375] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6055), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, - aux_sym__immediate_decimal_token2, - STATE(3127), 1, - sym_comment, - STATE(4013), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6059), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2982), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96415] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_DASH2, - ACTIONS(5116), 1, - sym__unquoted_pattern_in_record, - STATE(3128), 1, - sym_comment, - ACTIONS(968), 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, - [96441] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6113), 1, - anon_sym_DASH2, - STATE(3129), 1, - sym_comment, - ACTIONS(6111), 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, - [96465] = 4, + [111185] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3130), 1, + STATE(3368), 1, sym_comment, - ACTIONS(2214), 2, + ACTIONS(2390), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2216), 11, + ACTIONS(2392), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219861,35 +238618,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, - [96489] = 4, + [111209] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6117), 1, - anon_sym_DASH2, - STATE(3131), 1, - sym_comment, - ACTIONS(6115), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96513] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3132), 1, + STATE(3369), 1, sym_comment, - ACTIONS(2246), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2248), 11, + ACTIONS(6462), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219901,15 +238635,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, - [96537] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [111231] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3133), 1, + STATE(3370), 1, sym_comment, - ACTIONS(2615), 2, + ACTIONS(3982), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2617), 11, + ACTIONS(3984), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219921,14 +238657,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, - [96561] = 4, - ACTIONS(3), 1, + [111255] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3134), 1, + STATE(3371), 1, sym_comment, - STATE(3173), 1, - aux_sym__repeat_newline, - ACTIONS(5596), 12, + ACTIONS(3986), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(3988), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219940,16 +238677,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, - [96585] = 4, + [111279] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3135), 1, + STATE(3372), 1, sym_comment, - ACTIONS(4625), 2, + ACTIONS(2394), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4623), 11, + ACTIONS(2396), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219961,12 +238697,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, - [96609] = 3, - ACTIONS(3), 1, + [111303] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3136), 1, + STATE(3373), 1, sym_comment, - ACTIONS(6119), 13, + ACTIONS(2398), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2400), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219978,16 +238717,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, - [96631] = 4, + [111327] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6123), 1, + ACTIONS(6466), 1, anon_sym_DASH2, - STATE(3137), 1, + STATE(3374), 1, sym_comment, - ACTIONS(6121), 12, + ACTIONS(6464), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -220000,34 +238737,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96655] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3138), 1, - sym_comment, - ACTIONS(2250), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2252), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [96679] = 4, + [111351] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6127), 1, + ACTIONS(6470), 1, anon_sym_DASH2, - STATE(3139), 1, + STATE(3375), 1, sym_comment, - ACTIONS(6125), 12, + ACTIONS(6468), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -220040,14 +238757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96703] = 4, + [111375] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6131), 1, + ACTIONS(6474), 1, anon_sym_DASH2, - STATE(3140), 1, + STATE(3376), 1, sym_comment, - ACTIONS(6129), 12, + ACTIONS(6472), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -220060,34 +238777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96727] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3141), 1, - sym_comment, - ACTIONS(2262), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2264), 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, - [96751] = 4, + [111399] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6135), 1, + ACTIONS(6478), 1, anon_sym_DASH2, - STATE(3142), 1, + STATE(3377), 1, sym_comment, - ACTIONS(6133), 12, + ACTIONS(6476), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -220100,34 +238797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96775] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3143), 1, - sym_comment, - ACTIONS(1858), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1860), 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, - [96799] = 4, + [111423] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6139), 1, + ACTIONS(6482), 1, anon_sym_DASH2, - STATE(3144), 1, + STATE(3378), 1, sym_comment, - ACTIONS(6137), 12, + ACTIONS(6480), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -220140,53 +238817,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96823] = 3, + [111447] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3145), 1, + ACTIONS(6486), 1, + anon_sym_DASH2, + STATE(3379), 1, sym_comment, - ACTIONS(6141), 13, + ACTIONS(6484), 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, - [96845] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [111471] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3146), 1, + ACTIONS(6490), 1, + anon_sym_DASH2, + STATE(3380), 1, sym_comment, - ACTIONS(6143), 13, + ACTIONS(6488), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [96867] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [111495] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3147), 1, + STATE(3381), 1, sym_comment, - ACTIONS(4629), 2, + ACTIONS(2334), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4627), 11, + ACTIONS(2336), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220198,15 +238877,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, - [96891] = 4, + [111519] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3148), 1, + STATE(3382), 1, sym_comment, - ACTIONS(2607), 2, + ACTIONS(2370), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2609), 11, + ACTIONS(2372), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220218,92 +238897,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, - [96915] = 10, + [111543] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3149), 1, - sym_comment, - STATE(4120), 1, - sym__immediate_decimal, - ACTIONS(6145), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [96951] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3150), 1, + ACTIONS(6494), 1, + anon_sym_QMARK, + ACTIONS(6496), 1, + anon_sym_DASH2, + STATE(3383), 1, sym_comment, - ACTIONS(5581), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5579), 11, + ACTIONS(6492), 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, - [96975] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6149), 1, - anon_sym_PIPE, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3151), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97021] = 4, - ACTIONS(103), 1, + [111569] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3152), 1, + ACTIONS(6498), 1, + anon_sym_else, + STATE(3384), 1, sym_comment, - ACTIONS(4633), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4631), 11, + ACTIONS(6500), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220315,15 +238937,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, - [97045] = 4, + anon_sym_RBRACE, + [111593] = 13, ACTIONS(103), 1, anon_sym_POUND, - STATE(3153), 1, + ACTIONS(1734), 1, + sym__entry_separator, + ACTIONS(1738), 1, + anon_sym_RBRACK, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1962), 1, + anon_sym_DOLLAR, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6502), 1, + anon_sym_DOT, + ACTIONS(6504), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6506), 1, + aux_sym__immediate_decimal_token2, + STATE(3385), 1, + sym_comment, + STATE(3912), 1, + sym__immediate_decimal, + ACTIONS(6508), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4046), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111635] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3386), 1, sym_comment, - ACTIONS(2563), 2, + ACTIONS(3942), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2565), 11, + ACTIONS(3944), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220335,40 +238987,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, - [97069] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(739), 1, - sym__immediate_decimal, - STATE(3154), 1, - sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(738), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97103] = 4, + [111659] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3155), 1, + STATE(3387), 1, sym_comment, - ACTIONS(2571), 2, + ACTIONS(3710), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2573), 11, + ACTIONS(3712), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220380,15 +239007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97127] = 4, + [111683] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3156), 1, + STATE(3388), 1, sym_comment, - ACTIONS(2218), 2, + ACTIONS(3954), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2220), 11, + ACTIONS(3956), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220400,97 +239027,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, - [97151] = 4, + [111707] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6153), 1, - anon_sym_DASH2, - STATE(3157), 1, - sym_comment, - ACTIONS(6151), 12, - anon_sym_EQ, + ACTIONS(6039), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6045), 1, anon_sym_DOLLAR, + ACTIONS(6047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [97175] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6157), 1, + ACTIONS(6051), 1, anon_sym_DASH2, - STATE(3158), 1, - sym_comment, - ACTIONS(6155), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(6053), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [97199] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6159), 1, - anon_sym_else, - STATE(3159), 1, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3070), 1, + aux_sym_parameter_parens_repeat1, + STATE(3389), 1, sym_comment, - ACTIONS(6043), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [97223] = 9, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [111753] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(3055), 1, anon_sym_DOLLAR, - STATE(741), 1, - sym__immediate_decimal, - STATE(3160), 1, + STATE(3390), 1, sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, + STATE(4243), 1, + sym__immediate_decimal, + ACTIONS(6510), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(740), 2, + ACTIONS(6512), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(731), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 4, - anon_sym_if, + ACTIONS(1734), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [97257] = 3, - ACTIONS(3), 1, + [111789] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3161), 1, + STATE(3391), 1, sym_comment, - ACTIONS(5548), 13, + ACTIONS(3962), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(3964), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220502,17 +239104,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, - [97279] = 4, + [111813] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3162), 1, + STATE(3392), 1, sym_comment, - ACTIONS(2511), 2, + ACTIONS(3966), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2513), 11, + ACTIONS(3968), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220524,15 +239124,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, - [97303] = 4, + [111837] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3163), 1, + STATE(3393), 1, sym_comment, - ACTIONS(2194), 2, + ACTIONS(3970), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2196), 11, + ACTIONS(3972), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220544,41 +239144,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, - [97327] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3164), 1, - sym_comment, - STATE(4125), 1, - sym__immediate_decimal, - ACTIONS(6145), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97363] = 4, + [111861] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3165), 1, + STATE(3394), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(2402), 2, ts_builtin_sym_end, sym__space, - ACTIONS(868), 11, + ACTIONS(2404), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220590,15 +239164,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97387] = 4, + [111885] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3166), 1, + STATE(3395), 1, sym_comment, - ACTIONS(5346), 2, + ACTIONS(3798), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5344), 11, + ACTIONS(3800), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220610,12 +239184,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, - [97411] = 3, + [111909] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3167), 1, + ACTIONS(6514), 1, + anon_sym_else, + STATE(3396), 1, sym_comment, - ACTIONS(6161), 13, + ACTIONS(6500), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220627,17 +239204,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + [111933] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2312), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(3397), 1, + sym_comment, + ACTIONS(2310), 12, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + sym__newline, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [111957] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1783), 1, + sym__entry_separator, + ACTIONS(1962), 1, + anon_sym_DOLLAR, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6422), 1, + anon_sym_DOT, + ACTIONS(6504), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6506), 1, + aux_sym__immediate_decimal_token2, + STATE(3398), 1, + sym_comment, + STATE(4027), 1, + sym__immediate_decimal, + ACTIONS(1785), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [97433] = 4, + ACTIONS(6508), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4022), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111997] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3168), 1, + STATE(3399), 1, sym_comment, - ACTIONS(2515), 2, + ACTIONS(2232), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2517), 11, + ACTIONS(2234), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220649,12 +239272,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, - [97457] = 3, + [112021] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3169), 1, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3400), 1, sym_comment, - ACTIONS(6163), 13, + ACTIONS(5856), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220667,97 +239292,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, - [97479] = 4, + [112045] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3170), 1, - sym_comment, - ACTIONS(5893), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5891), 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, - [97503] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5753), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3171), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97549] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6165), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3172), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97595] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3173), 1, + STATE(3401), 1, sym_comment, - ACTIONS(5514), 12, + ACTIONS(3930), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(3932), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220769,75 +239312,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, - [97619] = 15, + [112069] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5755), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3174), 1, + ACTIONS(6516), 1, + anon_sym_else, + STATE(3402), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97665] = 12, - ACTIONS(103), 1, + ACTIONS(6500), 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, + [112093] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3175), 1, + STATE(3403), 1, sym_comment, - STATE(3928), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4079), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [97705] = 4, + ACTIONS(5209), 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, + [112115] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3176), 1, + STATE(3404), 1, sym_comment, - ACTIONS(5897), 2, + ACTIONS(2366), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5895), 11, + ACTIONS(2368), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220849,15 +239371,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, - [97729] = 4, - ACTIONS(103), 1, + [112139] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3177), 1, + STATE(3405), 1, sym_comment, - ACTIONS(2198), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2200), 11, + ACTIONS(6518), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220869,75 +239388,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, - [97753] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + [112161] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(6167), 1, - anon_sym_DOT, - ACTIONS(6169), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6171), 1, - aux_sym__immediate_decimal_token2, - STATE(3178), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(3406), 1, sym_comment, - STATE(3639), 1, + STATE(4337), 1, sym__immediate_decimal, - ACTIONS(6173), 2, + ACTIONS(6510), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6512), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3809), 2, + STATE(749), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [97795] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5706), 1, + ACTIONS(1801), 3, + sym__newline, anon_sym_PIPE, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3179), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97841] = 4, + anon_sym_EQ_GT, + [112197] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3180), 1, + STATE(3407), 1, sym_comment, - ACTIONS(1706), 2, + ACTIONS(2671), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1619), 11, + ACTIONS(2673), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220949,15 +239436,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, - [97865] = 4, - ACTIONS(103), 1, + [112221] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3181), 1, + STATE(3408), 1, sym_comment, - ACTIONS(5901), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5899), 11, + ACTIONS(6520), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220969,15 +239453,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, - [97889] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [112243] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3182), 1, + STATE(3409), 1, sym_comment, - ACTIONS(2100), 2, + ACTIONS(2796), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2102), 11, + ACTIONS(2798), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220989,18 +239475,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, - [97913] = 6, - ACTIONS(3), 1, + [112267] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5969), 1, - sym__newline, - ACTIONS(6175), 1, - anon_sym_else, - STATE(3183), 1, + STATE(3410), 1, sym_comment, - STATE(3186), 1, - aux_sym__repeat_newline, - ACTIONS(5972), 10, + ACTIONS(3896), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(3898), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221011,18 +239495,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, - [97941] = 6, + [112291] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6023), 1, + ACTIONS(6232), 1, sym__newline, - ACTIONS(6177), 1, + ACTIONS(6522), 1, anon_sym_else, - STATE(3184), 1, + STATE(3411), 1, sym_comment, - STATE(3188), 1, + STATE(3414), 1, aux_sym__repeat_newline, - ACTIONS(6026), 10, + ACTIONS(6235), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221033,18 +239517,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97969] = 6, + [112319] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, + ACTIONS(6183), 1, sym__newline, - ACTIONS(6179), 1, + ACTIONS(6524), 1, anon_sym_else, - STATE(3185), 1, + STATE(3412), 1, sym_comment, - STATE(3189), 1, + STATE(3416), 1, aux_sym__repeat_newline, - ACTIONS(6033), 10, + ACTIONS(6186), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221055,18 +239539,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97997] = 6, + [112347] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5817), 1, + ACTIONS(6197), 1, sym__newline, - ACTIONS(6181), 1, + ACTIONS(6526), 1, anon_sym_else, - STATE(3186), 1, - sym_comment, - STATE(3190), 1, + STATE(3300), 1, aux_sym__repeat_newline, - ACTIONS(5820), 10, + STATE(3413), 1, + sym_comment, + ACTIONS(6200), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221077,18 +239561,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98025] = 6, + [112375] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5950), 1, + ACTIONS(6204), 1, sym__newline, - ACTIONS(6183), 1, + ACTIONS(6528), 1, anon_sym_else, - STATE(3187), 1, + STATE(3414), 1, sym_comment, - STATE(3191), 1, + STATE(3418), 1, aux_sym__repeat_newline, - ACTIONS(5953), 10, + ACTIONS(6207), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221099,18 +239583,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98053] = 6, + [112403] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, + ACTIONS(6341), 1, sym__newline, - ACTIONS(6185), 1, + ACTIONS(6530), 1, anon_sym_else, - STATE(3188), 1, + STATE(3415), 1, sym_comment, - STATE(3192), 1, + STATE(3419), 1, aux_sym__repeat_newline, - ACTIONS(5797), 10, + ACTIONS(6344), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221121,18 +239605,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98081] = 6, + [112431] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5849), 1, + ACTIONS(6348), 1, sym__newline, - ACTIONS(6187), 1, + ACTIONS(6532), 1, anon_sym_else, - STATE(3189), 1, + STATE(3416), 1, sym_comment, - STATE(3193), 1, + STATE(3420), 1, aux_sym__repeat_newline, - ACTIONS(5852), 10, + ACTIONS(6351), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221143,18 +239627,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, - [98109] = 6, + [112459] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6039), 1, + sym_identifier, + ACTIONS(6045), 1, + anon_sym_DOLLAR, + ACTIONS(6047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6049), 1, + anon_sym_DASH_DASH, + ACTIONS(6051), 1, + anon_sym_DASH2, + ACTIONS(6075), 1, + anon_sym_RBRACK, + STATE(2732), 1, + sym_param_long_flag, + STATE(2827), 1, + sym__param_name, + STATE(3070), 1, + aux_sym_parameter_parens_repeat1, + STATE(3417), 1, + sym_comment, + STATE(3485), 1, + sym_param_rest, + STATE(3490), 1, + sym_param_opt, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, + sym_parameter, + [112505] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2219), 1, sym__newline, - ACTIONS(6189), 1, + ACTIONS(6534), 1, anon_sym_else, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(3190), 1, + STATE(3418), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(2217), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221165,18 +239680,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98137] = 6, + [112533] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5998), 1, + ACTIONS(6246), 1, sym__newline, - ACTIONS(6192), 1, + ACTIONS(6537), 1, anon_sym_else, - STATE(3191), 1, + STATE(3419), 1, sym_comment, - STATE(3194), 1, + STATE(3422), 1, aux_sym__repeat_newline, - ACTIONS(6001), 10, + ACTIONS(6249), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221187,18 +239702,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98165] = 6, + [112561] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2219), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6539), 1, anon_sym_else, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(3192), 1, + STATE(3420), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(2217), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221209,18 +239724,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98193] = 6, + [112589] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2219), 1, sym__newline, - ACTIONS(6197), 1, + ACTIONS(6542), 1, anon_sym_else, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(3193), 1, + STATE(3421), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(2217), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221231,18 +239746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98221] = 6, + [112617] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2219), 1, sym__newline, - ACTIONS(6200), 1, + ACTIONS(6545), 1, anon_sym_else, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(3194), 1, + STATE(3422), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(2217), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221253,15 +239768,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98249] = 4, + [112645] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3195), 1, + STATE(3423), 1, sym_comment, - ACTIONS(2076), 2, + ACTIONS(2406), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2078), 11, + ACTIONS(2408), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221273,15 +239788,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, - [98273] = 4, - ACTIONS(103), 1, + [112669] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3196), 1, + STATE(3424), 1, sym_comment, - ACTIONS(5905), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5903), 11, + ACTIONS(5215), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221293,15 +239805,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, - [98297] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [112691] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3197), 1, + STATE(3425), 1, sym_comment, - ACTIONS(2222), 2, + ACTIONS(2410), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2224), 11, + ACTIONS(2412), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221313,46 +239827,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, - [98321] = 15, + [112715] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(6039), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(6045), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(6047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(6049), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(6051), 1, anon_sym_DASH2, - ACTIONS(6203), 1, - anon_sym_RBRACK, - STATE(2467), 1, + ACTIONS(6077), 1, + anon_sym_RPAREN, + STATE(2732), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2827), 1, sym__param_name, - STATE(2828), 1, + STATE(3070), 1, aux_sym_parameter_parens_repeat1, - STATE(3198), 1, + STATE(3426), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, + STATE(3485), 1, sym_param_rest, - STATE(3328), 1, + STATE(3490), 1, sym_param_opt, - STATE(3582), 1, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, sym_parameter, - [98367] = 4, + [112761] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3199), 1, + STATE(3427), 1, sym_comment, - ACTIONS(2120), 2, + ACTIONS(2719), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2122), 11, + ACTIONS(2721), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221364,43 +239878,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, - [98391] = 12, + [112785] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6105), 1, - anon_sym_DOT, - STATE(3200), 1, + STATE(3428), 1, sym_comment, - STATE(3808), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3807), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [98431] = 4, + ACTIONS(2046), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2048), 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, + [112809] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3201), 1, + STATE(3429), 1, sym_comment, - ACTIONS(2152), 2, + ACTIONS(2800), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2154), 11, + ACTIONS(2802), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221412,66 +239918,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, - [98455] = 15, + [112833] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(6039), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(6043), 1, + anon_sym_RBRACK, + ACTIONS(6045), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(6047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(6049), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(6051), 1, anon_sym_DASH2, - ACTIONS(6205), 1, - anon_sym_RBRACK, - STATE(2467), 1, + STATE(2732), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2827), 1, sym__param_name, - STATE(2828), 1, + STATE(3070), 1, aux_sym_parameter_parens_repeat1, - STATE(3202), 1, + STATE(3430), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, + STATE(3485), 1, sym_param_rest, - STATE(3328), 1, + STATE(3490), 1, sym_param_opt, - STATE(3582), 1, + STATE(3553), 1, + sym_param_short_flag, + STATE(3804), 1, sym_parameter, - [98501] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3203), 1, - sym_comment, - ACTIONS(2112), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2114), 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, - [98525] = 4, + [112879] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3204), 1, + STATE(3431), 1, sym_comment, - ACTIONS(4651), 2, + ACTIONS(2318), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4649), 11, + ACTIONS(2320), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221483,15 +239969,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, - [98549] = 4, + [112903] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3205), 1, + STATE(3432), 1, sym_comment, - ACTIONS(2268), 2, + ACTIONS(2278), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2270), 11, + ACTIONS(2280), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221503,15 +239989,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, - [98573] = 4, + [112927] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3206), 1, + STATE(3433), 1, sym_comment, - ACTIONS(2272), 2, + ACTIONS(904), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2274), 11, + ACTIONS(815), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221523,12 +240009,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, - [98597] = 3, + [112951] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3207), 1, + STATE(3434), 1, sym_comment, - ACTIONS(6207), 13, + ACTIONS(6548), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221542,14 +240028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98619] = 4, + [112973] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6212), 1, - sym__space, - STATE(3208), 1, + STATE(3435), 1, sym_comment, - ACTIONS(6210), 12, + ACTIONS(1856), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1750), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221561,37 +240048,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, - [98643] = 3, + [112997] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3209), 1, - sym_comment, - ACTIONS(5885), 13, + ACTIONS(6246), 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, - [98665] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3210), 1, + ACTIONS(6550), 1, + anon_sym_else, + STATE(3436), 1, sym_comment, - ACTIONS(5914), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5912), 11, - sym__newline, - anon_sym_SEMI, + STATE(3510), 1, + aux_sym__repeat_newline, + ACTIONS(6249), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221601,14 +240069,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, - [98689] = 4, + [113024] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3211), 1, + STATE(3437), 1, sym_comment, - ACTIONS(5529), 12, + ACTIONS(6552), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221621,15 +240087,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98713] = 4, - ACTIONS(103), 1, + [113045] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3212), 1, + STATE(3438), 1, sym_comment, - ACTIONS(2519), 2, + ACTIONS(6462), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2521), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221641,15 +240105,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, - [98737] = 4, - ACTIONS(103), 1, + [113066] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3213), 1, + STATE(3439), 1, sym_comment, - ACTIONS(1866), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1868), 11, + ACTIONS(6554), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221661,33 +240122,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, - [98761] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5969), 1, - sym__newline, - ACTIONS(6214), 1, - anon_sym_else, - STATE(3214), 1, - sym_comment, - STATE(3319), 1, - aux_sym__repeat_newline, - ACTIONS(5972), 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, - [98788] = 3, + anon_sym_RPAREN, + [113087] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3215), 1, + STATE(3440), 1, sym_comment, - ACTIONS(6216), 12, + ACTIONS(6556), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221700,39 +240141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98809] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6218), 1, - anon_sym_RBRACK, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3216), 1, - sym_comment, - STATE(3603), 1, - sym__immediate_decimal, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3860), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [98848] = 3, + [113108] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3217), 1, + STATE(3441), 1, sym_comment, - ACTIONS(6224), 12, + ACTIONS(6558), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221745,12 +240159,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98869] = 3, + [113129] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3218), 1, + STATE(3442), 1, sym_comment, - ACTIONS(6226), 12, + ACTIONS(6560), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221763,33 +240177,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98890] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6230), 1, - anon_sym_DASH2, - STATE(3219), 1, - sym_comment, - ACTIONS(6228), 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, - [98913] = 4, + [113150] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, + ACTIONS(6564), 1, anon_sym_DASH2, - STATE(3220), 1, + STATE(3443), 1, sym_comment, - ACTIONS(2246), 11, + ACTIONS(6562), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -221801,14 +240196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98936] = 4, + [113173] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, + ACTIONS(2372), 1, anon_sym_DASH2, - STATE(3221), 1, + STATE(3444), 1, sym_comment, - ACTIONS(2250), 11, + ACTIONS(2370), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -221820,145 +240215,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98959] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3222), 1, - sym_comment, - ACTIONS(6232), 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, - [98980] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3223), 1, - sym_comment, - ACTIONS(6234), 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, - [99001] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3224), 1, - sym_comment, - ACTIONS(6236), 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, - [99022] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3225), 1, - sym_comment, - ACTIONS(6238), 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, - [99043] = 4, - ACTIONS(3), 1, + [113196] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_DASH2, - STATE(3226), 1, - sym_comment, - ACTIONS(2214), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1801), 1, + sym__entry_separator, + ACTIONS(1803), 1, + anon_sym_RBRACE, + ACTIONS(1819), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6566), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99066] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(3227), 1, - sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(2303), 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, - [99093] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(3228), 1, + ACTIONS(6568), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6570), 1, + aux_sym__immediate_decimal_token2, + STATE(3445), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(2303), 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, - [99120] = 3, + STATE(4320), 1, + sym__immediate_decimal, + ACTIONS(6572), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4389), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113235] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3229), 1, + STATE(3446), 1, sym_comment, - ACTIONS(6085), 12, + ACTIONS(6385), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -221971,12 +240260,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, - [99141] = 3, + [113256] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3230), 1, + STATE(3447), 1, sym_comment, - ACTIONS(6240), 12, + ACTIONS(6574), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221989,14 +240278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99162] = 4, + [113277] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5715), 1, + ACTIONS(2376), 1, anon_sym_DASH2, - STATE(3231), 1, + STATE(3448), 1, sym_comment, - ACTIONS(5713), 11, + ACTIONS(2374), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222008,238 +240297,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99185] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3232), 1, - sym_comment, - ACTIONS(6242), 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, - [99206] = 4, + [113300] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6246), 1, + ACTIONS(2222), 1, anon_sym_DASH2, - STATE(3233), 1, - sym_comment, - ACTIONS(6244), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6576), 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, - [99229] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DASH2, - STATE(3234), 1, + STATE(3449), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(5640), 11, + ACTIONS(2217), 9, anon_sym_EQ, sym_identifier, - sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99252] = 11, + [113325] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1667), 1, + ACTIONS(1783), 1, sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(6391), 1, anon_sym_DOLLAR, - ACTIONS(6250), 1, + ACTIONS(6393), 1, + anon_sym_LPAREN2, + ACTIONS(6395), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, + ACTIONS(6397), 1, aux_sym__immediate_decimal_token2, - STATE(3235), 1, + STATE(3450), 1, sym_comment, - STATE(4116), 1, + STATE(4307), 1, sym__immediate_decimal, - ACTIONS(1669), 2, + ACTIONS(1785), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, + anon_sym_DOT_DOT, + ACTIONS(6399), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4115), 2, + STATE(4297), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [99289] = 11, + [113362] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1671), 1, + ACTIONS(1831), 1, sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(6391), 1, anon_sym_DOLLAR, - ACTIONS(6250), 1, + ACTIONS(6393), 1, + anon_sym_LPAREN2, + ACTIONS(6395), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, + ACTIONS(6397), 1, aux_sym__immediate_decimal_token2, - STATE(3236), 1, + STATE(3451), 1, sym_comment, - STATE(4119), 1, + STATE(4374), 1, sym__immediate_decimal, - ACTIONS(1673), 2, + ACTIONS(1833), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, + anon_sym_DOT_DOT, + ACTIONS(6399), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4117), 2, + STATE(4368), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [99326] = 11, + [113399] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1675), 1, + ACTIONS(1835), 1, sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(6391), 1, anon_sym_DOLLAR, - ACTIONS(6250), 1, + ACTIONS(6393), 1, + anon_sym_LPAREN2, + ACTIONS(6395), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, + ACTIONS(6397), 1, aux_sym__immediate_decimal_token2, - STATE(3237), 1, + STATE(3452), 1, sym_comment, - STATE(4122), 1, + STATE(4385), 1, sym__immediate_decimal, - ACTIONS(1677), 2, + ACTIONS(1837), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, + anon_sym_DOT_DOT, + ACTIONS(6399), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4121), 2, + STATE(4383), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [99363] = 11, + [113436] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1667), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3008), 1, - sym__immediate_decimal, - STATE(3238), 1, - sym_comment, - ACTIONS(1669), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3006), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99400] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_DASH2, - STATE(3239), 1, - sym_comment, - ACTIONS(6258), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1839), 1, + sym__entry_separator, + ACTIONS(6391), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99423] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1671), 1, - sym__space, - ACTIONS(3212), 1, + ACTIONS(6393), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, + ACTIONS(6395), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, + ACTIONS(6397), 1, aux_sym__immediate_decimal_token2, - STATE(3010), 1, - sym__immediate_decimal, - STATE(3240), 1, + STATE(3453), 1, sym_comment, - ACTIONS(1673), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, + STATE(4388), 1, + sym__immediate_decimal, + ACTIONS(1841), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6399), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3074), 2, + STATE(4387), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [99460] = 4, + [113473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_DASH2, - STATE(3241), 1, + STATE(3454), 1, sym_comment, - ACTIONS(6258), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6579), 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, - [99483] = 4, + [113494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6264), 1, + ACTIONS(2296), 1, anon_sym_DASH2, - STATE(3242), 1, + STATE(3455), 1, sym_comment, - ACTIONS(6262), 11, + ACTIONS(2294), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222251,52 +240458,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99506] = 4, + [113517] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6268), 1, - anon_sym_DASH2, - STATE(3243), 1, + STATE(3456), 1, sym_comment, - ACTIONS(6266), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6581), 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, - [99529] = 4, + [113538] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6272), 1, - anon_sym_DASH2, - STATE(3244), 1, - sym_comment, - ACTIONS(6270), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3018), 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, - [99552] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3245), 1, + STATE(790), 1, + aux_sym__pipe_separator, + STATE(3457), 1, sym_comment, - ACTIONS(6274), 12, - sym__newline, - anon_sym_SEMI, + STATE(3595), 1, + aux_sym__repeat_newline, + ACTIONS(2452), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222306,13 +240497,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, - [99573] = 3, + [113565] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3246), 1, + STATE(3458), 1, sym_comment, - ACTIONS(6276), 12, + ACTIONS(6583), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222325,12 +240515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99594] = 3, + [113586] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3247), 1, + STATE(3459), 1, sym_comment, - ACTIONS(6278), 12, + ACTIONS(6585), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222343,33 +240533,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99615] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6280), 1, - anon_sym_DOT, - ACTIONS(6282), 1, - aux_sym__immediate_decimal_token5, - STATE(3248), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [99642] = 3, + [113607] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3249), 1, + STATE(3460), 1, sym_comment, - ACTIONS(6284), 12, + ACTIONS(6405), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222381,13 +240551,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, - [99663] = 3, + [113628] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3250), 1, + STATE(3461), 1, sym_comment, - ACTIONS(6286), 12, + ACTIONS(6587), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222400,14 +240569,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99684] = 4, + [113649] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6290), 1, + ACTIONS(6591), 1, anon_sym_DASH2, - STATE(3251), 1, + STATE(3462), 1, sym_comment, - ACTIONS(6288), 11, + ACTIONS(6589), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222419,12 +240588,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99707] = 3, + [113672] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3252), 1, + STATE(3463), 1, sym_comment, - ACTIONS(4789), 12, + ACTIONS(6520), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -222437,54 +240606,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, - [99728] = 6, - ACTIONS(3), 1, + [113693] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6292), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6294), 1, + ACTIONS(6593), 1, + anon_sym_DOT, + ACTIONS(6595), 1, aux_sym__immediate_decimal_token5, - STATE(3253), 1, + STATE(3464), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(767), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_list, + ACTIONS(769), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [99755] = 6, - ACTIONS(3), 1, + sym__entry_separator, + [113720] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6296), 1, - sym__newline, - ACTIONS(6299), 1, - anon_sym_DASH2, - STATE(3254), 1, - sym_comment, - ACTIONS(2096), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4376), 8, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1962), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99782] = 3, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6268), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6597), 1, + anon_sym_RBRACK, + ACTIONS(6599), 1, + anon_sym_DOLLAR2, + ACTIONS(6601), 1, + aux_sym__unquoted_in_list_token2, + STATE(3465), 1, + sym_comment, + STATE(3807), 1, + sym__immediate_decimal, + ACTIONS(6272), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4028), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113759] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3255), 1, + STATE(3466), 1, sym_comment, - ACTIONS(6301), 12, + ACTIONS(6518), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222496,32 +240672,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, - [99803] = 4, + [113780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6305), 1, - anon_sym_DASH2, - STATE(3256), 1, + STATE(3467), 1, sym_comment, - ACTIONS(6303), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6603), 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, - [99826] = 3, + [113801] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3257), 1, + STATE(3468), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6605), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222534,13 +240708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99847] = 3, + [113822] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3258), 1, + STATE(3469), 1, sym_comment, - ACTIONS(6163), 12, - ts_builtin_sym_end, + ACTIONS(6607), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222552,12 +240725,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, - [99868] = 3, + anon_sym_RPAREN, + [113843] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1831), 1, + sym__entry_separator, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6566), 1, + anon_sym_DOLLAR, + ACTIONS(6609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6611), 1, + aux_sym__immediate_decimal_token2, + STATE(3470), 1, + sym_comment, + STATE(4374), 1, + sym__immediate_decimal, + ACTIONS(1833), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6508), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4368), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113880] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3259), 1, + STATE(3471), 1, sym_comment, - ACTIONS(6309), 12, + ACTIONS(6613), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222570,14 +240770,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99889] = 4, + [113901] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5721), 1, + ACTIONS(6033), 1, anon_sym_DASH2, - STATE(3260), 1, + STATE(3472), 1, sym_comment, - ACTIONS(5719), 11, + ACTIONS(6031), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222589,12 +240789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99912] = 3, + [113924] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3261), 1, + STATE(3473), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6615), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222607,12 +240807,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99933] = 3, + [113945] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1734), 1, + sym__entry_separator, + ACTIONS(1738), 1, + anon_sym_RBRACK, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6566), 1, + anon_sym_DOLLAR, + ACTIONS(6617), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6619), 1, + aux_sym__immediate_decimal_token2, + STATE(3474), 1, + sym_comment, + STATE(4440), 1, + sym__immediate_decimal, + ACTIONS(6621), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4329), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113984] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3262), 1, + STATE(3475), 1, sym_comment, - ACTIONS(6313), 12, + ACTIONS(6623), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222625,12 +240852,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99954] = 3, + [114005] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3263), 1, + STATE(3476), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6625), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222643,38 +240870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99975] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1675), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3012), 1, - sym__immediate_decimal, - STATE(3264), 1, - sym_comment, - ACTIONS(1677), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3011), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100012] = 3, + [114026] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3265), 1, + STATE(3477), 1, sym_comment, - ACTIONS(6317), 12, + ACTIONS(6627), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222687,13 +240888,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100033] = 3, + [114047] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3266), 1, + ACTIONS(6156), 1, + anon_sym_DASH2, + STATE(3478), 1, sym_comment, - ACTIONS(6081), 12, - ts_builtin_sym_end, + ACTIONS(6154), 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, + [114070] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3479), 1, + sym_comment, + ACTIONS(6629), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222705,57 +240924,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, - [100054] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + [114091] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6319), 1, - anon_sym_DOT, - ACTIONS(6321), 1, - aux_sym__immediate_decimal_token5, - STATE(3267), 1, + STATE(3480), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(6631), 12, sym__newline, anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [100081] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1452), 1, - anon_sym_BANG, - ACTIONS(6323), 1, - anon_sym_QMARK2, - STATE(351), 1, - sym__path_suffix, - STATE(3268), 1, - sym_comment, - ACTIONS(1448), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1446), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [100110] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [114112] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6327), 1, + ACTIONS(6635), 1, anon_sym_DASH2, - STATE(3269), 1, + STATE(3481), 1, sym_comment, - ACTIONS(6325), 11, + ACTIONS(6633), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222767,35 +240962,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100133] = 6, - ACTIONS(103), 1, + [114135] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6329), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6331), 1, - aux_sym__immediate_decimal_token5, - STATE(3270), 1, + STATE(3482), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(6637), 12, sym__newline, anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [100160] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [114156] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, + ACTIONS(2336), 1, anon_sym_DASH2, - STATE(3271), 1, + STATE(3483), 1, sym_comment, - ACTIONS(2206), 11, + ACTIONS(2334), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222807,12 +240999,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100183] = 3, + [114179] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3272), 1, + STATE(3484), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6408), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222824,42 +241017,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, - [100204] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6335), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, - aux_sym__immediate_decimal_token2, - STATE(3273), 1, - sym_comment, - STATE(4177), 1, - sym__immediate_decimal, - ACTIONS(6339), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4079), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100243] = 4, + [114200] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2212), 1, + ACTIONS(6641), 1, anon_sym_DASH2, - STATE(3274), 1, + STATE(3485), 1, sym_comment, - ACTIONS(2210), 11, + ACTIONS(6639), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222871,79 +241036,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100266] = 4, + [114223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_DASH2, - STATE(3275), 1, + STATE(3486), 1, sym_comment, - ACTIONS(2226), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6643), 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, - [100289] = 6, + [114244] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6341), 1, - anon_sym_DOT, - ACTIONS(6343), 1, - aux_sym__immediate_decimal_token5, - STATE(3276), 1, - sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, + ACTIONS(1962), 1, + anon_sym_DOLLAR, + ACTIONS(6264), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [100316] = 11, + ACTIONS(6268), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6270), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6599), 1, + anon_sym_DOLLAR2, + ACTIONS(6601), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6645), 1, + anon_sym_RBRACK, + STATE(3487), 1, + sym_comment, + STATE(3807), 1, + sym__immediate_decimal, + ACTIONS(6272), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4028), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [114283] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1801), 1, sym__entry_separator, - ACTIONS(5837), 1, + ACTIONS(1803), 1, + anon_sym_RBRACK, + ACTIONS(1819), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6264), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(6566), 1, anon_sym_DOLLAR, - ACTIONS(6250), 1, + ACTIONS(6617), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, + ACTIONS(6619), 1, aux_sym__immediate_decimal_token2, - STATE(3277), 1, + STATE(3488), 1, sym_comment, - STATE(4075), 1, + STATE(4245), 1, sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, + ACTIONS(6621), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4074), 2, + STATE(4389), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100353] = 3, + [114322] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3278), 1, + STATE(3489), 1, sym_comment, - ACTIONS(6143), 12, - ts_builtin_sym_end, + ACTIONS(6647), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222955,14 +241125,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, - [100374] = 4, + anon_sym_RPAREN, + [114343] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2232), 1, + ACTIONS(6651), 1, anon_sym_DASH2, - STATE(3279), 1, + STATE(3490), 1, sym_comment, - ACTIONS(2230), 11, + ACTIONS(6649), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222974,31 +241145,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100397] = 3, + [114366] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(3280), 1, + ACTIONS(1734), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + ACTIONS(6653), 1, + anon_sym_DOT, + STATE(3491), 1, + sym_comment, + STATE(4204), 1, + sym__immediate_decimal, + ACTIONS(6655), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6657), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4478), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [114403] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6661), 1, + anon_sym_DASH2, + STATE(3492), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6659), 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, - [100418] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [114426] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3281), 1, + STATE(3493), 1, sym_comment, - ACTIONS(6087), 12, - ts_builtin_sym_end, + ACTIONS(6663), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223010,13 +241207,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, - [100439] = 3, + anon_sym_RPAREN, + [114447] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3282), 1, + STATE(3494), 1, sym_comment, - ACTIONS(6089), 12, - ts_builtin_sym_end, + ACTIONS(5233), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223028,15 +241225,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, - [100460] = 3, + anon_sym_RPAREN, + [114468] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3283), 1, - sym_comment, - ACTIONS(6091), 12, - ts_builtin_sym_end, + ACTIONS(6232), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6665), 1, + anon_sym_else, + STATE(3495), 1, + sym_comment, + STATE(3501), 1, + aux_sym__repeat_newline, + ACTIONS(6235), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223046,33 +241247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100481] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6349), 1, - anon_sym_DASH2, - STATE(3284), 1, - sym_comment, - ACTIONS(6347), 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, - [100504] = 4, + [114495] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2236), 1, + ACTIONS(2388), 1, anon_sym_DASH2, - STATE(3285), 1, + STATE(3496), 1, sym_comment, - ACTIONS(2234), 11, + ACTIONS(2386), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223084,40 +241266,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100527] = 12, + [114518] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(1783), 1, sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACE, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5837), 1, + ACTIONS(6264), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(6566), 1, anon_sym_DOLLAR, - ACTIONS(6335), 1, + ACTIONS(6609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, + ACTIONS(6611), 1, aux_sym__immediate_decimal_token2, - STATE(3286), 1, + STATE(3497), 1, sym_comment, - STATE(4208), 1, + STATE(4307), 1, sym__immediate_decimal, - ACTIONS(6339), 2, + ACTIONS(1785), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6508), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4123), 2, + STATE(4297), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100566] = 3, + [114555] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3287), 1, + STATE(3498), 1, sym_comment, - ACTIONS(5548), 12, - ts_builtin_sym_end, + ACTIONS(6667), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223129,15 +241309,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, - [100587] = 3, + anon_sym_RPAREN, + [114576] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3288), 1, - sym_comment, - ACTIONS(6103), 12, - ts_builtin_sym_end, + ACTIONS(6183), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6669), 1, + anon_sym_else, + STATE(3499), 1, + sym_comment, + STATE(3503), 1, + aux_sym__repeat_newline, + ACTIONS(6186), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223147,14 +241331,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, - [100608] = 3, + [114603] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3289), 1, - sym_comment, - ACTIONS(6351), 12, + ACTIONS(6197), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6671), 1, + anon_sym_else, + STATE(3500), 1, + sym_comment, + STATE(3504), 1, + aux_sym__repeat_newline, + ACTIONS(6200), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223164,34 +241352,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, - [100629] = 4, + [114630] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2154), 1, - anon_sym_DASH2, - STATE(3290), 1, - sym_comment, - ACTIONS(2152), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6204), 1, sym__newline, + ACTIONS(6673), 1, + anon_sym_else, + STATE(3501), 1, + sym_comment, + STATE(3505), 1, + aux_sym__repeat_newline, + ACTIONS(6207), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [100652] = 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, + [114657] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3291), 1, - sym_comment, - ACTIONS(6353), 12, + ACTIONS(6341), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6675), 1, + anon_sym_else, + STATE(3436), 1, + aux_sym__repeat_newline, + STATE(3502), 1, + sym_comment, + ACTIONS(6344), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223201,64 +241394,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, - [100673] = 11, - ACTIONS(103), 1, + [114684] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(2981), 1, - sym__immediate_decimal, - STATE(3292), 1, - sym_comment, - ACTIONS(1586), 2, + ACTIONS(6348), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2979), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100710] = 8, - ACTIONS(103), 1, + ACTIONS(6677), 1, + anon_sym_else, + STATE(3503), 1, + sym_comment, + STATE(3570), 1, + aux_sym__repeat_newline, + ACTIONS(6351), 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, + [114711] = 6, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(368), 1, - sym_cell_path, - STATE(3293), 1, + sym__newline, + ACTIONS(6679), 1, + anon_sym_else, + STATE(3504), 1, sym_comment, - STATE(3378), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1432), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [100741] = 3, + STATE(3509), 1, + aux_sym__repeat_newline, + ACTIONS(6358), 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, + [114738] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3294), 1, - sym_comment, - ACTIONS(6357), 12, + ACTIONS(2219), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6681), 1, + anon_sym_else, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3505), 1, + sym_comment, + ACTIONS(2217), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223268,13 +241457,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, + [114765] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2344), 1, + anon_sym_DASH2, + STATE(3506), 1, + sym_comment, + ACTIONS(2342), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [100762] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [114788] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3295), 1, + STATE(3507), 1, sym_comment, - ACTIONS(4803), 12, + ACTIONS(6383), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223286,13 +241494,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, - [100783] = 3, + [114809] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3296), 1, + STATE(3508), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6684), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223305,14 +241512,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100804] = 3, + [114830] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3297), 1, + ACTIONS(2219), 1, + sym__newline, + ACTIONS(6686), 1, + anon_sym_else, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3509), 1, sym_comment, - ACTIONS(6361), 12, + ACTIONS(2217), 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, + [114857] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2219), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6689), 1, + anon_sym_else, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3510), 1, + sym_comment, + ACTIONS(2217), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223322,34 +241554,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, - [100825] = 6, - ACTIONS(103), 1, + [114884] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6363), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6365), 1, - aux_sym__immediate_decimal_token5, - STATE(3298), 1, + ACTIONS(2392), 1, + anon_sym_DASH2, + STATE(3511), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(2390), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [100852] = 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [114907] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3299), 1, + STATE(3512), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6692), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223362,14 +241591,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100873] = 4, + [114928] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6371), 1, + ACTIONS(6696), 1, anon_sym_DASH2, - STATE(3300), 1, + STATE(3513), 1, sym_comment, - ACTIONS(6369), 11, + ACTIONS(6694), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223381,13 +241610,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100896] = 3, + [114951] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3301), 1, + STATE(3514), 1, sym_comment, - ACTIONS(6161), 12, - ts_builtin_sym_end, + ACTIONS(5231), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223399,13 +241627,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, - [100917] = 3, + anon_sym_RPAREN, + [114972] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3302), 1, + STATE(3515), 1, sym_comment, - ACTIONS(6119), 12, - ts_builtin_sym_end, + ACTIONS(6698), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223417,13 +241645,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, - [100938] = 3, + anon_sym_RPAREN, + [114993] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3303), 1, + ACTIONS(3018), 1, + sym__newline, + STATE(870), 1, + aux_sym__pipe_separator, + STATE(3516), 1, sym_comment, - ACTIONS(6207), 12, - ts_builtin_sym_end, + STATE(3595), 1, + aux_sym__repeat_newline, + ACTIONS(2452), 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, + [115020] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3517), 1, + sym_comment, + ACTIONS(6700), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223435,14 +241684,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, - [100959] = 4, + anon_sym_RPAREN, + [115041] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1734), 1, + sym__entry_separator, + ACTIONS(1738), 1, + anon_sym_RBRACE, + ACTIONS(1962), 1, + anon_sym_DOLLAR, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6504), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6506), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6702), 1, + anon_sym_DOT, + STATE(3518), 1, + sym_comment, + STATE(4088), 1, + sym__immediate_decimal, + ACTIONS(6508), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4046), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [115080] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6704), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(380), 1, + sym_cell_path, + STATE(3519), 1, + sym_comment, + STATE(3588), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1590), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1588), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [115111] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2396), 1, anon_sym_DASH2, - STATE(3304), 1, + STATE(3520), 1, sym_comment, - ACTIONS(2238), 11, + ACTIONS(2394), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223454,14 +241754,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100982] = 4, + [115134] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1835), 1, + sym__entry_separator, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6566), 1, + anon_sym_DOLLAR, + ACTIONS(6609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6611), 1, + aux_sym__immediate_decimal_token2, + STATE(3521), 1, + sym_comment, + STATE(4385), 1, + sym__immediate_decimal, + ACTIONS(1837), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6508), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4383), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [115171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2244), 1, + ACTIONS(6708), 1, anon_sym_DASH2, - STATE(3305), 1, + STATE(3522), 1, sym_comment, - ACTIONS(2242), 11, + ACTIONS(6706), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223473,32 +241799,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101005] = 5, + [115194] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1960), 1, + ACTIONS(2400), 1, anon_sym_DASH2, - ACTIONS(6373), 1, - sym__newline, - STATE(3306), 2, - aux_sym__repeat_newline, + STATE(3523), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(2398), 11, anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101030] = 3, + [115217] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3307), 1, + STATE(3524), 1, sym_comment, - ACTIONS(6376), 12, + ACTIONS(3926), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223510,13 +241836,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, - [101051] = 3, + [115238] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3308), 1, + STATE(3525), 1, sym_comment, - ACTIONS(6378), 12, + ACTIONS(6710), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223529,12 +241854,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101072] = 3, + [115259] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3309), 1, + STATE(3526), 1, sym_comment, - ACTIONS(6380), 12, + ACTIONS(6460), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223546,50 +241872,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [101093] = 3, + [115280] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3310), 1, + ACTIONS(6714), 1, + anon_sym_DASH2, + STATE(3527), 1, sym_comment, - ACTIONS(5885), 12, - ts_builtin_sym_end, + ACTIONS(6712), 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, - [101114] = 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, + [115303] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6716), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6718), 1, + aux_sym__immediate_decimal_token5, + STATE(3528), 1, + sym_comment, + ACTIONS(759), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(761), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [115330] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3311), 1, + ACTIONS(6162), 1, + anon_sym_DASH2, + STATE(3529), 1, sym_comment, - ACTIONS(6382), 12, + ACTIONS(6160), 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, - [101135] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [115353] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3312), 1, + STATE(3530), 1, sym_comment, - ACTIONS(6141), 12, - ts_builtin_sym_end, + ACTIONS(6720), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223601,32 +241948,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, - [101156] = 3, + anon_sym_RPAREN, + [115374] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3313), 1, + ACTIONS(6722), 1, + anon_sym_DOT, + ACTIONS(6724), 1, + aux_sym__immediate_decimal_token5, + STATE(3531), 1, sym_comment, - ACTIONS(6384), 12, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 8, + anon_sym_if, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [101177] = 4, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [115401] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6388), 1, + ACTIONS(2320), 1, anon_sym_DASH2, - STATE(3314), 1, + STATE(3532), 1, sym_comment, - ACTIONS(6386), 11, + ACTIONS(2318), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223638,54 +241989,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101200] = 3, + [115424] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3315), 1, + ACTIONS(2280), 1, + anon_sym_DASH2, + STATE(3533), 1, sym_comment, - ACTIONS(6390), 12, + ACTIONS(2278), 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, - [101221] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [115447] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3316), 1, + ACTIONS(2234), 1, + anon_sym_DASH2, + STATE(3534), 1, sym_comment, - ACTIONS(6392), 12, + ACTIONS(2232), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [101242] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [115470] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6023), 1, - sym__newline, - ACTIONS(6394), 1, - anon_sym_else, - STATE(3317), 1, + STATE(3535), 1, sym_comment, - STATE(3321), 1, - aux_sym__repeat_newline, - ACTIONS(6026), 9, + ACTIONS(5215), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223695,18 +242045,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, - [101269] = 6, + [115491] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, - sym__newline, - ACTIONS(6396), 1, - anon_sym_else, - STATE(3318), 1, + STATE(3536), 1, sym_comment, - STATE(3322), 1, - aux_sym__repeat_newline, - ACTIONS(6033), 9, + ACTIONS(6726), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223716,18 +242062,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, - [101296] = 6, + anon_sym_RPAREN, + [115512] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5817), 1, - sym__newline, - ACTIONS(6398), 1, - anon_sym_else, - STATE(3319), 1, + STATE(3537), 1, sym_comment, - STATE(3323), 1, - aux_sym__repeat_newline, - ACTIONS(5820), 9, + ACTIONS(6728), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223737,18 +242080,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, - [101323] = 6, + anon_sym_RPAREN, + [115533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5950), 1, - sym__newline, - ACTIONS(6400), 1, - anon_sym_else, - STATE(3320), 1, + STATE(3538), 1, sym_comment, - STATE(3324), 1, - aux_sym__repeat_newline, - ACTIONS(5953), 9, + ACTIONS(6730), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223758,39 +242098,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, - [101350] = 6, + anon_sym_RPAREN, + [115554] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, - sym__newline, - ACTIONS(6402), 1, - anon_sym_else, - STATE(3321), 1, + ACTIONS(2404), 1, + anon_sym_DASH2, + STATE(3539), 1, sym_comment, - STATE(3325), 1, - aux_sym__repeat_newline, - ACTIONS(5797), 9, + ACTIONS(2402), 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, - [101377] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [115577] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1734), 1, + sym__entry_separator, + ACTIONS(1738), 1, + anon_sym_RBRACE, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6566), 1, + anon_sym_DOLLAR, + ACTIONS(6568), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6570), 1, + aux_sym__immediate_decimal_token2, + STATE(3540), 1, + sym_comment, + STATE(4543), 1, + sym__immediate_decimal, + ACTIONS(6572), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4329), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [115616] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5849), 1, - sym__newline, - ACTIONS(6404), 1, - anon_sym_else, - STATE(3322), 1, + STATE(3541), 1, sym_comment, - STATE(3326), 1, - aux_sym__repeat_newline, - ACTIONS(5852), 9, + ACTIONS(6732), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223800,18 +242162,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, - [101404] = 6, + anon_sym_RPAREN, + [115637] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6406), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3323), 1, + STATE(3542), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6734), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223821,39 +242180,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, - [101431] = 6, + anon_sym_RPAREN, + [115658] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5998), 1, - sym__newline, - ACTIONS(6409), 1, - anon_sym_else, - STATE(3324), 1, + ACTIONS(2408), 1, + anon_sym_DASH2, + STATE(3543), 1, sym_comment, - STATE(3327), 1, - aux_sym__repeat_newline, - ACTIONS(6001), 9, + ACTIONS(2406), 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, - [101458] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [115681] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6736), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6738), 1, + aux_sym__immediate_decimal_token5, + STATE(3544), 1, + sym_comment, + ACTIONS(759), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(761), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [115708] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6411), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3325), 1, + STATE(3545), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6740), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223863,18 +242238,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, - [101485] = 6, + anon_sym_RPAREN, + [115729] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6414), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3326), 1, + STATE(3546), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6403), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223884,18 +242257,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, - [101512] = 6, + [115750] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6417), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3327), 1, + STATE(3547), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6742), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223905,14 +242274,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, - [101539] = 4, + anon_sym_RPAREN, + [115771] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6422), 1, + ACTIONS(6714), 1, anon_sym_DASH2, - STATE(3328), 1, + STATE(3548), 1, sym_comment, - ACTIONS(6420), 11, + ACTIONS(6712), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223924,12 +242294,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101562] = 3, + [115794] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3329), 1, + STATE(3549), 1, sym_comment, - ACTIONS(6424), 12, + ACTIONS(6744), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223942,12 +242312,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101583] = 3, + [115815] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3330), 1, + STATE(3550), 1, sym_comment, - ACTIONS(6426), 12, + ACTIONS(5842), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223959,75 +242330,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [101604] = 11, + [115836] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1596), 1, - anon_sym_LBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(6428), 1, - anon_sym_DOT, - STATE(3331), 1, - sym_comment, - STATE(3892), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, + ACTIONS(6746), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4186), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101641] = 3, + ACTIONS(6748), 1, + aux_sym__immediate_decimal_token5, + STATE(3551), 1, + sym_comment, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(761), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [115863] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3332), 1, - sym_comment, - ACTIONS(4791), 12, + ACTIONS(6750), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6753), 1, + anon_sym_DASH2, + STATE(3552), 1, + sym_comment, + ACTIONS(2310), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4841), 8, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - [101662] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [115890] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3333), 1, + ACTIONS(6757), 1, + anon_sym_DASH2, + STATE(3553), 1, sym_comment, - ACTIONS(6434), 12, + ACTIONS(6755), 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, - [101683] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [115913] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3334), 1, + STATE(3554), 1, sym_comment, - ACTIONS(4783), 12, + ACTIONS(6401), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -224040,143 +242409,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, - [101704] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3335), 1, - sym_comment, - STATE(4075), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101741] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3336), 1, - sym_comment, - STATE(4116), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4115), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101778] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1671), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3337), 1, - sym_comment, - STATE(4119), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4117), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101815] = 11, - ACTIONS(103), 1, + [115934] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1675), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3338), 1, + ACTIONS(6761), 1, + anon_sym_DASH2, + STATE(3555), 1, sym_comment, - STATE(4122), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, + ACTIONS(6759), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4121), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101852] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1776), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6436), 1, - anon_sym_RBRACK, - STATE(3339), 1, - sym_comment, - STATE(3603), 1, - sym__immediate_decimal, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3860), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101891] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [115957] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3340), 1, + ACTIONS(6763), 1, + anon_sym_else, + STATE(3556), 1, sym_comment, - ACTIONS(6438), 12, + ACTIONS(6500), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224188,13 +242447,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, - [101912] = 3, + [115980] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3341), 1, + STATE(3557), 1, sym_comment, - ACTIONS(6440), 12, + ACTIONS(6410), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224206,42 +242465,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, - [101933] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACK, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, - aux_sym__immediate_decimal_token2, - STATE(3342), 1, - sym_comment, - STATE(4286), 1, - sym__immediate_decimal, - ACTIONS(6446), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101972] = 4, + [116001] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2200), 1, + ACTIONS(2412), 1, anon_sym_DASH2, - STATE(3343), 1, + STATE(3558), 1, sym_comment, - ACTIONS(2198), 11, + ACTIONS(2410), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224253,41 +242484,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101995] = 12, - ACTIONS(103), 1, + [116024] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6448), 1, - anon_sym_DOT, - STATE(3344), 1, + STATE(3559), 1, sym_comment, - STATE(3937), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102034] = 4, + ACTIONS(6765), 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, + [116045] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, + ACTIONS(6769), 1, anon_sym_DASH2, - STATE(3345), 1, + STATE(3560), 1, sym_comment, - ACTIONS(2100), 11, + ACTIONS(6767), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224299,14 +242521,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102057] = 4, + [116068] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1600), 1, + anon_sym_BANG, + ACTIONS(6771), 1, + anon_sym_QMARK2, + STATE(364), 1, + sym__path_suffix, + STATE(3561), 1, + sym_comment, + ACTIONS(1596), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1594), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [116097] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6450), 1, - anon_sym_else, - STATE(3346), 1, + STATE(3562), 1, sym_comment, - ACTIONS(6043), 11, + ACTIONS(6773), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224318,14 +242560,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, - [102080] = 4, + anon_sym_RPAREN, + [116118] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2078), 1, + ACTIONS(6777), 1, anon_sym_DASH2, - STATE(3347), 1, + STATE(3563), 1, sym_comment, - ACTIONS(2076), 11, + ACTIONS(6775), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224337,33 +242580,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102103] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6452), 1, - anon_sym_DOT, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - STATE(3348), 1, - sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [102130] = 3, + [116141] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3349), 1, + STATE(3564), 1, sym_comment, - ACTIONS(6456), 12, + ACTIONS(6779), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224376,52 +242598,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102151] = 6, + [116162] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6458), 1, + ACTIONS(1839), 1, + sym__entry_separator, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6566), 1, + anon_sym_DOLLAR, + ACTIONS(6609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6460), 1, + ACTIONS(6611), 1, + aux_sym__immediate_decimal_token2, + STATE(3565), 1, + sym_comment, + STATE(4388), 1, + sym__immediate_decimal, + ACTIONS(1841), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6508), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4387), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [116199] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + anon_sym_DOT, + ACTIONS(6783), 1, aux_sym__immediate_decimal_token5, - STATE(3350), 1, + STATE(3566), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(767), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(749), 6, + ACTIONS(769), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [102178] = 4, + [116226] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, - anon_sym_DASH2, - STATE(3351), 1, + STATE(3567), 1, sym_comment, - ACTIONS(2120), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6548), 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, - [102201] = 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, + [116247] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3352), 1, + STATE(3568), 1, sym_comment, - ACTIONS(6462), 12, + ACTIONS(6785), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224434,39 +242681,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102222] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACK, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, - aux_sym__immediate_decimal_token2, - STATE(3353), 1, - sym_comment, - STATE(4145), 1, - sym__immediate_decimal, - ACTIONS(6446), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4079), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102261] = 3, + [116268] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3354), 1, + STATE(3569), 1, sym_comment, - ACTIONS(6464), 12, + ACTIONS(5209), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224478,275 +242699,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [102282] = 9, + [116289] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(73), 1, - aux_sym_expr_unary_token1, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(3355), 1, + ACTIONS(2219), 1, + sym__newline, + ACTIONS(6787), 1, + anon_sym_else, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3570), 1, sym_comment, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(1305), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [102314] = 4, + ACTIONS(2217), 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, + [116316] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2098), 1, + ACTIONS(5732), 1, anon_sym_DASH2, - STATE(3356), 1, + STATE(3571), 1, sym_comment, - ACTIONS(2096), 10, - anon_sym_EQ, - sym_identifier, + STATE(3579), 1, + aux_sym_parameter_repeat2, + ACTIONS(1626), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(5730), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102336] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6468), 1, - anon_sym_DOT_DOT2, - ACTIONS(6472), 1, - sym_filesize_unit, - ACTIONS(6474), 1, - sym_duration_unit, - STATE(3357), 1, - sym_comment, - STATE(4728), 1, - sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6470), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [102372] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6476), 1, - aux_sym__immediate_decimal_token5, - STATE(3358), 1, - sym_comment, - ACTIONS(771), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102396] = 9, + [116342] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2764), 1, + ACTIONS(2896), 1, aux_sym_expr_unary_token1, - ACTIONS(4819), 1, + ACTIONS(5245), 1, anon_sym_DASH2, - ACTIONS(4832), 1, + ACTIONS(5262), 1, anon_sym_DOLLAR, - ACTIONS(5168), 1, + ACTIONS(5572), 1, anon_sym_LPAREN, - STATE(1294), 1, + STATE(1343), 1, sym__expr_unary_minus, - STATE(3359), 1, + STATE(3572), 1, sym_comment, - ACTIONS(2174), 2, + ACTIONS(2346), 2, anon_sym_true, anon_sym_false, - STATE(1305), 4, + STATE(1329), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [102428] = 5, + [116374] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6343), 1, + ACTIONS(6790), 1, aux_sym__immediate_decimal_token5, - STATE(3360), 1, + STATE(3573), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(775), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(741), 6, + ACTIONS(777), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [102452] = 10, + [116398] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1631), 1, - anon_sym_LBRACE, - ACTIONS(1639), 1, + ACTIONS(6792), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6794), 1, + aux_sym__immediate_decimal_token5, + STATE(3574), 1, + sym_comment, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(761), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [116424] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1801), 1, + sym__entry_separator, + ACTIONS(1803), 1, + anon_sym_RBRACE, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6566), 1, anon_sym_DOLLAR, - STATE(3361), 1, - sym_comment, - STATE(4787), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, + ACTIONS(6609), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6611), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, + STATE(3575), 1, + sym_comment, + STATE(4873), 1, + sym__immediate_decimal, + ACTIONS(6508), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(4389), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [102486] = 6, - ACTIONS(3), 1, + [116460] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6482), 1, - anon_sym_DOT, - ACTIONS(6484), 1, + ACTIONS(6796), 1, aux_sym__immediate_decimal_token5, - STATE(3362), 1, + STATE(3576), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(775), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_list, + ACTIONS(777), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102512] = 6, + sym__entry_separator, + [116484] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(2565), 1, + aux_sym_expr_unary_token1, + ACTIONS(5223), 1, + anon_sym_LPAREN, + ACTIONS(5225), 1, anon_sym_DASH2, - STATE(3363), 1, + STATE(961), 1, + sym__expr_unary_minus, + STATE(3577), 1, sym_comment, - STATE(3371), 1, - aux_sym_parameter_repeat2, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5332), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102538] = 6, + ACTIONS(2557), 2, + anon_sym_true, + anon_sym_false, + STATE(965), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [116516] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6486), 1, - anon_sym_DOT, - ACTIONS(6488), 1, + ACTIONS(6798), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6800), 1, aux_sym__immediate_decimal_token5, - STATE(3364), 1, + STATE(3578), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(759), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102564] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(761), 7, sym__newline, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3365), 1, - sym_comment, - ACTIONS(2531), 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, - [102588] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(4969), 1, - sym__unquoted_pattern, - ACTIONS(6490), 1, - anon_sym_DOT_DOT2, - ACTIONS(6494), 1, - sym_filesize_unit, - ACTIONS(6496), 1, - sym_duration_unit, - STATE(3366), 1, - sym_comment, - STATE(4625), 1, - sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6492), 2, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [102624] = 6, + sym_filesize_unit, + sym_duration_unit, + [116542] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6500), 1, + ACTIONS(6807), 1, anon_sym_DASH2, - STATE(3367), 1, - sym_comment, - STATE(3371), 1, - aux_sym_parameter_repeat2, - ACTIONS(1494), 2, + ACTIONS(6804), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6498), 7, + STATE(3579), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(6802), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -224754,95 +242908,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102650] = 5, + [116566] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(1734), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(3580), 1, + sym_comment, + STATE(4952), 1, + sym__immediate_decimal, + ACTIONS(6809), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6811), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(731), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [116600] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6595), 1, aux_sym__immediate_decimal_token5, - STATE(3368), 1, + STATE(3581), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(767), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_list, + ACTIONS(769), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102674] = 8, - ACTIONS(103), 1, + sym__entry_separator, + [116624] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3369), 1, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACE, + ACTIONS(1787), 1, + anon_sym_DOT, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(3582), 1, sym_comment, - STATE(3378), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3663), 1, - sym_cell_path, - ACTIONS(1641), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1643), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [102704] = 5, + STATE(4474), 1, + sym__immediate_decimal, + ACTIONS(6655), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6657), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4464), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [116658] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6504), 1, + ACTIONS(6813), 1, + anon_sym_DOT, + ACTIONS(6815), 1, aux_sym__immediate_decimal_token5, - STATE(3370), 1, + STATE(3583), 1, sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, + sym__unquoted_pattern_in_record, + ACTIONS(769), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [102728] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6511), 1, - anon_sym_DASH2, - ACTIONS(6508), 2, - sym__newline, - anon_sym_COMMA, - STATE(3371), 2, - sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(6506), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102752] = 4, + [116684] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3372), 1, + STATE(3584), 1, sym_comment, - ACTIONS(1480), 3, + ACTIONS(1670), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1478), 8, + ACTIONS(1668), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -224851,17 +243013,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [102774] = 5, + [116706] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6817), 1, aux_sym__immediate_decimal_token5, - STATE(3373), 1, + STATE(3585), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 8, + ACTIONS(777), 8, anon_sym_if, sym__newline, anon_sym_PIPE, @@ -224870,60 +243032,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102798] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5378), 1, - anon_sym_DASH2, - STATE(3371), 1, - aux_sym_parameter_repeat2, - STATE(3374), 1, - sym_comment, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5376), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102824] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - anon_sym_LBRACE, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3375), 1, - sym_comment, - STATE(4183), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4178), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102858] = 4, + [116730] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3376), 1, + STATE(3586), 1, sym_comment, - ACTIONS(1545), 3, + ACTIONS(1674), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1543), 8, + ACTIONS(1672), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -224932,116 +243050,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [102880] = 4, + [116752] = 11, ACTIONS(103), 1, anon_sym_POUND, - STATE(3377), 1, - sym_comment, - ACTIONS(1468), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1734), 1, sym__entry_separator, - ACTIONS(1466), 8, - anon_sym_RBRACK, + ACTIONS(1738), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102902] = 7, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6566), 1, + anon_sym_DOLLAR, + ACTIONS(6609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6611), 1, + aux_sym__immediate_decimal_token2, + STATE(3587), 1, + sym_comment, + STATE(4817), 1, + sym__immediate_decimal, + ACTIONS(6508), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4329), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [116788] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(6704), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(354), 1, sym_path, - STATE(3378), 1, + STATE(3588), 1, sym_comment, - STATE(3380), 1, + STATE(3589), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 3, + ACTIONS(1653), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1458), 5, + ACTIONS(1651), 5, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_COLON2, - [102930] = 4, + [116816] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3379), 1, + ACTIONS(6819), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(3589), 2, sym_comment, - ACTIONS(1472), 3, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1644), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1470), 8, + ACTIONS(1642), 5, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102952] = 6, + [116842] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3380), 2, + ACTIONS(904), 1, + sym__entry_separator, + ACTIONS(6601), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6822), 1, + anon_sym_LPAREN2, + ACTIONS(6824), 1, + anon_sym_DOT_DOT2, + ACTIONS(6828), 1, + sym_filesize_unit, + ACTIONS(6830), 1, + sym_duration_unit, + STATE(3590), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 3, + STATE(4891), 1, + sym__expr_parenthesized_immediate, + ACTIONS(815), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6826), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1524), 5, + [116878] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6783), 1, + aux_sym__immediate_decimal_token5, + STATE(3591), 1, + sym_comment, + ACTIONS(767), 4, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - [102978] = 9, + sym__unquoted_pattern_in_list, + ACTIONS(769), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [116902] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(173), 1, + ACTIONS(6832), 1, + anon_sym_DOT, + ACTIONS(6834), 1, + aux_sym__immediate_decimal_token5, + STATE(3592), 1, + sym_comment, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [116928] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(73), 1, aux_sym_expr_unary_token1, - ACTIONS(1584), 1, + ACTIONS(1791), 1, anon_sym_DOLLAR, - ACTIONS(4795), 1, + ACTIONS(5241), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5245), 1, anon_sym_DASH2, - STATE(945), 1, + STATE(1343), 1, sym__expr_unary_minus, - STATE(3381), 1, + STATE(3593), 1, sym_comment, - ACTIONS(1937), 2, + ACTIONS(2346), 2, anon_sym_true, anon_sym_false, - STATE(953), 4, + STATE(1329), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [103010] = 4, + [116960] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2312), 1, + anon_sym_DASH2, + STATE(3594), 1, + sym_comment, + ACTIONS(2310), 10, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [116982] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + sym__newline, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3595), 1, + sym_comment, + ACTIONS(2699), 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, + [117006] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5792), 1, + anon_sym_DASH2, + STATE(3579), 1, + aux_sym_parameter_repeat2, + STATE(3596), 1, + sym_comment, + ACTIONS(1626), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5790), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [117032] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6836), 1, + anon_sym_DOT, + ACTIONS(6838), 1, + aux_sym__immediate_decimal_token5, + STATE(3597), 1, + sym_comment, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [117058] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3382), 1, + STATE(3598), 1, sym_comment, - ACTIONS(1476), 3, + ACTIONS(1702), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1474), 8, + ACTIONS(1700), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -225050,16 +243298,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [103032] = 4, + [117080] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3383), 1, + STATE(3599), 1, sym_comment, - ACTIONS(1516), 3, + ACTIONS(1678), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1514), 8, + ACTIONS(1676), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -225068,19 +243316,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [103054] = 6, + [117102] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6518), 1, + ACTIONS(6842), 1, anon_sym_DASH2, - STATE(3371), 1, + STATE(3579), 1, aux_sym_parameter_repeat2, - STATE(3384), 1, + STATE(3600), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(1626), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6516), 7, + ACTIONS(6840), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -225088,134 +243336,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103080] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1596), 1, - anon_sym_LBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3385), 1, - sym_comment, - STATE(4713), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103114] = 8, + [117128] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(6704), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(354), 1, sym_path, - STATE(3378), 1, + STATE(3588), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3386), 1, + STATE(3601), 1, sym_comment, - STATE(3661), 1, + STATE(3929), 1, sym_cell_path, - ACTIONS(1679), 3, + ACTIONS(1807), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1681), 4, + ACTIONS(1809), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [103144] = 11, + [117158] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + STATE(3602), 1, + sym_comment, + ACTIONS(1682), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1598), 1, + ACTIONS(1680), 8, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3387), 1, - sym_comment, - STATE(4753), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4079), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103180] = 5, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [117180] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6321), 1, + ACTIONS(6844), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6846), 1, aux_sym__immediate_decimal_token5, - STATE(3388), 1, + STATE(3603), 1, sym_comment, - ACTIONS(739), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(759), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, + sym__unquoted_pattern_in_record, + ACTIONS(761), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103204] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACE, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3389), 1, - sym_comment, - STATE(4790), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103240] = 6, + [117206] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6520), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6522), 1, + ACTIONS(6724), 1, aux_sym__immediate_decimal_token5, - STATE(3390), 1, + STATE(3604), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(767), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 7, + ACTIONS(769), 8, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -225223,19 +243415,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103266] = 6, + [117230] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5318), 1, + ACTIONS(6848), 1, + anon_sym_else, + STATE(3605), 1, + sym_comment, + ACTIONS(6500), 10, + sym__newline, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [117252] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3606), 1, + sym_comment, + ACTIONS(1688), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1686), 8, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [117274] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5760), 1, anon_sym_DASH2, - STATE(3371), 1, + STATE(3579), 1, aux_sym_parameter_repeat2, - STATE(3391), 1, + STATE(3607), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(1626), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5316), 7, + ACTIONS(5758), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -225243,62 +243471,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103292] = 6, + [117300] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACE, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(3608), 1, + sym_comment, + STATE(4918), 1, + sym__immediate_decimal, + ACTIONS(6809), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6811), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(749), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [117334] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - ACTIONS(6526), 1, - aux_sym__immediate_decimal_token5, - STATE(3392), 1, + ACTIONS(6704), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(3588), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3609), 1, sym_comment, - ACTIONS(739), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 6, - anon_sym_LPAREN2, + STATE(3928), 1, + sym_cell_path, + ACTIONS(1821), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [103318] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(4797), 1, - anon_sym_DASH2, - STATE(945), 1, - sym__expr_unary_minus, - STATE(3393), 1, - sym_comment, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(953), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [103350] = 6, + ACTIONS(1823), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [117364] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6530), 1, + ACTIONS(6852), 1, anon_sym_DASH2, - STATE(3371), 1, + STATE(3579), 1, aux_sym_parameter_repeat2, - STATE(3394), 1, + STATE(3610), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(1626), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6528), 7, + ACTIONS(6850), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -225306,951 +243537,976 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103376] = 4, + [117390] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6532), 1, - anon_sym_else, - STATE(3395), 1, + ACTIONS(6856), 1, + anon_sym_DASH2, + STATE(3579), 1, + aux_sym_parameter_repeat2, + STATE(3611), 1, sym_comment, - ACTIONS(6043), 10, + ACTIONS(1626), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(6854), 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, - [103398] = 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [117416] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2406), 1, + ACTIONS(173), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(5223), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(5225), 1, anon_sym_DASH2, - STATE(945), 1, + STATE(961), 1, sym__expr_unary_minus, - STATE(3396), 1, + STATE(3612), 1, sym_comment, - ACTIONS(2398), 2, + ACTIONS(2076), 2, anon_sym_true, anon_sym_false, - STATE(953), 4, + STATE(965), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [103430] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6534), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6536), 1, - aux_sym__immediate_decimal_token5, - STATE(3397), 1, - sym_comment, - ACTIONS(747), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [103456] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - STATE(3398), 1, - sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [103480] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6538), 1, - aux_sym__immediate_decimal_token5, - STATE(3399), 1, - sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [103504] = 6, + [117448] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6540), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6542), 1, - aux_sym__immediate_decimal_token5, - STATE(3400), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 7, - anon_sym_LBRACK, + ACTIONS(1934), 1, anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103530] = 10, + ACTIONS(2854), 1, + aux_sym_expr_unary_token1, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + ACTIONS(5225), 1, + anon_sym_DASH2, + STATE(961), 1, + sym__expr_unary_minus, + STATE(3613), 1, + sym_comment, + ACTIONS(2076), 2, + anon_sym_true, + anon_sym_false, + STATE(965), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [117480] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6069), 1, + ACTIONS(6391), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(6393), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(6395), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(6397), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, + ACTIONS(6601), 1, aux_sym__unquoted_in_list_token2, - STATE(3401), 1, + STATE(3614), 1, sym_comment, - STATE(3922), 1, + STATE(4229), 1, + sym__immediate_decimal, + ACTIONS(6399), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4391), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [117513] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1783), 1, + anon_sym_LBRACE, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(730), 1, sym__immediate_decimal, - ACTIONS(6077), 2, + STATE(3615), 1, + sym_comment, + ACTIONS(6657), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4234), 2, + ACTIONS(6858), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(729), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103563] = 9, + [117544] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(6544), 1, - anon_sym_DQUOTE, - ACTIONS(6546), 1, - anon_sym_SQUOTE, - ACTIONS(6548), 1, - anon_sym_BQUOTE, - ACTIONS(6550), 1, - aux_sym_path_token1, - STATE(2374), 1, - sym_val_string, - STATE(3402), 1, + STATE(3616), 1, sym_comment, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103594] = 9, + ACTIONS(894), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(896), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [117565] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1426), 1, + ACTIONS(1952), 1, sym_raw_string_begin, - ACTIONS(6552), 1, + ACTIONS(6860), 1, anon_sym_DQUOTE, - ACTIONS(6554), 1, + ACTIONS(6862), 1, anon_sym_SQUOTE, - ACTIONS(6556), 1, + ACTIONS(6864), 1, anon_sym_BQUOTE, - ACTIONS(6558), 1, + ACTIONS(6866), 1, aux_sym_path_token1, - STATE(3403), 1, - sym_comment, - STATE(3610), 1, + STATE(2488), 1, sym_val_string, - STATE(3505), 4, + STATE(3617), 1, + sym_comment, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [103625] = 9, + [117596] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6560), 1, + ACTIONS(6868), 1, anon_sym_DQUOTE, - ACTIONS(6562), 1, + ACTIONS(6870), 1, anon_sym_SQUOTE, - ACTIONS(6564), 1, + ACTIONS(6872), 1, anon_sym_BQUOTE, - ACTIONS(6566), 1, + ACTIONS(6874), 1, aux_sym_path_token1, - ACTIONS(6568), 1, + ACTIONS(6876), 1, sym_raw_string_begin, - STATE(336), 1, + STATE(345), 1, sym_val_string, - STATE(3404), 1, + STATE(3618), 1, sym_comment, - STATE(365), 4, + STATE(367), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [103656] = 10, + [117627] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(1962), 1, anon_sym_DOLLAR, - ACTIONS(5743), 1, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6436), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6570), 1, + ACTIONS(6438), 1, aux_sym__immediate_decimal_token2, - STATE(3405), 1, + ACTIONS(6878), 1, + aux_sym__unquoted_in_record_token2, + STATE(3619), 1, sym_comment, - STATE(3600), 1, + STATE(3898), 1, sym__immediate_decimal, - ACTIONS(6572), 2, + ACTIONS(6440), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3625), 2, + STATE(4038), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103689] = 10, + [117660] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6880), 1, + anon_sym_DOT, + ACTIONS(6882), 1, + aux_sym__immediate_decimal_token5, + STATE(3620), 1, + sym_comment, + ACTIONS(1882), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1884), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [117685] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1900), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(5603), 1, anon_sym_DOLLAR, - ACTIONS(5934), 1, + ACTIONS(6655), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6574), 1, + ACTIONS(6884), 1, aux_sym__immediate_decimal_token2, - STATE(3406), 1, + STATE(3621), 1, sym_comment, - STATE(3914), 1, + STATE(4192), 1, sym__immediate_decimal, - ACTIONS(6576), 2, + ACTIONS(6886), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(4462), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103722] = 4, + [117718] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3407), 1, - sym_comment, - ACTIONS(771), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 6, - sym__space, + ACTIONS(6264), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103743] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6578), 1, - anon_sym_DQUOTE, - ACTIONS(6580), 1, - anon_sym_SQUOTE, - ACTIONS(6582), 1, - anon_sym_BQUOTE, - ACTIONS(6584), 1, - aux_sym_path_token1, - ACTIONS(6586), 1, - sym_raw_string_begin, - STATE(374), 1, - sym_val_string, - STATE(3408), 1, + ACTIONS(6566), 1, + anon_sym_DOLLAR, + ACTIONS(6601), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6617), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6619), 1, + aux_sym__immediate_decimal_token2, + STATE(3622), 1, sym_comment, - STATE(391), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103774] = 10, + STATE(4246), 1, + sym__immediate_decimal, + ACTIONS(6621), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4391), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [117751] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(1962), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6264), 1, anon_sym_LPAREN2, - ACTIONS(6047), 1, + ACTIONS(6268), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, + ACTIONS(6270), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, + ACTIONS(6601), 1, aux_sym__unquoted_in_list_token2, - STATE(3409), 1, + STATE(3623), 1, sym_comment, - STATE(3719), 1, + STATE(3807), 1, sym__immediate_decimal, - ACTIONS(6051), 2, + ACTIONS(6272), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + STATE(4028), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103807] = 10, + [117784] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5837), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6248), 1, + ACTIONS(1900), 1, + aux_sym_unquoted_token2, + ACTIONS(5603), 1, anon_sym_DOLLAR, - ACTIONS(6442), 1, + ACTIONS(6113), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, + ACTIONS(6888), 1, aux_sym__immediate_decimal_token2, - STATE(3410), 1, + STATE(3624), 1, sym_comment, - STATE(4350), 1, + STATE(3797), 1, sym__immediate_decimal, - ACTIONS(6446), 2, + ACTIONS(6890), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4234), 2, + STATE(3906), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103840] = 10, + [117817] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1900), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(5603), 1, anon_sym_DOLLAR, - ACTIONS(6478), 1, + ACTIONS(6215), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6892), 1, aux_sym__immediate_decimal_token2, - STATE(3411), 1, + STATE(3625), 1, sym_comment, - STATE(4660), 1, + STATE(4159), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6894), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(895), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103873] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6484), 1, - aux_sym__immediate_decimal_token5, - STATE(3412), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103896] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6592), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6594), 1, - aux_sym__immediate_decimal_token5, - STATE(3413), 1, - sym_comment, - ACTIONS(1726), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [103921] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3414), 1, - sym_comment, - ACTIONS(849), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103942] = 9, + [117850] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(211), 1, + ACTIONS(3192), 1, sym_raw_string_begin, - ACTIONS(6596), 1, + ACTIONS(6896), 1, anon_sym_DQUOTE, - ACTIONS(6598), 1, + ACTIONS(6898), 1, anon_sym_SQUOTE, - ACTIONS(6600), 1, + ACTIONS(6900), 1, anon_sym_BQUOTE, - ACTIONS(6602), 1, + ACTIONS(6902), 1, aux_sym_path_token1, - STATE(406), 1, + STATE(2594), 1, sym_val_string, - STATE(3415), 1, + STATE(3626), 1, sym_comment, - STATE(415), 4, + STATE(2782), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [103973] = 6, + [117881] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1831), 1, + anon_sym_LBRACE, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(744), 1, + sym__immediate_decimal, + STATE(3627), 1, + sym_comment, + ACTIONS(6657), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6858), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(743), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [117912] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6604), 1, - anon_sym_DOT, - ACTIONS(6606), 1, + ACTIONS(6904), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6906), 1, aux_sym__immediate_decimal_token5, - STATE(3416), 1, + STATE(3628), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(1920), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1738), 4, + ACTIONS(1922), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [103998] = 4, - ACTIONS(3), 1, + [117937] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6299), 1, - anon_sym_DASH2, - STATE(3417), 1, + STATE(3629), 1, sym_comment, - ACTIONS(4376), 9, - sym_identifier, - sym__newline, - anon_sym_PIPE, + ACTIONS(775), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [104019] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(6608), 1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - ACTIONS(6612), 1, + sym__unquoted_pattern_in_list, + ACTIONS(777), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(6614), 1, sym_duration_unit, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, - STATE(3418), 1, + sym__entry_separator, + [117958] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1793), 1, + anon_sym_LPAREN2, + ACTIONS(1797), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1984), 1, + aux_sym_unquoted_token2, + ACTIONS(6908), 1, + anon_sym_DOLLAR, + ACTIONS(6910), 1, + aux_sym__immediate_decimal_token2, + STATE(722), 1, + sym__immediate_decimal, + STATE(3630), 1, sym_comment, - STATE(4630), 1, + ACTIONS(6912), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(915), 2, sym__expr_parenthesized_immediate, - ACTIONS(6610), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [104054] = 5, - ACTIONS(3), 1, + sym_val_variable, + [117991] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6488), 1, + ACTIONS(6815), 1, aux_sym__immediate_decimal_token5, - STATE(3419), 1, + STATE(3631), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(767), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + sym__unquoted_pattern_in_record, + ACTIONS(769), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104077] = 10, + sym__entry_separator, + [118014] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(1793), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - ACTIONS(5862), 1, + ACTIONS(1845), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, + ACTIONS(1984), 1, + aux_sym_unquoted_token2, + ACTIONS(6908), 1, + anon_sym_DOLLAR, + ACTIONS(6914), 1, aux_sym__immediate_decimal_token2, - STATE(3420), 1, - sym_comment, - STATE(3608), 1, + STATE(1142), 1, sym__immediate_decimal, - ACTIONS(5866), 2, + STATE(3632), 1, + sym_comment, + ACTIONS(6916), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3853), 2, + STATE(1330), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104110] = 10, + [118047] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - ACTIONS(6055), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, - aux_sym__immediate_decimal_token2, - STATE(3421), 1, + ACTIONS(6918), 1, + aux_sym__immediate_decimal_token5, + STATE(3633), 1, sym_comment, - STATE(3961), 1, - sym__immediate_decimal, - ACTIONS(6059), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2930), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104143] = 9, + ACTIONS(775), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(777), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [118070] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3022), 1, + ACTIONS(1582), 1, sym_raw_string_begin, - ACTIONS(6550), 1, - aux_sym_path_token1, - ACTIONS(6618), 1, + ACTIONS(6920), 1, anon_sym_DQUOTE, - ACTIONS(6620), 1, + ACTIONS(6922), 1, anon_sym_SQUOTE, - ACTIONS(6622), 1, + ACTIONS(6924), 1, anon_sym_BQUOTE, - STATE(2374), 1, + ACTIONS(6926), 1, + aux_sym_path_token1, + STATE(3561), 1, sym_val_string, - STATE(3422), 1, + STATE(3634), 1, sym_comment, - STATE(2548), 4, + STATE(3705), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104174] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6624), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6626), 1, - aux_sym__immediate_decimal_token5, - STATE(3423), 1, - sym_comment, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1728), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [104199] = 4, + [118101] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3424), 1, + STATE(3635), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(759), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(749), 6, + ACTIONS(761), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [104220] = 4, - ACTIONS(3), 1, + [118122] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3425), 1, + ACTIONS(6928), 1, + anon_sym_DOT, + ACTIONS(6930), 1, + aux_sym__immediate_decimal_token5, + STATE(3636), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1882), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104241] = 6, + sym__entry_separator, + ACTIONS(1884), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [118147] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6628), 1, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1835), 1, + anon_sym_LBRACE, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(746), 1, + sym__immediate_decimal, + STATE(3637), 1, + sym_comment, + ACTIONS(6657), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6858), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6630), 1, + aux_sym__immediate_decimal_token2, + STATE(745), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [118178] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6932), 1, aux_sym__immediate_decimal_token5, - STATE(3426), 1, + STATE(3638), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(777), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [104266] = 9, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [118201] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1667), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(1900), 1, + aux_sym_unquoted_token2, + ACTIONS(5603), 1, anon_sym_DOLLAR, - STATE(737), 1, - sym__immediate_decimal, - STATE(3427), 1, + ACTIONS(6809), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6934), 1, + aux_sym__immediate_decimal_token2, + STATE(3639), 1, sym_comment, - ACTIONS(6432), 2, + STATE(4935), 1, + sym__immediate_decimal, + ACTIONS(6936), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(736), 2, + STATE(895), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104297] = 9, - ACTIONS(3), 1, + [118234] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3395), 1, anon_sym_LPAREN2, - ACTIONS(1671), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(4123), 1, anon_sym_DOLLAR, - STATE(739), 1, + ACTIONS(5276), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5278), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5372), 1, + aux_sym_unquoted_token2, + STATE(2715), 1, sym__immediate_decimal, - STATE(3428), 1, + STATE(3640), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(5280), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(738), 2, + STATE(2815), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104328] = 4, + [118267] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3429), 1, + STATE(3641), 1, sym_comment, - ACTIONS(849), 4, + ACTIONS(759), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(851), 6, + ACTIONS(761), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [104349] = 10, + [118288] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(3395), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(4123), 1, anon_sym_DOLLAR, - ACTIONS(4850), 1, + ACTIONS(5290), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, + ACTIONS(5292), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4969), 1, + ACTIONS(5372), 1, aux_sym_unquoted_token2, - STATE(2505), 1, + STATE(2963), 1, sym__immediate_decimal, - STATE(3430), 1, + STATE(3642), 1, sym_comment, - ACTIONS(4854), 2, + ACTIONS(5294), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2605), 2, + STATE(3233), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104382] = 10, + [118321] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(6938), 1, + anon_sym_DQUOTE, + ACTIONS(6940), 1, + anon_sym_SQUOTE, + ACTIONS(6942), 1, + anon_sym_BQUOTE, + ACTIONS(6944), 1, + aux_sym_path_token1, + ACTIONS(6946), 1, + sym_raw_string_begin, + STATE(1971), 1, + sym_val_string, + STATE(3643), 1, + sym_comment, + STATE(2035), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [118352] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6948), 1, + anon_sym_DOT, + ACTIONS(6950), 1, + aux_sym__immediate_decimal_token5, + STATE(3644), 1, + sym_comment, + ACTIONS(1884), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1882), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118377] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3359), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(4115), 1, anon_sym_DOLLAR, - ACTIONS(4884), 1, + ACTIONS(5318), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, + ACTIONS(5320), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4969), 1, + ACTIONS(5487), 1, aux_sym_unquoted_token2, - STATE(2699), 1, + STATE(2796), 1, sym__immediate_decimal, - STATE(3431), 1, + STATE(3645), 1, sym_comment, - ACTIONS(4888), 2, + ACTIONS(5322), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2930), 2, + STATE(2938), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104415] = 9, + [118410] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1675), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(741), 1, - sym__immediate_decimal, - STATE(3432), 1, + STATE(3646), 1, sym_comment, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(740), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104446] = 9, + ACTIONS(894), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(896), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [118431] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6952), 1, + aux_sym__immediate_decimal_token5, + STATE(3647), 1, + sym_comment, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(777), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [118454] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3648), 1, + sym_comment, + ACTIONS(775), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(777), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [118475] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6634), 1, + ACTIONS(6954), 1, anon_sym_DQUOTE, - ACTIONS(6636), 1, + ACTIONS(6956), 1, anon_sym_SQUOTE, - ACTIONS(6638), 1, + ACTIONS(6958), 1, anon_sym_BQUOTE, - ACTIONS(6640), 1, + ACTIONS(6960), 1, aux_sym_path_token1, - ACTIONS(6642), 1, + ACTIONS(6962), 1, sym_raw_string_begin, - STATE(1772), 1, + STATE(2582), 1, sym_val_string, - STATE(3433), 1, + STATE(3649), 1, sym_comment, - STATE(1780), 4, + STATE(2622), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104477] = 9, - ACTIONS(3), 1, + [118506] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - anon_sym_LBRACE, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(722), 1, - sym__immediate_decimal, - STATE(3434), 1, + STATE(3650), 1, sym_comment, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(721), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104508] = 5, + ACTIONS(894), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(896), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [118527] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1442), 1, - anon_sym_BANG, - STATE(3435), 1, + ACTIONS(6964), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6966), 1, + aux_sym__immediate_decimal_token5, + STATE(3651), 1, sym_comment, - ACTIONS(1440), 3, + ACTIONS(1920), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1438), 6, + ACTIONS(1922), 4, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [104531] = 10, + sym__unquoted_pattern_in_list, + [118552] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6968), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6970), 1, + aux_sym__immediate_decimal_token5, + STATE(3652), 1, + sym_comment, + ACTIONS(1922), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1920), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118577] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + ACTIONS(6566), 1, + anon_sym_DOLLAR, + ACTIONS(6568), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6570), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6878), 1, + aux_sym__unquoted_in_record_token2, + STATE(3653), 1, + sym_comment, + STATE(4397), 1, + sym__immediate_decimal, + ACTIONS(6572), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4391), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [118610] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1592), 1, + ACTIONS(1744), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1762), 1, + ACTIONS(1900), 1, aux_sym_unquoted_token2, - ACTIONS(6644), 1, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(6646), 1, + ACTIONS(6974), 1, aux_sym__immediate_decimal_token2, - STATE(642), 1, + STATE(522), 1, sym__immediate_decimal, - STATE(3436), 1, + STATE(3654), 1, sym_comment, - ACTIONS(6648), 2, + ACTIONS(6976), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(711), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104564] = 10, + [118643] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1635), 1, + ACTIONS(1815), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1762), 1, + ACTIONS(1900), 1, aux_sym_unquoted_token2, - ACTIONS(6644), 1, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(6650), 1, + ACTIONS(6978), 1, aux_sym__immediate_decimal_token2, - STATE(941), 1, + STATE(940), 1, sym__immediate_decimal, - STATE(3437), 1, + STATE(3655), 1, sym_comment, - ACTIONS(6652), 2, + ACTIONS(6980), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(895), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104597] = 9, + [118676] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(6654), 1, + ACTIONS(6982), 1, anon_sym_DQUOTE, - ACTIONS(6656), 1, + ACTIONS(6984), 1, anon_sym_SQUOTE, - ACTIONS(6658), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(6660), 1, + ACTIONS(6988), 1, aux_sym_path_token1, - STATE(502), 1, + ACTIONS(6990), 1, + sym_raw_string_begin, + STATE(1452), 1, sym_val_string, - STATE(3438), 1, + STATE(3656), 1, sym_comment, - STATE(480), 4, + STATE(1498), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104628] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6662), 1, - anon_sym_DOT, - ACTIONS(6664), 1, - aux_sym__immediate_decimal_token5, - STATE(3439), 1, - sym_comment, - ACTIONS(1736), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [104653] = 5, + [118707] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6666), 1, + ACTIONS(6834), 1, aux_sym__immediate_decimal_token5, - STATE(3440), 1, + STATE(3657), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(767), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 7, + ACTIONS(769), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, @@ -226258,170 +244514,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104676] = 9, + [118730] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6668), 1, + ACTIONS(1952), 1, + sym_raw_string_begin, + ACTIONS(6860), 1, anon_sym_DQUOTE, - ACTIONS(6670), 1, + ACTIONS(6862), 1, anon_sym_SQUOTE, - ACTIONS(6672), 1, + ACTIONS(6864), 1, anon_sym_BQUOTE, - ACTIONS(6674), 1, + ACTIONS(6902), 1, aux_sym_path_token1, - ACTIONS(6676), 1, - sym_raw_string_begin, - STATE(3441), 1, - sym_comment, - STATE(3677), 1, + STATE(2594), 1, sym_val_string, - STATE(3791), 4, + STATE(3658), 1, + sym_comment, + STATE(2465), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104707] = 10, + [118761] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(1839), 1, + anon_sym_LBRACE, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(748), 1, + sym__immediate_decimal, + STATE(3659), 1, + sym_comment, + ACTIONS(6657), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6858), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(747), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [118792] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1793), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1984), 1, aux_sym_unquoted_token2, - ACTIONS(4836), 1, + ACTIONS(5266), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, + ACTIONS(5574), 1, anon_sym_DOLLAR, - ACTIONS(6678), 1, + ACTIONS(6992), 1, aux_sym__immediate_decimal_token2, - STATE(2433), 1, + STATE(2653), 1, sym__immediate_decimal, - STATE(3442), 1, + STATE(3660), 1, sym_comment, - ACTIONS(6680), 2, + ACTIONS(6994), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2576), 2, + STATE(2804), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104740] = 10, + [118825] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1793), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1984), 1, aux_sym_unquoted_token2, - ACTIONS(4844), 1, + ACTIONS(5270), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, + ACTIONS(5574), 1, anon_sym_DOLLAR, - ACTIONS(6682), 1, + ACTIONS(6996), 1, aux_sym__immediate_decimal_token2, - STATE(2626), 1, + STATE(2829), 1, sym__immediate_decimal, - STATE(3443), 1, + STATE(3661), 1, sym_comment, - ACTIONS(6684), 2, + ACTIONS(6998), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(1330), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104773] = 9, + [118858] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6686), 1, + ACTIONS(7000), 1, anon_sym_DQUOTE, - ACTIONS(6688), 1, + ACTIONS(7002), 1, anon_sym_SQUOTE, - ACTIONS(6690), 1, + ACTIONS(7004), 1, anon_sym_BQUOTE, - ACTIONS(6692), 1, + ACTIONS(7006), 1, aux_sym_path_token1, - ACTIONS(6694), 1, + ACTIONS(7008), 1, sym_raw_string_begin, - STATE(3268), 1, - sym_val_string, - STATE(3444), 1, + STATE(3662), 1, sym_comment, - STATE(3372), 4, + STATE(3846), 1, + sym_val_string, + STATE(4067), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104804] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6696), 1, - aux_sym__immediate_decimal_token5, - STATE(3445), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104827] = 10, + [118889] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3461), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(4825), 1, + ACTIONS(5449), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5451), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5164), 1, + ACTIONS(5552), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7010), 1, anon_sym_DOLLAR, - ACTIONS(6698), 1, - aux_sym__immediate_decimal_token2, - STATE(2406), 1, + STATE(3176), 1, sym__immediate_decimal, - STATE(3446), 1, + STATE(3663), 1, sym_comment, - ACTIONS(6700), 2, + ACTIONS(7012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2500), 2, + STATE(3455), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104860] = 10, + [118922] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(4840), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(6702), 1, - aux_sym__immediate_decimal_token2, - STATE(2523), 1, - sym__immediate_decimal, - STATE(3447), 1, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(7014), 1, + anon_sym_DQUOTE, + ACTIONS(7016), 1, + anon_sym_SQUOTE, + ACTIONS(7018), 1, + anon_sym_BQUOTE, + ACTIONS(7020), 1, + aux_sym_path_token1, + STATE(419), 1, + sym_val_string, + STATE(3664), 1, sym_comment, - ACTIONS(6704), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(888), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104893] = 4, + STATE(433), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [118953] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3448), 1, + ACTIONS(6838), 1, + aux_sym__immediate_decimal_token5, + STATE(3665), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(767), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 8, - anon_sym_if, + ACTIONS(769), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -226429,858 +244689,930 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104914] = 10, + [118976] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5837), 1, + ACTIONS(815), 1, + anon_sym_RBRACK, + ACTIONS(904), 1, + sym__entry_separator, + ACTIONS(6601), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6822), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6335), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - STATE(3449), 1, + ACTIONS(7022), 1, + anon_sym_DOT_DOT2, + ACTIONS(7026), 1, + sym_filesize_unit, + ACTIONS(7028), 1, + sym_duration_unit, + STATE(3666), 1, sym_comment, - STATE(4159), 1, - sym__immediate_decimal, - ACTIONS(6339), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4234), 2, + STATE(4891), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [104947] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6706), 1, - aux_sym__immediate_decimal_token5, - STATE(3450), 1, - sym_comment, - ACTIONS(771), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 6, - anon_sym_LPAREN2, + ACTIONS(7024), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [104970] = 10, + [119011] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1900), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(5930), 1, + ACTIONS(5251), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6708), 1, + ACTIONS(5603), 1, + anon_sym_DOLLAR, + ACTIONS(7030), 1, aux_sym__immediate_decimal_token2, - STATE(3451), 1, - sym_comment, - STATE(3687), 1, + STATE(2613), 1, sym__immediate_decimal, - ACTIONS(6710), 2, + STATE(3667), 1, + sym_comment, + ACTIONS(7032), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3625), 2, + STATE(2733), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105003] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3452), 1, - sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [105024] = 10, + [119044] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1900), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(6145), 1, + ACTIONS(5258), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(5603), 1, + anon_sym_DOLLAR, + ACTIONS(7034), 1, aux_sym__immediate_decimal_token2, - STATE(3453), 1, - sym_comment, - STATE(4112), 1, + STATE(2780), 1, sym__immediate_decimal, - ACTIONS(6714), 2, + STATE(3668), 1, + sym_comment, + ACTIONS(7036), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(895), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105057] = 9, + [119077] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(942), 1, + ACTIONS(6926), 1, + aux_sym_path_token1, + ACTIONS(7038), 1, anon_sym_DQUOTE, - ACTIONS(944), 1, + ACTIONS(7040), 1, anon_sym_SQUOTE, - ACTIONS(946), 1, + ACTIONS(7042), 1, anon_sym_BQUOTE, - ACTIONS(958), 1, + ACTIONS(7044), 1, sym_raw_string_begin, - ACTIONS(6716), 1, - aux_sym_path_token1, - STATE(2455), 1, + STATE(3561), 1, sym_val_string, - STATE(3454), 1, + STATE(3669), 1, sym_comment, - STATE(2472), 4, + STATE(3598), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105088] = 10, + [119108] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3670), 1, + sym_comment, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(761), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [119129] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(3359), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(3374), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6718), 1, + ACTIONS(4115), 1, anon_sym_DOLLAR, - ACTIONS(6720), 1, + ACTIONS(5354), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5356), 1, aux_sym__immediate_decimal_token2, - STATE(1441), 1, + ACTIONS(5487), 1, + aux_sym_unquoted_token2, + STATE(3116), 1, sym__immediate_decimal, - STATE(3455), 1, + STATE(3671), 1, sym_comment, - ACTIONS(6722), 2, + ACTIONS(5358), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + STATE(3348), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105121] = 11, + [119162] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACK, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(6724), 1, - anon_sym_DOT_DOT2, - ACTIONS(6728), 1, - sym_filesize_unit, - ACTIONS(6730), 1, - sym_duration_unit, - STATE(3456), 1, - sym_comment, - STATE(4728), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6726), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [105156] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(1900), 1, + aux_sym_unquoted_token2, + ACTIONS(5603), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6169), 1, + ACTIONS(6335), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6171), 1, + ACTIONS(7046), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - STATE(3457), 1, + STATE(3672), 1, sym_comment, - STATE(3693), 1, + STATE(3871), 1, sym__immediate_decimal, - ACTIONS(6173), 2, + ACTIONS(7048), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + STATE(3906), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105189] = 10, + [119195] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1900), 1, aux_sym_unquoted_token2, - ACTIONS(3450), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6718), 1, + ACTIONS(5603), 1, anon_sym_DOLLAR, - ACTIONS(6732), 1, + ACTIONS(6510), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7050), 1, aux_sym__immediate_decimal_token2, - STATE(1495), 1, - sym__immediate_decimal, - STATE(3458), 1, + STATE(3673), 1, sym_comment, - ACTIONS(6734), 2, + STATE(4477), 1, + sym__immediate_decimal, + ACTIONS(7052), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(895), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105222] = 9, + [119228] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6736), 1, + ACTIONS(7054), 1, anon_sym_DQUOTE, - ACTIONS(6738), 1, + ACTIONS(7056), 1, anon_sym_SQUOTE, - ACTIONS(6740), 1, + ACTIONS(7058), 1, anon_sym_BQUOTE, - ACTIONS(6742), 1, + ACTIONS(7060), 1, aux_sym_path_token1, - ACTIONS(6744), 1, + ACTIONS(7062), 1, sym_raw_string_begin, - STATE(1882), 1, + STATE(346), 1, sym_val_string, - STATE(3459), 1, + STATE(3674), 1, sym_comment, - STATE(1953), 4, + STATE(379), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105253] = 5, - ACTIONS(103), 1, + [119259] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6526), 1, - aux_sym__immediate_decimal_token5, - STATE(3460), 1, + ACTIONS(6753), 1, + anon_sym_DASH2, + STATE(3675), 1, sym_comment, - ACTIONS(739), 3, - anon_sym_RBRACE, + ACTIONS(4841), 9, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [119280] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1900), 1, + sym__unquoted_pattern, + ACTIONS(7064), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(7068), 1, sym_filesize_unit, + ACTIONS(7070), 1, sym_duration_unit, - sym__entry_separator, - [105276] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(5003), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5005), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5116), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6746), 1, - anon_sym_DOLLAR, - STATE(2612), 1, - sym__immediate_decimal, - STATE(3461), 1, - sym_comment, - ACTIONS(6748), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2886), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105309] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5013), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5116), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6746), 1, - anon_sym_DOLLAR, - STATE(2983), 1, - sym__immediate_decimal, - STATE(3462), 1, + STATE(3676), 1, sym_comment, - ACTIONS(6750), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3290), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105342] = 10, + ACTIONS(7066), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(904), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119309] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1900), 1, aux_sym_unquoted_token2, - ACTIONS(3940), 1, + ACTIONS(4350), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(6752), 1, + ACTIONS(7072), 1, aux_sym__immediate_decimal_token2, - STATE(1850), 1, + STATE(2057), 1, sym__immediate_decimal, - STATE(3463), 1, + STATE(3677), 1, sym_comment, - ACTIONS(6754), 2, + ACTIONS(7074), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1960), 2, + STATE(711), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105375] = 10, + [119342] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(815), 1, + anon_sym_RBRACE, + ACTIONS(904), 1, + sym__entry_separator, + ACTIONS(5542), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4870), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5048), 1, - aux_sym_unquoted_token2, - STATE(2565), 1, - sym__immediate_decimal, - STATE(3464), 1, + ACTIONS(6878), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7076), 1, + anon_sym_DOT_DOT2, + ACTIONS(7080), 1, + sym_filesize_unit, + ACTIONS(7082), 1, + sym_duration_unit, + STATE(3678), 1, sym_comment, - ACTIONS(4874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2682), 2, + STATE(4914), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [105408] = 10, + ACTIONS(7078), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119377] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1793), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1984), 1, aux_sym_unquoted_token2, - ACTIONS(3954), 1, + ACTIONS(3716), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6908), 1, anon_sym_DOLLAR, - ACTIONS(6756), 1, + ACTIONS(7084), 1, aux_sym__immediate_decimal_token2, - STATE(1974), 1, + STATE(1669), 1, sym__immediate_decimal, - STATE(3465), 1, + STATE(3679), 1, sym_comment, - ACTIONS(6758), 2, + ACTIONS(7086), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(915), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105441] = 10, + [119410] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1793), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1984), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(6430), 1, + ACTIONS(3830), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6908), 1, + anon_sym_DOLLAR, + ACTIONS(7088), 1, aux_sym__immediate_decimal_token2, - STATE(3466), 1, - sym_comment, - STATE(3977), 1, + STATE(1723), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + STATE(3680), 1, + sym_comment, + ACTIONS(7090), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4135), 2, + STATE(1330), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105474] = 9, + [119443] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(827), 1, + ACTIONS(976), 1, anon_sym_DQUOTE, - ACTIONS(829), 1, + ACTIONS(978), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(980), 1, anon_sym_BQUOTE, - ACTIONS(843), 1, + ACTIONS(992), 1, sym_raw_string_begin, - ACTIONS(6764), 1, + ACTIONS(7092), 1, aux_sym_path_token1, - STATE(2404), 1, - sym_val_string, - STATE(3467), 1, - sym_comment, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [105505] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(1655), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(6718), 1, - anon_sym_DOLLAR, - ACTIONS(6766), 1, - aux_sym__immediate_decimal_token2, - STATE(693), 1, - sym__immediate_decimal, - STATE(3468), 1, + STATE(2654), 1, + sym_val_string, + STATE(3681), 1, sym_comment, - ACTIONS(6768), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(950), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105538] = 10, + STATE(2727), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [119474] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1820), 1, + ACTIONS(1900), 1, aux_sym_unquoted_token2, - ACTIONS(6718), 1, + ACTIONS(4384), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(6770), 1, + ACTIONS(7094), 1, aux_sym__immediate_decimal_token2, - STATE(1047), 1, + STATE(2144), 1, sym__immediate_decimal, - STATE(3469), 1, + STATE(3682), 1, sym_comment, - ACTIONS(6772), 2, + ACTIONS(7096), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(895), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105571] = 6, + [119507] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6774), 1, - anon_sym_DOT, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token5, - STATE(3470), 1, + ACTIONS(7098), 1, + anon_sym_DQUOTE, + ACTIONS(7100), 1, + anon_sym_SQUOTE, + ACTIONS(7102), 1, + anon_sym_BQUOTE, + ACTIONS(7104), 1, + aux_sym_path_token1, + ACTIONS(7106), 1, + sym_raw_string_begin, + STATE(386), 1, + sym_val_string, + STATE(3683), 1, sym_comment, - ACTIONS(1736), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 4, - sym__newline, - anon_sym_SEMI, + STATE(396), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [119538] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3684), 1, + sym_comment, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [105596] = 10, + ACTIONS(777), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [119559] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4916), 1, + ACTIONS(1900), 1, + aux_sym_unquoted_token2, + ACTIONS(4390), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, + ACTIONS(6972), 1, + anon_sym_DOLLAR, + ACTIONS(7108), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5048), 1, - aux_sym_unquoted_token2, - STATE(2816), 1, + STATE(2098), 1, sym__immediate_decimal, - STATE(3471), 1, + STATE(3685), 1, sym_comment, - ACTIONS(4920), 2, + ACTIONS(7110), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3201), 2, + STATE(2189), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105629] = 10, + [119592] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1900), 1, aux_sym_unquoted_token2, - ACTIONS(3347), 1, + ACTIONS(4400), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(6778), 1, + ACTIONS(7112), 1, aux_sym__immediate_decimal_token2, - STATE(1436), 1, + STATE(2201), 1, sym__immediate_decimal, - STATE(3472), 1, + STATE(3686), 1, sym_comment, - ACTIONS(6780), 2, + ACTIONS(7114), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(895), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105662] = 10, + [119625] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(7116), 1, + anon_sym_DQUOTE, + ACTIONS(7118), 1, + anon_sym_SQUOTE, + ACTIONS(7120), 1, + anon_sym_BQUOTE, + ACTIONS(7122), 1, + aux_sym_path_token1, + ACTIONS(7124), 1, + sym_raw_string_begin, + STATE(2129), 1, + sym_val_string, + STATE(3687), 1, + sym_comment, + STATE(2170), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [119656] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1900), 1, aux_sym_unquoted_token2, - ACTIONS(3378), 1, + ACTIONS(3673), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(6782), 1, + ACTIONS(7126), 1, aux_sym__immediate_decimal_token2, - STATE(1470), 1, + STATE(1663), 1, sym__immediate_decimal, - STATE(3473), 1, + STATE(3688), 1, sym_comment, - ACTIONS(6784), 2, + ACTIONS(7128), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(711), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105695] = 10, + [119689] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1900), 1, aux_sym_unquoted_token2, - ACTIONS(3762), 1, + ACTIONS(3693), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(6786), 1, + ACTIONS(7130), 1, aux_sym__immediate_decimal_token2, - STATE(1827), 1, + STATE(1694), 1, sym__immediate_decimal, - STATE(3474), 1, + STATE(3689), 1, sym_comment, - ACTIONS(6788), 2, + ACTIONS(7132), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(895), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105728] = 10, + [119722] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1962), 1, + anon_sym_DOLLAR, + ACTIONS(6264), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(3900), 1, + ACTIONS(6504), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, - anon_sym_DOLLAR, - ACTIONS(6790), 1, + ACTIONS(6506), 1, aux_sym__immediate_decimal_token2, - STATE(1952), 1, - sym__immediate_decimal, - STATE(3475), 1, + ACTIONS(6601), 1, + aux_sym__unquoted_in_list_token2, + STATE(3690), 1, sym_comment, - ACTIONS(6792), 2, + STATE(3878), 1, + sym__immediate_decimal, + ACTIONS(6508), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(4038), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105761] = 9, + [119755] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6794), 1, + ACTIONS(1582), 1, + sym_raw_string_begin, + ACTIONS(6920), 1, anon_sym_DQUOTE, - ACTIONS(6796), 1, + ACTIONS(6922), 1, anon_sym_SQUOTE, - ACTIONS(6798), 1, + ACTIONS(6924), 1, anon_sym_BQUOTE, - ACTIONS(6800), 1, + ACTIONS(7134), 1, aux_sym_path_token1, - ACTIONS(6802), 1, - sym_raw_string_begin, - STATE(3476), 1, + STATE(3691), 1, sym_comment, - STATE(3934), 1, + STATE(3808), 1, sym_val_string, - STATE(4140), 4, + STATE(3705), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105792] = 9, + [119786] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(6544), 1, + ACTIONS(7136), 1, anon_sym_DQUOTE, - ACTIONS(6546), 1, + ACTIONS(7138), 1, anon_sym_SQUOTE, - ACTIONS(6548), 1, + ACTIONS(7140), 1, anon_sym_BQUOTE, - ACTIONS(6804), 1, + ACTIONS(7142), 1, aux_sym_path_token1, - STATE(2263), 1, + ACTIONS(7144), 1, + sym_raw_string_begin, + STATE(1382), 1, sym_val_string, - STATE(3477), 1, + STATE(3692), 1, sym_comment, - STATE(2228), 4, + STATE(1400), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105823] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3478), 1, - sym_comment, - STATE(3603), 1, - sym__immediate_decimal, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3860), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105856] = 9, + [119817] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1426), 1, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(6552), 1, + ACTIONS(7146), 1, anon_sym_DQUOTE, - ACTIONS(6554), 1, + ACTIONS(7148), 1, anon_sym_SQUOTE, - ACTIONS(6556), 1, + ACTIONS(7150), 1, anon_sym_BQUOTE, - ACTIONS(6692), 1, + ACTIONS(7152), 1, aux_sym_path_token1, - STATE(3268), 1, + STATE(505), 1, sym_val_string, - STATE(3479), 1, + STATE(3693), 1, sym_comment, - STATE(3505), 4, + STATE(494), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105887] = 6, - ACTIONS(3), 1, + [119848] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6806), 1, - anon_sym_DOT, - ACTIONS(6808), 1, - aux_sym__immediate_decimal_token5, - STATE(3480), 1, + ACTIONS(7154), 1, + anon_sym_DQUOTE, + ACTIONS(7156), 1, + anon_sym_SQUOTE, + ACTIONS(7158), 1, + anon_sym_BQUOTE, + ACTIONS(7160), 1, + aux_sym_path_token1, + ACTIONS(7162), 1, + sym_raw_string_begin, + STATE(3694), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [105912] = 4, + STATE(4081), 1, + sym_val_string, + STATE(4451), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [119879] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(3481), 1, + ACTIONS(7164), 1, + anon_sym_DQUOTE, + ACTIONS(7166), 1, + anon_sym_SQUOTE, + ACTIONS(7168), 1, + anon_sym_BQUOTE, + ACTIONS(7170), 1, + aux_sym_path_token1, + ACTIONS(7172), 1, + sym_raw_string_begin, + STATE(1956), 1, + sym_val_string, + STATE(3695), 1, sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [105933] = 6, + STATE(1979), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [119910] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6810), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6812), 1, - aux_sym__immediate_decimal_token5, - STATE(3482), 1, + ACTIONS(1612), 1, + anon_sym_BANG, + STATE(3696), 1, sym_comment, - ACTIONS(1726), 4, - anon_sym_LPAREN2, + ACTIONS(1610), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1728), 4, + ACTIONS(1608), 6, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [105958] = 9, + anon_sym_COLON2, + anon_sym_DOT2, + [119933] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6814), 1, + ACTIONS(874), 1, anon_sym_DQUOTE, - ACTIONS(6816), 1, + ACTIONS(876), 1, anon_sym_SQUOTE, - ACTIONS(6818), 1, + ACTIONS(878), 1, anon_sym_BQUOTE, - ACTIONS(6820), 1, - aux_sym_path_token1, - ACTIONS(6822), 1, + ACTIONS(892), 1, sym_raw_string_begin, - STATE(1733), 1, + ACTIONS(7174), 1, + aux_sym_path_token1, + STATE(2617), 1, sym_val_string, - STATE(3483), 1, + STATE(3697), 1, sym_comment, - STATE(1749), 4, + STATE(2682), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105989] = 4, + [119964] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3484), 1, + ACTIONS(2908), 1, + anon_sym_DOLLAR, + ACTIONS(2910), 1, + anon_sym_LPAREN2, + ACTIONS(2914), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(2916), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3216), 1, + aux_sym_unquoted_token2, + STATE(1411), 1, + sym__immediate_decimal, + STATE(3698), 1, sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, + ACTIONS(7176), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1477), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [119997] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3035), 1, + anon_sym_DOLLAR, + ACTIONS(3037), 1, + anon_sym_LPAREN2, + ACTIONS(3039), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(3041), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3216), 1, + aux_sym_unquoted_token2, + STATE(1532), 1, + sym__immediate_decimal, + STATE(3699), 1, + sym_comment, + ACTIONS(7178), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1602), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [120030] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3461), 1, + anon_sym_LPAREN2, + ACTIONS(5410), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5412), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5552), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7010), 1, + anon_sym_DOLLAR, + STATE(2821), 1, + sym__immediate_decimal, + STATE(3700), 1, + sym_comment, + ACTIONS(7180), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3076), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [120063] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(3701), 1, + sym_comment, + STATE(4202), 1, + sym__immediate_decimal, + ACTIONS(6215), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6217), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(738), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [120091] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7182), 1, + anon_sym_DOT2, + STATE(2706), 1, + sym_path, + STATE(3084), 1, + sym_cell_path, + STATE(3702), 1, + sym_comment, + STATE(3811), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(2020), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [120117] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1791), 1, + anon_sym_DOLLAR, + ACTIONS(1793), 1, + anon_sym_LPAREN2, + STATE(1328), 1, + sym__immediate_decimal, + STATE(3703), 1, + sym_comment, + ACTIONS(1799), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1870), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1326), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [120145] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6930), 1, + aux_sym__immediate_decimal_token5, + STATE(3704), 1, + sym_comment, + ACTIONS(1882), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [106010] = 4, + ACTIONS(1884), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [120167] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3485), 1, + ACTIONS(1702), 1, + sym__entry_separator, + STATE(3705), 1, + sym_comment, + ACTIONS(1700), 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120187] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6882), 1, + aux_sym__immediate_decimal_token5, + STATE(3706), 1, sym_comment, - ACTIONS(849), 4, + ACTIONS(1882), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1884), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(851), 6, + [120209] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7184), 1, + aux_sym__immediate_decimal_token5, + STATE(3707), 1, + sym_comment, + ACTIONS(1956), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [106031] = 9, + ACTIONS(1958), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [120231] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6824), 1, - anon_sym_DQUOTE, - ACTIONS(6826), 1, - anon_sym_SQUOTE, - ACTIONS(6828), 1, - anon_sym_BQUOTE, - ACTIONS(6830), 1, - aux_sym_path_token1, - ACTIONS(6832), 1, - sym_raw_string_begin, - STATE(2359), 1, - sym_val_string, - STATE(3486), 1, + ACTIONS(7186), 1, + anon_sym_DOT, + ACTIONS(7188), 1, + aux_sym__immediate_decimal_token5, + STATE(3708), 1, sym_comment, - STATE(2420), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [106062] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(6834), 1, + ACTIONS(1884), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(6838), 1, - sym_filesize_unit, - ACTIONS(6840), 1, - sym_duration_unit, - STATE(3487), 1, - sym_comment, - ACTIONS(6836), 2, + sym__unquoted_pattern_in_record, + ACTIONS(1882), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [106091] = 4, + sym__entry_separator, + [120255] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3488), 1, + STATE(3709), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(759), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, + ACTIONS(761), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -227288,70 +245620,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106112] = 4, - ACTIONS(103), 1, + [120275] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3489), 1, + STATE(3710), 1, sym_comment, - ACTIONS(747), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106133] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6842), 1, - anon_sym_DQUOTE, - ACTIONS(6844), 1, - anon_sym_SQUOTE, - ACTIONS(6846), 1, - anon_sym_BQUOTE, - ACTIONS(6848), 1, - aux_sym_path_token1, - ACTIONS(6850), 1, - sym_raw_string_begin, - STATE(337), 1, - sym_val_string, - STATE(3490), 1, - sym_comment, - STATE(343), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [106164] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3491), 1, - sym_comment, - ACTIONS(771), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 6, - anon_sym_LPAREN2, + ACTIONS(777), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [106184] = 4, + [120295] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3492), 1, + STATE(3711), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(894), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 7, + ACTIONS(896), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -227359,690 +245652,604 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106204] = 7, + [120315] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(7182), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2706), 1, sym_path, - STATE(2843), 1, + STATE(3107), 1, sym_cell_path, - STATE(3493), 1, + STATE(3712), 1, sym_comment, - STATE(3592), 1, + STATE(3811), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1866), 5, + ACTIONS(2016), 5, anon_sym_EQ, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_GT2, anon_sym_DASH_DASH, - [106230] = 8, + [120341] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1670), 1, + sym__entry_separator, + STATE(3713), 1, + sym_comment, + ACTIONS(1668), 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120361] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(4339), 1, anon_sym_DOLLAR, - STATE(3494), 1, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + STATE(3714), 1, sym_comment, - STATE(3919), 1, + STATE(4270), 1, sym__immediate_decimal, - ACTIONS(5934), 2, + ACTIONS(6609), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, + ACTIONS(7190), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(4265), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106258] = 8, + [120389] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - STATE(2997), 1, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + STATE(921), 1, sym__immediate_decimal, - STATE(3495), 1, + STATE(3715), 1, sym_comment, - ACTIONS(4912), 2, + ACTIONS(4400), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6856), 2, + ACTIONS(4402), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2996), 2, + STATE(738), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106286] = 7, + [120417] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2914), 1, - sym_cell_path, - STATE(3496), 1, - sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1858), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [106312] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3497), 1, - sym_comment, - ACTIONS(849), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(851), 6, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(1740), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [106332] = 8, + STATE(2187), 1, + sym__immediate_decimal, + STATE(3716), 1, + sym_comment, + ACTIONS(4390), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4392), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2189), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [120445] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - STATE(3498), 1, - sym_comment, - STATE(4020), 1, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + STATE(966), 1, sym__immediate_decimal, - ACTIONS(6055), 2, + STATE(3717), 1, + sym_comment, + ACTIONS(4400), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6858), 2, + ACTIONS(4402), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2998), 2, + STATE(895), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106360] = 8, + [120473] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3830), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - STATE(3499), 1, + ACTIONS(7192), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7194), 1, + aux_sym__immediate_decimal_token5, + STATE(3718), 1, sym_comment, - STATE(4106), 1, + ACTIONS(1922), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1920), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120497] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3037), 1, + anon_sym_LPAREN2, + ACTIONS(7196), 1, + anon_sym_DOLLAR, + STATE(1522), 1, sym__immediate_decimal, - ACTIONS(6073), 2, + STATE(3719), 1, + sym_comment, + ACTIONS(3041), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6860), 2, + ACTIONS(3043), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4105), 2, + STATE(1623), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106388] = 5, - ACTIONS(103), 1, + [120525] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6862), 1, + ACTIONS(7198), 1, + anon_sym_DOT, + ACTIONS(7200), 1, aux_sym__immediate_decimal_token5, - STATE(3500), 1, + STATE(3720), 1, sym_comment, - ACTIONS(1802), 4, - anon_sym_LPAREN2, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [106410] = 8, + sym_filesize_unit, + sym_duration_unit, + [120549] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(1900), 1, sym__unquoted_pattern, - ACTIONS(6864), 1, + ACTIONS(7202), 1, anon_sym_DOT_DOT2, - ACTIONS(6868), 1, + ACTIONS(7206), 1, sym_filesize_unit, - ACTIONS(6870), 1, + ACTIONS(7208), 1, sym_duration_unit, - STATE(3501), 1, + STATE(3721), 1, sym_comment, - ACTIONS(6866), 2, + ACTIONS(7204), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 3, + ACTIONS(904), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [106438] = 8, + [120577] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - STATE(1313), 1, - sym__immediate_decimal, - STATE(3502), 1, - sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(7210), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1306), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106466] = 8, + ACTIONS(7212), 1, + aux_sym__immediate_decimal_token5, + STATE(3722), 1, + sym_comment, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(761), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [120601] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, - anon_sym_DOLLAR, - STATE(2710), 1, - sym__immediate_decimal, - STATE(3503), 1, + STATE(3723), 1, sym_comment, - ACTIONS(4884), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6872), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106494] = 8, + ACTIONS(7214), 9, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [120619] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - STATE(727), 1, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + STATE(737), 1, sym__immediate_decimal, - STATE(3504), 1, + STATE(3724), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1746), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1805), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, STATE(726), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106522] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1480), 1, - sym__entry_separator, - STATE(3505), 1, - sym_comment, - ACTIONS(1478), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [106542] = 8, + [120647] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - STATE(958), 1, + STATE(921), 1, sym__immediate_decimal, - STATE(3506), 1, + STATE(3725), 1, sym_comment, - ACTIONS(1635), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1637), 2, + ACTIONS(1746), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + ACTIONS(1805), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(738), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106570] = 8, + [120675] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(3055), 1, anon_sym_DOLLAR, - STATE(3274), 1, + STATE(737), 1, sym__immediate_decimal, - STATE(3507), 1, + STATE(3726), 1, sym_comment, - ACTIONS(5007), 2, + ACTIONS(6657), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(5081), 2, + ACTIONS(6858), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(3271), 2, + STATE(726), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106598] = 4, + [120703] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1476), 1, - sym__entry_separator, - STATE(3508), 1, - sym_comment, - ACTIONS(1474), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [106618] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - STATE(3509), 1, + ACTIONS(7216), 1, + aux_sym__immediate_decimal_token5, + STATE(3727), 1, sym_comment, - STATE(4200), 1, - sym__immediate_decimal, - ACTIONS(6335), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4107), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106646] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1956), 4, anon_sym_LPAREN2, - STATE(727), 1, - sym__immediate_decimal, - STATE(3510), 1, - sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(726), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106674] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1516), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - STATE(3511), 1, - sym_comment, - ACTIONS(1514), 8, - anon_sym_COLON, + ACTIONS(1958), 4, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [106694] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(2614), 1, - sym__immediate_decimal, - STATE(3512), 1, - sym_comment, - ACTIONS(4844), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1306), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106722] = 8, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [120725] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3830), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - STATE(3513), 1, + ACTIONS(7182), 1, + anon_sym_DOT2, + STATE(2706), 1, + sym_path, + STATE(3066), 1, + sym_cell_path, + STATE(3728), 1, sym_comment, - STATE(3930), 1, - sym__immediate_decimal, - ACTIONS(6073), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6860), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4107), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106750] = 6, + STATE(3811), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(2046), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [120751] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6876), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6878), 1, + ACTIONS(7218), 1, + anon_sym_DOT, + ACTIONS(7220), 1, aux_sym__immediate_decimal_token5, - STATE(3514), 1, + STATE(3729), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1884), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 5, + ACTIONS(1882), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [106774] = 8, + [120775] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3037), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(7196), 1, anon_sym_DOLLAR, - STATE(2534), 1, + STATE(1622), 1, sym__immediate_decimal, - STATE(3515), 1, + STATE(3730), 1, sym_comment, - ACTIONS(4840), 2, + ACTIONS(3220), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, + ACTIONS(3222), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(1621), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106802] = 8, + [120803] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(6880), 1, + ACTIONS(4339), 1, anon_sym_DOLLAR, - STATE(2888), 1, - sym__immediate_decimal, - STATE(3516), 1, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + STATE(3731), 1, sym_comment, - ACTIONS(4916), 2, + STATE(4854), 1, + sym__immediate_decimal, + ACTIONS(6609), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6882), 2, + ACTIONS(7190), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3130), 2, + STATE(4271), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106830] = 8, + [120831] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(2930), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6264), 1, anon_sym_LPAREN2, - STATE(3517), 1, + STATE(3732), 1, sym_comment, - STATE(4229), 1, + STATE(4181), 1, sym__immediate_decimal, - ACTIONS(6442), 2, + ACTIONS(6504), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6884), 2, + ACTIONS(7190), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + STATE(4038), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106858] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6886), 1, - anon_sym_DOT, - ACTIONS(6888), 1, - aux_sym__immediate_decimal_token5, - STATE(3518), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106882] = 8, + [120859] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(4339), 1, anon_sym_DOLLAR, - STATE(2993), 1, - sym__immediate_decimal, - STATE(3519), 1, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + STATE(3733), 1, sym_comment, - ACTIONS(5013), 2, + STATE(4811), 1, + sym__immediate_decimal, + ACTIONS(6609), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5015), 2, + ACTIONS(7190), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3226), 2, + STATE(4391), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106910] = 8, + [120887] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3359), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(7222), 1, anon_sym_DOLLAR, - STATE(3520), 1, - sym_comment, - STATE(4124), 1, + STATE(3130), 1, sym__immediate_decimal, - ACTIONS(6145), 2, + STATE(3734), 1, + sym_comment, + ACTIONS(5354), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, + ACTIONS(7224), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(3320), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106938] = 8, + [120915] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3359), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(7222), 1, anon_sym_DOLLAR, - STATE(3521), 1, - sym_comment, - STATE(4723), 1, + STATE(3382), 1, sym__immediate_decimal, - ACTIONS(6478), 2, + STATE(3735), 1, + sym_comment, + ACTIONS(5396), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, + ACTIONS(7226), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(3381), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106966] = 8, + [120943] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - STATE(1502), 1, + STATE(712), 1, sym__immediate_decimal, - STATE(3522), 1, + STATE(3736), 1, sym_comment, - ACTIONS(3450), 2, + ACTIONS(1744), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, + ACTIONS(1746), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1306), 2, + STATE(711), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106994] = 8, + [120971] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1791), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1793), 1, anon_sym_LPAREN2, - STATE(2084), 1, + STATE(1006), 1, sym__immediate_decimal, - STATE(3523), 1, + STATE(3737), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(1845), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(1847), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(1326), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107022] = 8, + [120999] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - STATE(1487), 1, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(737), 1, sym__immediate_decimal, - STATE(3524), 1, + STATE(3738), 1, sym_comment, - ACTIONS(3378), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, + ACTIONS(6115), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + ACTIONS(6420), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(726), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107050] = 8, + [121027] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3739), 1, + sym_comment, + ACTIONS(759), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(761), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [121047] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - STATE(956), 1, + STATE(2147), 1, sym__immediate_decimal, - STATE(3525), 1, + STATE(3740), 1, sym_comment, - ACTIONS(1655), 2, + ACTIONS(4384), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1657), 2, + ACTIONS(4386), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + STATE(738), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107078] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(4969), 1, - sym__unquoted_pattern, - ACTIONS(6494), 1, - sym_filesize_unit, - ACTIONS(6496), 1, - sym_duration_unit, - STATE(3526), 1, - sym_comment, - ACTIONS(868), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107108] = 8, + [121075] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(3395), 1, anon_sym_LPAREN2, - ACTIONS(6880), 1, + ACTIONS(7228), 1, anon_sym_DOLLAR, - STATE(3103), 1, + STATE(3296), 1, sym__immediate_decimal, - STATE(3527), 1, + STATE(3741), 1, sym_comment, - ACTIONS(4938), 2, + ACTIONS(5326), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6890), 2, + ACTIONS(7230), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3101), 2, + STATE(3295), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107136] = 4, + [121103] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1468), 1, + ACTIONS(1674), 1, sym__entry_separator, - STATE(3528), 1, + STATE(3742), 1, + sym_comment, + ACTIONS(1672), 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [121123] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1678), 1, + sym__entry_separator, + STATE(3743), 1, sym_comment, - ACTIONS(1466), 8, + ACTIONS(1676), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -228051,26828 +246258,27062 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [107156] = 8, + [121143] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(4259), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6393), 1, anon_sym_LPAREN2, - STATE(3529), 1, + STATE(3744), 1, sym_comment, - STATE(4676), 1, + STATE(4270), 1, sym__immediate_decimal, - ACTIONS(6250), 2, + ACTIONS(6395), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(7232), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + STATE(4265), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107184] = 8, + [121171] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(1791), 1, anon_sym_DOLLAR, - STATE(1300), 1, + ACTIONS(1793), 1, + anon_sym_LPAREN2, + STATE(1336), 1, sym__immediate_decimal, - STATE(3530), 1, + STATE(3745), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1799), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1870), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1298), 2, + STATE(1330), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107212] = 8, + [121199] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(3395), 1, anon_sym_LPAREN2, - STATE(3531), 1, - sym_comment, - STATE(4106), 1, + ACTIONS(7228), 1, + anon_sym_DOLLAR, + STATE(2996), 1, sym__immediate_decimal, - ACTIONS(6250), 2, + STATE(3746), 1, + sym_comment, + ACTIONS(5290), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(7234), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4105), 2, + STATE(3297), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107240] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3532), 1, - sym_comment, - ACTIONS(6894), 9, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [107258] = 8, + [121227] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - STATE(904), 1, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(737), 1, sym__immediate_decimal, - STATE(3533), 1, + STATE(3747), 1, sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(1746), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + ACTIONS(1805), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(726), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107286] = 5, - ACTIONS(3), 1, + [121255] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6896), 1, - aux_sym__immediate_decimal_token5, - STATE(3534), 1, + STATE(3748), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(775), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_record, + ACTIONS(777), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107308] = 8, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [121275] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - STATE(904), 1, + STATE(977), 1, sym__immediate_decimal, - STATE(3535), 1, + STATE(3749), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1815), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(728), 2, + ACTIONS(1817), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(738), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107336] = 5, + [121303] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6808), 1, - aux_sym__immediate_decimal_token5, - STATE(3536), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN2, + ACTIONS(4287), 1, + anon_sym_DOLLAR, + STATE(3444), 1, + sym__immediate_decimal, + STATE(3750), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107358] = 8, + ACTIONS(5414), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(5556), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(3483), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [121331] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(4339), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(6264), 1, anon_sym_LPAREN2, - STATE(709), 1, - sym__immediate_decimal, - STATE(3537), 1, + STATE(3751), 1, sym_comment, - ACTIONS(1592), 2, + STATE(4249), 1, + sym__immediate_decimal, + ACTIONS(6568), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1594), 2, + ACTIONS(7236), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(4271), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107386] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3538), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107406] = 8, + [121359] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - STATE(3539), 1, - sym_comment, - STATE(3911), 1, + STATE(737), 1, sym__immediate_decimal, - ACTIONS(6047), 2, + STATE(3752), 1, + sym_comment, + ACTIONS(4400), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(4402), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + STATE(726), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107434] = 8, + [121387] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1682), 1, + sym__entry_separator, + STATE(3753), 1, + sym_comment, + ACTIONS(1680), 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [121407] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1793), 1, anon_sym_LPAREN2, - STATE(3540), 1, - sym_comment, - STATE(4750), 1, + ACTIONS(5262), 1, + anon_sym_DOLLAR, + STATE(2850), 1, sym__immediate_decimal, - ACTIONS(6250), 2, + STATE(3754), 1, + sym_comment, + ACTIONS(5270), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(5272), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4234), 2, + STATE(1326), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107462] = 4, - ACTIONS(3), 1, + [121435] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3541), 1, + ACTIONS(1688), 1, + sym__entry_separator, + STATE(3755), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107482] = 4, + ACTIONS(1686), 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [121455] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3542), 1, + STATE(3756), 1, sym_comment, - ACTIONS(747), 3, + ACTIONS(894), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(749), 6, + ACTIONS(896), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [107502] = 8, + [121475] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(4259), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(6393), 1, anon_sym_LPAREN2, - STATE(727), 1, - sym__immediate_decimal, - STATE(3543), 1, + STATE(3757), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + STATE(4132), 1, + sym__immediate_decimal, + ACTIONS(6395), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, + ACTIONS(7232), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4271), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107530] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(6898), 1, - sym_filesize_unit, - ACTIONS(6900), 1, - sym_duration_unit, - ACTIONS(6902), 1, - sym__unquoted_pattern, - STATE(3544), 1, - sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [107558] = 8, + [121503] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(3055), 1, anon_sym_DOLLAR, - STATE(727), 1, + STATE(2792), 1, sym__immediate_decimal, - STATE(3545), 1, + STATE(3758), 1, sym_comment, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, + ACTIONS(5258), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, + ACTIONS(5260), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(738), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107586] = 4, + [121531] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3546), 1, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(3759), 1, sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107606] = 8, + STATE(4964), 1, + sym__immediate_decimal, + ACTIONS(6809), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6811), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(738), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [121559] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(3461), 1, anon_sym_LPAREN2, - STATE(955), 1, + ACTIONS(4287), 1, + anon_sym_DOLLAR, + STATE(3227), 1, sym__immediate_decimal, - STATE(3547), 1, + STATE(3760), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(5451), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(888), 2, + ACTIONS(5453), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3448), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107634] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token5, - STATE(3548), 1, - sym_comment, - ACTIONS(1736), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [107656] = 4, + [121587] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3549), 1, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + ACTIONS(3055), 1, + anon_sym_DOLLAR, + STATE(3761), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107676] = 8, + STATE(4282), 1, + sym__immediate_decimal, + ACTIONS(6510), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6512), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(738), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [121615] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1791), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1793), 1, anon_sym_LPAREN2, - STATE(1083), 1, + STATE(1717), 1, sym__immediate_decimal, - STATE(3550), 1, + STATE(3762), 1, sym_comment, - ACTIONS(1683), 2, + ACTIONS(3830), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1685), 2, + ACTIONS(3832), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1306), 2, + STATE(1326), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107704] = 8, + [121643] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1740), 1, anon_sym_LPAREN2, - STATE(1300), 1, + STATE(2204), 1, sym__immediate_decimal, - STATE(3551), 1, + STATE(3763), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(4400), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1298), 2, + ACTIONS(4402), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(738), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107732] = 8, + [121671] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(1736), 1, anon_sym_DOLLAR, - STATE(727), 1, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + STATE(1698), 1, sym__immediate_decimal, - STATE(3552), 1, + STATE(3764), 1, sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, + ACTIONS(3693), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, + ACTIONS(3695), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(738), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107760] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6664), 1, - aux_sym__immediate_decimal_token5, - STATE(3553), 1, - sym_comment, - ACTIONS(1736), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [107782] = 6, + [121699] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6904), 1, - anon_sym_DOT, - ACTIONS(6906), 1, + ACTIONS(6950), 1, aux_sym__immediate_decimal_token5, - STATE(3554), 1, + STATE(3765), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1884), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 5, + ACTIONS(1882), 6, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107806] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6468), 1, - anon_sym_DOT_DOT2, - ACTIONS(6472), 1, - sym_filesize_unit, - ACTIONS(6474), 1, - sym_duration_unit, - STATE(3555), 1, - sym_comment, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6470), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107836] = 8, + [121721] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1793), 1, anon_sym_LPAREN2, - STATE(1956), 1, + ACTIONS(5262), 1, + anon_sym_DOLLAR, + STATE(1325), 1, sym__immediate_decimal, - STATE(3556), 1, + STATE(3766), 1, sym_comment, - ACTIONS(3940), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, + ACTIONS(1799), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1960), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107864] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(955), 1, - sym__immediate_decimal, - STATE(3557), 1, - sym_comment, - ACTIONS(3954), 2, + ACTIONS(1870), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(1324), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107892] = 8, + [121749] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1791), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1793), 1, anon_sym_LPAREN2, - STATE(1266), 1, + STATE(1325), 1, sym__immediate_decimal, - STATE(3558), 1, + STATE(3767), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1799), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1870), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1264), 2, + STATE(1324), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107920] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6908), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6910), 1, - aux_sym__immediate_decimal_token5, - STATE(3559), 1, - sym_comment, - ACTIONS(1728), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [107944] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1472), 1, - sym__entry_separator, - STATE(3560), 1, - sym_comment, - ACTIONS(1470), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [107964] = 4, + [121777] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3561), 1, - sym_comment, - ACTIONS(747), 2, + ACTIONS(3320), 1, anon_sym_DOT_DOT2, + ACTIONS(7238), 1, + sym_filesize_unit, + ACTIONS(7240), 1, + sym_duration_unit, + ACTIONS(7242), 1, sym__unquoted_pattern, - ACTIONS(749), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + STATE(3768), 1, + sym_comment, + ACTIONS(3322), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107984] = 7, + ACTIONS(904), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [121805] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(7182), 1, anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2899), 1, + STATE(2487), 1, sym_cell_path, - STATE(3562), 1, + STATE(2706), 1, + sym_path, + STATE(3769), 1, sym_comment, - STATE(3592), 1, + STATE(3811), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1882), 5, + ACTIONS(1590), 5, anon_sym_EQ, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_GT2, anon_sym_DASH_DASH, - [108010] = 5, - ACTIONS(103), 1, + [121831] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6912), 1, - aux_sym__immediate_decimal_token5, - STATE(3563), 1, + STATE(3770), 1, sym_comment, - ACTIONS(1802), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 4, + ACTIONS(7244), 9, + anon_sym_EQ, sym__newline, anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108032] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6914), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6916), 1, - aux_sym__immediate_decimal_token5, - STATE(3564), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108056] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6606), 1, - aux_sym__immediate_decimal_token5, - STATE(3565), 1, - sym_comment, - ACTIONS(1736), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108078] = 8, + anon_sym_RBRACE, + [121849] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1791), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1793), 1, anon_sym_LPAREN2, - STATE(1924), 1, + STATE(916), 1, sym__immediate_decimal, - STATE(3566), 1, + STATE(3771), 1, sym_comment, - ACTIONS(3900), 2, + ACTIONS(1797), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, + ACTIONS(1799), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(915), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108106] = 8, + [121877] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(4339), 1, anon_sym_DOLLAR, - STATE(2997), 1, - sym__immediate_decimal, - STATE(3567), 1, + ACTIONS(6264), 1, + anon_sym_LPAREN2, + STATE(3772), 1, sym_comment, - ACTIONS(6254), 2, + STATE(4414), 1, + sym__immediate_decimal, + ACTIONS(6617), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6918), 2, + ACTIONS(7246), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2996), 2, + STATE(4271), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108134] = 4, + [121905] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1545), 1, + ACTIONS(904), 1, sym__entry_separator, - STATE(3568), 1, + ACTIONS(6601), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6824), 1, + anon_sym_DOT_DOT2, + ACTIONS(6828), 1, + sym_filesize_unit, + ACTIONS(6830), 1, + sym_duration_unit, + STATE(3773), 1, sym_comment, - ACTIONS(1543), 8, - anon_sym_COLON, + ACTIONS(815), 2, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [108154] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6920), 1, - aux_sym__immediate_decimal_token5, - STATE(3569), 1, - sym_comment, - ACTIONS(1802), 4, - anon_sym_LPAREN2, + ACTIONS(6826), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108176] = 3, + [121935] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3570), 1, + STATE(3774), 1, sym_comment, - ACTIONS(6922), 9, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(761), 7, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [108194] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [121955] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6924), 1, - anon_sym_DOT, - ACTIONS(6926), 1, + ACTIONS(7248), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7250), 1, aux_sym__immediate_decimal_token5, - STATE(3571), 1, + STATE(3775), 1, sym_comment, - ACTIONS(1738), 3, + ACTIONS(1922), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1736), 4, + ACTIONS(1920), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [108218] = 7, + [121979] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2258), 1, - sym_cell_path, - STATE(2511), 1, - sym_path, - STATE(3572), 1, + STATE(3776), 1, sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 5, - anon_sym_EQ, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(777), 7, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_GT2, anon_sym_DASH_DASH, - [108244] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6930), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(3133), 1, - sym_cell_path, - STATE(3573), 1, - sym_comment, - ACTIONS(6928), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108269] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [121999] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_DOT2, - STATE(518), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, - sym_path, - STATE(1333), 1, - sym_cell_path, - STATE(3574), 1, + STATE(3777), 1, sym_comment, - ACTIONS(6932), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108294] = 5, + ACTIONS(894), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(896), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [122019] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6934), 1, + ACTIONS(7252), 1, aux_sym__immediate_decimal_token5, - STATE(3575), 1, + STATE(3778), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1958), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 5, + ACTIONS(1956), 6, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108315] = 7, + [122041] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(3035), 1, - sym_cell_path, - STATE(3576), 1, + ACTIONS(1736), 1, + anon_sym_DOLLAR, + ACTIONS(1740), 1, + anon_sym_LPAREN2, + STATE(966), 1, + sym__immediate_decimal, + STATE(3779), 1, sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(6936), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108340] = 6, + ACTIONS(1746), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1805), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(895), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [122069] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(6938), 1, - anon_sym_DOT_DOT2, - STATE(3577), 1, - sym_comment, - ACTIONS(6940), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [108363] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3578), 1, + ACTIONS(7254), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7256), 1, + aux_sym__immediate_decimal_token5, + STATE(3780), 1, sym_comment, - ACTIONS(1802), 4, - anon_sym_LPAREN2, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(761), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108382] = 4, + sym_filesize_unit, + sym_duration_unit, + [122092] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3579), 1, + ACTIONS(7258), 1, + aux_sym__immediate_decimal_token5, + STATE(3781), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1958), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 6, - anon_sym_if, + ACTIONS(1956), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108401] = 7, + [122113] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(7262), 1, anon_sym_DOT2, - STATE(423), 1, + STATE(2669), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(2743), 1, sym_path, - STATE(951), 1, + STATE(3162), 1, sym_cell_path, - STATE(3580), 1, + STATE(3782), 1, sym_comment, - ACTIONS(6942), 4, + ACTIONS(7260), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108426] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1884), 1, - sym__table_head_separator, - ACTIONS(6947), 1, - anon_sym_DOT_DOT, - ACTIONS(6949), 1, - anon_sym_DOT2, - STATE(3581), 1, - sym_comment, - STATE(3755), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, - sym_path, - STATE(4368), 1, - sym_cell_path, - ACTIONS(6944), 2, - anon_sym_RBRACK, - sym__entry_separator, - [108455] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6953), 1, - anon_sym_DASH2, - STATE(3582), 1, - sym_comment, - ACTIONS(6951), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [108474] = 4, + [122138] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3583), 1, + STATE(3783), 1, sym_comment, - ACTIONS(1726), 4, + ACTIONS(2050), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1728), 4, + ACTIONS(2052), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [108493] = 4, - ACTIONS(103), 1, + [122157] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3584), 1, + ACTIONS(2114), 1, + sym__unquoted_pattern, + ACTIONS(7264), 1, + anon_sym_DOT_DOT2, + STATE(3784), 1, sym_comment, - ACTIONS(1870), 4, - anon_sym_LPAREN2, + ACTIONS(7266), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1872), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108512] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3585), 1, - sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 6, + ACTIONS(2104), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108531] = 7, + [122180] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6957), 1, + ACTIONS(7182), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(2706), 1, sym_path, - STATE(3586), 1, + STATE(3212), 1, + sym_cell_path, + STATE(3785), 1, sym_comment, - STATE(3778), 1, + STATE(3811), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4556), 1, - sym_cell_path, - ACTIONS(6955), 4, + ACTIONS(7268), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108556] = 7, + [122205] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6961), 1, + ACTIONS(7272), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(354), 1, sym_path, - STATE(2556), 1, + STATE(3786), 1, + sym_comment, + STATE(4034), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3035), 1, + STATE(4634), 1, sym_cell_path, - STATE(3587), 1, - sym_comment, - ACTIONS(6959), 4, + ACTIONS(7270), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108581] = 4, + [122230] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3588), 1, + ACTIONS(5340), 1, + anon_sym_DOT2, + STATE(463), 1, + sym_path, + STATE(2489), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3787), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 6, + STATE(4424), 1, + sym_cell_path, + ACTIONS(7274), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108600] = 5, + [122255] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6888), 1, + ACTIONS(7278), 1, + anon_sym_DOT2, + STATE(1479), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1544), 1, + sym_path, + STATE(1600), 1, + sym_cell_path, + STATE(3788), 1, + sym_comment, + ACTIONS(7276), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122280] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7200), 1, aux_sym__immediate_decimal_token5, - STATE(3589), 1, + STATE(3789), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(767), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 5, + ACTIONS(769), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108621] = 5, + [122301] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6926), 1, + ACTIONS(2818), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2828), 1, + anon_sym_COLON2, + ACTIONS(7280), 1, + anon_sym_alias, + ACTIONS(7282), 1, + anon_sym_const, + ACTIONS(7284), 1, + anon_sym_def, + ACTIONS(7286), 1, + anon_sym_use, + ACTIONS(7288), 1, + anon_sym_extern, + ACTIONS(7290), 1, + anon_sym_module, + STATE(3790), 1, + sym_comment, + [122332] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7292), 1, + anon_sym_DOT, + ACTIONS(7294), 1, aux_sym__immediate_decimal_token5, - STATE(3590), 1, + STATE(3791), 1, sym_comment, - ACTIONS(1738), 3, - anon_sym_RBRACE, + ACTIONS(767), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1736), 4, - anon_sym_LPAREN2, + ACTIONS(769), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [108642] = 7, + sym_filesize_unit, + sym_duration_unit, + [122355] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(7298), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(2706), 1, sym_path, - STATE(2290), 1, + STATE(2769), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3591), 1, - sym_comment, - STATE(4217), 1, + STATE(3212), 1, sym_cell_path, - ACTIONS(6963), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [108667] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(3592), 1, + STATE(3792), 1, sym_comment, - STATE(3593), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108690] = 5, + ACTIONS(7296), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122380] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6965), 1, + ACTIONS(2012), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(441), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(463), 1, sym_path, - STATE(3593), 2, + STATE(964), 1, + sym_cell_path, + STATE(3793), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108711] = 7, + ACTIONS(7300), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122405] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(2012), 1, anon_sym_DOT2, - STATE(423), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(441), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(463), 1, sym_path, - STATE(951), 1, + STATE(964), 1, sym_cell_path, - STATE(3594), 1, + STATE(3794), 1, sym_comment, - ACTIONS(6968), 4, + ACTIONS(7302), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108736] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6906), 1, - aux_sym__immediate_decimal_token5, - STATE(3595), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108757] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3596), 1, - sym_comment, - ACTIONS(1870), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108776] = 4, + [122430] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3597), 1, + STATE(3795), 1, sym_comment, - ACTIONS(1726), 4, - sym__space, + ACTIONS(1920), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108795] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(6970), 1, + sym__entry_separator, + ACTIONS(1922), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - STATE(3598), 1, - sym_comment, - ACTIONS(1976), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6972), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108822] = 10, - ACTIONS(103), 1, + sym__unquoted_pattern_in_list, + [122449] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(6974), 1, - anon_sym_alias, - ACTIONS(6976), 1, - anon_sym_const, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - STATE(3599), 1, + ACTIONS(2012), 1, + anon_sym_DOT2, + STATE(441), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(463), 1, + sym_path, + STATE(964), 1, + sym_cell_path, + STATE(3796), 1, sym_comment, - [108853] = 6, + ACTIONS(7304), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122474] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1774), 1, sym__unquoted_pattern, - ACTIONS(6986), 1, + ACTIONS(7306), 1, anon_sym_DOT_DOT2, - STATE(3600), 1, + STATE(3797), 1, sym_comment, - ACTIONS(6988), 2, + ACTIONS(7308), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 4, + ACTIONS(2094), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [108876] = 5, - ACTIONS(3), 1, + [122497] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6990), 1, - aux_sym__immediate_decimal_token5, - STATE(3601), 1, - sym_comment, - ACTIONS(771), 2, + ACTIONS(2104), 1, + sym__entry_separator, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7310), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 5, - anon_sym_LBRACE, + STATE(3798), 1, + sym_comment, + ACTIONS(2106), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7312), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108897] = 7, + [122524] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6994), 1, + ACTIONS(7316), 1, anon_sym_DOT2, - STATE(1947), 1, + STATE(2160), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2359), 1, sym_path, - STATE(2183), 1, + STATE(2419), 1, sym_cell_path, - STATE(3602), 1, + STATE(3799), 1, sym_comment, - ACTIONS(6992), 4, + ACTIONS(7314), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108922] = 8, + [122549] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(6996), 1, - anon_sym_DOT_DOT2, - STATE(3603), 1, - sym_comment, - ACTIONS(1966), 2, - anon_sym_RBRACK, + ACTIONS(2022), 1, + sym__table_head_separator, + ACTIONS(7321), 1, anon_sym_DOT_DOT, - ACTIONS(6998), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108949] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7000), 1, - aux_sym__immediate_decimal_token5, - STATE(3604), 1, + ACTIONS(7323), 1, + anon_sym_DOT2, + STATE(3800), 1, sym_comment, - ACTIONS(1804), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + STATE(3971), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4434), 1, + sym_path, + STATE(4676), 1, + sym_cell_path, + ACTIONS(7318), 2, + anon_sym_RBRACK, sym__entry_separator, - [108970] = 7, + [122578] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(5578), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(775), 1, sym_path, - STATE(951), 1, + STATE(1372), 1, sym_cell_path, - STATE(2290), 1, + STATE(2636), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3605), 1, + STATE(3801), 1, + sym_comment, + ACTIONS(7325), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122603] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2426), 1, + anon_sym_DOT2, + STATE(536), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(775), 1, + sym_path, + STATE(1372), 1, + sym_cell_path, + STATE(3802), 1, sym_comment, - ACTIONS(7002), 4, + ACTIONS(7327), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108995] = 8, + [122628] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1978), 1, + STATE(3803), 1, + sym_comment, + ACTIONS(1920), 4, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7004), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1922), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - STATE(3606), 1, + sym__unquoted_pattern_in_list, + [122647] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7331), 1, + anon_sym_DASH2, + STATE(3804), 1, sym_comment, - ACTIONS(1976), 2, + ACTIONS(7329), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7006), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [122666] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7333), 1, + aux_sym__immediate_decimal_token5, + STATE(3805), 1, + sym_comment, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(777), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109022] = 7, + sym_filesize_unit, + sym_duration_unit, + [122687] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(7278), 1, anon_sym_DOT2, - STATE(423), 1, + STATE(1479), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(1544), 1, sym_path, - STATE(951), 1, + STATE(1600), 1, sym_cell_path, - STATE(3607), 1, + STATE(3806), 1, sym_comment, - ACTIONS(7008), 4, + ACTIONS(7335), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109047] = 8, + [122712] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2094), 1, + sym__entry_separator, + ACTIONS(2098), 1, anon_sym_LPAREN2, - ACTIONS(7010), 1, + ACTIONS(7337), 1, anon_sym_DOT_DOT2, - STATE(3608), 1, - sym_comment, - ACTIONS(1966), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7012), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109074] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7014), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7016), 1, - aux_sym__immediate_decimal_token5, - STATE(3609), 1, + STATE(3807), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + ACTIONS(2096), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7339), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109097] = 7, + [122739] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1448), 1, + ACTIONS(1596), 1, sym__entry_separator, - ACTIONS(7018), 1, + ACTIONS(7341), 1, anon_sym_QMARK2, - ACTIONS(7020), 1, + ACTIONS(7343), 1, anon_sym_BANG, - STATE(3610), 1, + STATE(3808), 1, sym_comment, - STATE(3947), 1, + STATE(4186), 1, sym__path_suffix, - ACTIONS(1446), 4, + ACTIONS(1594), 4, anon_sym_RBRACK, anon_sym_GT2, anon_sym_DOT_DOT, anon_sym_DOT2, - [109122] = 6, + [122764] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7022), 1, - anon_sym_DOT, - ACTIONS(7024), 1, - aux_sym__immediate_decimal_token5, - STATE(3611), 1, + STATE(3809), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1922), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 4, + sym__unquoted_pattern, + ACTIONS(1920), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109145] = 7, + [122783] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7028), 1, + ACTIONS(2426), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(536), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(775), 1, sym_path, - STATE(3030), 1, + STATE(1372), 1, sym_cell_path, - STATE(3612), 1, + STATE(3810), 1, sym_comment, - ACTIONS(7026), 4, + ACTIONS(7345), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109170] = 7, + [122808] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(7182), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(2706), 1, sym_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3613), 1, - sym_comment, - STATE(4297), 1, - sym_cell_path, - ACTIONS(7030), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109195] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3614), 1, + STATE(3811), 1, sym_comment, - ACTIONS(1802), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [109214] = 7, + STATE(3812), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1653), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [122831] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(7347), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(2706), 1, sym_path, - STATE(1333), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3615), 1, + STATE(3812), 2, sym_comment, - ACTIONS(7032), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [109239] = 4, - ACTIONS(103), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1644), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [122852] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3616), 1, + ACTIONS(7220), 1, + aux_sym__immediate_decimal_token5, + STATE(3813), 1, sym_comment, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1728), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(1884), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109258] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3617), 1, - sym_comment, - ACTIONS(1802), 4, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(1882), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109277] = 4, + [122873] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3618), 1, + ACTIONS(7188), 1, + aux_sym__immediate_decimal_token5, + STATE(3814), 1, sym_comment, - ACTIONS(1870), 4, + ACTIONS(1884), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1882), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1872), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109296] = 7, + [122894] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, + ACTIONS(7352), 1, anon_sym_DOT2, - STATE(518), 1, + STATE(2694), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, + STATE(2846), 1, sym_path, - STATE(1333), 1, + STATE(3344), 1, sym_cell_path, - STATE(3619), 1, + STATE(3815), 1, sym_comment, - ACTIONS(7034), 4, + ACTIONS(7350), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109321] = 8, + [122919] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1884), 1, + ACTIONS(2022), 1, sym__table_head_separator, - ACTIONS(7036), 1, + ACTIONS(7354), 1, anon_sym_DOT2, - STATE(3620), 1, + STATE(3816), 1, sym_comment, - STATE(4059), 1, + STATE(4347), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, + STATE(4970), 1, sym_path, - STATE(4963), 1, + STATE(5237), 1, sym_cell_path, - ACTIONS(6947), 3, + ACTIONS(7321), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__entry_separator, - [109348] = 8, + [122946] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1434), 1, - sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3621), 1, - sym_comment, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3884), 1, - sym_path, - STATE(4318), 1, - sym_cell_path, - ACTIONS(1432), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [109375] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7040), 1, - anon_sym_DOT, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, - STATE(3622), 1, + STATE(3817), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 3, - anon_sym_LBRACE, + ACTIONS(1956), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109397] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3623), 1, - sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4250), 1, - sym__assignment_pattern, - [109425] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1526), 1, sym__entry_separator, - ACTIONS(7048), 1, - anon_sym_DOT2, - STATE(3884), 1, - sym_path, - STATE(3624), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + ACTIONS(1958), 4, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [109447] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7051), 1, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - STATE(3625), 1, - sym_comment, - ACTIONS(7053), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109467] = 4, + sym__unquoted_pattern_in_list, + [122965] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3626), 1, + ACTIONS(7356), 1, + aux_sym__immediate_decimal_token5, + STATE(3818), 1, sym_comment, - ACTIONS(1804), 3, + ACTIONS(1958), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1802), 4, + ACTIONS(1956), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [109485] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1513), 1, - sym_parameter_parens, - STATE(1514), 1, - sym_parameter_bracks, - STATE(3627), 1, - sym_comment, - STATE(3724), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109513] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1542), 1, - sym_parameter_parens, - STATE(1543), 1, - sym_parameter_bracks, - STATE(3628), 1, - sym_comment, - STATE(3651), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109541] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1544), 1, - sym_parameter_parens, - STATE(1545), 1, - sym_parameter_bracks, - STATE(3629), 1, - sym_comment, - STATE(3659), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109569] = 6, + [122986] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7061), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7063), 1, - aux_sym__immediate_decimal_token5, - STATE(3630), 1, + STATE(3819), 1, sym_comment, - ACTIONS(1726), 2, - sym__space, + ACTIONS(1956), 4, anon_sym_LPAREN2, - ACTIONS(1728), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [109591] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1958), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [123005] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7065), 1, - anon_sym_DOT, - ACTIONS(7067), 1, - aux_sym__immediate_decimal_token5, - STATE(3631), 1, - sym_comment, - ACTIONS(1736), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109613] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1866), 1, - sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(5340), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(463), 1, sym_path, - STATE(3632), 1, - sym_comment, - STATE(3778), 1, + STATE(2489), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4102), 1, - sym_cell_path, - ACTIONS(1868), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [109639] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1523), 1, - sym_parameter_parens, - STATE(1524), 1, - sym_parameter_bracks, - STATE(3633), 1, - sym_comment, - STATE(3713), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109667] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7071), 1, - anon_sym_DOT_DOT2, - STATE(3634), 1, + STATE(3820), 1, sym_comment, - ACTIONS(7073), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 4, + STATE(4510), 1, + sym_cell_path, + ACTIONS(7358), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109687] = 5, + [123030] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7075), 1, - anon_sym_DOT_DOT2, - STATE(3635), 1, + STATE(3821), 1, sym_comment, - ACTIONS(7077), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 4, + ACTIONS(1958), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109707] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123049] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7079), 1, - anon_sym_DOT_DOT2, - STATE(3636), 1, + STATE(3822), 1, sym_comment, - ACTIONS(7081), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 4, + ACTIONS(2052), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(2050), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109727] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123068] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7083), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7085), 1, - aux_sym__immediate_decimal_token5, - STATE(3637), 1, + STATE(3823), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(2050), 4, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [109749] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3638), 1, - sym_comment, - ACTIONS(1874), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1876), 4, + ACTIONS(2052), 4, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [109767] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7087), 1, anon_sym_DOT_DOT2, - STATE(3639), 1, - sym_comment, - ACTIONS(7089), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109793] = 7, + sym__unquoted_pattern_in_list, + [123087] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1460), 1, + ACTIONS(1590), 1, sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(7360), 1, anon_sym_DOT2, - STATE(3624), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3640), 1, + STATE(3824), 1, sym_comment, - STATE(3884), 1, + STATE(3850), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4200), 1, sym_path, - ACTIONS(1458), 3, + STATE(4506), 1, + sym_cell_path, + ACTIONS(1588), 3, anon_sym_RBRACK, anon_sym_GT2, anon_sym_DOT_DOT, - [109817] = 9, + [123114] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1531), 1, - sym_parameter_parens, - STATE(1532), 1, - sym_parameter_bracks, - STATE(3641), 1, + ACTIONS(5340), 1, + anon_sym_DOT2, + STATE(463), 1, + sym_path, + STATE(964), 1, + sym_cell_path, + STATE(2489), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3825), 1, sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109845] = 9, + ACTIONS(7362), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123139] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3657), 1, + sym__entry_separator, + ACTIONS(7364), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(3826), 1, + sym_comment, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4728), 1, + sym_cell_path, + ACTIONS(3659), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [123165] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7182), 1, + anon_sym_DOT2, + STATE(2706), 1, + sym_path, + STATE(3260), 1, + sym_cell_path, + STATE(3811), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3827), 1, + sym_comment, + ACTIONS(2024), 3, anon_sym_LBRACK, - ACTIONS(7057), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, anon_sym_DASH_DASH, - STATE(1546), 1, - sym_parameter_parens, - STATE(1547), 1, - sym_parameter_bracks, - STATE(3642), 1, - sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109873] = 7, + [123189] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7091), 1, - anon_sym_DOT, - STATE(3643), 1, - sym_comment, - STATE(4179), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, + ACTIONS(7366), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [109897] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7093), 1, + ACTIONS(7368), 1, aux_sym__immediate_decimal_token5, - STATE(3644), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109917] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3645), 1, + STATE(3828), 1, sym_comment, - ACTIONS(1872), 2, + ACTIONS(1922), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1870), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1920), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109935] = 9, - ACTIONS(3), 1, + [123211] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7095), 1, - anon_sym_RBRACK, - STATE(3646), 1, + ACTIONS(7323), 1, + anon_sym_DOT2, + STATE(3829), 1, sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(5018), 1, - sym__table_body, - [109963] = 8, + STATE(3971), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4434), 1, + sym_path, + STATE(4720), 1, + sym_cell_path, + ACTIONS(2018), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [123235] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1434), 1, + ACTIONS(2024), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7364), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(354), 1, sym_path, - STATE(368), 1, - sym_cell_path, - STATE(3647), 1, + STATE(3830), 1, sym_comment, - STATE(3778), 1, + STATE(4034), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1432), 2, + STATE(4526), 1, + sym_cell_path, + ACTIONS(2026), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [109989] = 9, - ACTIONS(3), 1, + [123261] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1548), 1, - sym_parameter_parens, - STATE(1549), 1, - sym_parameter_bracks, - STATE(3648), 1, + ACTIONS(2046), 1, + sym__entry_separator, + ACTIONS(7364), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(3831), 1, sym_comment, - STATE(3674), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [110017] = 4, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4261), 1, + sym_cell_path, + ACTIONS(2048), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [123287] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3649), 1, + STATE(3832), 1, sym_comment, - ACTIONS(1872), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 4, - anon_sym_LPAREN2, + ACTIONS(2004), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [110035] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7097), 1, + ACTIONS(2006), 4, anon_sym_RBRACK, - STATE(3650), 1, - sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(4949), 1, - sym__table_body, - [110063] = 9, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [123305] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - STATE(1551), 1, + STATE(1852), 1, sym_parameter_parens, - STATE(1552), 1, + STATE(1859), 1, sym_parameter_bracks, - STATE(3651), 1, + STATE(3833), 1, sym_comment, - STATE(4039), 1, + STATE(3922), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4583), 1, sym_long_flag, - [110091] = 4, + [123333] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3652), 1, + STATE(3834), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 5, + ACTIONS(777), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110109] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6961), 1, - anon_sym_DOT2, - STATE(2258), 1, - sym_cell_path, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3653), 1, - sym_comment, - ACTIONS(1434), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [110133] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1576), 1, - sym_parameter_parens, - STATE(1604), 1, - sym_parameter_bracks, - STATE(3654), 1, - sym_comment, - STATE(3727), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [110161] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1858), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3655), 1, - sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4214), 1, - sym_cell_path, - ACTIONS(1860), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [110187] = 9, + [123351] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(4394), 1, sym__newline, - ACTIONS(7099), 1, + ACTIONS(7376), 1, anon_sym_RBRACK, - STATE(3656), 1, + STATE(3835), 1, sym_comment, - STATE(4021), 1, + STATE(4151), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4578), 1, sym_val_list, - STATE(4577), 1, + STATE(4579), 1, aux_sym__table_body_repeat1, - STATE(4955), 1, + STATE(5035), 1, sym__table_body, - [110215] = 9, + [123379] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(2114), 1, + sym__unquoted_pattern, + ACTIONS(7378), 1, + anon_sym_DOT_DOT2, + STATE(3836), 1, + sym_comment, + ACTIONS(7380), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123401] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - STATE(1528), 1, + STATE(1874), 1, sym_parameter_parens, - STATE(1529), 1, + STATE(1875), 1, sym_parameter_bracks, - STATE(3657), 1, + STATE(3837), 1, sym_comment, - STATE(3708), 1, + STATE(4082), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4583), 1, sym_long_flag, - [110243] = 9, + [123429] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - STATE(1553), 1, + STATE(1876), 1, sym_parameter_parens, - STATE(1554), 1, + STATE(1877), 1, sym_parameter_bracks, - STATE(3658), 1, + STATE(3838), 1, sym_comment, - STATE(3688), 1, + STATE(3847), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4583), 1, sym_long_flag, - [110271] = 9, + [123457] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(815), 1, + anon_sym_RBRACE, + ACTIONS(904), 1, + sym__entry_separator, + ACTIONS(7382), 1, + anon_sym_DOT_DOT2, + ACTIONS(7386), 1, + sym_filesize_unit, + ACTIONS(7388), 1, + sym_duration_unit, + STATE(3839), 1, + sym_comment, + ACTIONS(7384), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123483] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - STATE(1509), 1, - sym_parameter_parens, - STATE(1662), 1, + STATE(1738), 1, sym_parameter_bracks, - STATE(3659), 1, + STATE(1850), 1, + sym_parameter_parens, + STATE(3840), 1, sym_comment, - STATE(4039), 1, + STATE(4082), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4583), 1, sym_long_flag, - [110299] = 7, + [123511] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(904), 1, + sym__entry_separator, + ACTIONS(6601), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7022), 1, + anon_sym_DOT_DOT2, + ACTIONS(7026), 1, + sym_filesize_unit, + ACTIONS(7028), 1, + sym_duration_unit, + STATE(3841), 1, + sym_comment, + ACTIONS(7024), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123537] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6949), 1, + ACTIONS(7274), 1, + sym__entry_separator, + ACTIONS(7360), 1, anon_sym_DOT2, - STATE(3660), 1, + STATE(3842), 1, sym_comment, - STATE(3755), 1, + STATE(3850), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, + STATE(4200), 1, sym_path, - STATE(4421), 1, + STATE(4588), 1, sym_cell_path, - ACTIONS(1860), 3, + ACTIONS(7390), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [110323] = 4, + anon_sym_DOT_DOT, + [123563] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3661), 1, - sym_comment, - ACTIONS(1641), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2008), 1, sym__entry_separator, - ACTIONS(1643), 4, + ACTIONS(7364), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(3843), 1, + sym_comment, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4359), 1, + sym_cell_path, + ACTIONS(2010), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [110341] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3662), 1, - sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, - sym__assignment_pattern, - [110369] = 4, + [123589] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3663), 1, + STATE(3844), 1, sym_comment, - ACTIONS(1822), 3, + ACTIONS(2000), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1824), 4, + ACTIONS(2002), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [110387] = 8, - ACTIONS(103), 1, + [123607] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3664), 1, + STATE(3845), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4113), 1, - sym_cell_path, - ACTIONS(1880), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [110413] = 9, - ACTIONS(3), 1, + ACTIONS(894), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(896), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [123625] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7101), 1, - anon_sym_RBRACK, - STATE(3665), 1, + ACTIONS(7392), 1, + anon_sym_QMARK2, + ACTIONS(7394), 1, + anon_sym_BANG, + STATE(3846), 1, sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(5044), 1, - sym__table_body, - [110441] = 9, + STATE(4366), 1, + sym__path_suffix, + ACTIONS(1594), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [123647] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - STATE(1663), 1, + STATE(1883), 1, sym_parameter_parens, - STATE(1664), 1, + STATE(1885), 1, sym_parameter_bracks, - STATE(3641), 1, - aux_sym_decl_def_repeat1, - STATE(3666), 1, + STATE(3847), 1, sym_comment, - STATE(4547), 1, + STATE(4082), 1, + aux_sym_decl_def_repeat1, + STATE(4583), 1, sym_long_flag, - [110469] = 8, + [123675] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3667), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7280), 1, + anon_sym_alias, + ACTIONS(7282), 1, + anon_sym_const, + ACTIONS(7284), 1, + anon_sym_def, + ACTIONS(7286), 1, + anon_sym_use, + ACTIONS(7288), 1, + anon_sym_extern, + ACTIONS(7290), 1, + anon_sym_module, + STATE(3848), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4096), 1, - sym_cell_path, - ACTIONS(1864), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [110495] = 8, - ACTIONS(103), 1, + [123703] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, - sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3668), 1, + ACTIONS(1922), 1, + sym__unquoted_pattern, + ACTIONS(7396), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7398), 1, + aux_sym__immediate_decimal_token5, + STATE(3849), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4113), 1, - sym_cell_path, - ACTIONS(1880), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [110521] = 8, + ACTIONS(1920), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123725] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, + ACTIONS(1653), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7360), 1, anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3669), 1, + STATE(3850), 1, sym_comment, - STATE(3778), 1, + STATE(3877), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4096), 1, - sym_cell_path, - ACTIONS(1864), 2, + STATE(4200), 1, + sym_path, + ACTIONS(1651), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [110547] = 9, + anon_sym_GT2, + anon_sym_DOT_DOT, + [123749] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(4394), 1, sym__newline, - ACTIONS(7103), 1, + ACTIONS(7400), 1, anon_sym_RBRACK, - STATE(3670), 1, + STATE(3851), 1, sym_comment, - STATE(4021), 1, + STATE(4151), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4578), 1, sym_val_list, - STATE(4577), 1, + STATE(4579), 1, aux_sym__table_body_repeat1, - STATE(5054), 1, + STATE(4985), 1, sym__table_body, - [110575] = 9, + [123777] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(7318), 1, + anon_sym_RBRACK, + ACTIONS(7321), 1, + anon_sym_DOT_DOT, + ACTIONS(7364), 1, + anon_sym_DOT2, + ACTIONS(7402), 1, + sym__entry_separator, + STATE(354), 1, + sym_path, + STATE(3852), 1, + sym_comment, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4546), 1, + sym_cell_path, + [123805] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2701), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7105), 1, - anon_sym_alias, - ACTIONS(7107), 1, - anon_sym_const, - ACTIONS(7109), 1, + ACTIONS(7284), 1, anon_sym_def, - ACTIONS(7111), 1, + ACTIONS(7286), 1, anon_sym_use, - ACTIONS(7113), 1, + ACTIONS(7288), 1, anon_sym_extern, - ACTIONS(7115), 1, + ACTIONS(7290), 1, anon_sym_module, - STATE(3671), 1, + ACTIONS(7405), 1, + anon_sym_alias, + ACTIONS(7407), 1, + anon_sym_const, + STATE(3853), 1, sym_comment, - [110603] = 8, + [123833] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6724), 1, - anon_sym_DOT_DOT2, - ACTIONS(6728), 1, - sym_filesize_unit, - ACTIONS(6730), 1, - sym_duration_unit, - STATE(3672), 1, + ACTIONS(2818), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2828), 1, + anon_sym_COLON2, + ACTIONS(7409), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + STATE(3854), 1, sym_comment, - ACTIONS(6726), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110629] = 8, - ACTIONS(103), 1, + STATE(4122), 1, + sym__variable_name, + STATE(4456), 1, + sym__assignment_pattern, + STATE(4466), 1, + sym_val_variable, + [123861] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, + ACTIONS(4337), 1, + anon_sym_LBRACK, + ACTIONS(4394), 1, + sym__newline, + ACTIONS(7413), 1, anon_sym_RBRACK, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7117), 1, - anon_sym_DOT_DOT2, - STATE(3673), 1, + STATE(3855), 1, sym_comment, - ACTIONS(7119), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110655] = 9, + STATE(4151), 1, + aux_sym__types_body_repeat1, + STATE(4578), 1, + sym_val_list, + STATE(4579), 1, + aux_sym__table_body_repeat1, + STATE(5157), 1, + sym__table_body, + [123889] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - STATE(1555), 1, - sym_parameter_parens, - STATE(1556), 1, + STATE(1739), 1, sym_parameter_bracks, - STATE(3674), 1, + STATE(1898), 1, + sym_parameter_parens, + STATE(3856), 1, sym_comment, - STATE(4039), 1, + STATE(4082), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4583), 1, sym_long_flag, - [110683] = 9, + [123917] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3677), 1, + sym__entry_separator, + ACTIONS(7364), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(3857), 1, + sym_comment, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4581), 1, + sym_cell_path, + ACTIONS(3679), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [123943] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7360), 1, + anon_sym_DOT2, + ACTIONS(7390), 1, + anon_sym_DOT_DOT, + ACTIONS(7415), 1, + anon_sym_RBRACK, + ACTIONS(7419), 1, + sym__entry_separator, + STATE(3850), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3858), 1, + sym_comment, + STATE(4200), 1, + sym_path, + STATE(4767), 1, + sym_cell_path, + [123971] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(4394), 1, sym__newline, - ACTIONS(7121), 1, + ACTIONS(7423), 1, anon_sym_RBRACK, - STATE(3675), 1, + STATE(3859), 1, sym_comment, - STATE(4021), 1, + STATE(4151), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4578), 1, sym_val_list, - STATE(4577), 1, + STATE(4579), 1, aux_sym__table_body_repeat1, - STATE(4993), 1, + STATE(5230), 1, sym__table_body, - [110711] = 8, + [123999] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(7123), 1, - anon_sym_DOT_DOT2, - ACTIONS(7127), 1, - sym_filesize_unit, - ACTIONS(7129), 1, - sym_duration_unit, - STATE(3676), 1, + ACTIONS(2818), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2828), 1, + anon_sym_COLON2, + ACTIONS(7409), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + STATE(3860), 1, sym_comment, - ACTIONS(7125), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110737] = 6, + STATE(4122), 1, + sym__variable_name, + STATE(4436), 1, + sym__assignment_pattern, + STATE(4466), 1, + sym_val_variable, + [124027] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7131), 1, - anon_sym_QMARK2, - ACTIONS(7133), 1, - anon_sym_BANG, - STATE(3677), 1, - sym_comment, - STATE(4266), 1, - sym__path_suffix, - ACTIONS(1446), 4, - anon_sym_RBRACK, + ACTIONS(2024), 1, sym__entry_separator, - sym__table_head_separator, + ACTIONS(7360), 1, anon_sym_DOT2, - [110759] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7135), 1, - anon_sym_DOT, - ACTIONS(7137), 1, - aux_sym__immediate_decimal_token5, - STATE(3678), 1, - sym_comment, - ACTIONS(1736), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [110781] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_DOT, - ACTIONS(7141), 1, - aux_sym__immediate_decimal_token5, - STATE(3679), 1, + STATE(3850), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3861), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 3, + STATE(4200), 1, + sym_path, + STATE(4526), 1, + sym_cell_path, + ACTIONS(2026), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [110803] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7143), 1, - anon_sym_DOT_DOT2, - STATE(3680), 1, - sym_comment, - ACTIONS(7145), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110825] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7147), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7149), 1, - aux_sym__immediate_decimal_token5, - STATE(3681), 1, - sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110847] = 8, + [124053] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(2008), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7360), 1, anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3682), 1, - sym_comment, - STATE(3778), 1, + STATE(3850), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4176), 1, + STATE(3862), 1, + sym_comment, + STATE(4200), 1, + sym_path, + STATE(4359), 1, sym_cell_path, - ACTIONS(1884), 2, + ACTIONS(2010), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [110873] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3683), 1, - sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 5, + anon_sym_DOT_DOT, + [124079] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4337), 1, + anon_sym_LBRACK, + ACTIONS(4394), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110891] = 8, + ACTIONS(7425), 1, + anon_sym_RBRACK, + STATE(3863), 1, + sym_comment, + STATE(4151), 1, + aux_sym__types_body_repeat1, + STATE(4578), 1, + sym_val_list, + STATE(4579), 1, + aux_sym__table_body_repeat1, + STATE(5199), 1, + sym__table_body, + [124107] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5233), 1, + ACTIONS(3681), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7364), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(354), 1, sym_path, - STATE(3684), 1, + STATE(3864), 1, sym_comment, - STATE(3778), 1, + STATE(4034), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4483), 1, + STATE(4584), 1, sym_cell_path, - ACTIONS(5231), 2, + ACTIONS(3683), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [110917] = 9, + [124133] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(4394), 1, sym__newline, - ACTIONS(7151), 1, + ACTIONS(7427), 1, anon_sym_RBRACK, - STATE(3685), 1, + STATE(3865), 1, sym_comment, - STATE(4021), 1, + STATE(4151), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4578), 1, sym_val_list, - STATE(4577), 1, + STATE(4579), 1, aux_sym__table_body_repeat1, - STATE(4797), 1, + STATE(5319), 1, sym__table_body, - [110945] = 9, + [124161] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7429), 1, + anon_sym_DOT, + ACTIONS(7431), 1, + aux_sym__immediate_decimal_token5, + STATE(3866), 1, + sym_comment, + ACTIONS(1882), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1884), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [124183] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7433), 1, + anon_sym_DOT, + STATE(3867), 1, + sym_comment, + STATE(4415), 1, + sym__immediate_decimal, + ACTIONS(7435), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7437), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [124207] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2954), 1, aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, + ACTIONS(7439), 1, + anon_sym_alias, + ACTIONS(7441), 1, + anon_sym_const, + ACTIONS(7443), 1, anon_sym_def, - ACTIONS(6980), 1, + ACTIONS(7445), 1, anon_sym_use, - ACTIONS(6982), 1, + ACTIONS(7447), 1, anon_sym_extern, - ACTIONS(6984), 1, + ACTIONS(7449), 1, anon_sym_module, - ACTIONS(7153), 1, - anon_sym_alias, - ACTIONS(7155), 1, - anon_sym_const, - STATE(3686), 1, + STATE(3868), 1, sym_comment, - [110973] = 6, + [124235] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1774), 1, sym__unquoted_pattern, - ACTIONS(7157), 1, - anon_sym_DOT_DOT2, - STATE(3687), 1, + ACTIONS(7451), 1, + anon_sym_DOT, + STATE(3869), 1, sym_comment, - ACTIONS(7159), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110995] = 9, + STATE(4318), 1, + sym__immediate_decimal, + ACTIONS(6655), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6657), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [124259] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1557), 1, - sym_parameter_parens, - STATE(1558), 1, - sym_parameter_bracks, - STATE(3688), 1, + ACTIONS(4394), 1, + sym__newline, + ACTIONS(7453), 1, + anon_sym_RBRACK, + STATE(3870), 1, sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [111023] = 9, - ACTIONS(103), 1, + STATE(4151), 1, + aux_sym__types_body_repeat1, + STATE(4578), 1, + sym_val_list, + STATE(4579), 1, + aux_sym__table_body_repeat1, + STATE(4983), 1, + sym__table_body, + [124287] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3689), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(7455), 1, + anon_sym_DOT_DOT2, + STATE(3871), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, - sym__assignment_pattern, - [111051] = 7, + ACTIONS(7457), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2094), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124309] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(7298), 1, anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(3032), 1, + STATE(2487), 1, sym_cell_path, - STATE(3592), 1, + STATE(2706), 1, + sym_path, + STATE(2769), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3690), 1, + STATE(3872), 1, sym_comment, - ACTIONS(1878), 3, + ACTIONS(1590), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [124333] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4337), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [111075] = 9, + ACTIONS(4394), 1, + sym__newline, + ACTIONS(7459), 1, + anon_sym_RBRACK, + STATE(3873), 1, + sym_comment, + STATE(4151), 1, + aux_sym__types_body_repeat1, + STATE(4578), 1, + sym_val_list, + STATE(4579), 1, + aux_sym__table_body_repeat1, + STATE(5012), 1, + sym__table_body, + [124361] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - STATE(1559), 1, - sym_parameter_parens, - STATE(1560), 1, + STATE(1848), 1, sym_parameter_bracks, - STATE(3691), 1, + STATE(1902), 1, + sym_parameter_parens, + STATE(3874), 1, sym_comment, - STATE(3706), 1, + STATE(4082), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4583), 1, sym_long_flag, - [111103] = 8, + [124389] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7461), 1, + aux_sym__immediate_decimal_token5, + STATE(3875), 1, + sym_comment, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(777), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [124409] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4337), 1, + anon_sym_LBRACK, + ACTIONS(4394), 1, + sym__newline, + ACTIONS(7463), 1, + anon_sym_RBRACK, + STATE(3876), 1, + sym_comment, + STATE(4151), 1, + aux_sym__types_body_repeat1, + STATE(4578), 1, + sym_val_list, + STATE(4579), 1, + aux_sym__table_body_repeat1, + STATE(5305), 1, + sym__table_body, + [124437] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5273), 1, + ACTIONS(1644), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7465), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(4200), 1, sym_path, - STATE(3692), 1, + STATE(3877), 2, sym_comment, - STATE(3778), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4514), 1, - sym_cell_path, - ACTIONS(5271), 2, + ACTIONS(1642), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [111129] = 8, + anon_sym_GT2, + anon_sym_DOT_DOT, + [124459] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1964), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2094), 1, sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - ACTIONS(1968), 1, + ACTIONS(2096), 1, + anon_sym_RBRACK, + ACTIONS(2098), 1, anon_sym_LPAREN2, - ACTIONS(7161), 1, + ACTIONS(7468), 1, anon_sym_DOT_DOT2, - STATE(3693), 1, + STATE(3878), 1, sym_comment, - ACTIONS(7163), 2, + ACTIONS(7470), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111155] = 4, + [124485] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3694), 1, + ACTIONS(7472), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7474), 1, + aux_sym__immediate_decimal_token5, + STATE(3879), 1, + sym_comment, + ACTIONS(1920), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1922), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [124507] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2020), 1, + sym__entry_separator, + ACTIONS(7364), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(3880), 1, sym_comment, - ACTIONS(1728), 3, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4546), 1, + sym_cell_path, + ACTIONS(2022), 2, + anon_sym_RBRACK, anon_sym_RBRACE, + [124533] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3881), 1, + sym_comment, + ACTIONS(1922), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 4, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(1920), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [111173] = 9, + [124551] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2701), 1, aux_sym_cmd_identifier_token2, - ACTIONS(6974), 1, - anon_sym_alias, - ACTIONS(6976), 1, - anon_sym_const, - ACTIONS(6978), 1, + ACTIONS(7284), 1, anon_sym_def, - ACTIONS(6980), 1, + ACTIONS(7286), 1, anon_sym_use, - ACTIONS(6982), 1, + ACTIONS(7288), 1, anon_sym_extern, - ACTIONS(6984), 1, + ACTIONS(7290), 1, anon_sym_module, - STATE(3695), 1, + ACTIONS(7476), 1, + anon_sym_alias, + ACTIONS(7478), 1, + anon_sym_const, + STATE(3882), 1, sym_comment, - [111201] = 8, + [124579] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7030), 1, + ACTIONS(7358), 1, sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(7360), 1, anon_sym_DOT2, - STATE(3640), 1, + STATE(3850), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3696), 1, + STATE(3883), 1, sym_comment, - STATE(3884), 1, + STATE(4200), 1, sym_path, - STATE(4478), 1, + STATE(4603), 1, sym_cell_path, - ACTIONS(7165), 2, + ACTIONS(7480), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [111227] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7167), 1, - anon_sym_RBRACK, - STATE(3697), 1, - sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(5098), 1, - sym__table_body, - [111255] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7169), 1, - anon_sym_DOT, - STATE(3698), 1, - sym_comment, - STATE(4088), 1, - sym__immediate_decimal, - ACTIONS(7171), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7173), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [111279] = 7, + [124605] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2826), 1, - sym_cell_path, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3699), 1, - sym_comment, - ACTIONS(1850), 3, + ACTIONS(7370), 1, anon_sym_LBRACK, + ACTIONS(7372), 1, anon_sym_LPAREN, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - [111303] = 6, + STATE(1784), 1, + sym_parameter_parens, + STATE(1832), 1, + sym_parameter_bracks, + STATE(3874), 1, + aux_sym_decl_def_repeat1, + STATE(3884), 1, + sym_comment, + STATE(4583), 1, + sym_long_flag, + [124633] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(7175), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7177), 1, - aux_sym__immediate_decimal_token5, - STATE(3700), 1, + STATE(3885), 1, sym_comment, - ACTIONS(1726), 4, - anon_sym_if, + ACTIONS(1958), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [111325] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7038), 1, - anon_sym_DOT2, - ACTIONS(7165), 1, - anon_sym_DOT_DOT, - ACTIONS(7179), 1, - anon_sym_RBRACK, - ACTIONS(7183), 1, - sym__entry_separator, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3701), 1, - sym_comment, - STATE(3884), 1, - sym_path, - STATE(4449), 1, - sym_cell_path, - [111353] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7187), 1, - anon_sym_RBRACK, - STATE(3702), 1, - sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(5180), 1, - sym__table_body, - [111381] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124651] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(7182), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2706), 1, sym_path, - STATE(2934), 1, + STATE(3276), 1, sym_cell_path, - STATE(3592), 1, + STATE(3811), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3703), 1, + STATE(3886), 1, sym_comment, - ACTIONS(1862), 3, + ACTIONS(2008), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [111405] = 7, + [124675] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6949), 1, + ACTIONS(2016), 1, + sym__entry_separator, + ACTIONS(7364), 1, anon_sym_DOT2, - STATE(3704), 1, + STATE(354), 1, + sym_path, + STATE(3887), 1, sym_comment, - STATE(3755), 1, + STATE(4034), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, - sym_path, - STATE(4368), 1, + STATE(4542), 1, sym_cell_path, - ACTIONS(1884), 3, + ACTIONS(2018), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [111429] = 4, + anon_sym_RBRACE, + [124701] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3705), 1, + ACTIONS(1884), 1, + sym__unquoted_pattern, + ACTIONS(7482), 1, + anon_sym_DOT, + ACTIONS(7484), 1, + aux_sym__immediate_decimal_token5, + STATE(3888), 1, + sym_comment, + ACTIONS(1882), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124723] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3889), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(2052), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 5, + ACTIONS(2050), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111447] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1561), 1, - sym_parameter_parens, - STATE(1562), 1, - sym_parameter_bracks, - STATE(3706), 1, - sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [111475] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6944), 1, - anon_sym_RBRACK, - ACTIONS(6947), 1, - anon_sym_DOT_DOT, - ACTIONS(7069), 1, - anon_sym_DOT2, - ACTIONS(7189), 1, - sym__entry_separator, - STATE(339), 1, - sym_path, - STATE(3707), 1, - sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4176), 1, - sym_cell_path, - [111503] = 9, + [124741] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - STATE(1516), 1, + STATE(1854), 1, sym_parameter_parens, - STATE(1517), 1, + STATE(1855), 1, sym_parameter_bracks, - STATE(3708), 1, + STATE(3890), 1, sym_comment, - STATE(4039), 1, + STATE(3894), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4583), 1, sym_long_flag, - [111531] = 9, + [124769] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(4394), 1, sym__newline, - ACTIONS(7192), 1, + ACTIONS(7486), 1, anon_sym_RBRACK, - STATE(3709), 1, + STATE(3891), 1, sym_comment, - STATE(4021), 1, + STATE(4151), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4578), 1, sym_val_list, - STATE(4577), 1, + STATE(4579), 1, aux_sym__table_body_repeat1, - STATE(5051), 1, + STATE(5176), 1, sym__table_body, - [111559] = 8, + [124797] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_LBRACE, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(7194), 1, - anon_sym_DOT_DOT2, - ACTIONS(7198), 1, - sym_filesize_unit, - ACTIONS(7200), 1, - sym_duration_unit, - STATE(3710), 1, + ACTIONS(7294), 1, + aux_sym__immediate_decimal_token5, + STATE(3892), 1, sym_comment, - ACTIONS(7196), 2, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(769), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111585] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5251), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3711), 1, - sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4554), 1, - sym_cell_path, - ACTIONS(5249), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [111611] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6963), 1, - sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3712), 1, - sym_comment, - STATE(3884), 1, - sym_path, - STATE(4513), 1, - sym_cell_path, - ACTIONS(7202), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [111637] = 9, + sym_filesize_unit, + sym_duration_unit, + [124817] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - STATE(1533), 1, + STATE(1741), 1, sym_parameter_parens, - STATE(1534), 1, + STATE(1742), 1, sym_parameter_bracks, - STATE(3713), 1, + STATE(3893), 1, sym_comment, - STATE(4039), 1, + STATE(3896), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4583), 1, sym_long_flag, - [111665] = 5, + [124845] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7206), 1, - anon_sym_DOT_DOT2, - STATE(3714), 1, + ACTIONS(7370), 1, + anon_sym_LBRACK, + ACTIONS(7372), 1, + anon_sym_LPAREN, + ACTIONS(7374), 1, + anon_sym_DASH_DASH, + STATE(1767), 1, + sym_parameter_parens, + STATE(1770), 1, + sym_parameter_bracks, + STATE(3894), 1, sym_comment, - ACTIONS(7208), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7204), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111685] = 5, + STATE(4082), 1, + aux_sym_decl_def_repeat1, + STATE(4583), 1, + sym_long_flag, + [124873] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7206), 1, - anon_sym_DOT_DOT2, - STATE(3715), 1, + ACTIONS(7370), 1, + anon_sym_LBRACK, + ACTIONS(7372), 1, + anon_sym_LPAREN, + ACTIONS(7374), 1, + anon_sym_DASH_DASH, + STATE(1777), 1, + sym_parameter_parens, + STATE(1782), 1, + sym_parameter_bracks, + STATE(3895), 1, sym_comment, - ACTIONS(7208), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7210), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111705] = 9, + STATE(3899), 1, + aux_sym_decl_def_repeat1, + STATE(4583), 1, + sym_long_flag, + [124901] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - STATE(1538), 1, - sym_parameter_parens, - STATE(1539), 1, + STATE(1779), 1, sym_parameter_bracks, - STATE(3642), 1, - aux_sym_decl_def_repeat1, - STATE(3716), 1, + STATE(1828), 1, + sym_parameter_parens, + STATE(3896), 1, sym_comment, - STATE(4547), 1, + STATE(4082), 1, + aux_sym_decl_def_repeat1, + STATE(4583), 1, sym_long_flag, - [111733] = 4, + [124929] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(3717), 1, + ACTIONS(7370), 1, + anon_sym_LBRACK, + ACTIONS(7372), 1, + anon_sym_LPAREN, + ACTIONS(7374), 1, + anon_sym_DASH_DASH, + STATE(1789), 1, + sym_parameter_parens, + STATE(1790), 1, + sym_parameter_bracks, + STATE(3897), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [111751] = 8, + STATE(3901), 1, + aux_sym_decl_def_repeat1, + STATE(4583), 1, + sym_long_flag, + [124957] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1850), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2094), 1, sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3718), 1, - sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4335), 1, - sym_cell_path, - ACTIONS(1853), 2, - anon_sym_RBRACK, + ACTIONS(2096), 1, anon_sym_RBRACE, - [111777] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACK, - ACTIONS(1968), 1, + ACTIONS(2098), 1, anon_sym_LPAREN2, - ACTIONS(7212), 1, + ACTIONS(7488), 1, anon_sym_DOT_DOT2, - STATE(3719), 1, + STATE(3898), 1, sym_comment, - ACTIONS(7214), 2, + ACTIONS(7490), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111803] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - ACTIONS(7216), 1, - anon_sym_alias, - ACTIONS(7218), 1, - anon_sym_const, - STATE(3720), 1, - sym_comment, - [111831] = 9, + [124983] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - STATE(1540), 1, + STATE(1772), 1, sym_parameter_parens, - STATE(1541), 1, + STATE(1774), 1, sym_parameter_bracks, - STATE(3721), 1, + STATE(3899), 1, sym_comment, - STATE(4039), 1, + STATE(4082), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4583), 1, sym_long_flag, - [111859] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - ACTIONS(7220), 1, - anon_sym_alias, - ACTIONS(7222), 1, - anon_sym_const, - STATE(3722), 1, - sym_comment, - [111887] = 5, + [125011] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7024), 1, - aux_sym__immediate_decimal_token5, - STATE(3723), 1, + ACTIONS(7370), 1, + anon_sym_LBRACK, + ACTIONS(7372), 1, + anon_sym_LPAREN, + ACTIONS(7374), 1, + anon_sym_DASH_DASH, + STATE(1793), 1, + sym_parameter_parens, + STATE(1829), 1, + sym_parameter_bracks, + STATE(3900), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [111907] = 9, + STATE(3902), 1, + aux_sym_decl_def_repeat1, + STATE(4583), 1, + sym_long_flag, + [125039] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - STATE(1521), 1, + STATE(1833), 1, sym_parameter_parens, - STATE(1522), 1, + STATE(1847), 1, sym_parameter_bracks, - STATE(3724), 1, + STATE(3901), 1, sym_comment, - STATE(4039), 1, + STATE(4082), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4583), 1, sym_long_flag, - [111935] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - ACTIONS(7224), 1, - anon_sym_alias, - ACTIONS(7226), 1, - anon_sym_const, - STATE(3725), 1, - sym_comment, - [111963] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3726), 1, - sym_comment, - ACTIONS(1886), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1888), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [111981] = 9, + [125067] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - STATE(1526), 1, + STATE(1856), 1, sym_parameter_parens, - STATE(1527), 1, + STATE(1858), 1, sym_parameter_bracks, - STATE(3727), 1, + STATE(3902), 1, sym_comment, - STATE(4039), 1, + STATE(4082), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4583), 1, sym_long_flag, - [112009] = 9, + [125095] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7228), 1, - anon_sym_RBRACK, - STATE(3728), 1, + ACTIONS(7372), 1, + anon_sym_LPAREN, + ACTIONS(7374), 1, + anon_sym_DASH_DASH, + STATE(1860), 1, + sym_parameter_parens, + STATE(1873), 1, + sym_parameter_bracks, + STATE(3903), 1, sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(4975), 1, - sym__table_body, - [112037] = 9, + STATE(3904), 1, + aux_sym_decl_def_repeat1, + STATE(4583), 1, + sym_long_flag, + [125123] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7370), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7374), 1, anon_sym_DASH_DASH, - STATE(1535), 1, + STATE(1781), 1, sym_parameter_parens, - STATE(1536), 1, + STATE(1787), 1, sym_parameter_bracks, - STATE(3721), 1, - aux_sym_decl_def_repeat1, - STATE(3729), 1, + STATE(3904), 1, sym_comment, - STATE(4547), 1, + STATE(4082), 1, + aux_sym_decl_def_repeat1, + STATE(4583), 1, sym_long_flag, - [112065] = 4, + [125151] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3730), 1, + ACTIONS(7494), 1, + anon_sym_DOT_DOT2, + STATE(3905), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(7496), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7492), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125171] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7498), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 5, - anon_sym_LBRACE, + STATE(3906), 1, + sym_comment, + ACTIONS(7500), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [112083] = 8, + ACTIONS(2294), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125191] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(7323), 1, + anon_sym_DOT2, + STATE(3907), 1, + sym_comment, + STATE(3971), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4434), 1, + sym_path, + STATE(4676), 1, + sym_cell_path, + ACTIONS(2022), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [125215] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2818), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(2828), 1, + anon_sym_COLON2, + ACTIONS(7409), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7411), 1, anon_sym_DOLLAR, - STATE(3731), 1, + STATE(3908), 1, sym_comment, - STATE(3933), 1, + STATE(4122), 1, sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4383), 1, + STATE(4433), 1, sym__assignment_pattern, - [112108] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3340), 1, - sym__blosure, - STATE(3732), 1, - sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112131] = 6, + STATE(4466), 1, + sym_val_variable, + [125243] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(57), 1, - anon_sym_AT, - STATE(3733), 1, + ACTIONS(7502), 1, + anon_sym_DOT_DOT2, + STATE(3909), 1, sym_comment, - STATE(3803), 1, - aux_sym_attribute_list_repeat1, - STATE(4624), 1, - sym_attribute, - ACTIONS(7232), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [112152] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(7504), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2318), 4, + anon_sym_if, sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3340), 1, - sym__blosure, - STATE(3734), 1, - sym_comment, - STATE(3788), 1, - aux_sym__repeat_newline, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112175] = 7, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125263] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3341), 1, - sym__blosure, - STATE(3735), 1, + ACTIONS(7506), 1, + anon_sym_DOT_DOT2, + STATE(3910), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112198] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(7508), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2278), 4, + anon_sym_if, sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3341), 1, - sym__blosure, - STATE(3736), 1, - sym_comment, - STATE(3790), 1, - aux_sym__repeat_newline, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112221] = 7, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125283] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5338), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - ACTIONS(7236), 1, - sym_short_flag_identifier, - STATE(3073), 1, - sym__flag_equals_value, - STATE(3737), 1, + ACTIONS(7510), 1, + anon_sym_DOT_DOT2, + STATE(3911), 1, sym_comment, - ACTIONS(5336), 2, + ACTIONS(7512), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2232), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [112244] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125303] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5346), 1, - sym__space, - ACTIONS(7238), 1, + ACTIONS(2104), 1, + sym__entry_separator, + ACTIONS(2106), 1, + anon_sym_RBRACK, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7514), 1, anon_sym_DOT_DOT2, - STATE(3738), 1, + STATE(3912), 1, sym_comment, - ACTIONS(5344), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7240), 2, + ACTIONS(7516), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112265] = 4, + [125329] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7242), 1, - anon_sym_LT, - STATE(3739), 1, + ACTIONS(7370), 1, + anon_sym_LBRACK, + ACTIONS(7372), 1, + anon_sym_LPAREN, + ACTIONS(7374), 1, + anon_sym_DASH_DASH, + STATE(1831), 1, + sym_parameter_parens, + STATE(1846), 1, + sym_parameter_bracks, + STATE(3837), 1, + aux_sym_decl_def_repeat1, + STATE(3913), 1, sym_comment, - ACTIONS(5920), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [112282] = 4, - ACTIONS(3), 1, + STATE(4583), 1, + sym_long_flag, + [125357] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7244), 1, - anon_sym_LT, - STATE(3740), 1, + ACTIONS(1590), 1, + sym__entry_separator, + ACTIONS(7364), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(380), 1, + sym_cell_path, + STATE(3914), 1, sym_comment, - ACTIONS(5920), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [112299] = 6, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1588), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125383] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2032), 1, + sym__entry_separator, + ACTIONS(7364), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(3915), 1, + sym_comment, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4511), 1, + sym_cell_path, + ACTIONS(2035), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125409] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7246), 1, + ACTIONS(7518), 1, anon_sym_DOT, - ACTIONS(7248), 1, + ACTIONS(7520), 1, aux_sym__immediate_decimal_token5, - STATE(3741), 1, + STATE(3916), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 2, + ACTIONS(1884), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [112320] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1738), 1, sym__unquoted_pattern, - ACTIONS(7250), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - aux_sym__immediate_decimal_token5, - STATE(3742), 1, + ACTIONS(1882), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125431] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7494), 1, + anon_sym_DOT_DOT2, + STATE(3917), 1, sym_comment, - ACTIONS(1736), 3, + ACTIONS(7496), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7522), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [112341] = 8, - ACTIONS(103), 1, + [125451] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3743), 1, + ACTIONS(4337), 1, + anon_sym_LBRACK, + ACTIONS(4394), 1, + sym__newline, + ACTIONS(7524), 1, + anon_sym_RBRACK, + STATE(3918), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4250), 1, - sym__assignment_pattern, - [112366] = 8, - ACTIONS(103), 1, + STATE(4151), 1, + aux_sym__types_body_repeat1, + STATE(4578), 1, + sym_val_list, + STATE(4579), 1, + aux_sym__table_body_repeat1, + STATE(5261), 1, + sym__table_body, + [125479] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3744), 1, + ACTIONS(4337), 1, + anon_sym_LBRACK, + ACTIONS(4394), 1, + sym__newline, + ACTIONS(7526), 1, + anon_sym_RBRACK, + STATE(3919), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, - sym__assignment_pattern, - [112391] = 8, - ACTIONS(103), 1, + STATE(4151), 1, + aux_sym__types_body_repeat1, + STATE(4578), 1, + sym_val_list, + STATE(4579), 1, + aux_sym__table_body_repeat1, + STATE(5271), 1, + sym__table_body, + [125507] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3745), 1, + STATE(3920), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, - sym__assignment_pattern, - [112416] = 6, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(761), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [125525] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7256), 1, - aux_sym__immediate_decimal_token5, - STATE(3746), 1, + STATE(3921), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1922), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1920), 4, anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1728), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [112437] = 7, - ACTIONS(103), 1, + [125543] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7370), 1, + anon_sym_LBRACK, + ACTIONS(7372), 1, anon_sym_LPAREN, - ACTIONS(7262), 1, - anon_sym_DQUOTE2, - STATE(3747), 1, + ACTIONS(7374), 1, + anon_sym_DASH_DASH, + STATE(1879), 1, + sym_parameter_bracks, + STATE(1899), 1, + sym_parameter_parens, + STATE(3922), 1, sym_comment, - STATE(3752), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [112460] = 7, - ACTIONS(103), 1, + STATE(4082), 1, + aux_sym_decl_def_repeat1, + STATE(4583), 1, + sym_long_flag, + [125571] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7264), 1, - aux_sym_unquoted_token2, - STATE(3748), 1, + ACTIONS(7370), 1, + anon_sym_LBRACK, + ACTIONS(7372), 1, + anon_sym_LPAREN, + ACTIONS(7374), 1, + anon_sym_DASH_DASH, + STATE(1849), 1, + sym_parameter_bracks, + STATE(1851), 1, + sym_parameter_parens, + STATE(3840), 1, + aux_sym_decl_def_repeat1, + STATE(3923), 1, sym_comment, - STATE(4133), 1, - sym__immediate_decimal, - ACTIONS(6762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112483] = 7, + STATE(4583), 1, + sym_long_flag, + [125599] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7264), 1, - aux_sym_unquoted_token2, - STATE(3749), 1, + STATE(3924), 1, sym_comment, - STATE(4996), 1, - sym__immediate_decimal, - ACTIONS(6590), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112506] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(1958), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(7264), 1, - sym__unquoted_pattern, - STATE(3750), 1, - sym_comment, - ACTIONS(4141), 2, + sym__unquoted_pattern_in_record, + ACTIONS(1956), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7266), 2, - sym_filesize_unit, - sym_duration_unit, - [112527] = 6, + sym__entry_separator, + [125617] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(904), 1, + anon_sym_LBRACE, + ACTIONS(1900), 1, sym__unquoted_pattern, - STATE(3751), 1, + ACTIONS(7528), 1, + anon_sym_DOT_DOT2, + ACTIONS(7532), 1, + sym_filesize_unit, + ACTIONS(7534), 1, + sym_duration_unit, + STATE(3925), 1, sym_comment, - STATE(4989), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112548] = 7, + ACTIONS(7530), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125643] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7268), 1, - anon_sym_DQUOTE2, - STATE(3752), 1, - sym_comment, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [112571] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3753), 1, + STATE(3926), 1, sym_comment, - STATE(4324), 1, - sym_block, - ACTIONS(7270), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2052), 3, anon_sym_RBRACE, - [112590] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(2050), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [125661] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3754), 1, + ACTIONS(7370), 1, + anon_sym_LBRACK, + ACTIONS(7372), 1, + anon_sym_LPAREN, + ACTIONS(7374), 1, + anon_sym_DASH_DASH, + STATE(1830), 1, + sym_parameter_parens, + STATE(1878), 1, + sym_parameter_bracks, + STATE(3856), 1, + aux_sym_decl_def_repeat1, + STATE(3927), 1, sym_comment, - STATE(4330), 1, - sym_block, - ACTIONS(7270), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [112609] = 6, + STATE(4583), 1, + sym_long_flag, + [125689] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6949), 1, - anon_sym_DOT2, - STATE(3755), 1, + STATE(3928), 1, sym_comment, - STATE(3758), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, - sym_path, - ACTIONS(1458), 3, - anon_sym_RBRACK, + ACTIONS(1990), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - sym__table_head_separator, - [112630] = 6, + ACTIONS(1992), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [125707] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7204), 1, - sym__entry_separator, - ACTIONS(7274), 1, - anon_sym_DOT_DOT2, - STATE(3756), 1, + STATE(3929), 1, sym_comment, - ACTIONS(7272), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7276), 2, + ACTIONS(1821), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112651] = 6, + sym__entry_separator, + ACTIONS(1823), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [125725] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(2104), 1, sym__entry_separator, - ACTIONS(7274), 1, + ACTIONS(2106), 1, + anon_sym_RBRACE, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7536), 1, anon_sym_DOT_DOT2, - STATE(3757), 1, + STATE(3930), 1, sym_comment, - ACTIONS(7276), 2, + ACTIONS(7538), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7278), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [112672] = 5, + [125751] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7280), 1, - anon_sym_DOT2, - STATE(4108), 1, - sym_path, - STATE(3758), 2, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7284), 1, + anon_sym_def, + ACTIONS(7286), 1, + anon_sym_use, + ACTIONS(7288), 1, + anon_sym_extern, + ACTIONS(7290), 1, + anon_sym_module, + ACTIONS(7540), 1, + anon_sym_alias, + ACTIONS(7542), 1, + anon_sym_const, + STATE(3931), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [112691] = 5, + [125779] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7284), 1, + anon_sym_def, + ACTIONS(7286), 1, + anon_sym_use, + ACTIONS(7288), 1, + anon_sym_extern, + ACTIONS(7290), 1, + anon_sym_module, + ACTIONS(7544), 1, + anon_sym_alias, + ACTIONS(7546), 1, + anon_sym_const, + STATE(3932), 1, + sym_comment, + [125807] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7283), 1, - aux_sym__immediate_decimal_token5, - STATE(3759), 1, + ACTIONS(7182), 1, + anon_sym_DOT2, + STATE(2706), 1, + sym_path, + STATE(3050), 1, + sym_cell_path, + STATE(3811), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3933), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [112710] = 7, + ACTIONS(2032), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [125831] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7548), 1, anon_sym_LPAREN, - ACTIONS(7285), 1, + ACTIONS(7552), 1, anon_sym_DQUOTE2, - STATE(3760), 1, + STATE(3934), 1, sym_comment, - STATE(3814), 1, + STATE(3974), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4235), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7550), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [112733] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3247), 1, - sym__blosure, - STATE(3732), 1, - aux_sym__repeat_newline, - STATE(3761), 1, - sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112756] = 8, - ACTIONS(3), 1, + [125854] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7287), 1, - anon_sym_if, - ACTIONS(7289), 1, - sym__newline, - ACTIONS(7291), 1, - anon_sym_PIPE, - ACTIONS(7293), 1, - anon_sym_EQ_GT, - STATE(3762), 1, + ACTIONS(1644), 1, + sym__entry_separator, + ACTIONS(7554), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + ACTIONS(1642), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(3935), 2, sym_comment, - STATE(4182), 1, - aux_sym_match_pattern_repeat1, - STATE(4917), 1, - sym_match_guard, - [112781] = 7, + aux_sym__where_predicate_lhs_repeat1, + [125875] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7557), 1, anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3272), 1, + STATE(3568), 1, sym__blosure, - STATE(3763), 1, + STATE(3936), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112804] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3272), 1, - sym__blosure, - STATE(3735), 1, + STATE(3983), 1, aux_sym__repeat_newline, - STATE(3764), 1, - sym_comment, - STATE(3113), 2, + STATE(3434), 2, sym_block, sym_val_closure, - [112827] = 6, + [125898] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7295), 1, - anon_sym_DOT, - ACTIONS(7297), 1, - aux_sym__immediate_decimal_token5, - STATE(3765), 1, - sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [112848] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - STATE(3766), 1, + ACTIONS(7548), 1, + anon_sym_LPAREN, + ACTIONS(7559), 1, + anon_sym_DQUOTE2, + STATE(3937), 1, sym_comment, - STATE(5192), 1, - sym__immediate_decimal, - ACTIONS(7299), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112869] = 8, + STATE(3954), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4235), 1, + sym_expr_interpolated, + ACTIONS(7550), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [125921] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7303), 1, + ACTIONS(481), 1, + anon_sym_RPAREN, + ACTIONS(7561), 1, sym__newline, - ACTIONS(7305), 1, + ACTIONS(7563), 1, anon_sym_SEMI, - ACTIONS(7307), 1, - anon_sym_RPAREN, - STATE(1364), 1, + STATE(1429), 1, aux_sym__parenthesized_body_repeat1, - STATE(3767), 1, + STATE(3938), 1, sym_comment, - STATE(4139), 1, + STATE(4398), 1, aux_sym__block_body_repeat1, - STATE(4404), 1, + STATE(4623), 1, aux_sym__repeat_newline, - [112894] = 5, + [125946] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3768), 1, + ACTIONS(1884), 1, + sym__unquoted_pattern, + ACTIONS(7565), 1, + anon_sym_DOT, + ACTIONS(7567), 1, + aux_sym__immediate_decimal_token5, + STATE(3939), 1, sym_comment, - STATE(4336), 1, - sym_block, - ACTIONS(7309), 4, + ACTIONS(1882), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [112913] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125967] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3769), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_record, + STATE(3940), 1, sym_comment, - STATE(4340), 1, - sym_block, - ACTIONS(7309), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [112932] = 8, + STATE(5219), 1, + sym__immediate_decimal, + ACTIONS(7569), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7571), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [125988] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3653), 1, + ACTIONS(3685), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(3687), 1, + anon_sym_RBRACK, + ACTIONS(7364), 1, anon_sym_DOT2, - ACTIONS(7311), 1, - anon_sym_RBRACE, - STATE(339), 1, + STATE(354), 1, sym_path, - STATE(3770), 1, + STATE(3941), 1, sym_comment, - STATE(3778), 1, + STATE(4034), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4335), 1, + STATE(4849), 1, sym_cell_path, - [112957] = 7, - ACTIONS(3), 1, + [126013] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2826), 1, - sym_cell_path, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3771), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7409), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + STATE(3942), 1, sym_comment, - ACTIONS(5600), 2, - anon_sym_EQ, - anon_sym_GT2, - [112980] = 8, + STATE(4207), 1, + sym__variable_name, + STATE(4466), 1, + sym_val_variable, + STATE(4600), 1, + sym__assignment_pattern_parenthesized, + [126038] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5600), 1, + ACTIONS(2020), 1, sym__entry_separator, - ACTIONS(5602), 1, + ACTIONS(2022), 1, anon_sym_GT2, - ACTIONS(7038), 1, + ACTIONS(7360), 1, anon_sym_DOT2, - STATE(3640), 1, + STATE(3850), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3772), 1, + STATE(3943), 1, sym_comment, - STATE(3884), 1, + STATE(4200), 1, sym_path, - STATE(4335), 1, + STATE(4546), 1, sym_cell_path, - [113005] = 8, + [126063] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5245), 1, - anon_sym_RBRACK, - ACTIONS(5247), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3773), 1, + ACTIONS(7548), 1, + anon_sym_LPAREN, + ACTIONS(7573), 1, + anon_sym_DQUOTE2, + STATE(3944), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4730), 1, - sym_cell_path, - [113030] = 7, + STATE(3950), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4235), 1, + sym_expr_interpolated, + ACTIONS(7550), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [126086] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, + ACTIONS(7575), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7577), 1, + aux_sym__immediate_decimal_token5, + STATE(3945), 1, + sym_comment, + ACTIONS(1920), 2, anon_sym_LPAREN2, - ACTIONS(7317), 1, sym__entry_separator, - STATE(2234), 1, - aux_sym__types_body_repeat2, - STATE(3774), 1, - sym_comment, - STATE(4751), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7315), 2, + ACTIONS(1922), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [113053] = 8, - ACTIONS(103), 1, + sym__unquoted_pattern_in_list, + [126107] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3775), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(7557), 1, + anon_sym_LBRACE, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3482), 1, + sym__blosure, + STATE(3946), 1, sym_comment, - STATE(3940), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4619), 1, - sym__assignment_pattern_parenthesized, - [113078] = 8, + STATE(3434), 2, + sym_block, + sym_val_closure, + [126130] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__entry_separator, - ACTIONS(1868), 1, - anon_sym_GT2, - ACTIONS(7038), 1, + ACTIONS(7364), 1, anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3776), 1, - sym_comment, - STATE(3884), 1, + ACTIONS(7579), 1, + anon_sym_RBRACE, + ACTIONS(7581), 1, + sym__entry_separator, + STATE(354), 1, sym_path, - STATE(4102), 1, + STATE(3947), 1, + sym_comment, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4865), 1, sym_cell_path, - [113103] = 8, + [126155] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(7557), 1, + anon_sym_LBRACE, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3439), 1, + sym__blosure, + STATE(3948), 1, + sym_comment, + STATE(3434), 2, + sym_block, + sym_val_closure, + [126178] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, - sym__entry_separator, - ACTIONS(1884), 1, - anon_sym_GT2, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3777), 1, + ACTIONS(7548), 1, + anon_sym_LPAREN, + ACTIONS(7583), 1, + anon_sym_DQUOTE2, + STATE(3949), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4176), 1, - sym_cell_path, - [113128] = 7, + STATE(3954), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4235), 1, + sym_expr_interpolated, + ACTIONS(7550), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [126201] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1460), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, + ACTIONS(7548), 1, + anon_sym_LPAREN, + ACTIONS(7585), 1, + anon_sym_DQUOTE2, + STATE(3950), 1, sym_comment, - STATE(3797), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1458), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [113151] = 8, + STATE(3954), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4235), 1, + sym_expr_interpolated, + ACTIONS(7550), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [126224] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(7557), 1, + anon_sym_LBRACE, + STATE(3439), 1, + sym__blosure, + STATE(3946), 1, + aux_sym__repeat_newline, + STATE(3951), 1, + sym_comment, + STATE(3434), 2, + sym_block, + sym_val_closure, + [126247] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, + ACTIONS(2016), 1, sym__entry_separator, - ACTIONS(1860), 1, + ACTIONS(2018), 1, anon_sym_GT2, - ACTIONS(7038), 1, + ACTIONS(7360), 1, anon_sym_DOT2, - STATE(3640), 1, + STATE(3850), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3779), 1, + STATE(3952), 1, sym_comment, - STATE(3884), 1, + STATE(4200), 1, sym_path, - STATE(4214), 1, + STATE(4542), 1, sym_cell_path, - [113176] = 6, + [126272] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7587), 1, + sym_long_flag_identifier, + ACTIONS(7589), 1, + anon_sym_EQ2, + STATE(3953), 1, + sym_comment, + STATE(4648), 1, + sym__flag_equals_value, + ACTIONS(3756), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [126293] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__entry_separator, - ACTIONS(7320), 1, - anon_sym_DOT_DOT2, - STATE(3780), 1, + ACTIONS(7591), 1, + anon_sym_LPAREN, + ACTIONS(7597), 1, + anon_sym_DQUOTE2, + STATE(4235), 1, + sym_expr_interpolated, + ACTIONS(7594), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(3954), 2, sym_comment, - ACTIONS(2154), 2, - anon_sym_RBRACK, + aux_sym__inter_double_quotes_repeat1, + [126314] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(3955), 1, + sym_comment, + STATE(4417), 1, + sym_block, + ACTIONS(7599), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(7322), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113197] = 7, + [126333] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7548), 1, anon_sym_LPAREN, - ACTIONS(7324), 1, + ACTIONS(7601), 1, anon_sym_DQUOTE2, - STATE(3781), 1, + STATE(3956), 1, sym_comment, - STATE(3785), 1, + STATE(3960), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4235), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7550), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [113220] = 7, + [126356] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4147), 1, - aux_sym_unquoted_token2, - ACTIONS(6430), 1, + ACTIONS(6809), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6934), 1, aux_sym__immediate_decimal_token2, - STATE(3782), 1, + ACTIONS(7603), 1, + aux_sym_unquoted_token2, + STATE(3957), 1, sym_comment, - STATE(4133), 1, + STATE(5031), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6936), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [113243] = 7, - ACTIONS(103), 1, + [126379] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4147), 1, - aux_sym_unquoted_token2, - ACTIONS(6478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, - STATE(3783), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(7557), 1, + anon_sym_LBRACE, + STATE(3525), 1, + sym__blosure, + STATE(3958), 1, sym_comment, - STATE(4996), 1, - sym__immediate_decimal, - ACTIONS(6590), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [113266] = 8, - ACTIONS(103), 1, + STATE(3989), 1, + aux_sym__repeat_newline, + STATE(3434), 2, + sym_block, + sym_val_closure, + [126402] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3784), 1, + ACTIONS(7561), 1, + sym__newline, + ACTIONS(7563), 1, + anon_sym_SEMI, + ACTIONS(7605), 1, + anon_sym_RPAREN, + STATE(1429), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3959), 1, sym_comment, - STATE(3940), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4371), 1, - sym__assignment_pattern_parenthesized, - [113291] = 7, + STATE(4423), 1, + aux_sym__block_body_repeat1, + STATE(4623), 1, + aux_sym__repeat_newline, + [126427] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7548), 1, anon_sym_LPAREN, - ACTIONS(7326), 1, + ACTIONS(7607), 1, anon_sym_DQUOTE2, - STATE(3785), 1, - sym_comment, - STATE(3814), 1, + STATE(3954), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(3960), 1, + sym_comment, + STATE(4235), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7550), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [113314] = 8, + [126450] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3786), 1, + ACTIONS(7431), 1, + aux_sym__immediate_decimal_token5, + STATE(3961), 1, sym_comment, - STATE(3940), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4405), 1, - sym__assignment_pattern_parenthesized, - [113339] = 7, + ACTIONS(1882), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1884), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [126469] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3218), 1, - sym__blosure, - STATE(3763), 1, - aux_sym__repeat_newline, - STATE(3787), 1, + STATE(3962), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [113362] = 7, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(777), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [126486] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3224), 1, - sym__blosure, - STATE(3788), 1, + STATE(3963), 1, sym_comment, - STATE(3113), 2, + STATE(4418), 1, sym_block, - sym_val_closure, - [113385] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(7599), 4, sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3224), 1, - sym__blosure, - STATE(3789), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126505] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7548), 1, + anon_sym_LPAREN, + ACTIONS(7609), 1, + anon_sym_DQUOTE2, + STATE(3964), 1, sym_comment, - STATE(3824), 1, - aux_sym__repeat_newline, - STATE(3113), 2, - sym_block, - sym_val_closure, - [113408] = 7, + STATE(3966), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4235), 1, + sym_expr_interpolated, + ACTIONS(7550), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [126528] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3225), 1, - sym__blosure, - STATE(3790), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + STATE(3965), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [113431] = 3, + STATE(5268), 1, + sym__immediate_decimal, + ACTIONS(6809), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6811), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [126549] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3791), 1, + ACTIONS(7548), 1, + anon_sym_LPAREN, + ACTIONS(7611), 1, + anon_sym_DQUOTE2, + STATE(3954), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3966), 1, sym_comment, - ACTIONS(1478), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113446] = 8, - ACTIONS(3), 1, + STATE(4235), 1, + sym_expr_interpolated, + ACTIONS(7550), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [126572] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(461), 1, - anon_sym_RPAREN, - ACTIONS(7303), 1, - sym__newline, - ACTIONS(7305), 1, - anon_sym_SEMI, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3792), 1, + ACTIONS(4573), 1, + aux_sym_unquoted_token2, + ACTIONS(6655), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6884), 1, + aux_sym__immediate_decimal_token2, + STATE(3967), 1, sym_comment, - STATE(4188), 1, - aux_sym__block_body_repeat1, - STATE(4404), 1, - aux_sym__repeat_newline, - [113471] = 5, + STATE(4395), 1, + sym__immediate_decimal, + ACTIONS(6886), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [126595] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4573), 1, + aux_sym_unquoted_token2, + ACTIONS(6809), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6934), 1, + aux_sym__immediate_decimal_token2, + STATE(3968), 1, + sym_comment, + STATE(5031), 1, + sym__immediate_decimal, + ACTIONS(6936), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [126618] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7067), 1, + ACTIONS(6950), 1, aux_sym__immediate_decimal_token5, - STATE(3793), 1, + ACTIONS(7613), 1, + anon_sym_DOT, + STATE(3969), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(1882), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [113490] = 8, + [126637] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7069), 1, + ACTIONS(7615), 1, anon_sym_DOT2, - ACTIONS(7328), 1, - anon_sym_RBRACE, - ACTIONS(7330), 1, - sym__entry_separator, - STATE(339), 1, + STATE(4434), 1, sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3794), 1, - sym_comment, - STATE(4682), 1, - sym_cell_path, - [113515] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3795), 1, - sym_comment, - ACTIONS(1543), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113530] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3796), 1, + STATE(3970), 2, sym_comment, - ACTIONS(1466), 6, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1642), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113545] = 6, + [126656] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1526), 1, - sym__entry_separator, - ACTIONS(7332), 1, + ACTIONS(7323), 1, anon_sym_DOT2, - STATE(339), 1, - sym_path, - ACTIONS(1524), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(3797), 2, - sym_comment, + STATE(3970), 1, aux_sym__where_predicate_lhs_repeat1, - [113566] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3798), 1, + STATE(3971), 1, sym_comment, - ACTIONS(1470), 6, + STATE(4434), 1, + sym_path, + ACTIONS(1651), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113581] = 3, - ACTIONS(103), 1, + [126677] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3799), 1, + STATE(3972), 1, sym_comment, - ACTIONS(1474), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113596] = 3, + ACTIONS(894), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(896), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [126694] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3800), 1, - sym_comment, - ACTIONS(1514), 6, - anon_sym_RBRACK, + ACTIONS(4075), 1, sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, + ACTIONS(7364), 1, anon_sym_DOT2, - [113611] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(7335), 1, - aux_sym__immediate_decimal_token5, - STATE(3801), 1, - sym_comment, - ACTIONS(1802), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [113630] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3802), 1, - sym_comment, - STATE(3933), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4389), 1, - sym__assignment_pattern, - [113655] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7339), 1, - anon_sym_AT, - STATE(4624), 1, - sym_attribute, - STATE(3803), 2, + ACTIONS(7618), 1, + anon_sym_RBRACE, + STATE(354), 1, + sym_path, + STATE(3973), 1, sym_comment, - aux_sym_attribute_list_repeat1, - ACTIONS(7337), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [113674] = 8, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4511), 1, + sym_cell_path, + [126719] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3804), 1, + ACTIONS(7548), 1, + anon_sym_LPAREN, + ACTIONS(7622), 1, + anon_sym_DQUOTE2, + STATE(3954), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3974), 1, sym_comment, - STATE(3933), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4390), 1, - sym__assignment_pattern, - [113699] = 7, - ACTIONS(103), 1, + STATE(4235), 1, + sym_expr_interpolated, + ACTIONS(7550), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [126742] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7342), 1, - aux_sym_unquoted_token2, - STATE(3805), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(7557), 1, + anon_sym_LBRACE, + STATE(3473), 1, + sym__blosure, + STATE(3975), 1, sym_comment, - STATE(4133), 1, - sym__immediate_decimal, - ACTIONS(6762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [113722] = 7, + STATE(4057), 1, + aux_sym__repeat_newline, + STATE(3434), 2, + sym_block, + sym_val_closure, + [126765] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(6655), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6884), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7342), 1, + ACTIONS(7603), 1, aux_sym_unquoted_token2, - STATE(3806), 1, + STATE(3976), 1, sym_comment, - STATE(4996), 1, + STATE(4395), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6886), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [113745] = 6, - ACTIONS(103), 1, + [126788] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__entry_separator, - ACTIONS(7344), 1, + ACTIONS(3320), 1, anon_sym_DOT_DOT2, - STATE(3807), 1, + ACTIONS(7603), 1, + sym__unquoted_pattern, + STATE(3977), 1, sym_comment, - ACTIONS(2102), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7346), 2, + ACTIONS(3322), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [113766] = 6, - ACTIONS(103), 1, + ACTIONS(7624), 2, + sym_filesize_unit, + sym_duration_unit, + [126809] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2076), 1, - sym__entry_separator, - ACTIONS(7348), 1, - anon_sym_DOT_DOT2, - STATE(3808), 1, + ACTIONS(7520), 1, + aux_sym__immediate_decimal_token5, + STATE(3978), 1, sym_comment, - ACTIONS(2078), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7350), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113787] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2120), 1, - sym__entry_separator, - ACTIONS(7352), 1, + ACTIONS(1884), 2, anon_sym_DOT_DOT2, - STATE(3809), 1, - sym_comment, - ACTIONS(2122), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7354), 2, + sym__unquoted_pattern, + ACTIONS(1882), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [113808] = 5, + [126828] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7137), 1, - aux_sym__immediate_decimal_token5, - STATE(3810), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7409), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + STATE(3979), 1, sym_comment, - ACTIONS(1736), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [113827] = 6, + STATE(4122), 1, + sym__variable_name, + STATE(4433), 1, + sym__assignment_pattern, + STATE(4466), 1, + sym_val_variable, + [126853] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(7342), 1, - sym__unquoted_pattern, - STATE(3811), 1, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(3980), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7266), 2, - sym_filesize_unit, - sym_duration_unit, - [113848] = 5, + STATE(4455), 1, + sym_block, + ACTIONS(7626), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126872] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(6822), 1, + anon_sym_LPAREN2, + ACTIONS(7630), 1, sym__entry_separator, - ACTIONS(7356), 1, - anon_sym_QMARK2, - STATE(3812), 1, + STATE(2455), 1, + aux_sym__types_body_repeat2, + STATE(3981), 1, sym_comment, - ACTIONS(1438), 4, + STATE(4823), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7628), 2, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT2, - [113867] = 5, + [126895] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7358), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7409), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + STATE(3982), 1, + sym_comment, + STATE(4122), 1, + sym__variable_name, + STATE(4436), 1, + sym__assignment_pattern, + STATE(4466), 1, + sym_val_variable, + [126920] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(7557), 1, + anon_sym_LBRACE, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3479), 1, + sym__blosure, + STATE(3983), 1, + sym_comment, + STATE(3434), 2, + sym_block, + sym_val_closure, + [126943] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7633), 1, aux_sym__immediate_decimal_token5, - STATE(3813), 1, + STATE(3984), 1, sym_comment, - ACTIONS(1802), 2, - sym__space, + ACTIONS(1956), 2, anon_sym_LPAREN2, - ACTIONS(1804), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [113886] = 6, + sym__entry_separator, + ACTIONS(1958), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [126962] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7360), 1, + ACTIONS(7548), 1, anon_sym_LPAREN, - ACTIONS(7366), 1, + ACTIONS(7635), 1, anon_sym_DQUOTE2, - STATE(4205), 1, + STATE(3985), 1, + sym_comment, + STATE(3997), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4235), 1, sym_expr_interpolated, - ACTIONS(7363), 2, + ACTIONS(7550), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - STATE(3814), 2, - sym_comment, - aux_sym__inter_double_quotes_repeat1, - [113907] = 8, + [126985] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2701), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7409), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7411), 1, anon_sym_DOLLAR, - STATE(3815), 1, + STATE(3986), 1, sym_comment, - STATE(4014), 1, + STATE(4122), 1, sym__variable_name, - STATE(4060), 1, + STATE(4456), 1, + sym__assignment_pattern, + STATE(4466), 1, sym_val_variable, - STATE(4405), 1, - sym__assignment_pattern_parenthesized, - [113932] = 8, + [127010] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(7044), 1, - sym_identifier, - STATE(3816), 1, + ACTIONS(6655), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6884), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7242), 1, + aux_sym_unquoted_token2, + STATE(3987), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(5164), 1, - sym__variable_name, - [113957] = 7, + STATE(4395), 1, + sym__immediate_decimal, + ACTIONS(6886), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [127033] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4303), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - ACTIONS(7368), 1, - sym_long_flag_identifier, - STATE(2933), 1, - sym__flag_equals_value, - STATE(3817), 1, + ACTIONS(5993), 1, + sym__entry_separator, + ACTIONS(5995), 1, + anon_sym_GT2, + ACTIONS(7360), 1, + anon_sym_DOT2, + STATE(3850), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3988), 1, sym_comment, - ACTIONS(4301), 2, - sym__newline, - anon_sym_SEMI, - [113980] = 6, + STATE(4200), 1, + sym_path, + STATE(4511), 1, + sym_cell_path, + [127058] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(3818), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(7557), 1, + anon_sym_LBRACE, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3475), 1, + sym__blosure, + STATE(3989), 1, sym_comment, - STATE(4872), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, + STATE(3434), 2, + sym_block, + sym_val_closure, + [127081] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6809), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6934), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, + ACTIONS(7242), 1, + aux_sym_unquoted_token2, + STATE(3990), 1, + sym_comment, + STATE(5031), 1, + sym__immediate_decimal, + ACTIONS(6936), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114001] = 7, + [127104] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7561), 1, + sym__newline, + ACTIONS(7563), 1, + anon_sym_SEMI, + ACTIONS(7637), 1, + anon_sym_RPAREN, + STATE(1429), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3991), 1, + sym_comment, + STATE(4536), 1, + aux_sym__block_body_repeat1, + STATE(4623), 1, + aux_sym__repeat_newline, + [127129] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7639), 1, + anon_sym_if, + ACTIONS(7641), 1, + sym__newline, + ACTIONS(7643), 1, + anon_sym_PIPE, + ACTIONS(7645), 1, + anon_sym_EQ_GT, + STATE(3992), 1, + sym_comment, + STATE(4465), 1, + aux_sym_match_pattern_repeat1, + STATE(5053), 1, + sym_match_guard, + [127154] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7649), 1, + anon_sym_AT, + STATE(4875), 1, + sym_attribute, + STATE(3993), 2, + sym_comment, + aux_sym_attribute_list_repeat1, + ACTIONS(7647), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [127173] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7548), 1, anon_sym_LPAREN, - ACTIONS(7370), 1, + ACTIONS(7652), 1, anon_sym_DQUOTE2, - STATE(3819), 1, + STATE(3994), 1, sym_comment, - STATE(3823), 1, + STATE(4054), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4235), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7550), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114024] = 8, + [127196] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7303), 1, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(3995), 1, + sym_comment, + STATE(4514), 1, + sym_block, + ACTIONS(7654), 4, sym__newline, - ACTIONS(7305), 1, anon_sym_SEMI, - ACTIONS(7372), 1, anon_sym_RPAREN, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3820), 1, - sym_comment, - STATE(4154), 1, - aux_sym__block_body_repeat1, - STATE(4404), 1, - aux_sym__repeat_newline, - [114049] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6902), 1, - aux_sym_unquoted_token2, - STATE(3821), 1, - sym_comment, - STATE(4133), 1, - sym__immediate_decimal, - ACTIONS(6762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114072] = 7, - ACTIONS(103), 1, + anon_sym_RBRACE, + [127215] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6902), 1, - aux_sym_unquoted_token2, - STATE(3822), 1, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(3996), 1, sym_comment, - STATE(4996), 1, - sym__immediate_decimal, - ACTIONS(6590), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114095] = 7, + STATE(4520), 1, + sym_block, + ACTIONS(7654), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127234] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7548), 1, anon_sym_LPAREN, - ACTIONS(7374), 1, + ACTIONS(7656), 1, anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3954), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3823), 1, + STATE(3997), 1, sym_comment, - STATE(4205), 1, + STATE(4235), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7550), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114118] = 7, + [127257] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7557), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(3479), 1, + sym__blosure, + STATE(3998), 1, + sym_comment, + STATE(4001), 1, aux_sym__repeat_newline, - STATE(3263), 1, + STATE(3434), 2, + sym_block, + sym_val_closure, + [127280] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(3999), 1, + sym_comment, + STATE(4255), 1, + sym_block, + ACTIONS(7658), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127299] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(4000), 1, + sym_comment, + STATE(4256), 1, + sym_block, + ACTIONS(7658), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127318] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(7557), 1, + anon_sym_LBRACE, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3447), 1, sym__blosure, - STATE(3824), 1, + STATE(4001), 1, sym_comment, - STATE(3113), 2, + STATE(3434), 2, sym_block, sym_val_closure, - [114141] = 7, + [127341] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_DQUOTE2, - STATE(3825), 1, + ACTIONS(7660), 1, + anon_sym_DOT, + ACTIONS(7662), 1, + aux_sym__immediate_decimal_token5, + STATE(4002), 1, sym_comment, - STATE(3828), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114164] = 7, + ACTIONS(1882), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1884), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [127362] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5048), 1, - aux_sym_unquoted_token2, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token2, - STATE(3826), 1, + ACTIONS(1610), 1, + sym__entry_separator, + ACTIONS(7664), 1, + anon_sym_QMARK2, + STATE(4003), 1, sym_comment, - STATE(4133), 1, - sym__immediate_decimal, - ACTIONS(6762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114187] = 7, + ACTIONS(1608), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [127381] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5048), 1, - aux_sym_unquoted_token2, - ACTIONS(6478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, - STATE(3827), 1, + STATE(4004), 1, sym_comment, - STATE(4996), 1, - sym__immediate_decimal, - ACTIONS(6590), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114210] = 7, + ACTIONS(1680), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127396] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7378), 1, - anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3828), 1, + ACTIONS(7666), 1, + anon_sym_RBRACK, + ACTIONS(7668), 1, + anon_sym_DOT_DOT, + ACTIONS(7670), 1, + anon_sym_DOT_DOT2, + ACTIONS(7674), 1, + sym__entry_separator, + STATE(4005), 1, sym_comment, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114233] = 7, + ACTIONS(7672), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127419] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(4006), 1, + sym_comment, + STATE(4378), 1, + sym_block, + ACTIONS(7676), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127438] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7548), 1, anon_sym_LPAREN, - ACTIONS(7380), 1, + ACTIONS(7678), 1, anon_sym_DQUOTE2, - STATE(3829), 1, + STATE(4007), 1, sym_comment, - STATE(3832), 1, + STATE(4018), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4235), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7550), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114256] = 7, + [127461] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4969), 1, + ACTIONS(7670), 1, + anon_sym_DOT_DOT2, + ACTIONS(7680), 1, + anon_sym_RBRACK, + ACTIONS(7683), 1, + anon_sym_DOT_DOT, + ACTIONS(7685), 1, + sym__entry_separator, + STATE(4008), 1, + sym_comment, + ACTIONS(7672), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127484] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(7557), 1, + anon_sym_LBRACE, + STATE(3475), 1, + sym__blosure, + STATE(3948), 1, + aux_sym__repeat_newline, + STATE(4009), 1, + sym_comment, + STATE(3434), 2, + sym_block, + sym_val_closure, + [127507] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3328), 1, aux_sym_unquoted_token2, - ACTIONS(6430), 1, + ACTIONS(6655), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6884), 1, aux_sym__immediate_decimal_token2, - STATE(3830), 1, + STATE(4010), 1, sym_comment, - STATE(4133), 1, + STATE(4395), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6886), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114279] = 7, + [127530] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4969), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7409), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + STATE(4011), 1, + sym_comment, + STATE(4207), 1, + sym__variable_name, + STATE(4466), 1, + sym_val_variable, + STATE(4606), 1, + sym__assignment_pattern_parenthesized, + [127555] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3328), 1, aux_sym_unquoted_token2, - ACTIONS(6478), 1, + ACTIONS(6809), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6934), 1, aux_sym__immediate_decimal_token2, - STATE(3831), 1, + STATE(4012), 1, sym_comment, - STATE(4996), 1, + STATE(5031), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6936), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114302] = 7, + [127578] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7548), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, + ACTIONS(7688), 1, anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3949), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3832), 1, + STATE(4013), 1, sym_comment, - STATE(4205), 1, + STATE(4235), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7550), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114325] = 7, + [127601] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7384), 1, - anon_sym_DQUOTE2, - STATE(3833), 1, + ACTIONS(2818), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2828), 1, + anon_sym_COLON2, + ACTIONS(5603), 1, + anon_sym_DOLLAR, + ACTIONS(7409), 1, + sym_identifier, + STATE(4014), 1, sym_comment, - STATE(3834), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114348] = 7, + STATE(4466), 1, + sym_val_variable, + STATE(5389), 1, + sym__variable_name, + [127626] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7386), 1, - anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3834), 1, + ACTIONS(1610), 1, + sym__entry_separator, + ACTIONS(7664), 1, + anon_sym_BANG, + STATE(4015), 1, sym_comment, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114371] = 7, - ACTIONS(103), 1, + ACTIONS(1608), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [127645] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7388), 1, - anon_sym_DQUOTE2, - STATE(3835), 1, + ACTIONS(1922), 1, + sym__unquoted_pattern, + ACTIONS(7690), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7692), 1, + aux_sym__immediate_decimal_token5, + STATE(4016), 1, sym_comment, - STATE(3837), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114394] = 8, - ACTIONS(103), 1, + ACTIONS(1920), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127666] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7069), 1, - anon_sym_DOT2, - ACTIONS(7390), 1, - anon_sym_RBRACE, - ACTIONS(7392), 1, - sym__entry_separator, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3836), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + STATE(4017), 1, sym_comment, - STATE(4654), 1, - sym_cell_path, - [114419] = 7, + STATE(5089), 1, + sym__immediate_decimal, + ACTIONS(6809), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6811), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [127687] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7548), 1, anon_sym_LPAREN, - ACTIONS(7394), 1, + ACTIONS(7694), 1, anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3954), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3837), 1, + STATE(4018), 1, sym_comment, - STATE(4205), 1, + STATE(4235), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7550), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114442] = 6, + [127710] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7396), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7398), 1, + ACTIONS(7696), 1, + anon_sym_DOT, + ACTIONS(7698), 1, aux_sym__immediate_decimal_token5, - STATE(3838), 1, + STATE(4019), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1882), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1728), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [114463] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7400), 1, - anon_sym_DQUOTE2, - STATE(3839), 1, - sym_comment, - STATE(3840), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114486] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7402), 1, - anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3840), 1, - sym_comment, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114509] = 7, + ACTIONS(1884), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [127731] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7171), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7404), 1, - aux_sym__immediate_decimal_token2, - STATE(3841), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7409), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + STATE(4020), 1, sym_comment, - STATE(4323), 1, - sym__immediate_decimal, - ACTIONS(7406), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114532] = 7, + STATE(4207), 1, + sym__variable_name, + STATE(4466), 1, + sym_val_variable, + STATE(4610), 1, + sym__assignment_pattern_parenthesized, + [127756] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7299), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7408), 1, - aux_sym__immediate_decimal_token2, - STATE(3842), 1, - sym_comment, - STATE(5077), 1, - sym__immediate_decimal, - ACTIONS(7410), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114555] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7412), 1, + ACTIONS(7492), 1, + sym__entry_separator, + ACTIONS(7670), 1, anon_sym_DOT_DOT2, - STATE(3843), 1, + STATE(4021), 1, sym_comment, - ACTIONS(7414), 2, + ACTIONS(7668), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7672), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7416), 2, - sym_filesize_unit, - sym_duration_unit, - [114576] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7418), 1, - sym_long_flag_identifier, - ACTIONS(7420), 1, - anon_sym_EQ2, - STATE(3844), 1, - sym_comment, - STATE(4599), 1, - sym__flag_equals_value, - ACTIONS(4303), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [114597] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3845), 1, - sym_comment, - STATE(4337), 1, - sym_block, - ACTIONS(7422), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [114616] = 6, + [127777] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(2318), 1, sym__entry_separator, - ACTIONS(7424), 1, + ACTIONS(7700), 1, anon_sym_DOT_DOT2, - STATE(3846), 1, + STATE(4022), 1, sym_comment, - ACTIONS(1619), 2, + ACTIONS(2320), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7426), 2, + ACTIONS(7702), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114637] = 8, + [127798] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5265), 1, - anon_sym_RBRACK, - ACTIONS(5267), 1, - sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7364), 1, anon_sym_DOT2, - STATE(339), 1, + ACTIONS(7704), 1, + anon_sym_RBRACE, + ACTIONS(7706), 1, + sym__entry_separator, + STATE(354), 1, sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3847), 1, + STATE(4023), 1, sym_comment, - STATE(4678), 1, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4846), 1, sym_cell_path, - [114662] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(7238), 1, - anon_sym_DOT_DOT2, - STATE(3848), 1, - sym_comment, - ACTIONS(1619), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7240), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114683] = 5, - ACTIONS(103), 1, + [127823] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(1958), 1, + sym__unquoted_pattern, + ACTIONS(7708), 1, aux_sym__immediate_decimal_token5, - STATE(3849), 1, + STATE(4024), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [114702] = 5, + ACTIONS(1956), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127842] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7428), 1, - aux_sym__immediate_decimal_token5, - STATE(3850), 1, + ACTIONS(6655), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6884), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7710), 1, + aux_sym_unquoted_token2, + STATE(4025), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [114721] = 6, + STATE(4395), 1, + sym__immediate_decimal, + ACTIONS(6886), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [127865] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7430), 1, - anon_sym_DOT, - ACTIONS(7432), 1, - aux_sym__immediate_decimal_token5, - STATE(3851), 1, - sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, + ACTIONS(7522), 1, sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [114742] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, - STATE(3852), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114761] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2152), 1, - sym__space, - ACTIONS(7434), 1, - anon_sym_DOT_DOT2, - STATE(3853), 1, - sym_comment, - ACTIONS(2154), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7436), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114782] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3854), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114799] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3855), 1, - sym_comment, - ACTIONS(771), 2, + ACTIONS(7670), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114816] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3856), 1, + STATE(4026), 1, sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(851), 4, + ACTIONS(7672), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114833] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7272), 1, - anon_sym_DOT_DOT, - ACTIONS(7274), 1, - anon_sym_DOT_DOT2, - ACTIONS(7438), 1, + ACTIONS(7683), 2, anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, - STATE(3857), 1, - sym_comment, - ACTIONS(7276), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114856] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7274), 1, - anon_sym_DOT_DOT2, - ACTIONS(7278), 1, anon_sym_DOT_DOT, - ACTIONS(7442), 1, - anon_sym_RBRACK, - ACTIONS(7445), 1, - sym__entry_separator, - STATE(3858), 1, - sym_comment, - ACTIONS(7276), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114879] = 7, + [127886] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7317), 1, + ACTIONS(2278), 1, sym__entry_separator, - STATE(2232), 1, - aux_sym__types_body_repeat2, - STATE(3859), 1, + ACTIONS(7712), 1, + anon_sym_DOT_DOT2, + STATE(4027), 1, sym_comment, - STATE(4751), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7448), 2, + ACTIONS(2280), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [114902] = 6, + anon_sym_RBRACE, + ACTIONS(7714), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127907] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2294), 1, sym__entry_separator, - ACTIONS(7450), 1, + ACTIONS(7716), 1, anon_sym_DOT_DOT2, - STATE(3860), 1, + STATE(4028), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(2296), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7452), 2, + ACTIONS(7718), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114923] = 6, + [127928] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6809), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6934), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7710), 1, + aux_sym_unquoted_token2, + STATE(4029), 1, + sym_comment, + STATE(5031), 1, + sym__immediate_decimal, + ACTIONS(6936), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [127951] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, + ACTIONS(2318), 1, sym__entry_separator, - ACTIONS(7454), 1, + ACTIONS(7720), 1, anon_sym_DOT_DOT2, - STATE(3861), 1, + STATE(4030), 1, sym_comment, - ACTIONS(2102), 2, + ACTIONS(2320), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7456), 2, + ACTIONS(7722), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114944] = 6, + [127972] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(2278), 1, sym__entry_separator, - ACTIONS(7458), 1, + ACTIONS(7724), 1, anon_sym_DOT_DOT2, - STATE(3862), 1, + STATE(4031), 1, sym_comment, - ACTIONS(2078), 2, + ACTIONS(2280), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7460), 2, + ACTIONS(7726), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114965] = 6, + [127993] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2232), 1, sym__entry_separator, - ACTIONS(7462), 1, + ACTIONS(7728), 1, anon_sym_DOT_DOT2, - STATE(3863), 1, + STATE(4032), 1, sym_comment, - ACTIONS(2122), 2, + ACTIONS(2234), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7464), 2, + ACTIONS(7730), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114986] = 7, + [128014] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7548), 1, anon_sym_LPAREN, - ACTIONS(7466), 1, + ACTIONS(7732), 1, anon_sym_DQUOTE2, - STATE(3760), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3864), 1, + STATE(4033), 1, sym_comment, - STATE(4205), 1, + STATE(4048), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4235), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7550), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [115009] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3865), 1, - sym_comment, - STATE(3915), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4250), 1, - sym__assignment_pattern, - [115034] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3866), 1, - sym_comment, - STATE(3915), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, - sym__assignment_pattern, - [115059] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3867), 1, - sym_comment, - STATE(3915), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, - sym__assignment_pattern, - [115084] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7468), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7470), 1, - aux_sym__immediate_decimal_token5, - STATE(3868), 1, - sym_comment, - ACTIONS(1726), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [115105] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2100), 1, - sym__space, - ACTIONS(7472), 1, - anon_sym_DOT_DOT2, - STATE(3869), 1, - sym_comment, - ACTIONS(2102), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7474), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115126] = 6, + [128037] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, - sym__space, - ACTIONS(7476), 1, - anon_sym_DOT_DOT2, - STATE(3870), 1, - sym_comment, - ACTIONS(2078), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7478), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115147] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3871), 1, + ACTIONS(1653), 1, + sym__entry_separator, + ACTIONS(7364), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(3935), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4034), 1, sym_comment, - STATE(4289), 1, - sym_block, - ACTIONS(7480), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1651), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [115166] = 6, - ACTIONS(103), 1, + [128060] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__space, - ACTIONS(7482), 1, + ACTIONS(3320), 1, anon_sym_DOT_DOT2, - STATE(3872), 1, + ACTIONS(7710), 1, + sym__unquoted_pattern, + STATE(4035), 1, sym_comment, - ACTIONS(2122), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7484), 2, + ACTIONS(3322), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115187] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6808), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7486), 1, - anon_sym_DOT, - STATE(3873), 1, - sym_comment, - ACTIONS(1736), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115206] = 6, - ACTIONS(3), 1, + ACTIONS(7624), 2, + sym_filesize_unit, + sym_duration_unit, + [128081] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - STATE(3874), 1, + ACTIONS(5487), 1, + aux_sym_unquoted_token2, + ACTIONS(6655), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6884), 1, + aux_sym__immediate_decimal_token2, + STATE(4036), 1, sym_comment, - STATE(5199), 1, + STATE(4395), 1, sym__immediate_decimal, - ACTIONS(7299), 2, + ACTIONS(6886), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [128104] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5487), 1, + aux_sym_unquoted_token2, + ACTIONS(6809), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6934), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, + STATE(4037), 1, + sym_comment, + STATE(5031), 1, + sym__immediate_decimal, + ACTIONS(6936), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [115227] = 5, - ACTIONS(3), 1, + [128127] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3875), 1, + ACTIONS(2294), 1, + sym__entry_separator, + ACTIONS(7734), 1, + anon_sym_DOT_DOT2, + STATE(4038), 1, sym_comment, - STATE(4095), 1, - sym_block, - ACTIONS(7488), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2296), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [115246] = 8, + ACTIONS(7736), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128148] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2701), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7409), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7411), 1, anon_sym_DOLLAR, - STATE(3876), 1, + STATE(4039), 1, sym_comment, - STATE(3957), 1, + STATE(4118), 1, sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4250), 1, + STATE(4433), 1, sym__assignment_pattern, - [115271] = 8, + STATE(4466), 1, + sym_val_variable, + [128173] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2701), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7409), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7411), 1, anon_sym_DOLLAR, - STATE(3877), 1, + STATE(4040), 1, sym_comment, - STATE(3957), 1, + STATE(4118), 1, sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, + STATE(4436), 1, sym__assignment_pattern, - [115296] = 8, + STATE(4466), 1, + sym_val_variable, + [128198] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2701), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7409), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7411), 1, anon_sym_DOLLAR, - STATE(3878), 1, + STATE(4041), 1, sym_comment, - STATE(3957), 1, + STATE(4118), 1, sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, + STATE(4456), 1, sym__assignment_pattern, - [115321] = 5, - ACTIONS(3), 1, + STATE(4466), 1, + sym_val_variable, + [128223] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3879), 1, + ACTIONS(2954), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7409), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + STATE(4042), 1, sym_comment, - STATE(4099), 1, - sym_block, - ACTIONS(7488), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [115340] = 6, - ACTIONS(3), 1, + STATE(4133), 1, + sym__variable_name, + STATE(4466), 1, + sym_val_variable, + STATE(4781), 1, + sym__assignment_pattern, + [128248] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(7490), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7492), 1, - aux_sym__immediate_decimal_token5, - STATE(3880), 1, + STATE(4043), 1, sym_comment, - ACTIONS(1726), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115361] = 8, + ACTIONS(1676), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [128263] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2954), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7409), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7411), 1, anon_sym_DOLLAR, - STATE(3881), 1, + STATE(4044), 1, sym_comment, - STATE(4014), 1, + STATE(4133), 1, sym__variable_name, - STATE(4060), 1, + STATE(4466), 1, sym_val_variable, - STATE(4619), 1, - sym__assignment_pattern_parenthesized, - [115386] = 8, + STATE(4787), 1, + sym__assignment_pattern, + [128288] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2954), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7409), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7411), 1, anon_sym_DOLLAR, - STATE(3882), 1, + STATE(4045), 1, sym_comment, - STATE(4014), 1, + STATE(4133), 1, sym__variable_name, - STATE(4060), 1, + STATE(4466), 1, sym_val_variable, - STATE(4371), 1, - sym__assignment_pattern_parenthesized, - [115411] = 5, + STATE(4769), 1, + sym__assignment_pattern, + [128313] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(2232), 1, sym__entry_separator, - ACTIONS(7356), 1, - anon_sym_BANG, - STATE(3883), 1, + ACTIONS(7738), 1, + anon_sym_DOT_DOT2, + STATE(4046), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(2234), 2, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [115430] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + ACTIONS(7740), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128334] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1464), 1, - sym__entry_separator, - STATE(3884), 1, - sym_comment, - ACTIONS(1462), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, + ACTIONS(7182), 1, anon_sym_DOT2, - [115446] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(994), 1, - sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3885), 1, - sym_comment, - ACTIONS(996), 2, - sym__newline, - anon_sym_SEMI, - [115466] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1018), 1, - sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3886), 1, + STATE(2706), 1, + sym_path, + STATE(3050), 1, + sym_cell_path, + STATE(3811), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4047), 1, sym_comment, - ACTIONS(1016), 2, - sym__newline, - anon_sym_SEMI, - [115486] = 7, + ACTIONS(5993), 2, + anon_sym_EQ, + anon_sym_GT2, + [128357] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7548), 1, anon_sym_LPAREN, - ACTIONS(7496), 1, - anon_sym_SQUOTE2, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - STATE(3887), 1, + ACTIONS(7742), 1, + anon_sym_DQUOTE2, + STATE(3954), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4048), 1, sym_comment, - STATE(3910), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4235), 1, sym_expr_interpolated, - [115508] = 3, + ACTIONS(7550), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [128380] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3888), 1, + ACTIONS(7744), 1, + anon_sym_DOT, + ACTIONS(7746), 1, + aux_sym__immediate_decimal_token5, + STATE(4049), 1, sym_comment, - ACTIONS(5920), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115522] = 4, + ACTIONS(1882), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1884), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [128401] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_BANG, - STATE(3889), 1, + STATE(4050), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1672), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - [115538] = 4, + [128416] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3890), 1, + ACTIONS(7748), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7750), 1, + aux_sym__immediate_decimal_token5, + STATE(4051), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 3, - anon_sym_LBRACE, + ACTIONS(1920), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115554] = 3, - ACTIONS(3), 1, + ACTIONS(1922), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [128437] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3891), 1, + ACTIONS(3667), 1, + sym__entry_separator, + ACTIONS(3669), 1, + anon_sym_RBRACK, + ACTIONS(7364), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4052), 1, sym_comment, - ACTIONS(6121), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115568] = 6, + STATE(4858), 1, + sym_cell_path, + [128462] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7502), 1, - anon_sym_DOT_DOT2, - STATE(3892), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern_in_record, + STATE(4053), 1, sym_comment, - ACTIONS(7504), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115588] = 7, - ACTIONS(3), 1, + STATE(5195), 1, + sym__immediate_decimal, + ACTIONS(7569), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7571), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [128483] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(3893), 1, + ACTIONS(7548), 1, + anon_sym_LPAREN, + ACTIONS(7752), 1, + anon_sym_DQUOTE2, + STATE(3954), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4054), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4307), 1, - sym__assignment_pattern, - [115610] = 3, + STATE(4235), 1, + sym_expr_interpolated, + ACTIONS(7550), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [128506] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3894), 1, + ACTIONS(7754), 1, + aux_sym__immediate_decimal_token5, + STATE(4055), 1, sym_comment, - ACTIONS(6125), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(1958), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 3, anon_sym_LBRACE, - [115624] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128525] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3895), 1, - sym_comment, - ACTIONS(6129), 5, - anon_sym_EQ, - anon_sym_DASH_GT, + ACTIONS(2046), 1, + sym__entry_separator, + ACTIONS(2048), 1, anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115638] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1882), 1, - sym__table_head_separator, - ACTIONS(7510), 1, + ACTIONS(7360), 1, anon_sym_DOT2, - STATE(3896), 1, - sym_comment, - STATE(4059), 1, + STATE(3850), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, + STATE(4056), 1, + sym_comment, + STATE(4200), 1, sym_path, - STATE(4963), 1, + STATE(4261), 1, sym_cell_path, - [115660] = 7, + [128550] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(7512), 1, - anon_sym_EQ, - ACTIONS(7514), 1, - anon_sym_COLON, - STATE(3897), 1, - sym_comment, - STATE(4423), 1, + ACTIONS(7557), 1, + anon_sym_LBRACE, + STATE(675), 1, aux_sym__repeat_newline, - STATE(5002), 1, - sym_param_type, - [115682] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3898), 1, + STATE(3568), 1, + sym__blosure, + STATE(4057), 1, sym_comment, - ACTIONS(6133), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115696] = 7, + STATE(3434), 2, + sym_block, + sym_val_closure, + [128573] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__table_head_separator, - ACTIONS(7510), 1, - anon_sym_DOT2, - STATE(3899), 1, + STATE(4058), 1, sym_comment, - STATE(4059), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, - sym_path, - STATE(5045), 1, - sym_cell_path, - [115718] = 4, - ACTIONS(3), 1, + ACTIONS(759), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(761), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [128590] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(3900), 1, + ACTIONS(7548), 1, + anon_sym_LPAREN, + ACTIONS(7756), 1, + anon_sym_DQUOTE2, + STATE(3937), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4059), 1, sym_comment, - ACTIONS(968), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115734] = 6, + STATE(4235), 1, + sym_expr_interpolated, + ACTIONS(7550), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [128613] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, - sym__entry_separator, - ACTIONS(6664), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7516), 1, - anon_sym_DOT, - STATE(3901), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7409), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + STATE(4060), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [115754] = 5, - ACTIONS(3), 1, + STATE(4103), 1, + sym__variable_name, + STATE(4433), 1, + sym__assignment_pattern, + STATE(4466), 1, + sym_val_variable, + [128638] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3902), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7409), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + STATE(4061), 1, sym_comment, - STATE(4394), 1, - sym_block, - ACTIONS(7270), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [115772] = 5, + STATE(4103), 1, + sym__variable_name, + STATE(4436), 1, + sym__assignment_pattern, + STATE(4466), 1, + sym_val_variable, + [128663] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2128), 1, - sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_LBRACK2, - STATE(3903), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7409), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + STATE(4062), 1, sym_comment, - ACTIONS(2130), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [115790] = 4, - ACTIONS(103), 1, + STATE(4103), 1, + sym__variable_name, + STATE(4456), 1, + sym__assignment_pattern, + STATE(4466), 1, + sym_val_variable, + [128688] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3904), 1, + ACTIONS(57), 1, + anon_sym_AT, + STATE(3993), 1, + aux_sym_attribute_list_repeat1, + STATE(4063), 1, sym_comment, - ACTIONS(2501), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2503), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - sym__unquoted_pattern_in_list, - [115806] = 7, + STATE(4875), 1, + sym_attribute, + ACTIONS(7758), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [128709] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7030), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3905), 1, + ACTIONS(6878), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7435), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7760), 1, + aux_sym__immediate_decimal_token2, + STATE(4064), 1, sym_comment, - STATE(4478), 1, - sym_cell_path, - [115828] = 7, + STATE(4349), 1, + sym__immediate_decimal, + ACTIONS(7762), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [128732] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6963), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3906), 1, + ACTIONS(6878), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7569), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7764), 1, + aux_sym__immediate_decimal_token2, + STATE(4065), 1, sym_comment, - STATE(4513), 1, - sym_cell_path, - [115850] = 7, + STATE(5064), 1, + sym__immediate_decimal, + ACTIONS(7766), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [128755] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5600), 1, + STATE(4066), 1, + sym_comment, + ACTIONS(1686), 6, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(7069), 1, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3907), 1, - sym_comment, - STATE(4335), 1, - sym_cell_path, - [115872] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(3908), 1, - sym_comment, - ACTIONS(2575), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115888] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(3909), 1, - sym_comment, - ACTIONS(1974), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115904] = 7, + [128770] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7520), 1, - anon_sym_SQUOTE2, - STATE(3910), 1, + STATE(4067), 1, sym_comment, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [115926] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1964), 1, + ACTIONS(1700), 6, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - ACTIONS(7522), 1, - anon_sym_DOT_DOT2, - STATE(3911), 1, - sym_comment, - ACTIONS(7524), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115946] = 6, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [128785] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7526), 1, - anon_sym_DQUOTE, - STATE(3912), 1, + ACTIONS(5372), 1, + aux_sym_unquoted_token2, + ACTIONS(6655), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6884), 1, + aux_sym__immediate_decimal_token2, + STATE(4068), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(5076), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [115966] = 7, + STATE(4395), 1, + sym__immediate_decimal, + ACTIONS(6886), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [128808] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7530), 1, - anon_sym_SQUOTE2, - STATE(3913), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7409), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + STATE(4069), 1, sym_comment, - STATE(3917), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [115988] = 4, - ACTIONS(3), 1, + STATE(4183), 1, + sym__variable_name, + STATE(4466), 1, + sym_val_variable, + STATE(4600), 1, + sym__assignment_pattern_parenthesized, + [128833] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(3914), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7409), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + STATE(4070), 1, sym_comment, - ACTIONS(1964), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116004] = 7, - ACTIONS(3), 1, + STATE(4183), 1, + sym__variable_name, + STATE(4466), 1, + sym_val_variable, + STATE(4606), 1, + sym__assignment_pattern_parenthesized, + [128858] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7532), 1, - anon_sym_EQ, - STATE(3915), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7409), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_DOLLAR, + STATE(4071), 1, sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(5088), 1, - sym_param_type, - [116026] = 5, + STATE(4183), 1, + sym__variable_name, + STATE(4466), 1, + sym_val_variable, + STATE(4610), 1, + sym__assignment_pattern_parenthesized, + [128883] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7534), 1, + ACTIONS(7768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7770), 1, aux_sym__immediate_decimal_token5, - STATE(3916), 1, + STATE(4072), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1920), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1804), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [116044] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7536), 1, - anon_sym_SQUOTE2, - STATE(3917), 1, - sym_comment, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [116066] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1354), 1, - aux_sym__block_body_repeat1, - STATE(3918), 1, - sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3046), 2, - anon_sym_RPAREN, + ACTIONS(1922), 2, anon_sym_RBRACE, - [116084] = 4, + sym__unquoted_pattern_in_record, + [128904] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(3919), 1, - sym_comment, - ACTIONS(2523), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116100] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(2966), 1, - sym_block, - STATE(3920), 1, + ACTIONS(6878), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7772), 1, + anon_sym_DOT_DOT2, + STATE(4073), 1, sym_comment, - STATE(4312), 1, - aux_sym__repeat_newline, - [116122] = 4, + ACTIONS(7774), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7776), 2, + sym_filesize_unit, + sym_duration_unit, + [128925] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3921), 1, + ACTIONS(5372), 1, + aux_sym_unquoted_token2, + ACTIONS(6809), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6934), 1, + aux_sym__immediate_decimal_token2, + STATE(4074), 1, sym_comment, - ACTIONS(2501), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2503), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [116138] = 6, + STATE(5031), 1, + sym__immediate_decimal, + ACTIONS(6936), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [128948] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, + ACTIONS(1856), 1, sym__entry_separator, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(3922), 1, + ACTIONS(7778), 1, + anon_sym_DOT_DOT2, + STATE(4075), 1, sym_comment, - ACTIONS(1966), 2, + ACTIONS(1750), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116158] = 4, + anon_sym_RBRACE, + ACTIONS(7780), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128969] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - STATE(3923), 1, - sym_comment, - ACTIONS(1726), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116174] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7538), 1, + ACTIONS(7782), 1, anon_sym_LT, - STATE(3924), 1, + STATE(4076), 1, sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(5924), 2, - anon_sym_RBRACK, + ACTIONS(6320), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - [116192] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7540), 1, - anon_sym_LT, - STATE(3925), 1, - sym_comment, - ACTIONS(5920), 2, anon_sym_AT2, - sym__entry_separator, - ACTIONS(5924), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [116210] = 4, + anon_sym_LBRACE, + [128986] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, + ACTIONS(1884), 1, sym__unquoted_pattern, - STATE(3926), 1, + ACTIONS(7484), 1, + aux_sym__immediate_decimal_token5, + STATE(4077), 1, sym_comment, - ACTIONS(2567), 4, + ACTIONS(1882), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116226] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2575), 1, - sym__entry_separator, - STATE(3927), 1, - sym_comment, - ACTIONS(2577), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116246] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - STATE(3928), 1, - sym_comment, - ACTIONS(1976), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116266] = 4, + [129005] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(3929), 1, + ACTIONS(7784), 1, + anon_sym_LT, + STATE(4078), 1, sym_comment, - ACTIONS(1802), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116282] = 6, + ACTIONS(6320), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [129022] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2523), 1, - sym__entry_separator, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(3930), 1, + STATE(4079), 1, sym_comment, - ACTIONS(2525), 2, + ACTIONS(1668), 6, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116302] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(3931), 1, - sym_comment, - ACTIONS(1870), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116318] = 6, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [129037] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__entry_separator, - ACTIONS(2631), 1, + ACTIONS(6822), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_list, - STATE(3932), 1, + ACTIONS(7630), 1, + sym__entry_separator, + STATE(2466), 1, + aux_sym__types_body_repeat2, + STATE(4080), 1, sym_comment, - ACTIONS(2569), 2, + STATE(4823), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7786), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [116338] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7542), 1, - anon_sym_EQ, - STATE(3933), 1, - sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(5093), 1, - sym_param_type, - [116360] = 6, + [129060] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7544), 1, + ACTIONS(7788), 1, anon_sym_QMARK2, - ACTIONS(7546), 1, + ACTIONS(7790), 1, anon_sym_BANG, - STATE(3934), 1, + STATE(4081), 1, sym_comment, - STATE(4733), 1, + STATE(4825), 1, sym__path_suffix, - ACTIONS(1448), 2, + ACTIONS(1596), 2, sym__table_head_separator, anon_sym_DOT2, - [116380] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(3935), 1, - sym_comment, - ACTIONS(2501), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116396] = 4, + [129080] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(3936), 1, - sym_comment, - ACTIONS(2635), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116412] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - ACTIONS(7548), 1, - anon_sym_DOT_DOT2, - STATE(3937), 1, + ACTIONS(7792), 1, + anon_sym_DASH_DASH, + STATE(4583), 1, + sym_long_flag, + ACTIONS(4802), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + STATE(4082), 2, sym_comment, - ACTIONS(7550), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116432] = 6, + aux_sym_decl_def_repeat1, + [129098] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2639), 1, + ACTIONS(2746), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2748), 1, sym__unquoted_pattern_in_list, - STATE(3938), 1, - sym_comment, - ACTIONS(2637), 2, + ACTIONS(7680), 1, anon_sym_RBRACK, + ACTIONS(7683), 1, anon_sym_DOT_DOT, - [116452] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(7044), 1, - sym_identifier, - STATE(3939), 1, + ACTIONS(7685), 1, + sym__entry_separator, + STATE(4083), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4924), 1, - sym__variable_name, - [116474] = 7, + [129120] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7552), 1, - anon_sym_EQ, - STATE(3940), 1, + ACTIONS(7746), 1, + aux_sym__immediate_decimal_token5, + STATE(4084), 1, sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(5092), 1, - sym_param_type, - [116496] = 6, + ACTIONS(1882), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1884), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [129138] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(3941), 1, + ACTIONS(7795), 1, + anon_sym_DQUOTE, + STATE(4085), 1, sym_comment, - ACTIONS(1619), 2, - sym__newline, - anon_sym_SEMI, - [116516] = 5, + STATE(4351), 1, + aux_sym_string_content_repeat1, + STATE(5015), 1, + sym_string_content, + ACTIONS(7797), 2, + sym__escaped_str_content, + sym_escape_sequence, + [129158] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3942), 1, - sym_comment, - STATE(4399), 1, - sym_block, - ACTIONS(7480), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [116534] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, - STATE(3943), 1, - sym_comment, - ACTIONS(996), 2, + ACTIONS(7799), 1, anon_sym_RBRACK, + ACTIONS(7802), 1, anon_sym_DOT_DOT, - [116554] = 6, + STATE(4086), 1, + sym_comment, + STATE(4198), 1, + aux_sym_parameter_repeat2, + ACTIONS(1544), 2, + sym__newline, + anon_sym_COMMA, + [129178] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1018), 1, + ACTIONS(1014), 1, sym__entry_separator, - ACTIONS(2583), 1, + ACTIONS(2770), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2772), 1, sym__unquoted_pattern_in_list, - STATE(3944), 1, + STATE(4087), 1, sym_comment, ACTIONS(1016), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [116574] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_LPAREN, - ACTIONS(7557), 1, - anon_sym_SQUOTE2, - ACTIONS(7559), 1, - sym_unescaped_interpolated_content, - STATE(4544), 1, - sym_expr_interpolated, - STATE(3945), 2, - sym_comment, - aux_sym__inter_single_quotes_repeat1, - [116594] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3946), 1, - sym_comment, - ACTIONS(1726), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [116610] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1522), 1, - sym__entry_separator, - STATE(3947), 1, - sym_comment, - ACTIONS(1520), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [116626] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3948), 1, - sym_comment, - ACTIONS(1802), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [116642] = 4, + [129198] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1537), 1, + ACTIONS(2104), 1, sym__entry_separator, - STATE(3949), 1, + ACTIONS(2106), 1, + anon_sym_RBRACE, + ACTIONS(7804), 1, + anon_sym_DOT_DOT2, + STATE(4088), 1, sym_comment, - ACTIONS(1535), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [116658] = 4, - ACTIONS(103), 1, + ACTIONS(7806), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129218] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3950), 1, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(4089), 1, sym_comment, - ACTIONS(1870), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 3, + STATE(4614), 1, + sym_block, + ACTIONS(7654), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [116674] = 5, + [129236] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7808), 1, + aux_sym__immediate_decimal_token5, + STATE(4090), 1, + sym_comment, + ACTIONS(1956), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1958), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [129254] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(3951), 1, + STATE(4091), 1, sym_comment, - STATE(4481), 1, + STATE(4615), 1, sym_block, - ACTIONS(7422), 3, + ACTIONS(7654), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [116692] = 3, + [129272] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3952), 1, + STATE(4092), 1, sym_comment, - ACTIONS(6137), 5, + ACTIONS(6320), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [116706] = 5, + [129286] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3953), 1, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(4093), 1, sym_comment, - STATE(5038), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [116724] = 6, + ACTIONS(2750), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129302] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7274), 1, + sym__entry_separator, + ACTIONS(7364), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4094), 1, + sym_comment, + STATE(4588), 1, + sym_cell_path, + [129324] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7358), 1, + sym__entry_separator, + ACTIONS(7364), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4095), 1, + sym_comment, + STATE(4603), 1, + sym_cell_path, + [129346] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5993), 1, + sym__entry_separator, + ACTIONS(7364), 1, + anon_sym_DOT2, + STATE(354), 1, + sym_path, + STATE(4034), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4096), 1, + sym_comment, + STATE(4511), 1, + sym_cell_path, + [129368] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7778), 1, anon_sym_DOT_DOT2, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, + ACTIONS(7810), 1, + anon_sym_RBRACE, + ACTIONS(7812), 1, sym__entry_separator, - STATE(3954), 1, + STATE(4097), 1, + sym_comment, + ACTIONS(7780), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129388] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7778), 1, + anon_sym_DOT_DOT2, + ACTIONS(7814), 1, + anon_sym_RBRACE, + ACTIONS(7816), 1, + sym__entry_separator, + STATE(4098), 1, sym_comment, - ACTIONS(7426), 2, + ACTIONS(7780), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116744] = 6, + [129408] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7562), 1, + ACTIONS(7818), 1, anon_sym_DQUOTE, - STATE(3955), 1, + STATE(4099), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(5181), 1, + STATE(5395), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [116764] = 7, + [129428] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7820), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7564), 1, + ACTIONS(7822), 1, anon_sym_SQUOTE2, - STATE(3956), 1, + ACTIONS(7824), 1, + sym_unescaped_interpolated_content, + STATE(4100), 1, sym_comment, - STATE(3960), 1, + STATE(4110), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4721), 1, sym_expr_interpolated, - [116786] = 7, + [129450] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(1922), 1, + sym__unquoted_pattern, + STATE(4101), 1, + sym_comment, + ACTIONS(1920), 4, + anon_sym_if, sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7566), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129466] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7826), 1, + anon_sym_QMARK2, + STATE(4102), 1, + sym_comment, + ACTIONS(1608), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [129482] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(7828), 1, anon_sym_EQ, - STATE(3957), 1, + ACTIONS(7830), 1, + anon_sym_COLON, + STATE(4103), 1, sym_comment, - STATE(4423), 1, + STATE(4674), 1, aux_sym__repeat_newline, - STATE(5200), 1, + STATE(5408), 1, sym_param_type, - [116808] = 5, + [129504] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3958), 1, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(4104), 1, sym_comment, - STATE(3972), 1, - aux_sym_parameter_repeat2, - ACTIONS(1388), 2, + ACTIONS(2104), 4, + anon_sym_if, sym__newline, - anon_sym_COMMA, - ACTIONS(7568), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116826] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129520] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7778), 1, + anon_sym_DOT_DOT2, + ACTIONS(7832), 1, + anon_sym_RBRACE, + ACTIONS(7834), 1, + sym__entry_separator, + STATE(4105), 1, + sym_comment, + ACTIONS(7780), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129540] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3959), 1, + STATE(1398), 1, + aux_sym__block_body_repeat1, + STATE(4106), 1, sym_comment, - STATE(4546), 1, - sym_block, - ACTIONS(7488), 3, - ts_builtin_sym_end, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - [116844] = 7, + ACTIONS(479), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129558] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7820), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7824), 1, sym_unescaped_interpolated_content, - ACTIONS(7570), 1, + ACTIONS(7836), 1, anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3960), 1, + STATE(4107), 1, sym_comment, - STATE(4544), 1, + STATE(4154), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4721), 1, sym_expr_interpolated, - [116866] = 6, + [129580] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(3961), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5603), 1, + anon_sym_DOLLAR, + ACTIONS(7409), 1, + sym_identifier, + STATE(4108), 1, sym_comment, - ACTIONS(1966), 2, - sym__newline, - anon_sym_SEMI, - [116886] = 4, - ACTIONS(103), 1, + STATE(4466), 1, + sym_val_variable, + STATE(5389), 1, + sym__variable_name, + [129602] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3962), 1, + STATE(4109), 1, sym_comment, - ACTIONS(6151), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6153), 3, - anon_sym_COLON, + ACTIONS(6472), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_RBRACE, - [116902] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, + anon_sym_AT2, anon_sym_LBRACE, - STATE(3963), 1, + [129616] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7820), 1, + anon_sym_LPAREN, + ACTIONS(7824), 1, + sym_unescaped_interpolated_content, + ACTIONS(7838), 1, + anon_sym_SQUOTE2, + STATE(4110), 1, sym_comment, - STATE(4548), 1, - sym_block, - ACTIONS(7488), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [116920] = 4, + STATE(4154), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4721), 1, + sym_expr_interpolated, + [129638] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3964), 1, + ACTIONS(7840), 1, + anon_sym_DQUOTE, + STATE(4111), 1, sym_comment, - ACTIONS(6111), 2, + STATE(4351), 1, + aux_sym_string_content_repeat1, + STATE(5290), 1, + sym_string_content, + ACTIONS(7797), 2, + sym__escaped_str_content, + sym_escape_sequence, + [129658] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2108), 1, anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2750), 1, sym__entry_separator, - ACTIONS(6113), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [116936] = 6, + STATE(4112), 1, + sym_comment, + ACTIONS(2752), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [129678] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7572), 1, - anon_sym_RBRACE, - ACTIONS(7574), 1, - sym__entry_separator, - STATE(3965), 1, + ACTIONS(7820), 1, + anon_sym_LPAREN, + ACTIONS(7824), 1, + sym_unescaped_interpolated_content, + ACTIONS(7842), 1, + anon_sym_SQUOTE2, + STATE(4113), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116956] = 6, + STATE(4126), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4721), 1, + sym_expr_interpolated, + [129700] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7576), 1, + ACTIONS(7844), 1, anon_sym_DQUOTE, - STATE(3966), 1, + STATE(4114), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(5202), 1, + STATE(5121), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [116976] = 7, + [129720] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7820), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7824), 1, sym_unescaped_interpolated_content, - ACTIONS(7578), 1, + ACTIONS(7846), 1, anon_sym_SQUOTE2, - STATE(3967), 1, + STATE(4115), 1, sym_comment, - STATE(4047), 1, + STATE(4121), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4721), 1, sym_expr_interpolated, - [116998] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4367), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - STATE(3070), 1, - sym__flag_equals_value, - STATE(3968), 1, - sym_comment, - ACTIONS(4365), 2, - sym__newline, - anon_sym_SEMI, - [117018] = 6, + [129742] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7580), 1, + ACTIONS(7848), 1, anon_sym_DQUOTE, - STATE(3969), 1, + STATE(4116), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4800), 1, + STATE(5243), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117038] = 5, - ACTIONS(3), 1, + [129762] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3970), 1, + ACTIONS(7820), 1, + anon_sym_LPAREN, + ACTIONS(7824), 1, + sym_unescaped_interpolated_content, + ACTIONS(7850), 1, + anon_sym_SQUOTE2, + STATE(4117), 1, sym_comment, - STATE(4997), 1, - sym__immediate_decimal, - ACTIONS(7299), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [117056] = 4, + STATE(4137), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4721), 1, + sym_expr_interpolated, + [129784] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3971), 1, - sym_comment, - ACTIONS(994), 4, - anon_sym_if, + ACTIONS(3018), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117072] = 4, + ACTIONS(7830), 1, + anon_sym_COLON, + ACTIONS(7852), 1, + anon_sym_EQ, + STATE(4118), 1, + sym_comment, + STATE(4674), 1, + aux_sym__repeat_newline, + STATE(5299), 1, + sym_param_type, + [129806] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6506), 2, + ACTIONS(7854), 1, + sym_identifier, + ACTIONS(7856), 1, + anon_sym_DOLLAR, + STATE(4119), 1, + sym_comment, + STATE(4122), 1, + sym__variable_name, + STATE(4466), 1, + sym_val_variable, + STATE(4493), 1, + sym__assignment_pattern, + [129828] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2104), 1, + sym__entry_separator, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern_in_list, + STATE(4120), 1, + sym_comment, + ACTIONS(2106), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7582), 2, - sym__newline, - anon_sym_COMMA, - STATE(3972), 2, + [129848] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7820), 1, + anon_sym_LPAREN, + ACTIONS(7824), 1, + sym_unescaped_interpolated_content, + ACTIONS(7858), 1, + anon_sym_SQUOTE2, + STATE(4121), 1, sym_comment, - aux_sym_parameter_repeat2, - [117088] = 4, + STATE(4154), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4721), 1, + sym_expr_interpolated, + [129870] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3973), 1, - sym_comment, - ACTIONS(1018), 4, - anon_sym_if, + ACTIONS(3018), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117104] = 6, + ACTIONS(7830), 1, + anon_sym_COLON, + ACTIONS(7860), 1, + anon_sym_EQ, + STATE(4122), 1, + sym_comment, + STATE(4674), 1, + aux_sym__repeat_newline, + STATE(5077), 1, + sym_param_type, + [129892] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7585), 1, + ACTIONS(7862), 1, anon_sym_DQUOTE, - STATE(3974), 1, + STATE(4123), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4939), 1, + STATE(5223), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117124] = 7, + [129912] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7820), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7824), 1, sym_unescaped_interpolated_content, - ACTIONS(7587), 1, + ACTIONS(7864), 1, anon_sym_SQUOTE2, - STATE(3975), 1, + STATE(4124), 1, sym_comment, - STATE(3978), 1, + STATE(4127), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4721), 1, sym_expr_interpolated, - [117146] = 6, + [129934] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7589), 1, - anon_sym_RBRACE, - ACTIONS(7591), 1, + ACTIONS(7666), 1, + anon_sym_RBRACK, + ACTIONS(7674), 1, sym__entry_separator, - STATE(3976), 1, - sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117166] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - anon_sym_LBRACE, - ACTIONS(7593), 1, + ACTIONS(7778), 1, anon_sym_DOT_DOT2, - STATE(3977), 1, + STATE(4125), 1, sym_comment, - ACTIONS(7595), 2, + ACTIONS(7780), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117186] = 7, + [129954] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7820), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7824), 1, sym_unescaped_interpolated_content, - ACTIONS(7597), 1, + ACTIONS(7866), 1, anon_sym_SQUOTE2, - STATE(3945), 1, + STATE(4126), 1, + sym_comment, + STATE(4154), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3978), 1, + STATE(4721), 1, + sym_expr_interpolated, + [129976] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7820), 1, + anon_sym_LPAREN, + ACTIONS(7824), 1, + sym_unescaped_interpolated_content, + ACTIONS(7868), 1, + anon_sym_SQUOTE2, + STATE(4127), 1, sym_comment, - STATE(4544), 1, + STATE(4154), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4721), 1, sym_expr_interpolated, - [117208] = 6, + [129998] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2020), 1, + sym__table_head_separator, + ACTIONS(7870), 1, + anon_sym_DOT2, + STATE(4128), 1, + sym_comment, + STATE(4347), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4970), 1, + sym_path, + STATE(5237), 1, + sym_cell_path, + [130020] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7599), 1, + ACTIONS(7872), 1, anon_sym_DQUOTE, - STATE(3979), 1, + STATE(4129), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(5022), 1, + STATE(5301), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117228] = 7, + [130040] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7820), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7824), 1, sym_unescaped_interpolated_content, - ACTIONS(7601), 1, + ACTIONS(7874), 1, anon_sym_SQUOTE2, - STATE(3980), 1, + STATE(4130), 1, sym_comment, - STATE(3982), 1, + STATE(4131), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4721), 1, sym_expr_interpolated, - [117250] = 7, + [130062] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7820), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7824), 1, sym_unescaped_interpolated_content, - ACTIONS(7603), 1, + ACTIONS(7876), 1, anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3981), 1, + STATE(4131), 1, sym_comment, - STATE(4544), 1, + STATE(4154), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4721), 1, sym_expr_interpolated, - [117272] = 7, + [130084] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2715), 1, + sym__entry_separator, + ACTIONS(2804), 1, + anon_sym_LPAREN2, + STATE(4132), 1, + sym_comment, + ACTIONS(2717), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [130104] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(7830), 1, + anon_sym_COLON, + ACTIONS(7878), 1, + anon_sym_EQ, + STATE(4133), 1, + sym_comment, + STATE(4674), 1, + aux_sym__repeat_newline, + STATE(5244), 1, + sym_param_type, + [130126] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7880), 1, + anon_sym_DQUOTE, + STATE(4134), 1, + sym_comment, + STATE(4351), 1, + aux_sym_string_content_repeat1, + STATE(5423), 1, + sym_string_content, + ACTIONS(7797), 2, + sym__escaped_str_content, + sym_escape_sequence, + [130146] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7820), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7824), 1, sym_unescaped_interpolated_content, - ACTIONS(7605), 1, + ACTIONS(7882), 1, anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3982), 1, + STATE(4135), 1, sym_comment, - STATE(4544), 1, + STATE(4139), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4721), 1, sym_expr_interpolated, - [117294] = 5, + [130168] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + STATE(4136), 1, + sym_comment, + ACTIONS(6488), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, anon_sym_LBRACE, - STATE(3983), 1, + [130182] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7820), 1, + anon_sym_LPAREN, + ACTIONS(7824), 1, + sym_unescaped_interpolated_content, + ACTIONS(7884), 1, + anon_sym_SQUOTE2, + STATE(4137), 1, sym_comment, - STATE(4415), 1, - sym_block, - ACTIONS(7309), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [117312] = 5, + STATE(4154), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4721), 1, + sym_expr_interpolated, + [130204] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3984), 1, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(4138), 1, sym_comment, - STATE(4417), 1, - sym_block, - ACTIONS(7309), 3, - ts_builtin_sym_end, + ACTIONS(1014), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [117330] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130220] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7432), 1, - aux_sym__immediate_decimal_token5, - STATE(3985), 1, + ACTIONS(7820), 1, + anon_sym_LPAREN, + ACTIONS(7824), 1, + sym_unescaped_interpolated_content, + ACTIONS(7886), 1, + anon_sym_SQUOTE2, + STATE(4139), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [117348] = 6, + STATE(4154), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4721), 1, + sym_expr_interpolated, + [130242] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7607), 1, + ACTIONS(7888), 1, anon_sym_DQUOTE, - STATE(3986), 1, + STATE(4140), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4792), 1, + STATE(5007), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117368] = 7, + [130262] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7820), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7824), 1, sym_unescaped_interpolated_content, - ACTIONS(7609), 1, + ACTIONS(7890), 1, anon_sym_SQUOTE2, - STATE(3987), 1, + STATE(4141), 1, sym_comment, - STATE(3988), 1, + STATE(4143), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4721), 1, sym_expr_interpolated, - [117390] = 7, + [130284] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4142), 1, + sym_comment, + STATE(5206), 1, + sym__immediate_decimal, + ACTIONS(6809), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6811), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [130302] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7820), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7824), 1, sym_unescaped_interpolated_content, - ACTIONS(7611), 1, + ACTIONS(7892), 1, anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3988), 1, + STATE(4143), 1, sym_comment, - STATE(4544), 1, + STATE(4154), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4721), 1, sym_expr_interpolated, - [117412] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3989), 1, - sym_comment, - STATE(4395), 1, - sym_block, - ACTIONS(7270), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [117430] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3990), 1, - sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117446] = 6, + [130324] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7613), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - STATE(3991), 1, + STATE(4144), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4812), 1, + STATE(5028), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117466] = 7, + [130344] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7820), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7824), 1, sym_unescaped_interpolated_content, - ACTIONS(7615), 1, + ACTIONS(7896), 1, anon_sym_SQUOTE2, - STATE(3992), 1, + STATE(4145), 1, sym_comment, - STATE(3994), 1, + STATE(4148), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4721), 1, sym_expr_interpolated, - [117488] = 4, + [130366] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1900), 1, + sym__unquoted_pattern, + STATE(4146), 1, + sym_comment, + ACTIONS(904), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130382] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_QMARK2, - STATE(3993), 1, + ACTIONS(2742), 1, + sym__entry_separator, + ACTIONS(2758), 1, + anon_sym_LPAREN2, + ACTIONS(2760), 1, + sym__unquoted_pattern_in_list, + STATE(4147), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(2744), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [117504] = 7, + anon_sym_DOT_DOT, + [130402] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7820), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7824), 1, sym_unescaped_interpolated_content, - ACTIONS(7617), 1, + ACTIONS(7898), 1, anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3994), 1, + STATE(4148), 1, sym_comment, - STATE(4544), 1, + STATE(4154), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4721), 1, sym_expr_interpolated, - [117526] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7619), 1, - aux_sym__immediate_decimal_token5, - STATE(3995), 1, - sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [117544] = 6, + [130424] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7621), 1, + ACTIONS(7900), 1, anon_sym_DQUOTE, - STATE(3996), 1, + STATE(4149), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4829), 1, + STATE(5045), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117564] = 5, + [130444] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1356), 1, - aux_sym__block_body_repeat1, - STATE(3997), 1, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(4150), 1, sym_comment, - ACTIONS(153), 2, + STATE(4735), 1, + sym_block, + ACTIONS(7626), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(459), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [117582] = 6, + [130462] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4337), 1, + anon_sym_LBRACK, + ACTIONS(4394), 1, + sym__newline, + STATE(2183), 1, + aux_sym__types_body_repeat1, + STATE(4151), 1, + sym_comment, + STATE(4592), 1, + sym_val_list, + STATE(4593), 1, + aux_sym__table_body_repeat1, + [130484] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(4152), 1, + sym_comment, + ACTIONS(1032), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130500] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7623), 1, + ACTIONS(7902), 1, anon_sym_DQUOTE, - STATE(3998), 1, + STATE(4153), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4843), 1, + STATE(5058), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117602] = 6, + [130520] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7904), 1, + anon_sym_LPAREN, + ACTIONS(7907), 1, + anon_sym_SQUOTE2, + ACTIONS(7909), 1, + sym_unescaped_interpolated_content, + STATE(4721), 1, + sym_expr_interpolated, + STATE(4154), 2, + sym_comment, + aux_sym__inter_single_quotes_repeat1, + [130540] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2248), 1, + sym__entry_separator, + ACTIONS(7912), 1, + anon_sym_LBRACK2, + STATE(4155), 1, + sym_comment, + ACTIONS(2250), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [130558] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1884), 1, + sym__unquoted_pattern, + ACTIONS(7567), 1, + aux_sym__immediate_decimal_token5, + STATE(4156), 1, + sym_comment, + ACTIONS(1882), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130576] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7625), 1, + ACTIONS(7914), 1, anon_sym_DQUOTE, - STATE(3999), 1, + STATE(4157), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4855), 1, + STATE(5071), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117622] = 6, + [130596] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7627), 1, + ACTIONS(7916), 1, anon_sym_DQUOTE, - STATE(4000), 1, + STATE(4158), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4864), 1, + STATE(5083), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117642] = 3, + [130616] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4001), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + STATE(4159), 1, sym_comment, - ACTIONS(6093), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [117656] = 5, + ACTIONS(2094), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130632] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7297), 1, - aux_sym__immediate_decimal_token5, - STATE(4002), 1, + ACTIONS(7918), 1, + anon_sym_DQUOTE, + STATE(4160), 1, + sym_comment, + STATE(4351), 1, + aux_sym_string_content_repeat1, + STATE(5090), 1, + sym_string_content, + ACTIONS(7797), 2, + sym__escaped_str_content, + sym_escape_sequence, + [130652] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4161), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(2663), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1738), 2, + ACTIONS(2665), 3, anon_sym_RBRACK, + anon_sym_RBRACE, sym__unquoted_pattern_in_list, - [117674] = 6, + [130668] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7629), 1, + ACTIONS(7920), 1, anon_sym_DQUOTE, - STATE(4003), 1, + STATE(4162), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4873), 1, + STATE(5097), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117694] = 6, + [130688] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7698), 1, + aux_sym__immediate_decimal_token5, + STATE(4163), 1, + sym_comment, + ACTIONS(1882), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1884), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [130706] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(4164), 1, + sym_comment, + STATE(4777), 1, + sym_block, + ACTIONS(7676), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130724] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7589), 1, + anon_sym_EQ2, + STATE(4165), 1, + sym_comment, + STATE(4740), 1, + sym__flag_equals_value, + ACTIONS(3840), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [130742] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1958), 1, + sym__unquoted_pattern, + ACTIONS(7922), 1, + aux_sym__immediate_decimal_token5, + STATE(4166), 1, + sym_comment, + ACTIONS(1956), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130760] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7631), 1, + ACTIONS(7924), 1, anon_sym_DQUOTE, - STATE(4004), 1, + STATE(4167), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4880), 1, + STATE(5111), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117714] = 6, + [130780] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7633), 1, - anon_sym_RBRACE, - ACTIONS(7635), 1, - sym__entry_separator, - STATE(4005), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(3163), 1, + sym_block, + STATE(4168), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117734] = 6, + STATE(4490), 1, + aux_sym__repeat_newline, + [130802] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7637), 1, + ACTIONS(7926), 1, anon_sym_DQUOTE, - STATE(4006), 1, + STATE(4169), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4887), 1, + STATE(5118), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117754] = 3, - ACTIONS(3), 1, + [130822] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4007), 1, + ACTIONS(7778), 1, + anon_sym_DOT_DOT2, + ACTIONS(7928), 1, + anon_sym_RBRACE, + ACTIONS(7930), 1, + sym__entry_separator, + STATE(4170), 1, sym_comment, - ACTIONS(6107), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [117768] = 6, + ACTIONS(7780), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130842] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7639), 1, + ACTIONS(7932), 1, anon_sym_DQUOTE, - STATE(4008), 1, + STATE(4171), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4894), 1, + STATE(5124), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117788] = 6, + [130862] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7641), 1, + ACTIONS(7934), 1, anon_sym_DQUOTE, - STATE(4009), 1, + STATE(4172), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4901), 1, + STATE(5130), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117808] = 6, + [130882] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2748), 1, + sym__unquoted_pattern, + STATE(4173), 1, + sym_comment, + ACTIONS(7522), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130898] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7643), 1, + ACTIONS(7936), 1, anon_sym_DQUOTE, - STATE(4010), 1, + STATE(4174), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4908), 1, + STATE(5135), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117828] = 6, + [130918] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7938), 1, anon_sym_DQUOTE, - STATE(4011), 1, + STATE(4175), 1, sym_comment, - STATE(4258), 1, + STATE(4351), 1, aux_sym_string_content_repeat1, - STATE(4913), 1, + STATE(5140), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7797), 2, sym__escaped_str_content, sym_escape_sequence, - [117848] = 6, - ACTIONS(103), 1, + [130938] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, - sym__space, - STATE(4012), 1, + STATE(1388), 1, + aux_sym__block_body_repeat1, + STATE(4176), 1, sym_comment, - ACTIONS(2577), 2, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - [117868] = 6, + ACTIONS(3318), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130956] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, + STATE(4177), 1, + sym_comment, + ACTIONS(2663), 2, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(4013), 1, + sym__entry_separator, + ACTIONS(2665), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [130972] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7940), 1, + anon_sym_LT, + STATE(4178), 1, sym_comment, - ACTIONS(1976), 2, - sym__newline, - anon_sym_SEMI, - [117888] = 7, + ACTIONS(6320), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6324), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [130990] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4179), 1, + sym_comment, + ACTIONS(6476), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [131004] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1032), 1, + sym__entry_separator, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern_in_list, + STATE(4180), 1, + sym_comment, + ACTIONS(1024), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131024] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2094), 1, + sym__entry_separator, + ACTIONS(2096), 1, + anon_sym_RBRACE, + ACTIONS(7942), 1, + anon_sym_DOT_DOT2, + STATE(4181), 1, + sym_comment, + ACTIONS(7944), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131044] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7946), 1, + anon_sym_LT, + STATE(4182), 1, + sym_comment, + ACTIONS(6320), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6324), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [131062] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(7514), 1, + ACTIONS(7830), 1, anon_sym_COLON, - ACTIONS(7647), 1, + ACTIONS(7948), 1, anon_sym_EQ, - STATE(4014), 1, + STATE(4183), 1, sym_comment, - STATE(4423), 1, + STATE(4674), 1, aux_sym__repeat_newline, - STATE(4960), 1, + STATE(5187), 1, sym_param_type, - [117910] = 4, - ACTIONS(103), 1, + [131084] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4015), 1, + STATE(4184), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117926] = 4, + ACTIONS(6480), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [131098] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, + ACTIONS(1958), 1, sym__unquoted_pattern, - STATE(4016), 1, + STATE(4185), 1, sym_comment, - ACTIONS(7210), 4, + ACTIONS(1956), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [117942] = 4, + [131114] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4017), 1, - sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, + ACTIONS(1692), 1, sym__entry_separator, - ACTIONS(1804), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117958] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4018), 1, + STATE(4186), 1, sym_comment, - ACTIONS(1870), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1872), 3, + ACTIONS(1690), 4, anon_sym_RBRACK, + anon_sym_GT2, anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117974] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7649), 1, - anon_sym_SQUOTE2, - STATE(3981), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4019), 1, - sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117996] = 6, + anon_sym_DOT2, + [131130] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2523), 1, - sym__space, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(4020), 1, + ACTIONS(7778), 1, + anon_sym_DOT_DOT2, + ACTIONS(7950), 1, + anon_sym_RBRACE, + ACTIONS(7952), 1, + sym__entry_separator, + STATE(4187), 1, + sym_comment, + ACTIONS(7780), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131150] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(4188), 1, sym_comment, - ACTIONS(2525), 2, + STATE(4635), 1, + sym_block, + ACTIONS(7658), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [118016] = 7, + [131168] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - STATE(1934), 1, - aux_sym__types_body_repeat1, - STATE(4021), 1, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(4189), 1, sym_comment, - STATE(4569), 1, - sym_val_list, - STATE(4579), 1, - aux_sym__table_body_repeat1, - [118038] = 7, + STATE(4636), 1, + sym_block, + ACTIONS(7658), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [131186] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7278), 1, - anon_sym_DOT_DOT, - ACTIONS(7442), 1, - anon_sym_RBRACK, - ACTIONS(7445), 1, + ACTIONS(1696), 1, sym__entry_separator, - STATE(4022), 1, + STATE(4190), 1, sym_comment, - [118060] = 7, - ACTIONS(103), 1, + ACTIONS(1694), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [131202] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(7044), 1, - sym_identifier, - STATE(4023), 1, + ACTIONS(2016), 1, + sym__table_head_separator, + ACTIONS(7870), 1, + anon_sym_DOT2, + STATE(4191), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(5164), 1, - sym__variable_name, - [118082] = 4, + STATE(4347), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4970), 1, + sym_path, + STATE(5317), 1, + sym_cell_path, + [131224] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4024), 1, - sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, + ACTIONS(1774), 1, sym__unquoted_pattern, - ACTIONS(1726), 3, + ACTIONS(2094), 1, anon_sym_LBRACE, + ACTIONS(7954), 1, + anon_sym_DOT_DOT2, + STATE(4192), 1, + sym_comment, + ACTIONS(7956), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118098] = 6, + [131244] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7568), 1, - anon_sym_DOT_DOT, - ACTIONS(7651), 1, - anon_sym_RBRACK, - STATE(3972), 1, - aux_sym_parameter_repeat2, - STATE(4025), 1, + STATE(4193), 1, sym_comment, - ACTIONS(1388), 2, - sym__newline, - anon_sym_COMMA, - [118118] = 6, - ACTIONS(103), 1, + STATE(5017), 1, + sym__immediate_decimal, + ACTIONS(7569), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7571), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [131262] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__space, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(4026), 1, + STATE(4194), 1, sym_comment, - ACTIONS(2569), 2, - sym__newline, - anon_sym_SEMI, - [118138] = 6, - ACTIONS(103), 1, + ACTIONS(6484), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [131276] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5622), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - STATE(2955), 1, - sym__flag_equals_value, - STATE(4027), 1, + STATE(4195), 1, + sym_comment, + ACTIONS(6464), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [131290] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1399), 1, + aux_sym__block_body_repeat1, + STATE(4196), 1, sym_comment, - ACTIONS(5620), 2, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - [118158] = 7, + ACTIONS(3316), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131308] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1434), 1, + ACTIONS(1590), 1, anon_sym_COLON2, - ACTIONS(4928), 1, + ACTIONS(5340), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(463), 1, sym_path, - STATE(492), 1, + STATE(495), 1, sym_cell_path, - STATE(2290), 1, + STATE(2489), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4028), 1, + STATE(4197), 1, sym_comment, - [118180] = 5, + [131330] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, - aux_sym__block_body_repeat1, - STATE(4029), 1, - sym_comment, - ACTIONS(153), 2, + ACTIONS(6802), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7958), 2, sym__newline, - anon_sym_SEMI, - ACTIONS(3073), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118198] = 4, + anon_sym_COMMA, + STATE(4198), 2, + sym_comment, + aux_sym_parameter_repeat2, + [131346] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4199), 1, + sym_comment, + ACTIONS(6468), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [131360] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4030), 1, + ACTIONS(1659), 1, + sym__entry_separator, + STATE(4200), 1, sym_comment, - ACTIONS(2501), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2503), 3, + ACTIONS(1657), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [131376] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(4201), 1, + sym_comment, + STATE(4564), 1, + sym_block, + ACTIONS(7599), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [118214] = 6, - ACTIONS(103), 1, + [131394] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__space, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(1819), 1, sym__unquoted_pattern, - STATE(4031), 1, + STATE(4202), 1, sym_comment, - ACTIONS(2637), 2, + ACTIONS(2715), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [118234] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131410] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token5, - STATE(4032), 1, + ACTIONS(7854), 1, + sym_identifier, + ACTIONS(7856), 1, + anon_sym_DOLLAR, + STATE(4118), 1, + sym__variable_name, + STATE(4203), 1, sym_comment, - ACTIONS(1736), 2, + STATE(4466), 1, + sym_val_variable, + STATE(4493), 1, + sym__assignment_pattern, + [131432] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2104), 1, + anon_sym_LBRACE, + ACTIONS(2114), 1, + sym__unquoted_pattern, + ACTIONS(7961), 1, + anon_sym_DOT_DOT2, + STATE(4204), 1, + sym_comment, + ACTIONS(7963), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [118252] = 6, + [131452] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7654), 1, - anon_sym_RBRACE, - ACTIONS(7656), 1, + ACTIONS(1882), 1, sym__entry_separator, - STATE(4033), 1, + ACTIONS(6930), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7965), 1, + anon_sym_DOT, + STATE(4205), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118272] = 7, + ACTIONS(1884), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [131472] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7854), 1, sym_identifier, - ACTIONS(7508), 1, + ACTIONS(7856), 1, anon_sym_DOLLAR, - STATE(3915), 1, + STATE(4206), 1, + sym_comment, + STATE(4207), 1, sym__variable_name, - STATE(4034), 1, + STATE(4466), 1, + sym_val_variable, + STATE(4604), 1, + sym__assignment_pattern_parenthesized, + [131494] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(7830), 1, + anon_sym_COLON, + ACTIONS(7967), 1, + anon_sym_EQ, + STATE(4207), 1, sym_comment, - STATE(4060), 1, + STATE(4674), 1, + aux_sym__repeat_newline, + STATE(5049), 1, + sym_param_type, + [131516] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7854), 1, + sym_identifier, + ACTIONS(7856), 1, + anon_sym_DOLLAR, + STATE(4133), 1, + sym__variable_name, + STATE(4208), 1, + sym_comment, + STATE(4466), 1, sym_val_variable, - STATE(4307), 1, + STATE(4625), 1, sym__assignment_pattern, - [118294] = 5, + [131538] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7658), 1, - aux_sym__immediate_decimal_token5, - STATE(4035), 1, + ACTIONS(2052), 1, + sym__unquoted_pattern, + STATE(4209), 1, + sym_comment, + ACTIONS(2050), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131554] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4210), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1922), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1920), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [118312] = 6, - ACTIONS(103), 1, + [131570] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7660), 1, - anon_sym_DQUOTE, - STATE(4036), 1, + STATE(4211), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4824), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [118332] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(1958), 2, anon_sym_DOT_DOT2, - ACTIONS(7662), 1, - anon_sym_RBRACE, - ACTIONS(7664), 1, - sym__entry_separator, - STATE(4037), 1, - sym_comment, - ACTIONS(7426), 2, + sym__unquoted_pattern, + ACTIONS(1956), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118352] = 5, + [131586] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7420), 1, - anon_sym_EQ2, - STATE(4038), 1, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(4212), 1, sym_comment, - STATE(4462), 1, - sym__flag_equals_value, - ACTIONS(4367), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118370] = 5, + STATE(4565), 1, + sym_block, + ACTIONS(7599), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [131604] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7666), 1, - anon_sym_DASH_DASH, - STATE(4547), 1, - sym_long_flag, - ACTIONS(4453), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - STATE(4039), 2, + STATE(4213), 1, sym_comment, - aux_sym_decl_def_repeat1, - [118388] = 7, + ACTIONS(2052), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(2050), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131620] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, + ACTIONS(2665), 1, + sym__unquoted_pattern, + STATE(4214), 1, + sym_comment, + ACTIONS(2663), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131636] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2954), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5603), 1, anon_sym_DOLLAR, - STATE(3957), 1, - sym__variable_name, - STATE(4040), 1, + ACTIONS(7409), 1, + sym_identifier, + STATE(4215), 1, sym_comment, - STATE(4060), 1, + STATE(4466), 1, sym_val_variable, - STATE(4307), 1, - sym__assignment_pattern, - [118410] = 7, + STATE(5179), 1, + sym__variable_name, + [131658] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4216), 1, + sym_comment, + ACTIONS(1920), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1922), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [131674] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7854), 1, sym_identifier, - ACTIONS(7508), 1, + ACTIONS(7856), 1, anon_sym_DOLLAR, - STATE(3933), 1, + STATE(4103), 1, sym__variable_name, - STATE(4041), 1, + STATE(4217), 1, sym_comment, - STATE(4060), 1, + STATE(4466), 1, sym_val_variable, - STATE(4403), 1, + STATE(4493), 1, sym__assignment_pattern, - [118432] = 6, + [131696] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, - sym__space, - ACTIONS(6776), 1, + ACTIONS(7662), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7669), 1, - anon_sym_DOT, - STATE(4042), 1, + STATE(4218), 1, sym_comment, - ACTIONS(1738), 2, - sym__newline, - anon_sym_SEMI, - [118452] = 5, + ACTIONS(1882), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1884), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [131714] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7252), 1, - aux_sym__immediate_decimal_token5, - STATE(4043), 1, + STATE(4198), 1, + aux_sym_parameter_repeat2, + STATE(4219), 1, sym_comment, - ACTIONS(1736), 3, + ACTIONS(1544), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118470] = 5, + anon_sym_COMMA, + ACTIONS(7802), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131732] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(2768), 1, sym__unquoted_pattern, - ACTIONS(7671), 1, - aux_sym__immediate_decimal_token5, - STATE(4044), 1, + STATE(4220), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(2762), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118488] = 7, - ACTIONS(3), 1, + [131748] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(4014), 1, - sym__variable_name, - STATE(4045), 1, + STATE(4221), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4597), 1, - sym__assignment_pattern_parenthesized, - [118510] = 7, + ACTIONS(6416), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6418), 3, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_RBRACE, + [131764] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4222), 1, + sym_comment, + ACTIONS(1956), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1958), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [131780] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7826), 1, + anon_sym_BANG, + STATE(4223), 1, + sym_comment, + ACTIONS(1608), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [131796] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2762), 1, + sym__entry_separator, + ACTIONS(2766), 1, + anon_sym_LPAREN2, + ACTIONS(2768), 1, + sym__unquoted_pattern_in_list, + STATE(4224), 1, + sym_comment, + ACTIONS(2764), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131816] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7854), 1, sym_identifier, - ACTIONS(7508), 1, + ACTIONS(7856), 1, anon_sym_DOLLAR, - STATE(3940), 1, + STATE(4183), 1, sym__variable_name, - STATE(4046), 1, + STATE(4225), 1, sym_comment, - STATE(4060), 1, + STATE(4466), 1, sym_val_variable, - STATE(4597), 1, + STATE(4604), 1, sym__assignment_pattern_parenthesized, - [118532] = 7, + [131838] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7820), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7824), 1, sym_unescaped_interpolated_content, - ACTIONS(7673), 1, + ACTIONS(7969), 1, anon_sym_SQUOTE2, - STATE(3945), 1, + STATE(4107), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4047), 1, + STATE(4226), 1, sym_comment, - STATE(4544), 1, + STATE(4721), 1, sym_expr_interpolated, - [118554] = 6, + [131860] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1621), 1, - anon_sym_RBRACE, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - STATE(1475), 1, - aux_sym__types_body_repeat2, - STATE(4048), 1, - sym_comment, - [118573] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4049), 1, - sym_comment, - ACTIONS(7675), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118586] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4050), 1, - sym_comment, - ACTIONS(7677), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [118599] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1726), 1, - anon_sym_LBRACE, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(7679), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7681), 1, + ACTIONS(7971), 1, aux_sym__immediate_decimal_token5, - STATE(4051), 1, - sym_comment, - [118618] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4052), 1, - sym_comment, - ACTIONS(7675), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118631] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4053), 1, - sym_comment, - ACTIONS(7683), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118644] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4054), 1, + STATE(4227), 1, sym_comment, - ACTIONS(7683), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1956), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1958), 2, anon_sym_RBRACE, - [118657] = 4, + sym__unquoted_pattern_in_record, + [131878] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4055), 1, + STATE(4228), 1, sym_comment, - ACTIONS(6121), 2, - anon_sym_AT2, + ACTIONS(6412), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6123), 2, - anon_sym_RBRACK, + ACTIONS(6414), 3, + anon_sym_COLON, anon_sym_GT2, - [118672] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [131894] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(4056), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2094), 1, + sym__entry_separator, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + STATE(4229), 1, sym_comment, - ACTIONS(2635), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118687] = 4, + ACTIONS(2096), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131914] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(2760), 1, sym__unquoted_pattern, - STATE(4057), 1, + STATE(4230), 1, sym_comment, - ACTIONS(968), 3, + ACTIONS(2742), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118702] = 4, + [131930] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2194), 1, - sym__entry_separator, - STATE(4058), 1, + STATE(4231), 1, sym_comment, - ACTIONS(2196), 3, + ACTIONS(2050), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2052), 3, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, - [118717] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1460), 1, - sym__table_head_separator, - ACTIONS(7510), 1, - anon_sym_DOT2, - STATE(4059), 1, - sym_comment, - STATE(4065), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, - sym_path, - [118736] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4060), 1, - sym_comment, - ACTIONS(7685), 4, - anon_sym_EQ, - anon_sym_in, - sym__newline, - anon_sym_COLON, - [118749] = 4, - ACTIONS(3), 1, + sym__unquoted_pattern_in_list, + [131946] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(4061), 1, + ACTIONS(7973), 1, + aux_sym__immediate_decimal_token5, + STATE(4232), 1, sym_comment, - ACTIONS(994), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118764] = 4, - ACTIONS(3), 1, + ACTIONS(1956), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1958), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [131964] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(4062), 1, + ACTIONS(7975), 1, + anon_sym_DQUOTE, + STATE(4233), 1, sym_comment, - ACTIONS(1018), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118779] = 3, + STATE(4351), 1, + aux_sym_string_content_repeat1, + STATE(5104), 1, + sym_string_content, + ACTIONS(7797), 2, + sym__escaped_str_content, + sym_escape_sequence, + [131984] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4063), 1, + STATE(4234), 1, sym_comment, - ACTIONS(4102), 4, - ts_builtin_sym_end, + ACTIONS(7977), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [118792] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131997] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4064), 1, + ACTIONS(7979), 1, + anon_sym_LPAREN, + STATE(4235), 1, sym_comment, - ACTIONS(6125), 2, - anon_sym_AT2, + ACTIONS(7981), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [132012] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(904), 1, sym__entry_separator, - ACTIONS(6127), 2, + ACTIONS(6601), 1, + sym__unquoted_pattern_in_list, + STATE(4236), 1, + sym_comment, + ACTIONS(815), 2, anon_sym_RBRACK, - anon_sym_GT2, - [118807] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [132029] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1526), 1, - sym__table_head_separator, - ACTIONS(7687), 1, - anon_sym_DOT2, - STATE(4641), 1, - sym_path, - STATE(4065), 2, + ACTIONS(7522), 1, + sym__entry_separator, + ACTIONS(7778), 1, + anon_sym_DOT_DOT2, + STATE(4237), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [118824] = 5, + ACTIONS(7780), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [132046] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3073), 1, - ts_builtin_sym_end, - STATE(1371), 1, - aux_sym__block_body_repeat1, - STATE(4066), 1, + STATE(4238), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(4540), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [118841] = 3, + anon_sym_LBRACE, + [132059] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4067), 1, + STATE(4239), 1, sym_comment, - ACTIONS(4104), 4, - ts_builtin_sym_end, + ACTIONS(2050), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2052), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [132074] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(4263), 1, anon_sym_LBRACE, - [118854] = 3, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3164), 1, + sym_block, + STATE(4240), 1, + sym_comment, + [132093] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4068), 1, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(4241), 1, sym_comment, - ACTIONS(7690), 4, + ACTIONS(2750), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + [132108] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1752), 1, anon_sym_RBRACE, - [118867] = 3, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(1760), 1, + anon_sym_COLON2, + STATE(1712), 1, + aux_sym__types_body_repeat2, + STATE(4242), 1, + sym_comment, + [132127] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4069), 1, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(4243), 1, sym_comment, - ACTIONS(7690), 4, + ACTIONS(2104), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118880] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [132142] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4070), 1, + STATE(4244), 1, sym_comment, - ACTIONS(7692), 4, + ACTIONS(4841), 4, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118893] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2198), 1, - sym__entry_separator, - STATE(4071), 1, - sym_comment, - ACTIONS(2200), 3, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT, - [118908] = 4, + [132155] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4072), 1, - sym_comment, - ACTIONS(6129), 2, - anon_sym_AT2, + ACTIONS(2742), 1, sym__entry_separator, - ACTIONS(6131), 2, + ACTIONS(2744), 1, anon_sym_RBRACK, - anon_sym_GT2, - [118923] = 4, + ACTIONS(2758), 1, + anon_sym_LPAREN2, + ACTIONS(2760), 1, + sym__unquoted_pattern_in_list, + STATE(4245), 1, + sym_comment, + [132174] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4073), 1, - sym_comment, - ACTIONS(6133), 2, - anon_sym_AT2, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2094), 1, sym__entry_separator, - ACTIONS(6135), 2, + ACTIONS(2096), 1, anon_sym_RBRACK, - anon_sym_GT2, - [118938] = 4, - ACTIONS(103), 1, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + STATE(4246), 1, + sym_comment, + [132193] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__entry_separator, - STATE(4074), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(7983), 1, + anon_sym_LBRACK, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(4247), 1, sym_comment, - ACTIONS(2102), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [118953] = 4, + STATE(5117), 1, + sym_val_list, + [132212] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(1758), 1, sym__entry_separator, - STATE(4075), 1, - sym_comment, - ACTIONS(2078), 3, - anon_sym_RBRACK, + ACTIONS(1760), 1, + anon_sym_COLON2, + ACTIONS(7985), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [118968] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4076), 1, + STATE(1707), 1, + aux_sym__types_body_repeat2, + STATE(4248), 1, sym_comment, - ACTIONS(5221), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [118981] = 5, + [132231] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(4077), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2715), 1, + sym__entry_separator, + ACTIONS(2717), 1, + anon_sym_RBRACE, + ACTIONS(2804), 1, + anon_sym_LPAREN2, + STATE(4249), 1, sym_comment, - ACTIONS(868), 2, - sym__newline, - anon_sym_SEMI, - [118998] = 3, + [132250] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4078), 1, + STATE(4250), 1, sym_comment, - ACTIONS(7694), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119011] = 4, + ACTIONS(7270), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [132263] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(7987), 1, + anon_sym_GT2, + ACTIONS(7989), 1, + anon_sym_AT2, + ACTIONS(7991), 1, sym__entry_separator, - STATE(4079), 1, - sym_comment, - ACTIONS(2122), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119026] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4080), 1, + STATE(4251), 1, sym_comment, - ACTIONS(5237), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [119039] = 3, + STATE(4971), 1, + sym_param_completer, + [132282] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4081), 1, + STATE(4252), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(7993), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119052] = 3, + [132295] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4082), 1, + STATE(4253), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(7995), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119065] = 3, + [132308] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4083), 1, + STATE(4254), 1, sym_comment, - ACTIONS(7675), 4, + ACTIONS(7995), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119078] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7698), 1, - anon_sym_LBRACK, - ACTIONS(7700), 1, - anon_sym_LPAREN, - STATE(3902), 1, - sym_parameter_parens, - STATE(3989), 1, - sym_parameter_bracks, - STATE(4084), 1, - sym_comment, - [119097] = 3, + [132321] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4085), 1, + STATE(4255), 1, sym_comment, - ACTIONS(7675), 4, + ACTIONS(7997), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119110] = 3, + [132334] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4086), 1, + STATE(4256), 1, sym_comment, - ACTIONS(7683), 4, + ACTIONS(7997), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119123] = 4, + [132347] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, + ACTIONS(2772), 1, sym__unquoted_pattern, - STATE(4087), 1, + STATE(4257), 1, sym_comment, - ACTIONS(7210), 3, + ACTIONS(1014), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119138] = 5, + [132362] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7702), 1, - anon_sym_DOT_DOT2, - STATE(4088), 1, - sym_comment, - ACTIONS(7704), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119155] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7706), 1, - anon_sym_DQUOTE, - ACTIONS(7708), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(4089), 2, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(4258), 1, sym_comment, - aux_sym_string_content_repeat1, - [119170] = 3, + ACTIONS(1032), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [132377] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4090), 1, + STATE(4259), 1, sym_comment, - ACTIONS(7683), 4, + ACTIONS(7999), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119183] = 3, + [132390] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4091), 1, + STATE(4260), 1, sym_comment, - ACTIONS(7711), 4, + ACTIONS(7999), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119196] = 6, - ACTIONS(3), 1, + [132403] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7698), 1, - anon_sym_LBRACK, - ACTIONS(7700), 1, - anon_sym_LPAREN, - STATE(3959), 1, - sym_parameter_parens, - STATE(3963), 1, - sym_parameter_bracks, - STATE(4092), 1, + ACTIONS(2683), 1, + sym__entry_separator, + STATE(4261), 1, sym_comment, - [119215] = 3, + ACTIONS(2685), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [132418] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4093), 1, + STATE(4262), 1, sym_comment, - ACTIONS(7711), 4, + ACTIONS(8001), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119228] = 3, + [132431] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4094), 1, + STATE(4263), 1, sym_comment, - ACTIONS(7713), 4, + ACTIONS(8001), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119241] = 3, + [132444] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4095), 1, + STATE(4264), 1, sym_comment, - ACTIONS(7715), 4, + ACTIONS(8003), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119254] = 4, + [132457] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2202), 1, + ACTIONS(2334), 1, sym__entry_separator, - STATE(4096), 1, + STATE(4265), 1, sym_comment, - ACTIONS(2204), 3, + ACTIONS(2336), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119269] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5822), 1, - sym__entry_separator, - ACTIONS(5824), 1, - anon_sym_RBRACE, - STATE(4097), 1, - sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [119288] = 3, + [132472] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4098), 1, + STATE(4266), 1, sym_comment, - ACTIONS(7713), 4, + ACTIONS(8005), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119301] = 3, + [132485] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4099), 1, + STATE(4267), 1, sym_comment, - ACTIONS(7715), 4, + ACTIONS(8005), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119314] = 4, + [132498] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4100), 1, + STATE(4268), 1, sym_comment, - ACTIONS(6137), 2, + ACTIONS(6472), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(6139), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [119329] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4101), 1, - sym_comment, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119342] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2519), 1, - sym__entry_separator, - STATE(4102), 1, - sym_comment, - ACTIONS(2521), 3, + ACTIONS(6474), 2, anon_sym_RBRACK, anon_sym_GT2, - anon_sym_RBRACE, - [119357] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5833), 1, - sym__entry_separator, - ACTIONS(5835), 1, - anon_sym_RBRACE, - STATE(4103), 1, - sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [119376] = 4, + [132513] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4104), 1, + STATE(4269), 1, sym_comment, - ACTIONS(2501), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2503), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [119391] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2206), 1, + ACTIONS(6476), 2, + anon_sym_AT2, sym__entry_separator, - STATE(4105), 1, - sym_comment, - ACTIONS(2208), 3, + ACTIONS(6478), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119406] = 4, + anon_sym_GT2, + [132528] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(2370), 1, sym__entry_separator, - STATE(4106), 1, + STATE(4270), 1, sym_comment, - ACTIONS(2212), 3, + ACTIONS(2372), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119421] = 4, + [132543] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2214), 1, + ACTIONS(2374), 1, sym__entry_separator, - STATE(4107), 1, + STATE(4271), 1, sym_comment, - ACTIONS(2216), 3, + ACTIONS(2376), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119436] = 3, + [132558] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4108), 1, + STATE(4272), 1, sym_comment, - ACTIONS(1462), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [119449] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2218), 1, + ACTIONS(6480), 2, + anon_sym_AT2, sym__entry_separator, - STATE(4109), 1, - sym_comment, - ACTIONS(2220), 3, + ACTIONS(6482), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119464] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4110), 1, - sym_comment, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119477] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4111), 1, - sym_comment, - ACTIONS(5257), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [119490] = 4, + anon_sym_GT2, + [132573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(4112), 1, + STATE(4273), 1, sym_comment, - ACTIONS(1964), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119505] = 4, + ACTIONS(8007), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [132586] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2222), 1, - sym__entry_separator, - STATE(4113), 1, + STATE(4274), 1, sym_comment, - ACTIONS(2224), 3, + ACTIONS(6484), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6486), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119520] = 6, + anon_sym_GT2, + [132601] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7717), 1, + ACTIONS(8009), 1, anon_sym_LBRACK, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(4114), 1, - sym_comment, - STATE(4957), 1, - sym_val_list, - [119539] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2226), 1, - sym__entry_separator, - STATE(4115), 1, - sym_comment, - ACTIONS(2228), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119554] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2230), 1, - sym__entry_separator, - STATE(4116), 1, + ACTIONS(8011), 1, + anon_sym_LPAREN, + STATE(4201), 1, + sym_parameter_parens, + STATE(4212), 1, + sym_parameter_bracks, + STATE(4275), 1, sym_comment, - ACTIONS(2232), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119569] = 4, - ACTIONS(103), 1, + [132620] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, - sym__entry_separator, - STATE(4117), 1, + STATE(4276), 1, sym_comment, - ACTIONS(2236), 3, - anon_sym_RBRACK, + ACTIONS(8013), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119584] = 4, + [132633] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(4118), 1, + STATE(4277), 1, sym_comment, - ACTIONS(2575), 3, + ACTIONS(7999), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119599] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2238), 1, - sym__entry_separator, - STATE(4119), 1, - sym_comment, - ACTIONS(2240), 3, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119614] = 4, + [132646] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(4120), 1, + STATE(4278), 1, sym_comment, - ACTIONS(1974), 3, + ACTIONS(7995), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119629] = 4, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [132659] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2242), 1, - sym__entry_separator, - STATE(4121), 1, + STATE(4279), 1, sym_comment, - ACTIONS(2244), 3, - anon_sym_RBRACK, + ACTIONS(7999), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119644] = 4, + [132672] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(2378), 1, sym__entry_separator, - STATE(4122), 1, + STATE(4280), 1, sym_comment, - ACTIONS(2248), 3, + ACTIONS(2380), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119659] = 4, + [132687] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2250), 1, + ACTIONS(2342), 1, sym__entry_separator, - STATE(4123), 1, + STATE(4281), 1, sym_comment, - ACTIONS(2252), 3, + ACTIONS(2344), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119674] = 4, + [132702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1819), 1, sym__unquoted_pattern, - STATE(4124), 1, + STATE(4282), 1, sym_comment, - ACTIONS(2523), 3, + ACTIONS(2715), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119689] = 4, + [132717] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(4125), 1, + STATE(4283), 1, sym_comment, - ACTIONS(2567), 3, + ACTIONS(8001), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119704] = 6, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [132730] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4126), 1, + STATE(4284), 1, sym_comment, - STATE(4257), 1, - sym_block, - [119723] = 4, + ACTIONS(8001), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [132743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(4127), 1, + STATE(4285), 1, sym_comment, - ACTIONS(2501), 3, + ACTIONS(8005), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119738] = 6, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [132756] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7719), 1, - anon_sym_GT2, - ACTIONS(7721), 1, - anon_sym_AT2, - ACTIONS(7723), 1, - sym__entry_separator, - STATE(4128), 1, + STATE(4286), 1, sym_comment, - STATE(4652), 1, - sym_param_completer, - [119757] = 3, + ACTIONS(8005), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [132769] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4129), 1, + STATE(4287), 1, sym_comment, - ACTIONS(7725), 4, + ACTIONS(8015), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119770] = 6, + [132782] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4288), 1, + sym_comment, + ACTIONS(6456), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT2, + anon_sym_LBRACE, + [132795] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_RBRACE, - ACTIONS(1706), 1, - sym__entry_separator, - ACTIONS(2595), 1, + STATE(4289), 1, + sym_comment, + ACTIONS(1956), 2, anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_record, - STATE(4130), 1, + sym__entry_separator, + ACTIONS(1958), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [132810] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4290), 1, sym_comment, - [119789] = 6, - ACTIONS(103), 1, + ACTIONS(8015), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [132823] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4131), 1, + STATE(4291), 1, sym_comment, - STATE(4259), 1, - sym_block, - [119808] = 6, - ACTIONS(103), 1, + ACTIONS(7260), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [132836] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3778), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(2986), 1, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3267), 1, sym_block, - STATE(4132), 1, + STATE(4292), 1, sym_comment, - [119827] = 5, + [132855] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7727), 1, - anon_sym_DOT_DOT2, - STATE(4133), 1, + STATE(4293), 1, + sym_comment, + ACTIONS(8017), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [132868] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4294), 1, + sym_comment, + ACTIONS(8017), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [132881] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4295), 1, + sym_comment, + ACTIONS(6488), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6490), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [132896] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4296), 1, sym_comment, - ACTIONS(7729), 2, + ACTIONS(1920), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119844] = 5, + ACTIONS(1922), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [132911] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7210), 1, + ACTIONS(2318), 1, sym__entry_separator, - STATE(4134), 1, + STATE(4297), 1, sym_comment, - ACTIONS(7278), 2, + ACTIONS(2320), 3, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [119861] = 5, + [132926] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2152), 1, - anon_sym_LBRACE, - ACTIONS(7731), 1, - anon_sym_DOT_DOT2, - STATE(4135), 1, + STATE(4298), 1, sym_comment, - ACTIONS(7733), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119878] = 3, + ACTIONS(8017), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [132939] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4136), 1, + STATE(4299), 1, sym_comment, - ACTIONS(7725), 4, + ACTIONS(8017), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119891] = 3, + [132952] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4137), 1, + STATE(4300), 1, sym_comment, - ACTIONS(7735), 4, + ACTIONS(8019), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119904] = 6, + [132965] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7698), 1, - anon_sym_LBRACK, - ACTIONS(7700), 1, - anon_sym_LPAREN, - STATE(3983), 1, - sym_parameter_parens, - STATE(3984), 1, - sym_parameter_bracks, - STATE(4138), 1, + STATE(4301), 1, sym_comment, - [119923] = 5, + ACTIONS(8019), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [132978] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(4139), 1, + STATE(4302), 1, sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, + ACTIONS(7995), 4, sym__newline, anon_sym_SEMI, - [119940] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [132991] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4303), 1, + sym_comment, + ACTIONS(6464), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6466), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [133006] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4140), 1, + STATE(4304), 1, sym_comment, - ACTIONS(1480), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [119953] = 3, + ACTIONS(8021), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [133019] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4141), 1, + STATE(4305), 1, sym_comment, - ACTIONS(7739), 4, + ACTIONS(7325), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [119966] = 3, + [133032] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4142), 1, + STATE(4306), 1, sym_comment, - ACTIONS(7735), 4, + ACTIONS(5693), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119979] = 6, + anon_sym_LBRACE, + [133045] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2575), 1, + ACTIONS(2278), 1, sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACK, - STATE(4143), 1, + STATE(4307), 1, sym_comment, - [119998] = 3, + ACTIONS(2280), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [133060] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4144), 1, + STATE(4308), 1, sym_comment, - ACTIONS(7741), 4, + ACTIONS(8021), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120011] = 6, + [133073] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACK, - ACTIONS(1978), 1, + ACTIONS(5542), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - STATE(4145), 1, - sym_comment, - [120030] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(4146), 1, + ACTIONS(6283), 1, + sym__entry_separator, + ACTIONS(6285), 1, + anon_sym_RBRACE, + STATE(4309), 1, sym_comment, - ACTIONS(2635), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120045] = 6, + STATE(5189), 1, + sym__expr_parenthesized_immediate, + [133092] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(6041), 1, sym__newline, - ACTIONS(3196), 1, - anon_sym_SEMI, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, - STATE(4147), 1, - sym_comment, - STATE(4404), 1, + ACTIONS(8023), 1, + anon_sym_EQ, + ACTIONS(8025), 1, + anon_sym_COLON, + STATE(3449), 1, aux_sym__repeat_newline, - [120064] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7743), 1, - anon_sym_DOT, - ACTIONS(7745), 1, - aux_sym__immediate_decimal_token5, - STATE(4148), 1, + STATE(4310), 1, sym_comment, - [120083] = 3, + [133111] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4149), 1, + STATE(4311), 1, sym_comment, - ACTIONS(7747), 4, + ACTIONS(8027), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120096] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4150), 1, - sym_comment, - ACTIONS(1545), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120109] = 3, + [133124] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4151), 1, + STATE(4312), 1, sym_comment, - ACTIONS(7747), 4, + ACTIONS(8027), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120122] = 5, + [133137] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3046), 1, - ts_builtin_sym_end, - STATE(1367), 1, - aux_sym__block_body_repeat1, - STATE(4152), 1, + STATE(4313), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(5661), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [120139] = 3, - ACTIONS(3), 1, + anon_sym_LBRACE, + [133150] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4153), 1, + ACTIONS(1014), 1, + sym__entry_separator, + ACTIONS(1016), 1, + anon_sym_RBRACK, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern_in_list, + STATE(4314), 1, sym_comment, - ACTIONS(1468), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120152] = 5, + [133169] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7749), 1, - anon_sym_RPAREN, - STATE(4154), 1, + STATE(4315), 1, sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, + ACTIONS(5675), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [120169] = 3, + anon_sym_LBRACE, + [133182] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4155), 1, + STATE(4316), 1, sym_comment, - ACTIONS(5287), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [120182] = 3, + ACTIONS(7335), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [133195] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4156), 1, + ACTIONS(8029), 1, + anon_sym_RBRACK, + STATE(3579), 1, + aux_sym_parameter_repeat2, + STATE(4317), 1, sym_comment, - ACTIONS(7741), 4, + ACTIONS(1626), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120195] = 4, + anon_sym_COMMA, + [133212] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(2114), 1, sym__unquoted_pattern, - STATE(4157), 1, + ACTIONS(8031), 1, + anon_sym_DOT_DOT2, + STATE(4318), 1, sym_comment, - ACTIONS(994), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120210] = 4, + ACTIONS(8033), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [133229] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1024), 1, + anon_sym_RBRACK, + ACTIONS(1032), 1, + sym__entry_separator, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern_in_list, + STATE(4319), 1, + sym_comment, + [133248] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2742), 1, + sym__entry_separator, + ACTIONS(2744), 1, + anon_sym_RBRACE, + ACTIONS(2758), 1, + anon_sym_LPAREN2, + ACTIONS(2760), 1, + sym__unquoted_pattern_in_record, + STATE(4320), 1, + sym_comment, + [133267] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(4158), 1, + STATE(4321), 1, sym_comment, - ACTIONS(1018), 3, + ACTIONS(8035), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [120225] = 6, + [133280] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(4159), 1, + STATE(4322), 1, sym_comment, - [120244] = 3, + ACTIONS(2050), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2052), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [133295] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4160), 1, + STATE(4323), 1, sym_comment, - ACTIONS(1472), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120257] = 3, + ACTIONS(8037), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [133308] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4161), 1, + STATE(4324), 1, sym_comment, - ACTIONS(1476), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120270] = 3, + ACTIONS(7276), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [133321] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(1760), 1, + anon_sym_COLON2, + ACTIONS(8039), 1, + anon_sym_RBRACE, + STATE(1693), 1, + aux_sym__types_body_repeat2, + STATE(4325), 1, + sym_comment, + [133340] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4162), 1, + ACTIONS(7370), 1, + anon_sym_LBRACK, + ACTIONS(7372), 1, + anon_sym_LPAREN, + STATE(3995), 1, + sym_parameter_parens, + STATE(3996), 1, + sym_parameter_bracks, + STATE(4326), 1, sym_comment, - ACTIONS(1516), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120283] = 4, + [133359] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(904), 1, sym__entry_separator, - STATE(4163), 1, + STATE(4327), 1, sym_comment, - ACTIONS(868), 3, + ACTIONS(815), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [120298] = 3, + [133374] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4164), 1, + ACTIONS(1644), 1, + sym__table_head_separator, + ACTIONS(8041), 1, + anon_sym_DOT2, + STATE(4970), 1, + sym_path, + STATE(4328), 2, sym_comment, - ACTIONS(7751), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120311] = 4, + aux_sym__where_predicate_lhs_repeat1, + [133391] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(2232), 1, sym__entry_separator, - STATE(4165), 1, + STATE(4329), 1, sym_comment, - ACTIONS(2114), 3, + ACTIONS(2234), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [120326] = 6, + [133406] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7753), 1, - anon_sym_RBRACK, - ACTIONS(7755), 1, + ACTIONS(2260), 1, sym__entry_separator, - STATE(4166), 1, - sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [120345] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(459), 1, - ts_builtin_sym_end, - STATE(1368), 1, - aux_sym__block_body_repeat1, - STATE(4167), 1, + STATE(4330), 1, sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - [120362] = 3, + ACTIONS(2262), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [133421] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4168), 1, + STATE(4331), 1, sym_comment, - ACTIONS(5253), 4, + ACTIONS(5679), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [120375] = 3, + [133434] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4169), 1, + STATE(4332), 1, sym_comment, - ACTIONS(6928), 4, + ACTIONS(8044), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [120388] = 3, + [133447] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4170), 1, + STATE(4333), 1, + sym_comment, + ACTIONS(4558), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [133460] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4334), 1, sym_comment, - ACTIONS(7751), 4, + ACTIONS(8046), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120401] = 6, + [133473] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(2768), 1, + sym__unquoted_pattern, + STATE(4335), 1, + sym_comment, + ACTIONS(2762), 3, anon_sym_LBRACK, - ACTIONS(7057), 1, anon_sym_LPAREN, - STATE(3875), 1, - sym_parameter_parens, - STATE(3879), 1, - sym_parameter_bracks, - STATE(4171), 1, + anon_sym_DASH_DASH, + [133488] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1882), 1, + anon_sym_LBRACE, + ACTIONS(1884), 1, + sym__unquoted_pattern, + ACTIONS(8048), 1, + anon_sym_DOT, + ACTIONS(8050), 1, + aux_sym__immediate_decimal_token5, + STATE(4336), 1, sym_comment, - [120420] = 3, + [133507] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4172), 1, + ACTIONS(2760), 1, + sym__unquoted_pattern, + STATE(4337), 1, sym_comment, - ACTIONS(7757), 4, - anon_sym_if, + ACTIONS(2742), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [120433] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(7572), 1, - anon_sym_RBRACE, - ACTIONS(7574), 1, - sym__entry_separator, - STATE(4173), 1, - sym_comment, - STATE(4631), 1, - sym__expr_parenthesized_immediate, - [120452] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2575), 1, - sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACE, - STATE(4174), 1, - sym_comment, - [120471] = 3, + [133522] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4175), 1, + ACTIONS(1922), 1, + sym__unquoted_pattern, + STATE(4338), 1, sym_comment, - ACTIONS(7757), 4, - anon_sym_if, + ACTIONS(1920), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [120484] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1858), 1, - sym__entry_separator, - STATE(4176), 1, - sym_comment, - ACTIONS(1860), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [120499] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - STATE(4177), 1, - sym_comment, - [120518] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2100), 1, - anon_sym_LBRACE, - ACTIONS(7759), 1, - anon_sym_DOT_DOT2, - STATE(4178), 1, - sym_comment, - ACTIONS(7761), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120535] = 5, + [133537] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7763), 1, - anon_sym_DOT_DOT2, - STATE(4179), 1, + STATE(4339), 1, sym_comment, - ACTIONS(7765), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120552] = 3, + ACTIONS(8052), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [133550] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4180), 1, + STATE(4340), 1, sym_comment, - ACTIONS(6942), 4, + ACTIONS(7296), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [120565] = 4, - ACTIONS(103), 1, + [133563] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(7767), 2, - sym__newline, - sym__space, - STATE(4181), 2, + STATE(4341), 1, sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - [120580] = 6, + ACTIONS(8054), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [133576] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7289), 1, + ACTIONS(1900), 1, + sym__unquoted_pattern, + STATE(4342), 1, + sym_comment, + ACTIONS(904), 3, sym__newline, - ACTIONS(7291), 1, anon_sym_PIPE, - ACTIONS(7770), 1, anon_sym_EQ_GT, - STATE(4182), 1, - sym_comment, - STATE(4344), 1, - aux_sym_match_pattern_repeat1, - [120599] = 5, + [133591] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2076), 1, + STATE(4343), 1, + sym_comment, + ACTIONS(5667), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(7772), 1, - anon_sym_DOT_DOT2, - STATE(4183), 1, + [133604] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8009), 1, + anon_sym_LBRACK, + ACTIONS(8011), 1, + anon_sym_LPAREN, + STATE(4089), 1, + sym_parameter_parens, + STATE(4091), 1, + sym_parameter_bracks, + STATE(4344), 1, sym_comment, - ACTIONS(7774), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120616] = 6, - ACTIONS(103), 1, + [133623] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(7589), 1, - anon_sym_RBRACE, - ACTIONS(7591), 1, - sym__entry_separator, - STATE(4184), 1, + STATE(4345), 1, sym_comment, - STATE(4631), 1, - sym__expr_parenthesized_immediate, - [120635] = 5, + ACTIONS(8056), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [133636] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7776), 1, + ACTIONS(7557), 1, anon_sym_LBRACE, - STATE(3282), 1, + STATE(3369), 1, sym__blosure, - STATE(4185), 1, + STATE(4346), 1, sym_comment, - STATE(3281), 2, + STATE(3434), 2, sym_block, sym_val_closure, - [120652] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2120), 1, - anon_sym_LBRACE, - ACTIONS(7778), 1, - anon_sym_DOT_DOT2, - STATE(4186), 1, - sym_comment, - ACTIONS(7780), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120669] = 3, + [133653] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4187), 1, + ACTIONS(1653), 1, + sym__table_head_separator, + ACTIONS(7870), 1, + anon_sym_DOT2, + STATE(4328), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4347), 1, sym_comment, - ACTIONS(7337), 4, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - anon_sym_AT, - [120682] = 5, - ACTIONS(3), 1, + STATE(4970), 1, + sym_path, + [133672] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7307), 1, - anon_sym_RPAREN, - STATE(4188), 1, + ACTIONS(5772), 1, + anon_sym_COLON2, + STATE(4348), 1, sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, + STATE(4501), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5766), 2, sym__newline, - anon_sym_SEMI, - [120699] = 6, + sym__space, + [133689] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(7782), 1, - anon_sym_EQ, - ACTIONS(7784), 1, - anon_sym_COLON, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(4189), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8058), 1, + anon_sym_DOT_DOT2, + STATE(4349), 1, sym_comment, - [120718] = 5, + ACTIONS(8060), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [133706] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2238), 1, - aux_sym__types_body_repeat2, - STATE(4190), 1, + STATE(4350), 1, sym_comment, - ACTIONS(7786), 2, + ACTIONS(8062), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [120735] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7204), 1, + ACTIONS(8064), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - STATE(4191), 1, - sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120752] = 5, + [133721] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, - sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - STATE(4192), 1, + ACTIONS(8066), 1, + anon_sym_DQUOTE, + STATE(4351), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120769] = 3, + STATE(4396), 1, + aux_sym_string_content_repeat1, + ACTIONS(7797), 2, + sym__escaped_str_content, + sym_escape_sequence, + [133738] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4193), 1, + ACTIONS(8068), 1, + sym__newline, + ACTIONS(8071), 1, + anon_sym_PIPE, + ACTIONS(8074), 1, + anon_sym_EQ_GT, + STATE(4352), 2, sym_comment, - ACTIONS(6955), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120782] = 5, - ACTIONS(103), 1, + aux_sym_match_pattern_repeat1, + [133755] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2231), 1, - aux_sym__types_body_repeat2, - STATE(4194), 1, + ACTIONS(1958), 1, + sym__unquoted_pattern, + STATE(4353), 1, sym_comment, - ACTIONS(7786), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [120799] = 4, + ACTIONS(1956), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [133770] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7788), 1, - anon_sym_LPAREN, - STATE(4195), 1, + STATE(4354), 1, sym_comment, - ACTIONS(7790), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [120814] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(6468), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7794), 1, + ACTIONS(6470), 2, anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(4196), 1, - sym_comment, - [120833] = 4, + anon_sym_GT2, + [133785] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2505), 1, + ACTIONS(5154), 1, sym__entry_separator, - STATE(4197), 1, + STATE(2458), 1, + aux_sym__types_body_repeat2, + STATE(4355), 1, sym_comment, - ACTIONS(2507), 3, + ACTIONS(8076), 2, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, - [120848] = 5, - ACTIONS(103), 1, + [133802] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7798), 1, - sym__space, - STATE(4198), 1, + STATE(4356), 1, sym_comment, - STATE(4215), 1, - aux_sym_attribute_repeat1, - ACTIONS(7796), 2, + ACTIONS(8046), 4, sym__newline, anon_sym_SEMI, - [120865] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [133815] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4199), 1, - sym_comment, - ACTIONS(7800), 2, + ACTIONS(2762), 1, + sym__entry_separator, + ACTIONS(2764), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7802), 2, + ACTIONS(2766), 1, anon_sym_LPAREN2, - sym__entry_separator, - [120880] = 6, + ACTIONS(2768), 1, + sym__unquoted_pattern_in_list, + STATE(4357), 1, + sym_comment, + [133834] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2523), 1, + ACTIONS(5154), 1, sym__entry_separator, - ACTIONS(2525), 1, - anon_sym_RBRACE, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(4200), 1, + STATE(2462), 1, + aux_sym__types_body_repeat2, + STATE(4358), 1, sym_comment, - [120899] = 3, - ACTIONS(3), 1, + ACTIONS(8076), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [133851] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4201), 1, + ACTIONS(2382), 1, + sym__entry_separator, + STATE(4359), 1, sym_comment, - ACTIONS(7804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2384), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [120912] = 3, + anon_sym_DOT_DOT, + [133866] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4202), 1, + STATE(4360), 1, sym_comment, - ACTIONS(7804), 4, + ACTIONS(8078), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120925] = 6, + [133879] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7438), 1, + STATE(4361), 1, + sym_comment, + ACTIONS(8080), 2, anon_sym_RBRACK, - ACTIONS(7440), 1, + anon_sym_DOT_DOT, + ACTIONS(8082), 2, + anon_sym_LPAREN2, sym__entry_separator, - STATE(4203), 1, - sym_comment, - STATE(4751), 1, - sym__expr_parenthesized_immediate, - [120944] = 3, + [133894] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4204), 1, - sym_comment, - ACTIONS(7806), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120957] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7808), 1, - anon_sym_LPAREN, - STATE(4205), 1, - sym_comment, - ACTIONS(7810), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [120972] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4206), 1, + STATE(4362), 1, sym_comment, - ACTIONS(6093), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6095), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [120987] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(4542), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(7812), 1, - anon_sym_DOT_DOT2, - STATE(4207), 1, - sym_comment, - ACTIONS(7814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121004] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - sym__entry_separator, - ACTIONS(2569), 1, - anon_sym_RBRACE, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, - STATE(4208), 1, - sym_comment, - [121023] = 4, + [133907] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4209), 1, + STATE(4363), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(2663), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1728), 2, + ACTIONS(2665), 2, anon_sym_RBRACE, sym__unquoted_pattern_in_record, - [121038] = 4, - ACTIONS(103), 1, + [133922] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4210), 1, + STATE(4364), 1, sym_comment, - ACTIONS(6107), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6109), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [121053] = 3, + ACTIONS(8084), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [133935] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4211), 1, + ACTIONS(2052), 1, + sym__unquoted_pattern, + STATE(4365), 1, sym_comment, - ACTIONS(4060), 4, - ts_builtin_sym_end, + ACTIONS(2050), 3, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [121066] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [133950] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4366), 1, + sym_comment, + ACTIONS(1690), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [133963] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4212), 1, + STATE(4367), 1, sym_comment, - ACTIONS(7816), 4, + ACTIONS(8078), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121079] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4213), 1, - sym_comment, - ACTIONS(7026), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121092] = 4, + [133976] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2591), 1, + ACTIONS(2386), 1, sym__entry_separator, - STATE(4214), 1, + STATE(4368), 1, sym_comment, - ACTIONS(2593), 3, + ACTIONS(2388), 3, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_RBRACE, - [121107] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7818), 1, - sym__space, - ACTIONS(5708), 2, - sym__newline, - anon_sym_SEMI, - STATE(4215), 2, - sym_comment, - aux_sym_attribute_repeat1, - [121122] = 6, + anon_sym_DOT_DOT, + [133991] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, + ACTIONS(5542), 1, anon_sym_LPAREN2, - ACTIONS(7821), 1, - anon_sym_RBRACK, - ACTIONS(7823), 1, + ACTIONS(7928), 1, + anon_sym_RBRACE, + ACTIONS(7930), 1, sym__entry_separator, - STATE(4216), 1, + STATE(4369), 1, sym_comment, - STATE(4966), 1, + STATE(4915), 1, sym__expr_parenthesized_immediate, - [121141] = 3, + [134010] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4217), 1, + STATE(4370), 1, sym_comment, - ACTIONS(7825), 4, + ACTIONS(8086), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121154] = 4, - ACTIONS(103), 1, + [134023] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4218), 1, + STATE(4371), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121169] = 4, - ACTIONS(3), 1, + ACTIONS(7362), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [134036] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(4219), 1, + ACTIONS(2667), 1, + sym__entry_separator, + STATE(4372), 1, sym_comment, - ACTIONS(2501), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [121184] = 3, + ACTIONS(2669), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [134051] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4220), 1, + STATE(4373), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(8088), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121197] = 4, + [134064] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4221), 1, - sym_comment, - ACTIONS(1870), 2, - anon_sym_LPAREN2, + ACTIONS(2390), 1, sym__entry_separator, - ACTIONS(1872), 2, + STATE(4374), 1, + sym_comment, + ACTIONS(2392), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121212] = 6, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + [134079] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2637), 1, - anon_sym_RBRACE, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_record, - STATE(4222), 1, + ACTIONS(8090), 1, + anon_sym_LBRACE, + ACTIONS(8092), 1, + anon_sym_DOT_DOT2, + STATE(4375), 1, sym_comment, - [121231] = 4, + ACTIONS(8094), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [134096] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6902), 1, - sym__unquoted_pattern, - STATE(4223), 1, + STATE(4376), 1, sym_comment, - ACTIONS(968), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [121246] = 3, + ACTIONS(8096), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [134109] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4224), 1, + STATE(4377), 1, sym_comment, - ACTIONS(7829), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121259] = 3, + ACTIONS(8096), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [134122] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4225), 1, + STATE(4378), 1, sym_comment, - ACTIONS(7831), 4, + ACTIONS(8098), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121272] = 3, + [134135] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4226), 1, + STATE(4379), 1, sym_comment, - ACTIONS(7833), 4, + ACTIONS(8100), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121285] = 3, + [134148] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4227), 1, + STATE(4380), 1, sym_comment, - ACTIONS(7835), 4, + ACTIONS(8102), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121298] = 3, + [134161] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4381), 1, + sym_comment, + ACTIONS(6320), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6324), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [134176] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4228), 1, + STATE(4382), 1, sym_comment, - ACTIONS(7837), 4, + ACTIONS(8104), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121311] = 6, + [134189] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2523), 1, + ACTIONS(2394), 1, sym__entry_separator, - ACTIONS(2525), 1, - anon_sym_RBRACK, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(4229), 1, + STATE(4383), 1, sym_comment, - [121330] = 3, + ACTIONS(2396), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [134204] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4230), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(3158), 1, + sym_block, + STATE(4292), 1, + aux_sym__repeat_newline, + STATE(4384), 1, sym_comment, - ACTIONS(6959), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121343] = 3, + [134223] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2398), 1, + sym__entry_separator, + STATE(4385), 1, + sym_comment, + ACTIONS(2400), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [134238] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4231), 1, + STATE(4386), 1, sym_comment, - ACTIONS(7839), 4, + ACTIONS(8106), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121356] = 5, - ACTIONS(3), 1, + [134251] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7812), 1, - anon_sym_DOT_DOT2, - ACTIONS(7841), 1, - anon_sym_LBRACE, - STATE(4232), 1, + ACTIONS(2402), 1, + sym__entry_separator, + STATE(4387), 1, sym_comment, - ACTIONS(7814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121373] = 3, + ACTIONS(2404), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [134266] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2406), 1, + sym__entry_separator, + STATE(4388), 1, + sym_comment, + ACTIONS(2408), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [134281] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2410), 1, + sym__entry_separator, + STATE(4389), 1, + sym_comment, + ACTIONS(2412), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [134296] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4233), 1, + STATE(4390), 1, sym_comment, - ACTIONS(4062), 4, + ACTIONS(4544), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [121386] = 4, + [134309] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2294), 1, sym__entry_separator, - STATE(4234), 1, + STATE(4391), 1, sym_comment, - ACTIONS(2154), 3, + ACTIONS(2296), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [121401] = 6, + [134324] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3316), 1, + ts_builtin_sym_end, + STATE(1436), 1, + aux_sym__block_body_repeat1, + STATE(4392), 1, + sym_comment, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [134341] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(5154), 1, sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7843), 1, - anon_sym_RBRACE, - STATE(1468), 1, + STATE(2459), 1, aux_sym__types_body_repeat2, - STATE(4235), 1, + STATE(4393), 1, sym_comment, - [121420] = 6, + ACTIONS(8108), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [134358] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7845), 1, + ACTIONS(6822), 1, + anon_sym_LPAREN2, + ACTIONS(8110), 1, anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(4236), 1, + ACTIONS(8112), 1, + sym__entry_separator, + STATE(4394), 1, sym_comment, - [121439] = 3, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + [134377] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4237), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + ACTIONS(8114), 1, + anon_sym_DOT_DOT2, + STATE(4395), 1, sym_comment, - ACTIONS(7847), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121452] = 6, + ACTIONS(8116), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [134394] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7849), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(4238), 1, + ACTIONS(8118), 1, + anon_sym_DQUOTE, + ACTIONS(8120), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(4396), 2, sym_comment, - [121471] = 6, + aux_sym_string_content_repeat1, + [134409] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7851), 1, - anon_sym_COLON, - ACTIONS(7853), 1, - anon_sym_GT2, - ACTIONS(7855), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2094), 1, sym__entry_separator, - STATE(4239), 1, + ACTIONS(2096), 1, + anon_sym_RBRACE, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + STATE(4397), 1, sym_comment, - STATE(4709), 1, - sym__collection_annotation, - [121490] = 3, + [134428] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4240), 1, + ACTIONS(7605), 1, + anon_sym_RPAREN, + STATE(4398), 1, sym_comment, - ACTIONS(7847), 4, + STATE(4444), 1, + aux_sym__block_body_repeat1, + ACTIONS(8123), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121503] = 3, + [134445] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4241), 1, + STATE(4399), 1, + sym_comment, + ACTIONS(7647), 4, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + anon_sym_AT, + [134458] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4400), 1, sym_comment, - ACTIONS(7741), 4, + ACTIONS(8125), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121516] = 3, + [134471] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5154), 1, + sym__entry_separator, + STATE(2457), 1, + aux_sym__types_body_repeat2, + STATE(4401), 1, + sym_comment, + ACTIONS(8108), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [134488] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4242), 1, + STATE(4402), 1, sym_comment, - ACTIONS(7034), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121529] = 3, + ACTIONS(8035), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [134501] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4243), 1, + STATE(4403), 1, sym_comment, - ACTIONS(7741), 4, + ACTIONS(7492), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121542] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [134514] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4244), 1, + STATE(4404), 1, sym_comment, - ACTIONS(7751), 4, + ACTIONS(8127), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121555] = 4, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [134527] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4245), 1, + STATE(4405), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, + ACTIONS(7522), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [134540] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1750), 1, + anon_sym_RBRACE, + ACTIONS(1856), 1, sym__entry_separator, - ACTIONS(1804), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [121570] = 3, + ACTIONS(2746), 1, + anon_sym_LPAREN2, + ACTIONS(2748), 1, + sym__unquoted_pattern_in_record, + STATE(4406), 1, + sym_comment, + [134559] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4246), 1, + STATE(4407), 1, sym_comment, - ACTIONS(6894), 4, + ACTIONS(4516), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [121583] = 6, - ACTIONS(103), 1, + [134572] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7857), 1, - anon_sym_RBRACK, - ACTIONS(7859), 1, - sym__entry_separator, - STATE(4247), 1, + ACTIONS(2748), 1, + sym__unquoted_pattern, + STATE(4408), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [121602] = 3, + ACTIONS(7522), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [134587] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4248), 1, + ACTIONS(8092), 1, + anon_sym_DOT_DOT2, + ACTIONS(8129), 1, + anon_sym_LBRACE, + STATE(4409), 1, + sym_comment, + ACTIONS(8094), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [134604] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4410), 1, sym_comment, - ACTIONS(6922), 4, + ACTIONS(4530), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [121615] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACE, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(4249), 1, - sym_comment, - [121634] = 3, + [134617] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4250), 1, + STATE(4411), 1, sym_comment, - ACTIONS(7861), 4, + ACTIONS(8131), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121647] = 3, + [134630] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4251), 1, + STATE(4412), 1, sym_comment, - ACTIONS(7863), 4, + ACTIONS(8131), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121660] = 3, + [134643] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4252), 1, + STATE(4413), 1, sym_comment, - ACTIONS(7865), 4, + ACTIONS(8133), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121673] = 6, + [134656] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACE, - ACTIONS(1018), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2715), 1, sym__entry_separator, - ACTIONS(2583), 1, + ACTIONS(2717), 1, + anon_sym_RBRACK, + ACTIONS(2804), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(4253), 1, - sym_comment, - [121692] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4254), 1, + STATE(4414), 1, sym_comment, - ACTIONS(7002), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121705] = 5, + [134675] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7812), 1, + ACTIONS(2114), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8135), 1, anon_sym_DOT_DOT2, - ACTIONS(7867), 1, - anon_sym_LBRACE, - STATE(4255), 1, + STATE(4415), 1, sym_comment, - ACTIONS(7814), 2, + ACTIONS(8137), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121722] = 6, + [134692] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(5542), 1, anon_sym_LPAREN2, - ACTIONS(7633), 1, - anon_sym_RBRACE, - ACTIONS(7635), 1, + ACTIONS(6287), 1, sym__entry_separator, - STATE(4256), 1, + ACTIONS(6289), 1, + anon_sym_RBRACE, + STATE(4416), 1, sym_comment, - STATE(4631), 1, + STATE(5189), 1, sym__expr_parenthesized_immediate, - [121741] = 3, + [134711] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4257), 1, + STATE(4417), 1, sym_comment, - ACTIONS(7869), 4, + ACTIONS(8139), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121754] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7871), 1, - anon_sym_DQUOTE, - STATE(4089), 1, - aux_sym_string_content_repeat1, - STATE(4258), 1, - sym_comment, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [121771] = 3, + [134724] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4259), 1, + STATE(4418), 1, sym_comment, - ACTIONS(7873), 4, + ACTIONS(8139), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121784] = 6, + [134737] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7875), 1, - anon_sym_RBRACK, - ACTIONS(7877), 1, + ACTIONS(4720), 1, sym__entry_separator, - STATE(4260), 1, + ACTIONS(8141), 1, + anon_sym_LBRACK, + ACTIONS(8143), 1, + anon_sym_RBRACK, + STATE(2074), 1, + aux_sym__types_body_repeat2, + STATE(4419), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [121803] = 5, + [134756] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7879), 1, - anon_sym_RBRACK, - STATE(3371), 1, - aux_sym_parameter_repeat2, - STATE(4261), 1, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(4420), 1, sym_comment, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - [121820] = 6, - ACTIONS(103), 1, + ACTIONS(1014), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [134771] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2637), 1, - anon_sym_RBRACK, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_list, - STATE(4262), 1, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(4421), 1, sym_comment, - [121839] = 6, + ACTIONS(1032), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [134786] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1619), 1, + STATE(4422), 1, + sym_comment, + ACTIONS(1694), 4, anon_sym_RBRACK, - ACTIONS(1706), 1, sym__entry_separator, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - STATE(4263), 1, - sym_comment, - [121858] = 5, - ACTIONS(103), 1, + sym__table_head_separator, + anon_sym_DOT2, + [134799] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - STATE(4264), 1, + ACTIONS(7637), 1, + anon_sym_RPAREN, + STATE(4423), 1, sym_comment, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [121875] = 3, + STATE(4444), 1, + aux_sym__block_body_repeat1, + ACTIONS(8123), 2, + sym__newline, + anon_sym_SEMI, + [134816] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4265), 1, + STATE(4424), 1, sym_comment, - ACTIONS(7751), 4, + ACTIONS(8145), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121888] = 3, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [134829] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4266), 1, + STATE(4425), 1, sym_comment, - ACTIONS(1520), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [121901] = 6, + ACTIONS(1956), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1958), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [134844] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, + ACTIONS(8147), 1, anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3028), 1, + STATE(3438), 1, + sym__blosure, + STATE(4426), 1, + sym_comment, + STATE(3567), 2, sym_block, - STATE(4267), 1, + sym_val_closure, + [134861] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4720), 1, + sym__entry_separator, + ACTIONS(8141), 1, + anon_sym_LBRACK, + ACTIONS(8149), 1, + anon_sym_RBRACK, + STATE(2074), 1, + aux_sym__types_body_repeat2, + STATE(4427), 1, sym_comment, - [121920] = 3, + [134880] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4268), 1, + STATE(4428), 1, sym_comment, - ACTIONS(4376), 4, - sym__newline, + ACTIONS(8151), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [134893] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2748), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7522), 1, + sym__entry_separator, + STATE(4429), 1, + sym_comment, + ACTIONS(7683), 2, anon_sym_RBRACK, - anon_sym_COMMA, anon_sym_DOT_DOT, - [121933] = 3, + [134910] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4269), 1, + STATE(4430), 1, sym_comment, - ACTIONS(7881), 4, + ACTIONS(8153), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121946] = 3, + [134923] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4270), 1, + STATE(4431), 1, sym_comment, - ACTIONS(7883), 4, + ACTIONS(7244), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121959] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, anon_sym_LBRACE, - STATE(3069), 1, - sym_block, - STATE(4267), 1, - aux_sym__repeat_newline, - STATE(4271), 1, - sym_comment, - [121978] = 6, + [134936] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + STATE(4432), 1, + sym_comment, + ACTIONS(7214), 4, + ts_builtin_sym_end, sym__newline, - ACTIONS(3778), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3071), 1, - sym_block, - STATE(4272), 1, - sym_comment, - [121997] = 6, + [134949] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - STATE(3768), 1, - sym_parameter_parens, - STATE(3769), 1, - sym_parameter_bracks, - STATE(4273), 1, + STATE(4433), 1, sym_comment, - [122016] = 3, + ACTIONS(8155), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [134962] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(4274), 1, + STATE(4434), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(1657), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [122029] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5804), 1, - sym__entry_separator, - ACTIONS(5806), 1, - anon_sym_RBRACE, - STATE(4275), 1, - sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [122048] = 3, + [134975] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4276), 1, + STATE(4435), 1, sym_comment, - ACTIONS(5241), 4, + ACTIONS(5683), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [122061] = 6, + [134988] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4436), 1, + sym_comment, + ACTIONS(8157), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [135001] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(2108), 1, anon_sym_LPAREN2, - ACTIONS(5808), 1, + ACTIONS(2114), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2750), 1, sym__entry_separator, - ACTIONS(5810), 1, - anon_sym_RBRACE, - STATE(4277), 1, + ACTIONS(2752), 1, + anon_sym_RBRACK, + STATE(4437), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [122080] = 5, - ACTIONS(103), 1, + [135020] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7798), 1, - sym__space, - STATE(4198), 1, - aux_sym_attribute_repeat1, - STATE(4278), 1, + STATE(4438), 1, sym_comment, - ACTIONS(7885), 2, + ACTIONS(8159), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [122097] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [135033] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(2748), 1, + sym__unquoted_pattern, + STATE(4439), 1, + sym_comment, + ACTIONS(1856), 3, anon_sym_LBRACK, - ACTIONS(7057), 1, anon_sym_LPAREN, - STATE(3753), 1, - sym_parameter_parens, - STATE(3754), 1, - sym_parameter_bracks, - STATE(4279), 1, + anon_sym_DASH_DASH, + [135048] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2104), 1, + sym__entry_separator, + ACTIONS(2106), 1, + anon_sym_RBRACK, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern_in_list, + STATE(4440), 1, sym_comment, - [122116] = 6, - ACTIONS(3), 1, + [135067] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3040), 1, - sym_block, - STATE(4272), 1, - aux_sym__repeat_newline, - STATE(4280), 1, + ACTIONS(8161), 1, + anon_sym_LPAREN, + STATE(4441), 1, sym_comment, - [122135] = 3, + ACTIONS(8163), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [135082] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4281), 1, + ACTIONS(2768), 1, + sym__unquoted_pattern, + STATE(4442), 1, sym_comment, - ACTIONS(6115), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT2, - anon_sym_LBRACE, - [122148] = 4, + ACTIONS(2762), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [135097] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5154), 1, + sym__entry_separator, + STATE(2466), 1, + aux_sym__types_body_repeat2, + STATE(4443), 1, + sym_comment, + ACTIONS(7786), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [135114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3077), 1, + ACTIONS(3332), 1, anon_sym_RPAREN, - ACTIONS(7887), 2, + ACTIONS(8165), 2, sym__newline, anon_sym_SEMI, - STATE(4282), 2, + STATE(4444), 2, sym_comment, aux_sym__block_body_repeat1, - [122163] = 3, + [135129] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4283), 1, + ACTIONS(2665), 1, + sym__unquoted_pattern, + STATE(4445), 1, sym_comment, - ACTIONS(7890), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122176] = 4, + ACTIONS(2663), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [135144] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4284), 1, - sym_comment, - ACTIONS(7892), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7894), 2, - anon_sym_LPAREN2, + ACTIONS(2762), 1, sym__entry_separator, - [122191] = 3, + ACTIONS(2764), 1, + anon_sym_RBRACE, + ACTIONS(2766), 1, + anon_sym_LPAREN2, + ACTIONS(2768), 1, + sym__unquoted_pattern_in_record, + STATE(4446), 1, + sym_comment, + [135163] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4285), 1, + STATE(4447), 1, sym_comment, - ACTIONS(7896), 4, - anon_sym_if, + ACTIONS(8168), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122204] = 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [135176] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(8170), 1, + anon_sym_COLON, + ACTIONS(8172), 1, + anon_sym_GT2, + ACTIONS(8174), 1, sym__entry_separator, - ACTIONS(2569), 1, - anon_sym_RBRACK, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_list, - STATE(4286), 1, + STATE(4448), 1, sym_comment, - [122223] = 3, + STATE(4832), 1, + sym__collection_annotation, + [135195] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4287), 1, + STATE(4449), 1, sym_comment, - ACTIONS(7898), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122236] = 3, - ACTIONS(3), 1, + ACTIONS(7350), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [135208] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4288), 1, + ACTIONS(2818), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2828), 1, + anon_sym_COLON2, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(4450), 1, sym_comment, - ACTIONS(7900), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122249] = 3, + STATE(4500), 1, + sym_block, + [135227] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4289), 1, + STATE(4451), 1, sym_comment, - ACTIONS(7902), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122262] = 5, + ACTIONS(1702), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [135240] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(5154), 1, sym__entry_separator, - STATE(2234), 1, + STATE(2455), 1, aux_sym__types_body_repeat2, - STATE(4290), 1, + STATE(4452), 1, sym_comment, - ACTIONS(7315), 2, + ACTIONS(7628), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [122279] = 4, + [135257] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4291), 1, - sym_comment, - ACTIONS(1726), 2, + ACTIONS(5542), 1, anon_sym_LPAREN2, + ACTIONS(6291), 1, sym__entry_separator, - ACTIONS(1728), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [122294] = 4, + ACTIONS(6293), 1, + anon_sym_RBRACE, + STATE(4453), 1, + sym_comment, + STATE(5189), 1, + sym__expr_parenthesized_immediate, + [135276] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(4292), 1, + ACTIONS(5542), 1, + anon_sym_LPAREN2, + ACTIONS(7950), 1, + anon_sym_RBRACE, + ACTIONS(7952), 1, + sym__entry_separator, + STATE(4454), 1, sym_comment, - ACTIONS(7906), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [122309] = 3, + STATE(4915), 1, + sym__expr_parenthesized_immediate, + [135295] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4293), 1, + STATE(4455), 1, sym_comment, - ACTIONS(7908), 4, - anon_sym_if, + ACTIONS(8176), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122322] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [135308] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4294), 1, + STATE(4456), 1, sym_comment, - ACTIONS(7910), 4, + ACTIONS(8178), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122335] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2235), 1, - aux_sym__types_body_repeat2, - STATE(4295), 1, - sym_comment, - ACTIONS(7912), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122352] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2236), 1, - aux_sym__types_body_repeat2, - STATE(4296), 1, - sym_comment, - ACTIONS(7912), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122369] = 3, + [135321] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4297), 1, + STATE(4457), 1, sym_comment, - ACTIONS(7914), 4, + ACTIONS(8180), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122382] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7916), 1, - anon_sym_RBRACE, - STATE(1480), 1, - aux_sym__types_body_repeat2, - STATE(4298), 1, - sym_comment, - [122401] = 3, + [135334] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4299), 1, + ACTIONS(2665), 1, + sym__unquoted_pattern, + STATE(4458), 1, sym_comment, - ACTIONS(7204), 4, - anon_sym_if, + ACTIONS(2663), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122414] = 6, + [135349] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4459), 1, + sym_comment, + ACTIONS(7327), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [135362] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, + ACTIONS(2818), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2828), 1, anon_sym_COLON2, - ACTIONS(7918), 1, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(4430), 1, + sym_block, + STATE(4460), 1, + sym_comment, + [135381] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4461), 1, + sym_comment, + ACTIONS(8182), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1484), 1, - aux_sym__types_body_repeat2, - STATE(4300), 1, + [135394] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2294), 1, + anon_sym_LBRACE, + ACTIONS(8184), 1, + anon_sym_DOT_DOT2, + STATE(4462), 1, sym_comment, - [122433] = 4, + ACTIONS(8186), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [135411] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, + ACTIONS(7242), 1, sym__unquoted_pattern, - STATE(4301), 1, + STATE(4463), 1, sym_comment, - ACTIONS(1706), 3, + ACTIONS(904), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [122448] = 3, + [135426] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4302), 1, + ACTIONS(2318), 1, + anon_sym_LBRACE, + ACTIONS(8188), 1, + anon_sym_DOT_DOT2, + STATE(4464), 1, sym_comment, - ACTIONS(7920), 4, - anon_sym_if, + ACTIONS(8190), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [135443] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7641), 1, sym__newline, + ACTIONS(7643), 1, anon_sym_PIPE, + ACTIONS(8192), 1, anon_sym_EQ_GT, - [122461] = 4, - ACTIONS(103), 1, + STATE(4352), 1, + aux_sym_match_pattern_repeat1, + STATE(4465), 1, + sym_comment, + [135462] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4303), 1, + STATE(4466), 1, sym_comment, - ACTIONS(1870), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1872), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [122476] = 3, + ACTIONS(8194), 4, + anon_sym_EQ, + anon_sym_in, + sym__newline, + anon_sym_COLON, + [135475] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4304), 1, + STATE(4467), 1, + sym_comment, + ACTIONS(1670), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [135488] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4468), 1, sym_comment, - ACTIONS(7922), 4, + ACTIONS(8196), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122489] = 5, + [135501] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4469), 1, + sym_comment, + ACTIONS(1674), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [135514] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4470), 1, + sym_comment, + ACTIONS(8198), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [135527] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4471), 1, + sym_comment, + ACTIONS(8200), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [135540] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(3533), 1, + anon_sym_SEMI, + STATE(1429), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4472), 1, + sym_comment, + STATE(4623), 1, + aux_sym__repeat_newline, + [135559] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1750), 1, + anon_sym_RBRACK, + ACTIONS(1856), 1, + sym__entry_separator, + ACTIONS(2746), 1, + anon_sym_LPAREN2, + ACTIONS(2748), 1, + sym__unquoted_pattern_in_list, + STATE(4473), 1, + sym_comment, + [135578] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7230), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - STATE(3114), 1, - sym__blosure, - STATE(4305), 1, + ACTIONS(8202), 1, + anon_sym_DOT_DOT2, + STATE(4474), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [122506] = 4, + ACTIONS(8204), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [135595] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4306), 1, + STATE(4475), 1, sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, + ACTIONS(1920), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(5924), 2, + ACTIONS(1922), 2, anon_sym_RBRACK, - anon_sym_GT2, - [122521] = 3, + sym__unquoted_pattern_in_list, + [135610] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4307), 1, + STATE(4476), 1, sym_comment, - ACTIONS(7924), 4, + ACTIONS(8206), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122534] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5328), 1, - anon_sym_COLON2, - STATE(4308), 1, - sym_comment, - STATE(4319), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5322), 2, - sym__newline, - sym__space, - [122551] = 3, + [135623] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4309), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + STATE(4477), 1, sym_comment, - ACTIONS(7210), 4, - anon_sym_if, + ACTIONS(2094), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122564] = 4, + [135638] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4310), 1, + ACTIONS(2232), 1, + anon_sym_LBRACE, + ACTIONS(8208), 1, + anon_sym_DOT_DOT2, + STATE(4478), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(8210), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122579] = 3, + [135655] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4311), 1, + STATE(4479), 1, sym_comment, - ACTIONS(7926), 4, + ACTIONS(8212), 4, + anon_sym_EQ, + anon_sym_in, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_COLON, + [135668] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4720), 1, + sym__entry_separator, + ACTIONS(8141), 1, + anon_sym_LBRACK, + ACTIONS(8214), 1, + anon_sym_RBRACK, + STATE(2074), 1, + aux_sym__types_body_repeat2, + STATE(4480), 1, + sym_comment, + [135687] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6822), 1, + anon_sym_LPAREN2, + ACTIONS(8216), 1, + anon_sym_RBRACK, + ACTIONS(8218), 1, + sym__entry_separator, + STATE(4481), 1, + sym_comment, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + [135706] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3802), 1, + anon_sym_COLON2, + ACTIONS(8220), 2, + sym__newline, + sym__space, + STATE(4482), 2, + sym_comment, + aux_sym_pipe_element_parenthesized_repeat1, + [135721] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5542), 1, + anon_sym_LPAREN2, + ACTIONS(7832), 1, anon_sym_RBRACE, - [122592] = 6, + ACTIONS(7834), 1, + sym__entry_separator, + STATE(4483), 1, + sym_comment, + STATE(4915), 1, + sym__expr_parenthesized_immediate, + [135740] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6822), 1, + anon_sym_LPAREN2, + ACTIONS(8223), 1, + anon_sym_RBRACK, + ACTIONS(8225), 1, + sym__entry_separator, + STATE(4484), 1, + sym_comment, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + [135759] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3041), 1, - sym_block, - STATE(4312), 1, + STATE(4485), 1, sym_comment, - [122611] = 3, + ACTIONS(1678), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [135772] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4313), 1, + STATE(4486), 1, sym_comment, - ACTIONS(7928), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122624] = 4, + ACTIONS(1682), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [135785] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4314), 1, + STATE(4487), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122639] = 3, + ACTIONS(1688), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [135798] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4315), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(3184), 1, + sym_block, + STATE(4240), 1, + aux_sym__repeat_newline, + STATE(4488), 1, sym_comment, - ACTIONS(7930), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122652] = 3, + [135817] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4316), 1, + STATE(4489), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(8227), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122665] = 4, + [135830] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4317), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(3185), 1, + sym_block, + STATE(4490), 1, sym_comment, - ACTIONS(1870), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122680] = 4, + [135849] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1558), 1, + ACTIONS(4720), 1, sym__entry_separator, - STATE(4318), 1, - sym_comment, - ACTIONS(1556), 3, + ACTIONS(8141), 1, + anon_sym_LBRACK, + ACTIONS(8229), 1, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [122695] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7932), 1, - anon_sym_COLON2, - STATE(4181), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(4319), 1, + STATE(2074), 1, + aux_sym__types_body_repeat2, + STATE(4491), 1, sym_comment, - ACTIONS(5322), 2, - sym__newline, - sym__space, - [122712] = 3, + [135868] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4320), 1, + STATE(4492), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(8231), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122725] = 3, + [135881] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4321), 1, + STATE(4493), 1, sym_comment, - ACTIONS(7804), 4, + ACTIONS(8233), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122738] = 3, + [135894] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4322), 1, + STATE(4494), 1, sym_comment, - ACTIONS(7804), 4, + ACTIONS(8235), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122751] = 5, + [135907] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7934), 1, - anon_sym_DOT_DOT2, - STATE(4323), 1, + STATE(4495), 1, sym_comment, - ACTIONS(7936), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122768] = 3, + ACTIONS(8237), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [135920] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4324), 1, + STATE(4496), 1, sym_comment, - ACTIONS(7938), 4, + ACTIONS(8239), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122781] = 3, + [135933] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4325), 1, + ACTIONS(7370), 1, + anon_sym_LBRACK, + ACTIONS(7372), 1, + anon_sym_LPAREN, + STATE(3999), 1, + sym_parameter_parens, + STATE(4000), 1, + sym_parameter_bracks, + STATE(4497), 1, sym_comment, - ACTIONS(7940), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122794] = 3, - ACTIONS(3), 1, + [135952] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4326), 1, + ACTIONS(6822), 1, + anon_sym_LPAREN2, + ACTIONS(8241), 1, + anon_sym_RBRACK, + ACTIONS(8243), 1, + sym__entry_separator, + STATE(4498), 1, sym_comment, - ACTIONS(7942), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122807] = 3, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + [135971] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4327), 1, + STATE(4499), 1, sym_comment, - ACTIONS(7944), 4, + ACTIONS(8096), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122820] = 3, + [135984] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4328), 1, + STATE(4500), 1, sym_comment, - ACTIONS(7946), 4, + ACTIONS(8245), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122833] = 3, - ACTIONS(3), 1, + [135997] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4329), 1, + ACTIONS(8247), 1, + anon_sym_COLON2, + STATE(4482), 1, + aux_sym_pipe_element_parenthesized_repeat1, + STATE(4501), 1, sym_comment, - ACTIONS(7948), 4, + ACTIONS(5766), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122846] = 3, + sym__space, + [136014] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4330), 1, + ACTIONS(3318), 1, + ts_builtin_sym_end, + STATE(1425), 1, + aux_sym__block_body_repeat1, + STATE(4502), 1, sym_comment, - ACTIONS(7938), 4, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122859] = 3, + [136031] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4331), 1, + STATE(4503), 1, sym_comment, - ACTIONS(7950), 4, + ACTIONS(8196), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122872] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4332), 1, - sym_comment, - ACTIONS(4078), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [122885] = 3, + [136044] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4333), 1, + STATE(4504), 1, sym_comment, - ACTIONS(4080), 4, - ts_builtin_sym_end, + ACTIONS(8227), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [122898] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [136057] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4334), 1, + STATE(4505), 1, sym_comment, - ACTIONS(7952), 4, + ACTIONS(8096), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122911] = 4, + [136070] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1716), 1, sym__entry_separator, - STATE(4335), 1, + STATE(4506), 1, sym_comment, - ACTIONS(1868), 3, + ACTIONS(1714), 3, anon_sym_RBRACK, anon_sym_GT2, - anon_sym_RBRACE, - [122926] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [136085] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4336), 1, - sym_comment, - ACTIONS(7954), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5542), 1, + anon_sym_LPAREN2, + ACTIONS(6295), 1, + sym__entry_separator, + ACTIONS(6297), 1, anon_sym_RBRACE, - [122939] = 3, - ACTIONS(3), 1, + STATE(4507), 1, + sym_comment, + STATE(5189), 1, + sym__expr_parenthesized_immediate, + [136104] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4337), 1, + ACTIONS(6822), 1, + anon_sym_LPAREN2, + ACTIONS(7666), 1, + anon_sym_RBRACK, + ACTIONS(7674), 1, + sym__entry_separator, + STATE(4508), 1, sym_comment, - ACTIONS(7956), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122952] = 3, - ACTIONS(3), 1, + STATE(4823), 1, + sym__expr_parenthesized_immediate, + [136123] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4338), 1, + ACTIONS(8249), 1, + anon_sym_LPAREN, + STATE(4509), 1, sym_comment, - ACTIONS(7958), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122965] = 3, + ACTIONS(8251), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [136138] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4339), 1, + STATE(4510), 1, sym_comment, - ACTIONS(7960), 4, + ACTIONS(8253), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122978] = 3, - ACTIONS(3), 1, + [136151] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4340), 1, + ACTIONS(2046), 1, + sym__entry_separator, + STATE(4511), 1, sym_comment, - ACTIONS(7954), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2048), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [136166] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1014), 1, + sym__entry_separator, + ACTIONS(1016), 1, anon_sym_RBRACE, - [122991] = 3, + ACTIONS(2770), 1, + anon_sym_LPAREN2, + ACTIONS(2772), 1, + sym__unquoted_pattern_in_record, + STATE(4512), 1, + sym_comment, + [136185] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4341), 1, + STATE(4513), 1, sym_comment, - ACTIONS(7952), 4, + ACTIONS(8227), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123004] = 4, + [136198] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - STATE(4342), 1, + STATE(4514), 1, sym_comment, - ACTIONS(1726), 3, + ACTIONS(8255), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123019] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [136211] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4343), 1, + STATE(4515), 1, sym_comment, - ACTIONS(6936), 4, + ACTIONS(7268), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [123032] = 5, + [136224] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7962), 1, - sym__newline, - ACTIONS(7965), 1, - anon_sym_PIPE, - ACTIONS(7968), 1, - anon_sym_EQ_GT, - STATE(4344), 2, + ACTIONS(1920), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + sym__unquoted_pattern, + ACTIONS(8257), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8259), 1, + aux_sym__immediate_decimal_token5, + STATE(4516), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [123049] = 3, + [136243] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4345), 1, + STATE(4517), 1, sym_comment, - ACTIONS(7970), 4, + ACTIONS(8239), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123062] = 3, - ACTIONS(3), 1, + [136256] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4346), 1, - sym_comment, - ACTIONS(7970), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(1760), 1, + anon_sym_COLON2, + ACTIONS(8261), 1, anon_sym_RBRACE, - [123075] = 3, - ACTIONS(3), 1, + STATE(1704), 1, + aux_sym__types_body_repeat2, + STATE(4518), 1, + sym_comment, + [136275] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4347), 1, + ACTIONS(2818), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2828), 1, + anon_sym_COLON2, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(3210), 1, + sym_block, + STATE(4519), 1, sym_comment, - ACTIONS(7827), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123088] = 3, + [136294] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4348), 1, + STATE(4520), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(8255), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123101] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(4349), 1, - sym_comment, - ACTIONS(1802), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123116] = 6, + [136307] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, + ACTIONS(1024), 1, + anon_sym_RBRACE, + ACTIONS(1032), 1, sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACK, - ACTIONS(1968), 1, + ACTIONS(2770), 1, anon_sym_LPAREN2, - STATE(4350), 1, + ACTIONS(2772), 1, + sym__unquoted_pattern_in_record, + STATE(4521), 1, + sym_comment, + [136326] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4522), 1, sym_comment, - [123135] = 3, + ACTIONS(1920), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1922), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [136341] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4351), 1, + STATE(4523), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(8239), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123148] = 6, + [136354] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4524), 1, + sym_comment, + ACTIONS(7300), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [136367] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(3214), 1, + STATE(3495), 1, sym_block, - STATE(4352), 1, + STATE(4525), 1, sym_comment, - STATE(4356), 1, + STATE(4531), 1, aux_sym__repeat_newline, - [123167] = 4, + [136386] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2366), 1, + sym__entry_separator, + STATE(4526), 1, + sym_comment, + ACTIONS(2368), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [136401] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(4353), 1, + ACTIONS(479), 1, + ts_builtin_sym_end, + STATE(1416), 1, + aux_sym__block_body_repeat1, + STATE(4527), 1, sym_comment, - ACTIONS(1870), 3, + ACTIONS(55), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123182] = 6, + anon_sym_SEMI, + [136418] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8009), 1, + anon_sym_LBRACK, + ACTIONS(8011), 1, + anon_sym_LPAREN, + STATE(4188), 1, + sym_parameter_parens, + STATE(4189), 1, + sym_parameter_bracks, + STATE(4528), 1, + sym_comment, + [136437] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACK, - ACTIONS(2583), 1, + ACTIONS(2108), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, - STATE(4354), 1, + ACTIONS(2114), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2750), 1, + sym__entry_separator, + ACTIONS(2752), 1, + anon_sym_RBRACE, + STATE(4529), 1, sym_comment, - [123201] = 6, + [136456] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(3317), 1, + STATE(3499), 1, sym_block, - STATE(4355), 1, + STATE(4530), 1, sym_comment, - STATE(4358), 1, + STATE(4533), 1, aux_sym__repeat_newline, - [123220] = 6, + [136475] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(3318), 1, + STATE(3500), 1, sym_block, - STATE(4356), 1, + STATE(4531), 1, sym_comment, - [123239] = 6, - ACTIONS(103), 1, + [136494] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACK, - ACTIONS(1018), 1, - sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, - STATE(4357), 1, + STATE(4532), 1, sym_comment, - [123258] = 6, + ACTIONS(8239), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [136507] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(3320), 1, + STATE(3502), 1, sym_block, - STATE(4358), 1, + STATE(4533), 1, sym_comment, - [123277] = 6, + [136526] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + STATE(4534), 1, + sym_comment, + ACTIONS(1956), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7972), 1, + ACTIONS(1958), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [136541] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2338), 1, + sym__entry_separator, + STATE(4535), 1, + sym_comment, + ACTIONS(2340), 3, anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(4359), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [136556] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8263), 1, + anon_sym_RPAREN, + STATE(4444), 1, + aux_sym__block_body_repeat1, + STATE(4536), 1, + sym_comment, + ACTIONS(8123), 2, + sym__newline, + anon_sym_SEMI, + [136573] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4537), 1, sym_comment, - [123296] = 6, + ACTIONS(2050), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2052), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [136588] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(3183), 1, + STATE(3411), 1, sym_block, - STATE(4360), 1, + STATE(4538), 1, sym_comment, - STATE(4362), 1, + STATE(4540), 1, aux_sym__repeat_newline, - [123315] = 6, + [136607] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(3184), 1, + STATE(3412), 1, sym_block, - STATE(4361), 1, + STATE(4539), 1, sym_comment, - STATE(4363), 1, + STATE(4541), 1, aux_sym__repeat_newline, - [123334] = 6, + [136626] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(3185), 1, + STATE(3413), 1, sym_block, - STATE(4362), 1, + STATE(4540), 1, sym_comment, - [123353] = 6, + [136645] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3018), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(675), 1, aux_sym__repeat_newline, - STATE(3187), 1, + STATE(3415), 1, sym_block, - STATE(4363), 1, - sym_comment, - [123372] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4364), 1, + STATE(4541), 1, sym_comment, - ACTIONS(7974), 4, - anon_sym_EQ, - anon_sym_in, - sym__newline, - anon_sym_COLON, - [123385] = 5, + [136664] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(2796), 1, sym__entry_separator, - STATE(2232), 1, - aux_sym__types_body_repeat2, - STATE(4365), 1, + STATE(4542), 1, sym_comment, - ACTIONS(7448), 2, + ACTIONS(2798), 3, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [123402] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4366), 1, - sym_comment, - ACTIONS(7032), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [123415] = 5, + anon_sym_GT2, + anon_sym_RBRACE, + [136679] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(2104), 1, sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(4367), 1, + ACTIONS(2106), 1, + anon_sym_RBRACE, + ACTIONS(2108), 1, + anon_sym_LPAREN2, + ACTIONS(2114), 1, + sym__unquoted_pattern_in_record, + STATE(4543), 1, sym_comment, - [123431] = 3, + [136698] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(4368), 1, - sym_comment, - ACTIONS(1860), 3, - anon_sym_RBRACK, + ACTIONS(7492), 1, sym__entry_separator, - sym__table_head_separator, - [123443] = 3, + ACTIONS(7778), 1, + anon_sym_DOT_DOT2, + STATE(4544), 1, + sym_comment, + ACTIONS(7780), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [136715] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4369), 1, + STATE(4545), 1, sym_comment, - ACTIONS(7976), 3, + ACTIONS(8227), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [123455] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [136728] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4370), 1, + ACTIONS(2016), 1, + sym__entry_separator, + STATE(4546), 1, sym_comment, - ACTIONS(7978), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123467] = 3, + ACTIONS(2018), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [136743] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4371), 1, + ACTIONS(7370), 1, + anon_sym_LBRACK, + ACTIONS(7372), 1, + anon_sym_LPAREN, + STATE(3955), 1, + sym_parameter_parens, + STATE(3963), 1, + sym_parameter_bracks, + STATE(4547), 1, sym_comment, - ACTIONS(7980), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123479] = 3, + [136762] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4372), 1, + STATE(4548), 1, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8265), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [123491] = 5, + anon_sym_RBRACE, + [136775] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7984), 1, - anon_sym_export, - ACTIONS(7986), 1, - anon_sym_def, - ACTIONS(7988), 1, - anon_sym_extern, - STATE(4373), 1, - sym_comment, - [123507] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(7990), 1, - anon_sym_RBRACK, - STATE(2110), 1, - aux_sym__types_body_repeat2, - STATE(4374), 1, + ACTIONS(1856), 1, + anon_sym_LBRACE, + ACTIONS(8092), 1, + anon_sym_DOT_DOT2, + STATE(4549), 1, sym_comment, - [123523] = 4, + ACTIONS(8094), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [136792] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7992), 1, - anon_sym_BANG, - STATE(4375), 1, + STATE(4550), 1, sym_comment, - ACTIONS(1440), 2, - sym__table_head_separator, - anon_sym_DOT2, - [123537] = 3, + ACTIONS(8267), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [136805] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4376), 1, + STATE(4551), 1, sym_comment, - ACTIONS(7690), 3, + ACTIONS(8133), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123549] = 4, + [136817] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2563), 1, + ACTIONS(2428), 1, sym__entry_separator, - STATE(4377), 1, + STATE(4552), 1, sym_comment, - ACTIONS(2565), 2, + ACTIONS(2430), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [123563] = 5, + [136831] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(4500), 1, + sym_block, + STATE(4553), 1, + sym_comment, + [136847] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(4430), 1, + sym_block, + STATE(4554), 1, + sym_comment, + [136863] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7994), 1, - anon_sym_RBRACK, - ACTIONS(7996), 1, - anon_sym_DOT_DOT, - STATE(4378), 1, + ACTIONS(5542), 1, + anon_sym_LPAREN2, + ACTIONS(6878), 1, + sym__unquoted_pattern_in_record, + STATE(4555), 1, sym_comment, - STATE(4863), 1, - sym__match_pattern_rest, - [123579] = 3, + STATE(4914), 1, + sym__expr_parenthesized_immediate, + [136879] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4379), 1, + ACTIONS(8269), 1, + anon_sym_QMARK2, + STATE(4556), 1, sym_comment, - ACTIONS(7883), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123591] = 4, + ACTIONS(1610), 2, + sym__table_head_separator, + anon_sym_DOT2, + [136893] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2571), 1, - sym__entry_separator, - STATE(4380), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(3210), 1, + sym_block, + STATE(4557), 1, sym_comment, - ACTIONS(2573), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [123605] = 5, + [136909] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7998), 1, - anon_sym_RBRACK, - ACTIONS(8000), 1, - sym_hex_digit, - STATE(4381), 1, + ACTIONS(6601), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6822), 1, + anon_sym_LPAREN2, + STATE(4558), 1, sym_comment, - STATE(4498), 1, - aux_sym_val_binary_repeat1, - [123621] = 3, - ACTIONS(3), 1, + STATE(4891), 1, + sym__expr_parenthesized_immediate, + [136925] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4382), 1, + ACTIONS(4794), 1, + sym__entry_separator, + ACTIONS(8271), 1, + anon_sym_RBRACK, + STATE(2333), 1, + aux_sym__types_body_repeat2, + STATE(4559), 1, sym_comment, - ACTIONS(2092), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123633] = 3, + [136941] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4383), 1, + STATE(4560), 1, sym_comment, - ACTIONS(7861), 3, + ACTIONS(8027), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123645] = 3, + [136953] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4384), 1, + STATE(4561), 1, sym_comment, - ACTIONS(7881), 3, + ACTIONS(8027), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123657] = 3, + [136965] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4385), 1, + STATE(4562), 1, sym_comment, - ACTIONS(7804), 3, + ACTIONS(8168), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123669] = 5, + [136977] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(8273), 1, + sym__table_head_separator, + STATE(4563), 1, + sym_comment, + ACTIONS(1750), 2, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(8002), 1, - anon_sym_RBRACE, - STATE(1464), 1, - aux_sym__types_body_repeat2, - STATE(4386), 1, + [136991] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4564), 1, sym_comment, - [123685] = 3, + ACTIONS(8139), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [137003] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4387), 1, + STATE(4565), 1, sym_comment, - ACTIONS(7690), 3, + ACTIONS(8139), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123697] = 5, + [137015] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(4814), 1, sym__entry_separator, - ACTIONS(8004), 1, - anon_sym_RBRACE, - STATE(1467), 1, + ACTIONS(8275), 1, + anon_sym_RBRACK, + STATE(2222), 1, aux_sym__types_body_repeat2, - STATE(4388), 1, + STATE(4566), 1, sym_comment, - [123713] = 3, + [137031] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4389), 1, + ACTIONS(3343), 1, + anon_sym_RPAREN, + STATE(4567), 1, sym_comment, - ACTIONS(7863), 3, - ts_builtin_sym_end, + ACTIONS(3117), 2, sym__newline, anon_sym_SEMI, - [123725] = 3, + [137045] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8084), 1, + sym__entry_separator, + STATE(4568), 1, + sym_comment, + ACTIONS(7321), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [137059] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4390), 1, + ACTIONS(7639), 1, + anon_sym_if, + ACTIONS(8277), 1, + anon_sym_EQ_GT, + STATE(4569), 1, sym_comment, - ACTIONS(7865), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123737] = 5, + STATE(5053), 1, + sym_match_guard, + [137075] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3454), 1, - sym__newline, - ACTIONS(3456), 1, - sym__space, - STATE(1398), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(4391), 1, + ACTIONS(5122), 1, + sym__entry_separator, + ACTIONS(8279), 1, + anon_sym_RBRACE, + STATE(2446), 1, + aux_sym__types_body_repeat2, + STATE(4570), 1, sym_comment, - [123753] = 3, + [137091] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4392), 1, + STATE(4571), 1, + sym_comment, + ACTIONS(8281), 3, + sym__newline, + anon_sym_LBRACK, + anon_sym_RBRACK, + [137103] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4572), 1, sym_comment, - ACTIONS(7839), 3, + ACTIONS(8206), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123765] = 5, + [137115] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4393), 1, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(8283), 1, + anon_sym_RBRACE, + STATE(1691), 1, + aux_sym__types_body_repeat2, + STATE(4573), 1, sym_comment, - STATE(4416), 1, - sym_block, - [123781] = 3, + [137131] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4394), 1, + ACTIONS(8285), 1, + anon_sym_RBRACK, + ACTIONS(8287), 1, + sym_hex_digit, + STATE(4574), 1, sym_comment, - ACTIONS(7938), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123793] = 3, + STATE(4598), 1, + aux_sym_val_binary_repeat1, + [137147] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4395), 1, + ACTIONS(4446), 1, + anon_sym_AT2, + ACTIONS(8289), 1, + anon_sym_GT2, + STATE(4575), 1, sym_comment, - ACTIONS(7938), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123805] = 4, + STATE(5210), 1, + sym_param_completer, + [137163] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1382), 1, - aux_sym__block_body_repeat1, - STATE(4396), 1, + ACTIONS(8293), 1, + anon_sym_COMMA, + STATE(4576), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - [123819] = 3, + ACTIONS(8291), 2, + anon_sym_RBRACK, + sym_hex_digit, + [137177] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4397), 1, + ACTIONS(8287), 1, + sym_hex_digit, + ACTIONS(8295), 1, + anon_sym_RBRACK, + STATE(4577), 1, sym_comment, - ACTIONS(7804), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123831] = 4, - ACTIONS(3), 1, + STATE(4596), 1, + aux_sym_val_binary_repeat1, + [137193] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7992), 1, - anon_sym_QMARK2, - STATE(4398), 1, + ACTIONS(4720), 1, + sym__entry_separator, + ACTIONS(8297), 1, + anon_sym_RBRACK, + STATE(4491), 1, + aux_sym__types_body_repeat2, + STATE(4578), 1, sym_comment, - ACTIONS(1440), 2, - sym__table_head_separator, - anon_sym_DOT2, - [123845] = 3, + [137209] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4399), 1, + ACTIONS(4337), 1, + anon_sym_LBRACK, + STATE(4579), 1, sym_comment, - ACTIONS(7902), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123857] = 3, + STATE(4594), 1, + sym_val_list, + STATE(4595), 1, + aux_sym__table_body_repeat1, + [137225] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8299), 1, + anon_sym_GT2, + STATE(4580), 1, + sym_comment, + ACTIONS(8301), 2, + anon_sym_AT2, + sym__entry_separator, + [137239] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3657), 1, + sym__entry_separator, + STATE(4581), 1, + sym_comment, + ACTIONS(3659), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [137253] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4814), 1, + sym__entry_separator, + ACTIONS(8303), 1, + anon_sym_RBRACK, + STATE(2238), 1, + aux_sym__types_body_repeat2, + STATE(4582), 1, + sym_comment, + [137269] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4400), 1, + STATE(4583), 1, sym_comment, - ACTIONS(2084), 3, + ACTIONS(4987), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [123869] = 5, - ACTIONS(3), 1, + [137281] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5779), 1, - anon_sym_EQ, - STATE(3239), 1, - sym_param_completer, - STATE(4401), 1, + ACTIONS(3978), 1, + sym__entry_separator, + STATE(4584), 1, sym_comment, - [123885] = 5, + ACTIONS(3980), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [137295] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8006), 1, - anon_sym_GT2, - STATE(4402), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(5487), 1, + sym__unquoted_pattern, + STATE(4585), 1, sym_comment, - STATE(5004), 1, - sym_param_completer, - [123901] = 3, + STATE(4878), 1, + sym__expr_parenthesized_immediate, + [137311] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8056), 1, + sym__entry_separator, + STATE(4586), 1, + sym_comment, + ACTIONS(8305), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [137325] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8159), 1, + sym__entry_separator, + STATE(4587), 1, + sym_comment, + ACTIONS(8307), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [137339] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8145), 1, + sym__entry_separator, + STATE(4588), 1, + sym_comment, + ACTIONS(8309), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [137353] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4403), 1, + STATE(4589), 1, sym_comment, - ACTIONS(7924), 3, - ts_builtin_sym_end, + ACTIONS(8311), 3, sym__newline, - anon_sym_SEMI, - [123913] = 5, - ACTIONS(3), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + [137365] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(8313), 1, + anon_sym_POUND_BANG, + ACTIONS(8315), 1, sym__newline, - ACTIONS(3362), 1, - anon_sym_SEMI, - STATE(540), 1, + STATE(4590), 1, + sym_comment, + STATE(4785), 1, aux_sym__repeat_newline, - STATE(4404), 1, + [137381] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4814), 1, + sym__entry_separator, + ACTIONS(8317), 1, + anon_sym_RBRACK, + STATE(2239), 1, + aux_sym__types_body_repeat2, + STATE(4591), 1, sym_comment, - [123929] = 3, - ACTIONS(3), 1, + [137397] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4405), 1, + ACTIONS(4720), 1, + sym__entry_separator, + ACTIONS(8319), 1, + anon_sym_RBRACK, + STATE(4419), 1, + aux_sym__types_body_repeat2, + STATE(4592), 1, sym_comment, - ACTIONS(8008), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123941] = 3, + [137413] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4406), 1, + ACTIONS(4337), 1, + anon_sym_LBRACK, + STATE(4593), 1, sym_comment, - ACTIONS(7833), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123953] = 5, + STATE(4595), 1, + aux_sym__table_body_repeat1, + STATE(4729), 1, + sym_val_list, + [137429] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4407), 1, + ACTIONS(4720), 1, + sym__entry_separator, + ACTIONS(8321), 1, + anon_sym_RBRACK, + STATE(4480), 1, + aux_sym__types_body_repeat2, + STATE(4594), 1, sym_comment, - STATE(4444), 1, - sym_block, - [123969] = 5, + [137445] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5779), 1, - anon_sym_EQ, - STATE(3241), 1, - sym_param_completer, - STATE(4408), 1, + ACTIONS(8323), 1, + anon_sym_LBRACK, + STATE(4864), 1, + sym_val_list, + STATE(4595), 2, sym_comment, - [123985] = 3, + aux_sym__table_body_repeat1, + [137459] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4409), 1, + ACTIONS(8326), 1, + anon_sym_RBRACK, + ACTIONS(8328), 1, + sym_hex_digit, + STATE(4596), 2, sym_comment, - ACTIONS(7950), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123997] = 3, - ACTIONS(3), 1, + aux_sym_val_binary_repeat1, + [137473] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4410), 1, + ACTIONS(8161), 1, + anon_sym_LPAREN, + STATE(4597), 1, sym_comment, - ACTIONS(7835), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124009] = 4, + ACTIONS(8163), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [137487] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8012), 1, - anon_sym_COMMA, - STATE(4411), 1, + ACTIONS(8287), 1, + sym_hex_digit, + ACTIONS(8331), 1, + anon_sym_RBRACK, + STATE(4596), 1, + aux_sym_val_binary_repeat1, + STATE(4598), 1, sym_comment, - ACTIONS(8010), 2, + [137503] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4814), 1, + sym__entry_separator, + ACTIONS(8333), 1, anon_sym_RBRACK, - sym_hex_digit, - [124023] = 3, + STATE(2200), 1, + aux_sym__types_body_repeat2, + STATE(4599), 1, + sym_comment, + [137519] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4412), 1, + STATE(4600), 1, sym_comment, - ACTIONS(7910), 3, - ts_builtin_sym_end, + ACTIONS(8335), 3, sym__newline, anon_sym_SEMI, - [124035] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + [137531] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8014), 1, + ACTIONS(8035), 1, + sym__entry_separator, + STATE(4601), 1, + sym_comment, + ACTIONS(8337), 2, anon_sym_RBRACK, - STATE(4413), 1, + anon_sym_DOT_DOT, + [137545] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8035), 1, + sym__entry_separator, + STATE(4602), 1, sym_comment, - STATE(4467), 1, - aux_sym_val_binary_repeat1, - [124051] = 4, + ACTIONS(8337), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [137559] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7960), 1, + ACTIONS(8253), 1, sym__entry_separator, - STATE(4414), 1, + STATE(4603), 1, sym_comment, - ACTIONS(6947), 2, + ACTIONS(8339), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [124065] = 3, + [137573] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4415), 1, + STATE(4604), 1, sym_comment, - ACTIONS(7954), 3, - ts_builtin_sym_end, + ACTIONS(8341), 3, sym__newline, anon_sym_SEMI, - [124077] = 3, + anon_sym_RPAREN, + [137585] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4416), 1, + ACTIONS(8343), 1, + anon_sym_export, + ACTIONS(8345), 1, + anon_sym_def, + ACTIONS(8347), 1, + anon_sym_extern, + STATE(4605), 1, sym_comment, - ACTIONS(7869), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124089] = 3, + [137601] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4417), 1, + STATE(4606), 1, sym_comment, - ACTIONS(7954), 3, - ts_builtin_sym_end, + ACTIONS(8349), 3, sym__newline, anon_sym_SEMI, - [124101] = 3, + anon_sym_RPAREN, + [137613] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4418), 1, + STATE(4607), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(8231), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124113] = 3, + [137625] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4419), 1, + STATE(4608), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(8096), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124125] = 3, + [137637] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4420), 1, + STATE(4609), 1, sym_comment, - ACTIONS(7675), 3, + ACTIONS(8096), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124137] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4421), 1, - sym_comment, - ACTIONS(2593), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [124149] = 3, + [137649] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4422), 1, + STATE(4610), 1, sym_comment, - ACTIONS(7675), 3, - ts_builtin_sym_end, + ACTIONS(8351), 3, sym__newline, anon_sym_SEMI, - [124161] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(8016), 1, - anon_sym_COLON, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(4423), 1, - sym_comment, - [124177] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2607), 1, - sym__entry_separator, - STATE(4424), 1, - sym_comment, - ACTIONS(2609), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124191] = 4, + anon_sym_RPAREN, + [137661] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2511), 1, + ACTIONS(1758), 1, sym__entry_separator, - STATE(4425), 1, - sym_comment, - ACTIONS(2513), 2, - anon_sym_RBRACK, + ACTIONS(8353), 1, anon_sym_RBRACE, - [124205] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2515), 1, - sym__entry_separator, - STATE(4426), 1, + STATE(1690), 1, + aux_sym__types_body_repeat2, + STATE(4611), 1, sym_comment, - ACTIONS(2517), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124219] = 3, + [137677] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4427), 1, + STATE(4612), 1, sym_comment, - ACTIONS(7683), 3, + ACTIONS(8245), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124231] = 5, + [137689] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, + ACTIONS(1882), 1, anon_sym_LBRACE, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(8018), 1, + ACTIONS(7520), 1, aux_sym__immediate_decimal_token5, - STATE(4428), 1, + ACTIONS(8355), 1, + anon_sym_DOT, + STATE(4613), 1, sym_comment, - [124247] = 3, + [137705] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4429), 1, + STATE(4614), 1, sym_comment, - ACTIONS(7683), 3, + ACTIONS(8255), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124259] = 3, + [137717] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4430), 1, + STATE(4615), 1, sym_comment, - ACTIONS(7922), 3, + ACTIONS(8255), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124271] = 5, + [137729] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, + ACTIONS(4446), 1, anon_sym_AT2, - ACTIONS(8020), 1, - anon_sym_GT2, - STATE(4431), 1, - sym_comment, - STATE(4933), 1, + ACTIONS(6209), 1, + anon_sym_EQ, + STATE(3527), 1, sym_param_completer, - [124287] = 3, + STATE(4616), 1, + sym_comment, + [137745] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4432), 1, + STATE(4617), 1, sym_comment, - ACTIONS(7675), 3, + ACTIONS(8153), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124299] = 3, + [137757] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4433), 1, + STATE(4618), 1, sym_comment, - ACTIONS(7675), 3, + ACTIONS(7993), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124311] = 3, + [137769] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4434), 1, + STATE(4619), 1, sym_comment, - ACTIONS(7683), 3, - ts_builtin_sym_end, + ACTIONS(8357), 3, sym__newline, anon_sym_SEMI, - [124323] = 3, + anon_sym_RPAREN, + [137781] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4435), 1, + STATE(4620), 1, sym_comment, - ACTIONS(7683), 3, - ts_builtin_sym_end, + ACTIONS(3343), 3, sym__newline, anon_sym_SEMI, - [124335] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [137793] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2537), 1, - sym__entry_separator, - STATE(4436), 1, + ACTIONS(4446), 1, + anon_sym_AT2, + ACTIONS(6209), 1, + anon_sym_EQ, + STATE(3548), 1, + sym_param_completer, + STATE(4621), 1, sym_comment, - ACTIONS(2539), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124349] = 3, + [137809] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4437), 1, + STATE(4622), 1, sym_comment, - ACTIONS(7711), 3, + ACTIONS(8265), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124361] = 5, + [137821] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - STATE(4438), 1, + ACTIONS(3018), 1, + sym__newline, + ACTIONS(3651), 1, + anon_sym_SEMI, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(4623), 1, sym_comment, - STATE(4728), 1, - sym__expr_parenthesized_immediate, - [124377] = 5, + [137837] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(1856), 1, sym__entry_separator, - ACTIONS(8022), 1, - anon_sym_GT2, - STATE(2376), 1, - aux_sym__types_body_repeat2, - STATE(4439), 1, + STATE(4624), 1, sym_comment, - [124393] = 3, + ACTIONS(1750), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [137851] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4440), 1, + STATE(4625), 1, sym_comment, - ACTIONS(7711), 3, + ACTIONS(8233), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124405] = 5, + [137863] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4626), 1, + sym_comment, + ACTIONS(8359), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [137875] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(4720), 1, sym__entry_separator, - ACTIONS(8024), 1, - anon_sym_GT2, - STATE(2372), 1, + ACTIONS(8361), 1, + anon_sym_RBRACK, + STATE(2184), 1, aux_sym__types_body_repeat2, - STATE(4441), 1, + STATE(4627), 1, sym_comment, - [124421] = 3, + [137891] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4442), 1, + STATE(4628), 1, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7995), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124433] = 3, + [137903] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4443), 1, + STATE(4629), 1, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7995), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124445] = 3, + [137915] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4444), 1, + STATE(4630), 1, sym_comment, - ACTIONS(7873), 3, - ts_builtin_sym_end, + ACTIONS(8363), 3, sym__newline, anon_sym_SEMI, - [124457] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + [137927] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(8026), 1, - anon_sym_GT2, - STATE(2362), 1, - aux_sym__types_body_repeat2, - STATE(4445), 1, + STATE(4631), 1, sym_comment, - [124473] = 5, + ACTIONS(8365), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [137939] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(4446), 1, + STATE(4632), 1, sym_comment, - STATE(4725), 1, - sym__expr_parenthesized_immediate, - [124489] = 5, - ACTIONS(103), 1, + ACTIONS(8046), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [137951] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4257), 1, - sym_block, - STATE(4447), 1, + ACTIONS(8287), 1, + sym_hex_digit, + ACTIONS(8367), 1, + anon_sym_RBRACK, + STATE(4633), 1, sym_comment, - [124505] = 5, + STATE(4641), 1, + aux_sym_val_binary_repeat1, + [137967] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(2788), 1, sym__entry_separator, - ACTIONS(8028), 1, - anon_sym_GT2, - STATE(1938), 1, - aux_sym__types_body_repeat2, - STATE(4448), 1, + STATE(4634), 1, sym_comment, - [124521] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8030), 1, + ACTIONS(2790), 2, anon_sym_RBRACK, - ACTIONS(8033), 1, - anon_sym_DOT_DOT, - ACTIONS(8035), 1, - sym__entry_separator, - STATE(4449), 1, - sym_comment, - [124537] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8038), 1, anon_sym_RBRACE, - STATE(1483), 1, - aux_sym__types_body_repeat2, - STATE(4450), 1, + [137981] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4635), 1, sym_comment, - [124553] = 5, - ACTIONS(103), 1, + ACTIONS(7997), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [137993] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(8041), 1, - anon_sym_RBRACK, - STATE(2087), 1, - aux_sym__types_body_repeat2, - STATE(4451), 1, + STATE(4636), 1, sym_comment, - [124569] = 4, - ACTIONS(103), 1, + ACTIONS(7997), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [138005] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2254), 1, - sym__entry_separator, - STATE(4452), 1, + STATE(4637), 1, sym_comment, - ACTIONS(2256), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124583] = 4, - ACTIONS(103), 1, + ACTIONS(7999), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [138017] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2254), 1, - sym__entry_separator, - STATE(4453), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(1900), 1, + sym__unquoted_pattern, + STATE(4638), 1, + sym_comment, + STATE(4976), 1, + sym__expr_parenthesized_immediate, + [138033] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4639), 1, sym_comment, - ACTIONS(2256), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124597] = 4, - ACTIONS(103), 1, + ACTIONS(7999), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [138045] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5287), 1, - sym__entry_separator, - STATE(4454), 1, + ACTIONS(1882), 1, + anon_sym_LBRACE, + ACTIONS(1884), 1, + sym__unquoted_pattern, + ACTIONS(8050), 1, + aux_sym__immediate_decimal_token5, + STATE(4640), 1, sym_comment, - ACTIONS(5289), 2, + [138061] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8287), 1, + sym_hex_digit, + ACTIONS(8369), 1, anon_sym_RBRACK, - anon_sym_GT2, - [124611] = 3, + STATE(4596), 1, + aux_sym_val_binary_repeat1, + STATE(4641), 1, + sym_comment, + [138077] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4455), 1, + STATE(4642), 1, sym_comment, - ACTIONS(7940), 3, + ACTIONS(8001), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124623] = 3, + [138089] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4456), 1, + STATE(4643), 1, sym_comment, - ACTIONS(7942), 3, + ACTIONS(8001), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124635] = 3, + [138101] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4457), 1, + STATE(4644), 1, sym_comment, - ACTIONS(7944), 3, + ACTIONS(8005), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124647] = 3, + [138113] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4458), 1, + ACTIONS(5542), 1, + anon_sym_LPAREN2, + ACTIONS(5552), 1, + sym__unquoted_pattern_in_record, + STATE(4645), 1, + sym_comment, + STATE(4934), 1, + sym__expr_parenthesized_immediate, + [138129] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4646), 1, sym_comment, - ACTIONS(7946), 3, + ACTIONS(8005), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124659] = 3, + [138141] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4459), 1, + STATE(4647), 1, sym_comment, - ACTIONS(7948), 3, + ACTIONS(8046), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124671] = 3, + [138153] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4460), 1, + STATE(4648), 1, + sym_comment, + ACTIONS(3896), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [138165] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4649), 1, sym_comment, - ACTIONS(8043), 3, + ACTIONS(8078), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [124683] = 4, + [138177] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8045), 1, - sym__table_head_separator, - STATE(4461), 1, + ACTIONS(5378), 1, + sym__entry_separator, + ACTIONS(8371), 1, + anon_sym_GT2, + STATE(2581), 1, + aux_sym__types_body_repeat2, + STATE(4650), 1, sym_comment, - ACTIONS(1619), 2, - anon_sym_RBRACK, + [138193] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5378), 1, sym__entry_separator, - [124697] = 3, + ACTIONS(8373), 1, + anon_sym_GT2, + STATE(2586), 1, + aux_sym__types_body_repeat2, + STATE(4651), 1, + sym_comment, + [138209] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4462), 1, + STATE(4652), 1, sym_comment, - ACTIONS(4625), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124709] = 3, + ACTIONS(8078), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [138221] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4463), 1, + STATE(4653), 1, sym_comment, - ACTIONS(4629), 3, + ACTIONS(2274), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [124721] = 4, - ACTIONS(103), 1, + [138233] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8047), 1, - anon_sym_GT2, - STATE(4464), 1, + ACTIONS(8287), 1, + sym_hex_digit, + ACTIONS(8375), 1, + anon_sym_RBRACK, + STATE(4654), 1, sym_comment, - ACTIONS(8049), 2, - anon_sym_AT2, - sym__entry_separator, - [124735] = 5, + STATE(4657), 1, + aux_sym_val_binary_repeat1, + [138249] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8051), 1, + ACTIONS(8377), 1, anon_sym_RBRACK, - ACTIONS(8053), 1, + ACTIONS(8379), 1, anon_sym_DOT_DOT, - STATE(4465), 1, + STATE(4655), 1, sym_comment, - STATE(5010), 1, + STATE(4992), 1, sym__match_pattern_rest, - [124751] = 3, + [138265] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4466), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(5372), 1, + sym__unquoted_pattern, + STATE(4656), 1, sym_comment, - ACTIONS(4633), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124763] = 4, + STATE(4866), 1, + sym__expr_parenthesized_immediate, + [138281] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8055), 1, - anon_sym_RBRACK, - ACTIONS(8057), 1, + ACTIONS(8287), 1, sym_hex_digit, - STATE(4467), 2, - sym_comment, + ACTIONS(8381), 1, + anon_sym_RBRACK, + STATE(4596), 1, aux_sym_val_binary_repeat1, - [124777] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4259), 1, - sym_block, - STATE(4468), 1, + STATE(4657), 1, sym_comment, - [124793] = 5, + [138297] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8060), 1, - anon_sym_DOT, - STATE(4469), 1, + STATE(4658), 1, sym_comment, - [124809] = 4, + ACTIONS(8096), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [138309] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5253), 1, + ACTIONS(4720), 1, sym__entry_separator, - STATE(4470), 1, + ACTIONS(8383), 1, + anon_sym_GT2, + STATE(2162), 1, + aux_sym__types_body_repeat2, + STATE(4659), 1, sym_comment, - ACTIONS(5255), 2, - anon_sym_RBRACK, + [138325] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4720), 1, + sym__entry_separator, + ACTIONS(8385), 1, anon_sym_GT2, - [124823] = 5, + STATE(2163), 1, + aux_sym__types_body_repeat2, + STATE(4660), 1, + sym_comment, + [138341] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8062), 1, - anon_sym_RBRACK, - STATE(4471), 1, + STATE(4661), 1, sym_comment, - STATE(4474), 1, - aux_sym_val_binary_repeat1, - [124839] = 5, + ACTIONS(8096), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [138353] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2954), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(2986), 1, + STATE(4617), 1, sym_block, - STATE(4472), 1, + STATE(4662), 1, sym_comment, - [124855] = 5, + [138369] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, + ACTIONS(4720), 1, sym__entry_separator, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, - STATE(4473), 1, + ACTIONS(8387), 1, + anon_sym_RBRACK, + STATE(2164), 1, + aux_sym__types_body_repeat2, + STATE(4663), 1, sym_comment, - [124871] = 5, + [138385] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8064), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, - STATE(4474), 1, + STATE(4664), 1, sym_comment, - [124887] = 5, + ACTIONS(7999), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [138397] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(4475), 1, + STATE(4665), 1, sym_comment, - STATE(4625), 1, - sym__expr_parenthesized_immediate, - [124903] = 4, - ACTIONS(103), 1, + ACTIONS(7999), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [138409] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7898), 1, - sym__entry_separator, - STATE(4476), 1, + STATE(4666), 1, sym_comment, - ACTIONS(8066), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124917] = 4, - ACTIONS(103), 1, + ACTIONS(2306), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [138421] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7900), 1, - sym__entry_separator, - STATE(4477), 1, + STATE(4667), 1, sym_comment, - ACTIONS(8068), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124931] = 4, + ACTIONS(8104), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [138433] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7914), 1, + ACTIONS(4794), 1, sym__entry_separator, - STATE(4478), 1, - sym_comment, - ACTIONS(8033), 2, + ACTIONS(8389), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124945] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2258), 1, - sym__entry_separator, - STATE(4479), 1, + STATE(2329), 1, + aux_sym__types_body_repeat2, + STATE(4668), 1, sym_comment, - ACTIONS(2260), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124959] = 4, + [138449] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2262), 1, - sym__entry_separator, - STATE(4480), 1, + ACTIONS(2954), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(4612), 1, + sym_block, + STATE(4669), 1, sym_comment, - ACTIONS(2264), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124973] = 3, + [138465] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4481), 1, + ACTIONS(8287), 1, + sym_hex_digit, + ACTIONS(8391), 1, + anon_sym_RBRACK, + STATE(4670), 1, sym_comment, - ACTIONS(7956), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124985] = 5, + STATE(4673), 1, + aux_sym_val_binary_repeat1, + [138481] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(1758), 1, sym__entry_separator, - ACTIONS(8070), 1, - anon_sym_GT2, - STATE(1930), 1, + ACTIONS(8393), 1, + anon_sym_RBRACE, + STATE(1689), 1, aux_sym__types_body_repeat2, - STATE(4482), 1, + STATE(4671), 1, sym_comment, - [125001] = 4, + [138497] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(4794), 1, sym__entry_separator, - STATE(4483), 1, - sym_comment, - ACTIONS(5249), 2, + ACTIONS(8396), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [125015] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8072), 1, - anon_sym_GT2, - STATE(1931), 1, + STATE(2192), 1, aux_sym__types_body_repeat2, - STATE(4484), 1, + STATE(4672), 1, sym_comment, - [125031] = 5, + [138513] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, - STATE(4485), 1, + ACTIONS(8287), 1, + sym_hex_digit, + ACTIONS(8398), 1, + anon_sym_RBRACK, + STATE(4596), 1, + aux_sym_val_binary_repeat1, + STATE(4673), 1, sym_comment, - STATE(4630), 1, - sym__expr_parenthesized_immediate, - [125047] = 3, + [138529] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4486), 1, - sym_comment, - ACTIONS(7958), 3, - ts_builtin_sym_end, + ACTIONS(3018), 1, sym__newline, - anon_sym_SEMI, - [125059] = 3, + ACTIONS(8400), 1, + anon_sym_COLON, + STATE(675), 1, + aux_sym__repeat_newline, + STATE(4674), 1, + sym_comment, + [138545] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4487), 1, + STATE(4675), 1, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8106), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125071] = 3, - ACTIONS(3), 1, + [138557] = 3, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4488), 1, + STATE(4676), 1, sym_comment, - ACTIONS(7713), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125083] = 3, + ACTIONS(2018), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [138569] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4489), 1, + STATE(4677), 1, sym_comment, - ACTIONS(7725), 3, + ACTIONS(8227), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125095] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8074), 1, - anon_sym_RBRACK, - STATE(4490), 1, - sym_comment, - STATE(4493), 1, - aux_sym_val_binary_repeat1, - [125111] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(4491), 1, - sym_comment, - ACTIONS(7906), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125125] = 3, + [138581] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4492), 1, + STATE(4678), 1, sym_comment, - ACTIONS(7725), 3, + ACTIONS(8227), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125137] = 5, - ACTIONS(3), 1, + [138593] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8076), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, - STATE(4493), 1, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(8039), 1, + anon_sym_RBRACE, + STATE(1685), 1, + aux_sym__types_body_repeat2, + STATE(4679), 1, sym_comment, - [125153] = 3, - ACTIONS(3), 1, + [138609] = 3, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4494), 1, + STATE(4680), 1, sym_comment, - ACTIONS(7735), 3, - ts_builtin_sym_end, + ACTIONS(886), 3, sym__newline, - anon_sym_SEMI, - [125165] = 3, + sym__space, + anon_sym_COLON2, + [138621] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4495), 1, + STATE(4681), 1, sym_comment, - ACTIONS(7735), 3, + ACTIONS(8239), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125177] = 5, + [138633] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(1758), 1, sym__entry_separator, - ACTIONS(8078), 1, - anon_sym_RBRACK, - STATE(1926), 1, + ACTIONS(1760), 1, + anon_sym_COLON2, + STATE(1722), 1, aux_sym__types_body_repeat2, - STATE(4496), 1, + STATE(4682), 1, sym_comment, - [125193] = 5, + [138649] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(8287), 1, sym_hex_digit, - ACTIONS(8080), 1, + ACTIONS(8402), 1, anon_sym_RBRACK, - STATE(4413), 1, - aux_sym_val_binary_repeat1, - STATE(4497), 1, + STATE(4683), 1, sym_comment, - [125209] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8082), 1, - anon_sym_RBRACK, - STATE(4467), 1, + STATE(4685), 1, aux_sym_val_binary_repeat1, - STATE(4498), 1, - sym_comment, - [125225] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, - STATE(4499), 1, - sym_comment, - STATE(4775), 1, - sym__expr_parenthesized_immediate, - [125241] = 3, + [138665] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4500), 1, + STATE(4684), 1, sym_comment, - ACTIONS(7952), 3, - ts_builtin_sym_end, + ACTIONS(8404), 3, sym__newline, - anon_sym_SEMI, - [125253] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [138677] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(8287), 1, sym_hex_digit, - ACTIONS(8084), 1, + ACTIONS(8406), 1, anon_sym_RBRACK, - STATE(4501), 1, - sym_comment, - STATE(4621), 1, + STATE(4596), 1, aux_sym_val_binary_repeat1, - [125269] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8086), 1, - anon_sym_DQUOTE, - STATE(4502), 1, - sym_comment, - ACTIONS(8088), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125283] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4503), 1, + STATE(4685), 1, sym_comment, - ACTIONS(8090), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [125295] = 3, + [138693] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4504), 1, + STATE(4686), 1, sym_comment, - ACTIONS(7692), 3, + ACTIONS(8239), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125307] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2268), 1, - sym__entry_separator, - STATE(4505), 1, - sym_comment, - ACTIONS(2270), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125321] = 4, + [138705] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2272), 1, + ACTIONS(2800), 1, sym__entry_separator, - STATE(4506), 1, + STATE(4687), 1, sym_comment, - ACTIONS(2274), 2, + ACTIONS(2802), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [125335] = 3, + [138719] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4507), 1, + STATE(4688), 1, sym_comment, - ACTIONS(7747), 3, + ACTIONS(8267), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125347] = 3, + [138731] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4508), 1, + STATE(4689), 1, sym_comment, - ACTIONS(7747), 3, + ACTIONS(7995), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125359] = 5, + [138743] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4446), 1, + anon_sym_AT2, + ACTIONS(8408), 1, + anon_sym_GT2, + STATE(4690), 1, + sym_comment, + STATE(5075), 1, + sym_param_completer, + [138759] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(8287), 1, sym_hex_digit, - ACTIONS(8092), 1, + ACTIONS(8410), 1, anon_sym_RBRACK, - STATE(4509), 1, + STATE(4691), 1, sym_comment, - STATE(4512), 1, + STATE(4693), 1, aux_sym_val_binary_repeat1, - [125375] = 4, - ACTIONS(103), 1, + [138775] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7757), 1, - sym__entry_separator, - STATE(4510), 1, + STATE(4692), 1, sym_comment, - ACTIONS(8094), 2, + ACTIONS(7995), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [138787] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8287), 1, + sym_hex_digit, + ACTIONS(8412), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125389] = 4, + STATE(4596), 1, + aux_sym_val_binary_repeat1, + STATE(4693), 1, + sym_comment, + [138803] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7757), 1, - sym__entry_separator, - STATE(4511), 1, + ACTIONS(3794), 1, + sym__newline, + ACTIONS(3796), 1, + sym__space, + STATE(1506), 1, + aux_sym_pipe_element_parenthesized_repeat1, + STATE(4694), 1, sym_comment, - ACTIONS(8094), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125403] = 5, + [138819] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(8287), 1, sym_hex_digit, - ACTIONS(8096), 1, + ACTIONS(8414), 1, anon_sym_RBRACK, - STATE(4467), 1, + STATE(4577), 1, aux_sym_val_binary_repeat1, - STATE(4512), 1, + STATE(4695), 1, sym_comment, - [125419] = 4, + [138835] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7825), 1, - sym__entry_separator, - STATE(4513), 1, + ACTIONS(8416), 1, + anon_sym_DQUOTE, + STATE(4696), 1, sym_comment, - ACTIONS(8098), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125433] = 4, + ACTIONS(8418), 2, + sym__escaped_str_content, + sym_escape_sequence, + [138849] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5940), 1, + ACTIONS(5378), 1, sym__entry_separator, - STATE(4514), 1, + ACTIONS(8420), 1, + anon_sym_GT2, + STATE(2598), 1, + aux_sym__types_body_repeat2, + STATE(4697), 1, sym_comment, - ACTIONS(5938), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125447] = 4, - ACTIONS(103), 1, + [138865] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7204), 1, - sym__entry_separator, - STATE(4515), 1, - sym_comment, - ACTIONS(7272), 2, + ACTIONS(8422), 1, anon_sym_RBRACK, + ACTIONS(8424), 1, anon_sym_DOT_DOT, - [125461] = 4, - ACTIONS(103), 1, + STATE(4698), 1, + sym_comment, + STATE(5164), 1, + sym__match_pattern_rest, + [138881] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7920), 1, - sym__entry_separator, - STATE(4516), 1, + ACTIONS(4446), 1, + anon_sym_AT2, + ACTIONS(8426), 1, + anon_sym_GT2, + STATE(4699), 1, sym_comment, - ACTIONS(8100), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125475] = 4, + STATE(5110), 1, + sym_param_completer, + [138897] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(4720), 1, sym__entry_separator, - STATE(4517), 1, - sym_comment, - ACTIONS(7278), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125489] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4518), 1, + ACTIONS(8428), 1, + anon_sym_GT2, + STATE(2151), 1, + aux_sym__types_body_repeat2, + STATE(4700), 1, sym_comment, - ACTIONS(7926), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125501] = 3, + [138913] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4519), 1, + ACTIONS(4446), 1, + anon_sym_AT2, + ACTIONS(6226), 1, + anon_sym_EQ, + STATE(3513), 1, + sym_param_completer, + STATE(4701), 1, sym_comment, - ACTIONS(7952), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125513] = 4, + [138929] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5241), 1, + ACTIONS(1752), 1, + anon_sym_RBRACE, + ACTIONS(1758), 1, sym__entry_separator, - STATE(4520), 1, + STATE(1712), 1, + aux_sym__types_body_repeat2, + STATE(4702), 1, sym_comment, - ACTIONS(5243), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [125527] = 3, + [138945] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4521), 1, + STATE(4703), 1, sym_comment, - ACTIONS(7741), 3, + ACTIONS(8037), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125539] = 4, + [138957] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3082), 1, - anon_sym_RPAREN, - STATE(4522), 1, + STATE(4704), 1, sym_comment, - ACTIONS(2932), 2, + ACTIONS(8054), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125553] = 3, + [138969] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4523), 1, + STATE(4705), 1, sym_comment, - ACTIONS(7741), 3, + ACTIONS(8182), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125565] = 5, + [138981] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(4720), 1, sym__entry_separator, - ACTIONS(8102), 1, + ACTIONS(8430), 1, anon_sym_RBRACK, - STATE(1968), 1, + STATE(2152), 1, aux_sym__types_body_repeat2, - STATE(4524), 1, + STATE(4706), 1, sym_comment, - [125581] = 3, + [138997] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4525), 1, + STATE(4707), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(8003), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125593] = 5, + [139009] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1621), 1, - anon_sym_RBRACE, - ACTIONS(1627), 1, + ACTIONS(4720), 1, sym__entry_separator, - STATE(1475), 1, + ACTIONS(8432), 1, + anon_sym_RBRACK, + STATE(2153), 1, aux_sym__types_body_repeat2, - STATE(4526), 1, + STATE(4708), 1, sym_comment, - [125609] = 3, + [139025] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4527), 1, + STATE(4709), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(8196), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125621] = 3, + [139037] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4528), 1, + STATE(4710), 1, sym_comment, - ACTIONS(7804), 3, + ACTIONS(8196), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125633] = 3, + [139049] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4529), 1, + STATE(4711), 1, sym_comment, - ACTIONS(7970), 3, + ACTIONS(8227), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125645] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8104), 1, - anon_sym_LPAREN, - STATE(4530), 1, - sym_comment, - ACTIONS(8106), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125659] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8108), 1, - anon_sym_RBRACK, - STATE(1935), 1, - aux_sym__types_body_repeat2, - STATE(4531), 1, - sym_comment, - [125675] = 3, + [139061] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4532), 1, + STATE(4712), 1, sym_comment, - ACTIONS(3082), 3, + ACTIONS(8227), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [125687] = 3, + [139073] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4533), 1, + STATE(4713), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(8239), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125699] = 3, + [139085] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4534), 1, + STATE(4714), 1, sym_comment, - ACTIONS(7804), 3, + ACTIONS(8239), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125711] = 3, + [139097] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4535), 1, + STATE(4715), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(8013), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125723] = 4, + [139109] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(4794), 1, sym__entry_separator, - STATE(4536), 1, - sym_comment, - ACTIONS(1619), 2, + ACTIONS(8434), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [125737] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4537), 1, + STATE(2334), 1, + aux_sym__types_body_repeat2, + STATE(4716), 1, sym_comment, - ACTIONS(8110), 3, - sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [125749] = 3, + [139125] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4538), 1, + STATE(4717), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(7977), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125761] = 5, + [139137] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(8436), 1, + anon_sym_LPAREN, + STATE(4718), 1, + sym_comment, + ACTIONS(8438), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [139151] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5120), 1, + anon_sym_RBRACE, + ACTIONS(5122), 1, sym__entry_separator, - ACTIONS(8112), 1, - anon_sym_GT2, - STATE(2373), 1, + STATE(2447), 1, aux_sym__types_body_repeat2, - STATE(4539), 1, + STATE(4719), 1, sym_comment, - [125777] = 4, + [139167] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1955), 1, - anon_sym_POUND_BANG, - ACTIONS(8114), 1, - sym__newline, - STATE(4540), 2, - aux_sym__repeat_newline, + STATE(4720), 1, sym_comment, - [125791] = 5, - ACTIONS(3), 1, + ACTIONS(2798), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [139179] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8117), 1, - anon_sym_GT2, - STATE(4541), 1, + ACTIONS(8440), 1, + anon_sym_LPAREN, + STATE(4721), 1, sym_comment, - STATE(4953), 1, - sym_param_completer, - [125807] = 5, + ACTIONS(8442), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [139193] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(7666), 1, + anon_sym_RBRACK, + ACTIONS(7668), 1, + anon_sym_DOT_DOT, + ACTIONS(7674), 1, sym__entry_separator, - ACTIONS(8119), 1, - anon_sym_RBRACE, - STATE(1466), 1, - aux_sym__types_body_repeat2, - STATE(4542), 1, + STATE(4722), 1, sym_comment, - [125823] = 5, + [139209] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(7680), 1, + anon_sym_RBRACK, + ACTIONS(7683), 1, + anon_sym_DOT_DOT, + ACTIONS(7685), 1, sym__entry_separator, - ACTIONS(8122), 1, - anon_sym_GT2, - STATE(1921), 1, - aux_sym__types_body_repeat2, - STATE(4543), 1, + STATE(4723), 1, sym_comment, - [125839] = 4, + [139225] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8124), 1, - anon_sym_LPAREN, - STATE(4544), 1, + ACTIONS(2671), 1, + sym__entry_separator, + STATE(4724), 1, sym_comment, - ACTIONS(8126), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125853] = 3, - ACTIONS(3), 1, + ACTIONS(2673), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [139239] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4545), 1, + ACTIONS(2675), 1, + sym__entry_separator, + STATE(4725), 1, sym_comment, - ACTIONS(7970), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125865] = 3, - ACTIONS(3), 1, + ACTIONS(2677), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [139253] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4546), 1, + ACTIONS(2679), 1, + sym__entry_separator, + STATE(4726), 1, sym_comment, - ACTIONS(7715), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125877] = 3, + ACTIONS(2681), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [139267] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4547), 1, + ACTIONS(1956), 1, + anon_sym_LBRACE, + ACTIONS(1958), 1, + sym__unquoted_pattern, + ACTIONS(8444), 1, + aux_sym__immediate_decimal_token5, + STATE(4727), 1, sym_comment, - ACTIONS(4569), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [125889] = 3, - ACTIONS(3), 1, + [139283] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4548), 1, + ACTIONS(3982), 1, + sym__entry_separator, + STATE(4728), 1, sym_comment, - ACTIONS(7715), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125901] = 5, + ACTIONS(3984), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [139297] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4720), 1, + sym__entry_separator, + ACTIONS(8446), 1, + anon_sym_RBRACK, + STATE(4427), 1, + aux_sym__types_body_repeat2, + STATE(4729), 1, + sym_comment, + [139313] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(1758), 1, sym__entry_separator, - ACTIONS(4716), 1, + ACTIONS(8261), 1, anon_sym_RBRACE, - STATE(2225), 1, + STATE(1704), 1, aux_sym__types_body_repeat2, - STATE(4549), 1, + STATE(4730), 1, sym_comment, - [125917] = 3, + [139329] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4550), 1, + STATE(1439), 1, + aux_sym__block_body_repeat1, + STATE(4731), 1, sym_comment, - ACTIONS(7827), 3, - ts_builtin_sym_end, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - [125929] = 5, + [139343] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1758), 1, sym__entry_separator, - ACTIONS(8128), 1, + ACTIONS(7985), 1, anon_sym_RBRACE, - STATE(1478), 1, + STATE(1708), 1, aux_sym__types_body_repeat2, - STATE(4551), 1, + STATE(4732), 1, sym_comment, - [125945] = 5, - ACTIONS(3), 1, + [139359] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5944), 1, - anon_sym_EQ, - STATE(3284), 1, - sym_param_completer, - STATE(4552), 1, + ACTIONS(5661), 1, + sym__entry_separator, + STATE(4733), 1, + sym_comment, + ACTIONS(5663), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [139373] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2719), 1, + sym__entry_separator, + STATE(4734), 1, sym_comment, - [125961] = 3, + ACTIONS(2721), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [139387] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4553), 1, + STATE(4735), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(8176), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125973] = 4, + [139399] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5961), 1, + ACTIONS(5667), 1, sym__entry_separator, - STATE(4554), 1, + STATE(4736), 1, sym_comment, - ACTIONS(5959), 2, + ACTIONS(5669), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [125987] = 3, + anon_sym_GT2, + [139413] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4555), 1, + STATE(4737), 1, sym_comment, - ACTIONS(8130), 3, + ACTIONS(8001), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [125999] = 4, - ACTIONS(103), 1, + anon_sym_SEMI, + [139425] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2615), 1, - sym__entry_separator, - STATE(4556), 1, + STATE(4738), 1, sym_comment, - ACTIONS(2617), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [126013] = 5, - ACTIONS(103), 1, + ACTIONS(8001), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [139437] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8132), 1, - anon_sym_RBRACK, - STATE(1922), 1, - aux_sym__types_body_repeat2, - STATE(4557), 1, + ACTIONS(1922), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8448), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8450), 1, + aux_sym__immediate_decimal_token5, + STATE(4739), 1, sym_comment, - [126029] = 5, - ACTIONS(103), 1, + [139453] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8134), 1, - anon_sym_RBRACE, - STATE(1474), 1, - aux_sym__types_body_repeat2, - STATE(4558), 1, + STATE(4740), 1, sym_comment, - [126045] = 5, + ACTIONS(3930), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [139465] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(7991), 1, sym__entry_separator, - ACTIONS(8136), 1, - anon_sym_RBRACK, - STATE(1923), 1, - aux_sym__types_body_repeat2, - STATE(4559), 1, + ACTIONS(8452), 1, + anon_sym_AT2, + STATE(4741), 1, sym_comment, - [126061] = 3, + STATE(4971), 1, + sym_param_completer, + [139481] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4560), 1, + STATE(4742), 1, + sym_comment, + ACTIONS(3934), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [139493] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4743), 1, sym_comment, - ACTIONS(7847), 3, + ACTIONS(8005), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126073] = 3, + [139505] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4561), 1, + STATE(4744), 1, sym_comment, - ACTIONS(7847), 3, + ACTIONS(3938), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [139517] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4745), 1, + sym_comment, + ACTIONS(8005), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126085] = 3, + [139529] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4562), 1, + STATE(4746), 1, sym_comment, - ACTIONS(7741), 3, + ACTIONS(8015), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126097] = 3, + [139541] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4563), 1, + STATE(4747), 1, sym_comment, - ACTIONS(7741), 3, + ACTIONS(8015), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126109] = 3, + [139553] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(815), 1, + anon_sym_RBRACK, + ACTIONS(904), 1, + sym__entry_separator, + ACTIONS(6601), 1, + sym__unquoted_pattern_in_list, + STATE(4748), 1, + sym_comment, + [139569] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2004), 1, + sym__entry_separator, + STATE(4749), 1, + sym_comment, + ACTIONS(2006), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [139583] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4564), 1, + STATE(4750), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(8017), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126121] = 3, + [139595] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4565), 1, + STATE(4751), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(8017), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126133] = 5, - ACTIONS(103), 1, + [139607] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7723), 1, - sym__entry_separator, - ACTIONS(8138), 1, - anon_sym_AT2, - STATE(4566), 1, + ACTIONS(8269), 1, + anon_sym_BANG, + STATE(4752), 1, sym_comment, - STATE(4652), 1, - sym_param_completer, - [126149] = 3, + ACTIONS(1610), 2, + sym__table_head_separator, + anon_sym_DOT2, + [139621] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4567), 1, + STATE(4753), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(8235), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126161] = 5, + [139633] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(5378), 1, sym__entry_separator, - ACTIONS(8140), 1, - anon_sym_RBRACK, - STATE(1990), 1, + ACTIONS(8454), 1, + anon_sym_GT2, + STATE(2583), 1, aux_sym__types_body_repeat2, - STATE(4568), 1, + STATE(4754), 1, sym_comment, - [126177] = 5, - ACTIONS(103), 1, + [139649] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8142), 1, - anon_sym_RBRACK, - STATE(4236), 1, - aux_sym__types_body_repeat2, - STATE(4569), 1, + STATE(4755), 1, sym_comment, - [126193] = 5, + ACTIONS(8074), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [139661] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(7492), 1, sym__entry_separator, - ACTIONS(8144), 1, - anon_sym_RBRACK, - STATE(4359), 1, - aux_sym__types_body_repeat2, - STATE(4570), 1, + STATE(4756), 1, sym_comment, - [126209] = 5, + ACTIONS(7668), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [139675] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(2414), 1, sym__entry_separator, - ACTIONS(8146), 1, - anon_sym_RBRACK, - STATE(4196), 1, - aux_sym__types_body_repeat2, - STATE(4571), 1, + STATE(4757), 1, sym_comment, - [126225] = 4, + ACTIONS(2416), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [139689] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5221), 1, + ACTIONS(2414), 1, sym__entry_separator, - STATE(4572), 1, + STATE(4758), 1, sym_comment, - ACTIONS(5223), 2, + ACTIONS(2416), 2, anon_sym_RBRACK, - anon_sym_GT2, - [126239] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7745), 1, - aux_sym__immediate_decimal_token5, - STATE(4573), 1, - sym_comment, - [126255] = 4, + anon_sym_RBRACE, + [139703] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(5683), 1, sym__entry_separator, - STATE(4574), 1, + STATE(4759), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(5685), 2, anon_sym_RBRACK, anon_sym_GT2, - [126269] = 5, + [139717] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7272), 1, - anon_sym_DOT_DOT, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, + ACTIONS(8127), 1, sym__entry_separator, - STATE(4575), 1, + STATE(4760), 1, sym_comment, - [126285] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7278), 1, - anon_sym_DOT_DOT, - ACTIONS(7442), 1, + ACTIONS(8456), 2, anon_sym_RBRACK, - ACTIONS(7445), 1, - sym__entry_separator, - STATE(4576), 1, - sym_comment, - [126301] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - STATE(4577), 1, - sym_comment, - STATE(4580), 1, - sym_val_list, - STATE(4591), 1, - aux_sym__table_body_repeat1, - [126317] = 5, + anon_sym_DOT_DOT, + [139731] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(7522), 1, sym__entry_separator, - ACTIONS(7843), 1, - anon_sym_RBRACE, - STATE(1469), 1, - aux_sym__types_body_repeat2, - STATE(4578), 1, - sym_comment, - [126333] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - STATE(4570), 1, - sym_val_list, - STATE(4579), 1, + STATE(4761), 1, sym_comment, - STATE(4591), 1, - aux_sym__table_body_repeat1, - [126349] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8148), 1, + ACTIONS(7683), 2, anon_sym_RBRACK, - STATE(4238), 1, - aux_sym__types_body_repeat2, - STATE(4580), 1, - sym_comment, - [126365] = 5, + anon_sym_DOT_DOT, + [139745] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(2000), 1, sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - STATE(1491), 1, - aux_sym__types_body_repeat2, - STATE(4581), 1, + STATE(4762), 1, sym_comment, - [126381] = 3, + ACTIONS(2002), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [139759] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4582), 1, + STATE(4763), 1, sym_comment, - ACTIONS(7831), 3, - ts_builtin_sym_end, + ACTIONS(8458), 3, sym__newline, anon_sym_SEMI, - [126393] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + [139771] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(8150), 1, - anon_sym_RBRACK, - STATE(2104), 1, - aux_sym__types_body_repeat2, - STATE(4583), 1, + STATE(4764), 1, sym_comment, - [126409] = 5, + ACTIONS(8460), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [139783] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACK, - ACTIONS(968), 1, + ACTIONS(4720), 1, sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - STATE(4584), 1, - sym_comment, - [126425] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4585), 1, + ACTIONS(8462), 1, + anon_sym_GT2, + STATE(2168), 1, + aux_sym__types_body_repeat2, + STATE(4765), 1, sym_comment, - ACTIONS(7816), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126437] = 5, + [139799] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(5122), 1, sym__entry_separator, - ACTIONS(7916), 1, + ACTIONS(5126), 1, anon_sym_RBRACE, - STATE(1480), 1, + STATE(2452), 1, aux_sym__types_body_repeat2, - STATE(4586), 1, + STATE(4766), 1, sym_comment, - [126453] = 3, - ACTIONS(3), 1, + [139815] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4587), 1, + ACTIONS(8309), 1, + anon_sym_DOT_DOT, + ACTIONS(8464), 1, + anon_sym_RBRACK, + ACTIONS(8467), 1, + sym__entry_separator, + STATE(4767), 1, sym_comment, - ACTIONS(8152), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126465] = 5, + [139831] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1758), 1, sym__entry_separator, - ACTIONS(7918), 1, + ACTIONS(8470), 1, anon_sym_RBRACE, - STATE(1485), 1, + STATE(1711), 1, aux_sym__types_body_repeat2, - STATE(4588), 1, + STATE(4768), 1, sym_comment, - [126481] = 3, + [139847] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4589), 1, + STATE(4769), 1, sym_comment, - ACTIONS(8154), 3, + ACTIONS(8155), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126493] = 5, + [139859] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(4720), 1, sym__entry_separator, - ACTIONS(8156), 1, - anon_sym_RBRACK, - STATE(2105), 1, - aux_sym__types_body_repeat2, - STATE(4590), 1, - sym_comment, - [126509] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8158), 1, + ACTIONS(8141), 1, anon_sym_LBRACK, - STATE(4749), 1, - sym_val_list, - STATE(4591), 2, + STATE(2074), 1, + aux_sym__types_body_repeat2, + STATE(4770), 1, sym_comment, - aux_sym__table_body_repeat1, - [126523] = 3, + [139875] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4592), 1, + STATE(4771), 1, sym_comment, - ACTIONS(8161), 3, + ACTIONS(8473), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [126535] = 5, + [139887] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7287), 1, - anon_sym_if, - ACTIONS(8163), 1, - anon_sym_EQ_GT, - STATE(4593), 1, + STATE(4772), 1, sym_comment, - STATE(4917), 1, - sym_match_guard, - [126551] = 5, + ACTIONS(8475), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [139899] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8165), 1, - anon_sym_DOT, - ACTIONS(8167), 1, - aux_sym__immediate_decimal_token5, - STATE(4594), 1, + STATE(4773), 1, sym_comment, - [126567] = 5, + ACTIONS(8088), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [139911] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(2418), 1, sym__entry_separator, - ACTIONS(8169), 1, - anon_sym_RBRACK, - STATE(1995), 1, - aux_sym__types_body_repeat2, - STATE(4595), 1, + STATE(4774), 1, sym_comment, - [126583] = 4, + ACTIONS(2420), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [139925] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1874), 1, + ACTIONS(2422), 1, sym__entry_separator, - STATE(4596), 1, + STATE(4775), 1, sym_comment, - ACTIONS(1876), 2, + ACTIONS(2424), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126597] = 3, + anon_sym_RBRACE, + [139939] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2954), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(3311), 1, + sym_block, + STATE(4776), 1, + sym_comment, + [139955] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4597), 1, + STATE(4777), 1, sym_comment, - ACTIONS(8171), 3, + ACTIONS(8098), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126609] = 5, + [139967] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - STATE(4598), 1, + STATE(4778), 1, sym_comment, - [126625] = 3, + ACTIONS(8100), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [139979] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4599), 1, + STATE(4779), 1, sym_comment, - ACTIONS(4651), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [126637] = 5, + ACTIONS(8102), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [139991] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(8287), 1, sym_hex_digit, - ACTIONS(8177), 1, + ACTIONS(8477), 1, anon_sym_RBRACK, - STATE(4600), 1, + STATE(4780), 1, sym_comment, - STATE(4609), 1, + STATE(4792), 1, aux_sym_val_binary_repeat1, - [126653] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5116), 1, - sym__unquoted_pattern_in_record, - STATE(4601), 1, - sym_comment, - STATE(4649), 1, - sym__expr_parenthesized_immediate, - [126669] = 3, + [140007] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4602), 1, + STATE(4781), 1, sym_comment, - ACTIONS(7968), 3, + ACTIONS(8157), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126681] = 5, + anon_sym_SEMI, + [140019] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, + ACTIONS(4446), 1, anon_sym_AT2, - ACTIONS(6009), 1, + ACTIONS(6366), 1, anon_sym_EQ, - STATE(3300), 1, + STATE(3481), 1, sym_param_completer, - STATE(4603), 1, + STATE(4782), 1, sym_comment, - [126697] = 3, + [140035] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4604), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(1984), 1, + sym__unquoted_pattern, + STATE(4783), 1, + sym_comment, + STATE(4958), 1, + sym__expr_parenthesized_immediate, + [140051] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5675), 1, + sym__entry_separator, + STATE(4784), 1, + sym_comment, + ACTIONS(5677), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [140065] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2217), 1, + anon_sym_POUND_BANG, + ACTIONS(8479), 1, + sym__newline, + STATE(4785), 2, + aux_sym__repeat_newline, + sym_comment, + [140079] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5679), 1, + sym__entry_separator, + STATE(4786), 1, + sym_comment, + ACTIONS(5681), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [140093] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4787), 1, sym_comment, - ACTIONS(7837), 3, + ACTIONS(8178), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126709] = 5, + [140105] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8179), 1, + ACTIONS(8482), 1, anon_sym_export, - ACTIONS(8181), 1, + ACTIONS(8484), 1, anon_sym_def, - ACTIONS(8183), 1, + ACTIONS(8486), 1, anon_sym_extern, - STATE(4605), 1, + STATE(4788), 1, sym_comment, - [126725] = 4, - ACTIONS(103), 1, + [140121] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1886), 1, - sym__entry_separator, - STATE(4606), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + ACTIONS(3216), 1, + sym__unquoted_pattern, + STATE(4789), 1, sym_comment, - ACTIONS(1888), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126739] = 5, + STATE(4975), 1, + sym__expr_parenthesized_immediate, + [140137] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(1758), 1, sym__entry_separator, - ACTIONS(8185), 1, + ACTIONS(8488), 1, anon_sym_RBRACE, - STATE(2227), 1, + STATE(1686), 1, aux_sym__types_body_repeat2, - STATE(4607), 1, + STATE(4790), 1, sym_comment, - [126755] = 5, - ACTIONS(103), 1, + [140153] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4711), 1, - anon_sym_RBRACE, - STATE(2223), 1, - aux_sym__types_body_repeat2, - STATE(4608), 1, + ACTIONS(1884), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8490), 1, + anon_sym_DOT, + ACTIONS(8492), 1, + aux_sym__immediate_decimal_token5, + STATE(4791), 1, sym_comment, - [126771] = 5, + [140169] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(8287), 1, sym_hex_digit, - ACTIONS(8187), 1, + ACTIONS(8494), 1, anon_sym_RBRACK, - STATE(4467), 1, + STATE(4596), 1, aux_sym_val_binary_repeat1, - STATE(4609), 1, - sym_comment, - [126787] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(4610), 1, + STATE(4792), 1, sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - [126803] = 3, + [140185] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4611), 1, + STATE(4793), 1, sym_comment, - ACTIONS(7694), 3, + ACTIONS(8125), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126815] = 3, - ACTIONS(103), 1, + [140197] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4612), 1, + STATE(4794), 1, sym_comment, - ACTIONS(858), 3, + ACTIONS(8496), 3, sym__newline, - sym__space, - anon_sym_COLON2, - [126827] = 5, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + [140209] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3100), 1, - sym_block, - STATE(4613), 1, + STATE(4795), 1, sym_comment, - [126843] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8189), 1, - anon_sym_POUND_BANG, - ACTIONS(8191), 1, + ACTIONS(8017), 3, + ts_builtin_sym_end, sym__newline, - STATE(4540), 1, - aux_sym__repeat_newline, - STATE(4614), 1, - sym_comment, - [126859] = 5, - ACTIONS(103), 1, + anon_sym_SEMI, + [140221] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(8193), 1, - anon_sym_RBRACK, - STATE(2108), 1, - aux_sym__types_body_repeat2, - STATE(4615), 1, + STATE(4796), 1, sym_comment, - [126875] = 3, + ACTIONS(8017), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [140233] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4616), 1, + STATE(4797), 1, sym_comment, - ACTIONS(8195), 3, + ACTIONS(8019), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126887] = 3, + [140245] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4617), 1, + STATE(4798), 1, sym_comment, - ACTIONS(8197), 3, + ACTIONS(8019), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126899] = 5, - ACTIONS(103), 1, + [140257] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7855), 1, - sym__entry_separator, - ACTIONS(8199), 1, - anon_sym_COLON, - STATE(4618), 1, + STATE(4799), 1, sym_comment, - STATE(4709), 1, - sym__collection_annotation, - [126915] = 3, + ACTIONS(8021), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [140269] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4619), 1, + STATE(4800), 1, sym_comment, - ACTIONS(8201), 3, + ACTIONS(8021), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126927] = 4, + [140281] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5257), 1, + ACTIONS(2432), 1, sym__entry_separator, - STATE(4620), 1, + STATE(4801), 1, sym_comment, - ACTIONS(5259), 2, + ACTIONS(2434), 2, anon_sym_RBRACK, - anon_sym_GT2, - [126941] = 5, + anon_sym_RBRACE, + [140295] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8203), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, - STATE(4621), 1, + STATE(4802), 1, sym_comment, - [126957] = 4, + ACTIONS(8131), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [140307] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4237), 1, - sym_block, - STATE(4622), 1, + STATE(4803), 1, sym_comment, - [126970] = 3, + ACTIONS(8131), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [140319] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8205), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 2, + ACTIONS(1758), 1, + sym__entry_separator, + ACTIONS(8498), 1, + anon_sym_RBRACE, + STATE(1695), 1, + aux_sym__types_body_repeat2, + STATE(4804), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [126981] = 3, - ACTIONS(3), 1, + [140335] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4624), 1, + ACTIONS(5693), 1, + sym__entry_separator, + STATE(4805), 1, sym_comment, - ACTIONS(8208), 2, - sym__newline, - anon_sym_SEMI, - [126992] = 4, + ACTIONS(5695), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [140349] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8210), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4625), 1, + ACTIONS(8174), 1, + sym__entry_separator, + ACTIONS(8500), 1, + anon_sym_COLON, + STATE(4806), 1, sym_comment, - STATE(4627), 1, - aux_sym__unquoted_with_expr_repeat1, - [127005] = 4, + STATE(4832), 1, + sym__collection_annotation, + [140365] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8212), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4626), 1, + ACTIONS(815), 1, + anon_sym_RBRACE, + ACTIONS(904), 1, + sym__entry_separator, + ACTIONS(6878), 1, + sym__unquoted_pattern_in_record, + STATE(4807), 1, sym_comment, - STATE(4628), 1, - aux_sym__unquoted_with_expr_repeat1, - [127018] = 4, + [140381] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8214), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4627), 1, + ACTIONS(2738), 1, + sym__entry_separator, + STATE(4808), 1, sym_comment, - [127031] = 4, + ACTIONS(2740), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [140395] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8216), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4628), 1, + ACTIONS(7814), 1, + anon_sym_RBRACE, + ACTIONS(7816), 1, + sym__entry_separator, + STATE(4809), 1, sym_comment, - [127044] = 4, + [140408] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4432), 1, + STATE(4750), 1, sym_block, - STATE(4629), 1, + STATE(4810), 1, sym_comment, - [127057] = 4, + [140421] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8218), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4630), 1, + ACTIONS(2094), 1, + sym__entry_separator, + ACTIONS(2096), 1, + anon_sym_RBRACE, + STATE(4811), 1, sym_comment, - STATE(4789), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127070] = 4, + [140434] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8220), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4631), 1, + ACTIONS(8502), 1, + anon_sym_RBRACK, + ACTIONS(8504), 1, + sym__entry_separator, + STATE(4812), 1, sym_comment, - STATE(4714), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127083] = 4, + [140447] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8222), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4632), 1, + ACTIONS(2750), 1, + sym__entry_separator, + ACTIONS(2752), 1, + anon_sym_RBRACE, + STATE(4813), 1, sym_comment, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127096] = 4, - ACTIONS(103), 1, + [140460] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8224), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4633), 1, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(4677), 1, + sym_block, + STATE(4814), 1, sym_comment, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127109] = 4, + [140473] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4083), 1, + STATE(4751), 1, sym_block, - STATE(4634), 1, + STATE(4815), 1, sym_comment, - [127122] = 4, + [140486] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4085), 1, + STATE(4545), 1, sym_block, - STATE(4635), 1, + STATE(4816), 1, sym_comment, - [127135] = 4, + [140499] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7572), 1, - anon_sym_RBRACE, - ACTIONS(7574), 1, + ACTIONS(2104), 1, sym__entry_separator, - STATE(4636), 1, + ACTIONS(2106), 1, + anon_sym_RBRACE, + STATE(4817), 1, sym_comment, - [127148] = 4, + [140512] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4094), 1, + STATE(4489), 1, sym_block, - STATE(4637), 1, + STATE(4818), 1, + sym_comment, + [140525] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8506), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4819), 1, sym_comment, - [127161] = 4, + STATE(4870), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [140538] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8508), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4820), 1, + sym_comment, + STATE(4870), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [140551] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4433), 1, + STATE(4283), 1, sym_block, - STATE(4638), 1, + STATE(4821), 1, sym_comment, - [127174] = 4, + [140564] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4098), 1, + STATE(4284), 1, sym_block, - STATE(4639), 1, + STATE(4822), 1, sym_comment, - [127187] = 3, + [140577] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4640), 1, + ACTIONS(8510), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4823), 1, sym_comment, - ACTIONS(2096), 2, - anon_sym_POUND_BANG, - sym__newline, - [127198] = 3, + STATE(4938), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [140590] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4641), 1, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(4678), 1, + sym_block, + STATE(4824), 1, sym_comment, - ACTIONS(1464), 2, - sym__table_head_separator, - anon_sym_DOT2, - [127209] = 4, + [140603] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - STATE(4642), 1, + STATE(4825), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [127222] = 4, + ACTIONS(1692), 2, + sym__table_head_separator, + anon_sym_DOT2, + [140614] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4519), 1, + STATE(4664), 1, sym_block, - STATE(4643), 1, + STATE(4826), 1, sym_comment, - [127235] = 4, + [140627] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4241), 1, + STATE(4293), 1, sym_block, - STATE(4644), 1, + STATE(4827), 1, sym_comment, - [127248] = 4, + [140640] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4243), 1, + STATE(4294), 1, sym_block, - STATE(4645), 1, - sym_comment, - [127261] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8226), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4646), 1, + STATE(4828), 1, sym_comment, - STATE(4665), 1, - aux_sym__unquoted_with_expr_repeat1, - [127274] = 4, + [140653] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4442), 1, + STATE(4709), 1, sym_block, - STATE(4647), 1, + STATE(4829), 1, sym_comment, - [127287] = 4, + [140666] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4507), 1, + STATE(4665), 1, sym_block, - STATE(4648), 1, - sym_comment, - [127300] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8228), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4632), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4649), 1, - sym_comment, - [127313] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8230), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 2, + STATE(4830), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127324] = 4, + [140679] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4508), 1, + STATE(3384), 1, sym_block, - STATE(4651), 1, + STATE(4831), 1, sym_comment, - [127337] = 4, + [140692] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8233), 1, + ACTIONS(8512), 1, anon_sym_GT2, - ACTIONS(8235), 1, + ACTIONS(8514), 1, sym__entry_separator, - STATE(4652), 1, + STATE(4832), 1, sym_comment, - [127350] = 4, + [140705] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(4653), 1, + STATE(4334), 1, + sym_block, + STATE(4833), 1, sym_comment, - [127363] = 4, + [140718] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8237), 1, - anon_sym_RBRACE, - ACTIONS(8239), 1, + ACTIONS(4794), 1, sym__entry_separator, - STATE(4654), 1, + STATE(2353), 1, + aux_sym__types_body_repeat2, + STATE(4834), 1, sym_comment, - [127376] = 4, - ACTIONS(103), 1, + [140731] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8241), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4633), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4655), 1, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(4356), 1, + sym_block, + STATE(4835), 1, sym_comment, - [127389] = 4, - ACTIONS(103), 1, + [140744] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7589), 1, - anon_sym_RBRACE, - ACTIONS(7591), 1, - sym__entry_separator, - STATE(4656), 1, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(4468), 1, + sym_block, + STATE(4836), 1, sym_comment, - [127402] = 4, - ACTIONS(103), 1, + [140757] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8243), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4657), 1, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(4503), 1, + sym_block, + STATE(4837), 1, sym_comment, - [127415] = 4, - ACTIONS(103), 1, + [140770] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8245), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4658), 1, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(4504), 1, + sym_block, + STATE(4838), 1, sym_comment, - [127428] = 4, + [140783] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4443), 1, + STATE(4513), 1, sym_block, - STATE(4659), 1, + STATE(4839), 1, sym_comment, - [127441] = 4, + [140796] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4660), 1, + STATE(4710), 1, + sym_block, + STATE(4840), 1, sym_comment, - [127454] = 4, + [140809] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(2663), 1, anon_sym_LBRACE, - ACTIONS(1762), 1, + ACTIONS(2665), 1, sym__unquoted_pattern, - STATE(4661), 1, + STATE(4841), 1, sym_comment, - [127467] = 4, + [140822] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4348), 1, + STATE(4298), 1, sym_block, - STATE(4662), 1, - sym_comment, - [127480] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8247), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4663), 1, + STATE(4842), 1, sym_comment, - [127493] = 4, + [140835] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4101), 1, + STATE(4299), 1, sym_block, - STATE(4664), 1, - sym_comment, - [127506] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8249), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4665), 1, + STATE(4843), 1, sym_comment, - [127519] = 4, + [140848] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4110), 1, + STATE(4300), 1, sym_block, - STATE(4666), 1, + STATE(4844), 1, sym_comment, - [127532] = 4, + [140861] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4129), 1, + STATE(4301), 1, sym_block, - STATE(4667), 1, + STATE(4845), 1, + sym_comment, + [140874] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7579), 1, + anon_sym_RBRACE, + ACTIONS(7581), 1, + sym__entry_separator, + STATE(4846), 1, sym_comment, - [127545] = 4, + [140887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4136), 1, + STATE(4711), 1, sym_block, - STATE(4668), 1, + STATE(4847), 1, + sym_comment, + [140900] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8516), 1, + anon_sym_LPAREN2, + ACTIONS(8518), 1, + aux_sym__record_key_token1, + STATE(4848), 1, + sym_comment, + [140913] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3667), 1, + sym__entry_separator, + ACTIONS(3669), 1, + anon_sym_RBRACK, + STATE(4849), 1, sym_comment, - [127558] = 4, + [140926] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(1956), 1, anon_sym_LBRACE, - ACTIONS(2585), 1, + ACTIONS(1958), 1, sym__unquoted_pattern, - STATE(4669), 1, + STATE(4850), 1, sym_comment, - [127571] = 4, + [140939] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4351), 1, + STATE(4311), 1, sym_block, - STATE(4670), 1, + STATE(4851), 1, sym_comment, - [127584] = 4, + [140952] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(4671), 1, + STATE(4312), 1, + sym_block, + STATE(4852), 1, sym_comment, - [127597] = 4, - ACTIONS(3), 1, + [140965] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4049), 1, - sym_block, - STATE(4672), 1, + ACTIONS(8520), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4853), 1, + sym_comment, + STATE(4921), 1, + aux_sym__unquoted_with_expr_repeat1, + [140978] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2715), 1, + sym__entry_separator, + ACTIONS(2717), 1, + anon_sym_RBRACE, + STATE(4854), 1, sym_comment, - [127610] = 4, + [140991] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1018), 1, - anon_sym_LBRACE, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(4673), 1, + ACTIONS(6599), 1, + anon_sym_DOLLAR2, + ACTIONS(8522), 1, + anon_sym_RBRACK, + STATE(4855), 1, + sym_comment, + [141004] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8524), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4856), 1, + sym_comment, + STATE(4921), 1, + aux_sym__unquoted_with_expr_repeat1, + [141017] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8526), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4857), 1, + sym_comment, + STATE(4921), 1, + aux_sym__unquoted_with_expr_repeat1, + [141030] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3986), 1, + sym__entry_separator, + ACTIONS(3988), 1, + anon_sym_RBRACK, + STATE(4858), 1, sym_comment, - [127623] = 4, + [141043] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8251), 1, - anon_sym_DASH2, - STATE(4674), 1, + ACTIONS(8528), 1, + sym_identifier, + ACTIONS(8530), 1, + anon_sym_DOLLAR, + STATE(4859), 1, sym_comment, - STATE(4982), 1, - sym_param_short_flag, - [127636] = 4, + [141056] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8532), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4860), 2, + sym_comment, + aux_sym__unquoted_in_list_with_expr_repeat1, + [141067] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8535), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4861), 1, + sym_comment, + STATE(4921), 1, + aux_sym__unquoted_with_expr_repeat1, + [141080] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4052), 1, + STATE(4386), 1, sym_block, - STATE(4675), 1, + STATE(4862), 1, sym_comment, - [127649] = 4, + [141093] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2523), 1, + ACTIONS(2748), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7522), 1, sym__entry_separator, - ACTIONS(2525), 1, - anon_sym_RBRACE, - STATE(4676), 1, + STATE(4863), 1, sym_comment, - [127662] = 4, - ACTIONS(3), 1, + [141106] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, - anon_sym_LBRACE, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(4677), 1, + ACTIONS(4720), 1, + sym__entry_separator, + STATE(4770), 1, + aux_sym__types_body_repeat2, + STATE(4864), 1, sym_comment, - [127675] = 4, + [141119] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5245), 1, - anon_sym_RBRACK, - ACTIONS(5247), 1, + ACTIONS(8537), 1, + anon_sym_RBRACE, + ACTIONS(8539), 1, sym__entry_separator, - STATE(4678), 1, + STATE(4865), 1, sym_comment, - [127688] = 4, - ACTIONS(3), 1, + [141132] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4149), 1, - sym_block, - STATE(4679), 1, + ACTIONS(8541), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4866), 1, + sym_comment, + STATE(4869), 1, + aux_sym__unquoted_with_expr_repeat1, + [141145] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8543), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4867), 1, sym_comment, - [127701] = 4, + STATE(4874), 1, + aux_sym__unquoted_with_expr_repeat1, + [141158] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(2050), 1, anon_sym_LBRACE, - STATE(4151), 1, - sym_block, - STATE(4680), 1, + ACTIONS(2052), 1, + sym__unquoted_pattern, + STATE(4868), 1, sym_comment, - [127714] = 4, + [141171] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8253), 1, + ACTIONS(8545), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4869), 1, + sym_comment, + STATE(4921), 1, + aux_sym__unquoted_with_expr_repeat1, + [141184] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8547), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4870), 2, + sym_comment, + aux_sym__unquoted_in_record_with_expr_repeat1, + [141195] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8550), 1, anon_sym_RBRACE, - ACTIONS(8255), 1, + ACTIONS(8552), 1, sym__entry_separator, - STATE(4681), 1, + STATE(4871), 1, sym_comment, - [127727] = 4, + [141208] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7390), 1, + ACTIONS(7810), 1, anon_sym_RBRACE, - ACTIONS(7392), 1, + ACTIONS(7812), 1, sym__entry_separator, - STATE(4682), 1, + STATE(4872), 1, + sym_comment, + [141221] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2742), 1, + sym__entry_separator, + ACTIONS(2744), 1, + anon_sym_RBRACE, + STATE(4873), 1, + sym_comment, + [141234] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8554), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4874), 1, sym_comment, - [127740] = 4, + STATE(4921), 1, + aux_sym__unquoted_with_expr_repeat1, + [141247] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(4683), 1, + STATE(4875), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - [127753] = 4, + ACTIONS(8556), 2, + sym__newline, + anon_sym_SEMI, + [141258] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1884), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8492), 1, + aux_sym__immediate_decimal_token5, + STATE(4876), 1, + sym_comment, + [141271] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8257), 1, + ACTIONS(6456), 1, + sym__entry_separator, + ACTIONS(6458), 1, + anon_sym_RBRACK, + STATE(4877), 1, + sym_comment, + [141284] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8558), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4857), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4878), 1, + sym_comment, + [141297] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7928), 1, anon_sym_RBRACE, - ACTIONS(8259), 1, + ACTIONS(7930), 1, sym__entry_separator, - STATE(4684), 1, + STATE(4879), 1, sym_comment, - [127766] = 4, + [141310] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7210), 1, + ACTIONS(4345), 1, sym__entry_separator, - STATE(4685), 1, + ACTIONS(8560), 1, + anon_sym_RBRACE, + STATE(4880), 1, sym_comment, - [127779] = 4, + [141323] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4521), 1, + STATE(4795), 1, sym_block, - STATE(4686), 1, + STATE(4881), 1, sym_comment, - [127792] = 4, + [141336] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4487), 1, - sym_block, - STATE(4687), 1, + ACTIONS(1958), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8563), 1, + aux_sym__immediate_decimal_token5, + STATE(4882), 1, sym_comment, - [127805] = 4, - ACTIONS(3), 1, + [141349] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4488), 1, - sym_block, - STATE(4688), 1, + ACTIONS(8565), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4861), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4883), 1, + sym_comment, + [141362] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1014), 1, + sym__entry_separator, + ACTIONS(1016), 1, + anon_sym_RBRACE, + STATE(4884), 1, sym_comment, - [127818] = 4, + [141375] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1024), 1, + anon_sym_RBRACE, + ACTIONS(1032), 1, + sym__entry_separator, + STATE(4885), 1, + sym_comment, + [141388] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4418), 1, + STATE(4712), 1, sym_block, - STATE(4689), 1, + STATE(4886), 1, + sym_comment, + [141401] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7832), 1, + anon_sym_RBRACE, + ACTIONS(7834), 1, + sym__entry_separator, + STATE(4887), 1, sym_comment, - [127831] = 4, + [141414] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4560), 1, + STATE(4796), 1, sym_block, - STATE(4690), 1, + STATE(4888), 1, + sym_comment, + [141427] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7950), 1, + anon_sym_RBRACE, + ACTIONS(7952), 1, + sym__entry_separator, + STATE(4889), 1, sym_comment, - [127844] = 4, + [141440] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4334), 1, + STATE(4797), 1, sym_block, - STATE(4691), 1, + STATE(4890), 1, + sym_comment, + [141453] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8567), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4891), 1, sym_comment, - [127857] = 4, + STATE(4898), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [141466] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4341), 1, + STATE(4798), 1, sym_block, - STATE(4692), 1, + STATE(4892), 1, + sym_comment, + [141479] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4720), 1, + sym__entry_separator, + STATE(2328), 1, + aux_sym__types_body_repeat2, + STATE(4893), 1, + sym_comment, + [141492] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8569), 1, + anon_sym_RBRACE, + ACTIONS(8571), 1, + sym__entry_separator, + STATE(4894), 1, + sym_comment, + [141505] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(904), 1, + anon_sym_COLON2, + ACTIONS(2818), 1, + aux_sym_cmd_identifier_token2, + STATE(4895), 1, sym_comment, - [127870] = 4, + [141518] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4489), 1, - sym_block, - STATE(4693), 1, + STATE(4896), 1, sym_comment, - [127883] = 4, + ACTIONS(1696), 2, + sym__table_head_separator, + anon_sym_DOT2, + [141529] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4419), 1, + STATE(3396), 1, sym_block, - STATE(4694), 1, + STATE(4897), 1, sym_comment, - [127896] = 4, - ACTIONS(3), 1, + [141542] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, - anon_sym_LBRACE, - STATE(4695), 1, + ACTIONS(8573), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4860), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(4898), 1, + sym_comment, + [141555] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2762), 1, + sym__entry_separator, + ACTIONS(2764), 1, + anon_sym_RBRACE, + STATE(4899), 1, + sym_comment, + [141568] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3852), 1, + sym__space, + STATE(1537), 1, + aux_sym_pipe_element_repeat1, + STATE(4900), 1, + sym_comment, + [141581] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8575), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4901), 1, + sym_comment, + STATE(4921), 1, + aux_sym__unquoted_with_expr_repeat1, + [141594] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7666), 1, + anon_sym_RBRACK, + ACTIONS(7674), 1, + sym__entry_separator, + STATE(4902), 1, + sym_comment, + [141607] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8577), 1, + anon_sym_RBRACE, + ACTIONS(8579), 1, + sym__entry_separator, + STATE(4903), 1, + sym_comment, + [141620] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8581), 1, + anon_sym_RBRACE, + ACTIONS(8583), 1, + sym__entry_separator, + STATE(4904), 1, + sym_comment, + [141633] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8585), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4870), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4905), 1, sym_comment, - [127909] = 4, + [141646] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(2762), 1, anon_sym_LBRACE, - STATE(4420), 1, - sym_block, - STATE(4696), 1, + ACTIONS(2768), 1, + sym__unquoted_pattern, + STATE(4906), 1, + sym_comment, + [141659] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8587), 1, + anon_sym_RBRACK, + ACTIONS(8589), 1, + sym__entry_separator, + STATE(4907), 1, + sym_comment, + [141672] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8591), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4870), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4908), 1, + sym_comment, + [141685] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7244), 1, + sym__entry_separator, + ACTIONS(8593), 1, + anon_sym_RBRACK, + STATE(4909), 1, sym_comment, - [127922] = 4, + [141698] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1870), 1, + ACTIONS(904), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, + ACTIONS(1900), 1, sym__unquoted_pattern, - STATE(4697), 1, + STATE(4910), 1, + sym_comment, + [141711] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5378), 1, + sym__entry_separator, + STATE(2612), 1, + aux_sym__types_body_repeat2, + STATE(4911), 1, + sym_comment, + [141724] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5154), 1, + sym__entry_separator, + STATE(2472), 1, + aux_sym__types_body_repeat2, + STATE(4912), 1, + sym_comment, + [141737] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7214), 1, + sym__entry_separator, + ACTIONS(8595), 1, + anon_sym_RBRACK, + STATE(4913), 1, + sym_comment, + [141750] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8597), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4905), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4914), 1, + sym_comment, + [141763] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8599), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4908), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4915), 1, + sym_comment, + [141776] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4720), 1, + sym__entry_separator, + STATE(2193), 1, + aux_sym__types_body_repeat2, + STATE(4916), 1, + sym_comment, + [141789] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5122), 1, + sym__entry_separator, + STATE(2467), 1, + aux_sym__types_body_repeat2, + STATE(4917), 1, sym_comment, - [127935] = 4, + [141802] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2501), 1, + ACTIONS(2742), 1, anon_sym_LBRACE, - ACTIONS(2503), 1, + ACTIONS(2760), 1, sym__unquoted_pattern, - STATE(4698), 1, + STATE(4918), 1, sym_comment, - [127948] = 4, + [141815] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8601), 1, + anon_sym_RBRACK, + ACTIONS(8603), 1, + sym__entry_separator, + STATE(4919), 1, + sym_comment, + [141828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4561), 1, + STATE(4637), 1, sym_block, - STATE(4699), 1, + STATE(4920), 1, sym_comment, - [127961] = 4, + [141841] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_COLON2, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - STATE(4700), 1, + ACTIONS(8605), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4921), 2, sym_comment, - [127974] = 4, - ACTIONS(103), 1, + aux_sym__unquoted_with_expr_repeat1, + [141852] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1975), 1, - aux_sym__types_body_repeat2, - STATE(4701), 1, + ACTIONS(6822), 1, + anon_sym_LPAREN2, + STATE(4922), 1, sym_comment, - [127987] = 4, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + [141865] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4422), 1, + STATE(4737), 1, sym_block, - STATE(4702), 1, + STATE(4923), 1, sym_comment, - [128000] = 4, + [141878] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4492), 1, + STATE(4675), 1, sym_block, - STATE(4703), 1, + STATE(4924), 1, sym_comment, - [128013] = 4, + [141891] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4081), 1, + STATE(3402), 1, sym_block, - STATE(4704), 1, + STATE(4925), 1, sym_comment, - [128026] = 4, + [141904] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4082), 1, + STATE(4738), 1, sym_block, - STATE(4705), 1, + STATE(4926), 1, + sym_comment, + [141917] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + STATE(1726), 1, + aux_sym__types_body_repeat2, + STATE(4927), 1, + sym_comment, + [141930] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1758), 1, + sym__entry_separator, + STATE(1722), 1, + aux_sym__types_body_repeat2, + STATE(4928), 1, sym_comment, - [128039] = 4, + [141943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(8261), 1, - anon_sym_RBRACK, - STATE(4706), 1, + STATE(4929), 1, sym_comment, - [128052] = 4, + ACTIONS(8608), 2, + anon_sym_RBRACK, + sym_hex_digit, + [141954] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4269), 1, + STATE(4639), 1, sym_block, - STATE(4707), 1, + STATE(4930), 1, sym_comment, - [128065] = 4, + [141967] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8263), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4708), 1, + ACTIONS(2818), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2828), 1, + anon_sym_COLON2, + STATE(4931), 1, sym_comment, - STATE(4735), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128078] = 4, + [141980] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8265), 1, - anon_sym_GT2, - ACTIONS(8267), 1, - sym__entry_separator, - STATE(4709), 1, + ACTIONS(8610), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4921), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4932), 1, sym_comment, - [128091] = 4, - ACTIONS(103), 1, + [141993] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6894), 1, - sym__entry_separator, - ACTIONS(8269), 1, - anon_sym_RBRACK, - STATE(4710), 1, + ACTIONS(1890), 1, + anon_sym_LPAREN2, + STATE(4933), 1, sym_comment, - [128104] = 4, + STATE(5247), 1, + sym__expr_parenthesized_immediate, + [142006] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6922), 1, - sym__entry_separator, - ACTIONS(8271), 1, - anon_sym_RBRACK, - STATE(4711), 1, - sym_comment, - [128117] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4712), 1, + ACTIONS(8612), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4819), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4934), 1, sym_comment, - ACTIONS(8049), 2, - anon_sym_GT2, - anon_sym_AT2, - [128128] = 4, + [142019] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(1984), 1, + ACTIONS(1774), 1, sym__unquoted_pattern, - STATE(4713), 1, + ACTIONS(2094), 1, + anon_sym_LBRACE, + STATE(4935), 1, sym_comment, - [128141] = 4, + [142032] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8273), 1, + ACTIONS(8614), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 1, + STATE(4820), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4714), 1, + STATE(4936), 1, sym_comment, - [128154] = 4, + [142045] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8275), 1, - anon_sym_def, - ACTIONS(8277), 1, - anon_sym_extern, - STATE(4715), 1, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(4642), 1, + sym_block, + STATE(4937), 1, sym_comment, - [128167] = 4, + [142058] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3757), 1, - sym__entry_separator, - ACTIONS(8279), 1, - anon_sym_RBRACE, - STATE(4716), 1, + ACTIONS(8616), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4860), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(4938), 1, sym_comment, - [128180] = 4, - ACTIONS(103), 1, + [142071] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7633), 1, - anon_sym_RBRACE, - ACTIONS(7635), 1, - sym__entry_separator, - STATE(4717), 1, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(4259), 1, + sym_block, + STATE(4939), 1, sym_comment, - [128193] = 4, + [142084] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(1014), 1, anon_sym_LBRACE, - STATE(4384), 1, - sym_block, - STATE(4718), 1, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(4940), 1, sym_comment, - [128206] = 4, + [142097] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(1032), 1, anon_sym_LBRACE, - STATE(4523), 1, + ACTIONS(2772), 1, + sym__unquoted_pattern, + STATE(4941), 1, + sym_comment, + [142110] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(3605), 1, sym_block, - STATE(4719), 1, + STATE(4942), 1, sym_comment, - [128219] = 4, + [142123] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2637), 1, - anon_sym_RBRACE, - STATE(4720), 1, + STATE(4943), 1, sym_comment, - [128232] = 4, - ACTIONS(103), 1, + ACTIONS(2310), 2, + anon_sym_POUND_BANG, + sym__newline, + [142134] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8282), 1, - anon_sym_RBRACK, - ACTIONS(8284), 1, - sym__entry_separator, - STATE(4721), 1, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(4260), 1, + sym_block, + STATE(4944), 1, sym_comment, - [128245] = 4, + [142147] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4562), 1, + STATE(4262), 1, sym_block, - STATE(4722), 1, + STATE(4945), 1, sym_comment, - [128258] = 4, + [142160] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2523), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4723), 1, + STATE(4263), 1, + sym_block, + STATE(4946), 1, sym_comment, - [128271] = 4, + [142173] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4338), 1, + STATE(3556), 1, sym_block, - STATE(4724), 1, + STATE(4947), 1, + sym_comment, + [142186] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8618), 1, + anon_sym_def, + ACTIONS(8620), 1, + anon_sym_extern, + STATE(4948), 1, + sym_comment, + [142199] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(4753), 1, + sym_block, + STATE(4949), 1, sym_comment, - [128284] = 4, + [142212] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8286), 1, + ACTIONS(8622), 1, aux_sym__unquoted_with_expr_token1, - STATE(4663), 1, + STATE(4921), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(4725), 1, + STATE(4950), 1, sym_comment, - [128297] = 4, + [142225] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(2114), 1, + sym__unquoted_pattern, + ACTIONS(2750), 1, anon_sym_LBRACE, - STATE(3076), 1, + STATE(4951), 1, + sym_comment, + [142238] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2104), 1, + anon_sym_LBRACE, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(4952), 1, + sym_comment, + [142251] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(4643), 1, sym_block, - STATE(4726), 1, + STATE(4953), 1, sym_comment, - [128310] = 4, + [142264] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(4814), 1, sym__entry_separator, - STATE(1496), 1, + STATE(2352), 1, aux_sym__types_body_repeat2, - STATE(4727), 1, + STATE(4954), 1, sym_comment, - [128323] = 4, - ACTIONS(103), 1, + [142277] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8288), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4708), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(4728), 1, + ACTIONS(8624), 1, + anon_sym_def, + ACTIONS(8626), 1, + anon_sym_extern, + STATE(4955), 1, sym_comment, - [128336] = 4, - ACTIONS(103), 1, + [142290] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - STATE(2402), 1, - aux_sym__types_body_repeat2, - STATE(4729), 1, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(4277), 1, + sym_block, + STATE(4956), 1, sym_comment, - [128349] = 4, - ACTIONS(103), 1, + [142303] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5963), 1, - anon_sym_RBRACK, - ACTIONS(5965), 1, - sym__entry_separator, - STATE(4730), 1, + ACTIONS(8628), 1, + anon_sym_DASH2, + STATE(4957), 1, sym_comment, - [128362] = 4, + STATE(5068), 1, + sym_param_short_flag, + [142316] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6115), 1, - sym__entry_separator, - ACTIONS(6117), 1, - anon_sym_RBRACK, - STATE(4731), 1, + ACTIONS(8630), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4932), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4958), 1, sym_comment, - [128375] = 4, + [142329] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2252), 1, - aux_sym__types_body_repeat2, - STATE(4732), 1, + ACTIONS(8632), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4950), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4959), 1, sym_comment, - [128388] = 3, + [142342] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4733), 1, + ACTIONS(5542), 1, + anon_sym_LPAREN2, + STATE(4960), 1, sym_comment, - ACTIONS(1522), 2, - sym__table_head_separator, - anon_sym_DOT2, - [128399] = 4, + STATE(5189), 1, + sym__expr_parenthesized_immediate, + [142355] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, - STATE(4563), 1, + STATE(4279), 1, sym_block, - STATE(4734), 1, + STATE(4961), 1, sym_comment, - [128412] = 3, - ACTIONS(103), 1, + [142368] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8290), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4735), 2, + ACTIONS(6599), 1, + anon_sym_DOLLAR2, + ACTIONS(8634), 1, + anon_sym_RBRACK, + STATE(4962), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128423] = 4, - ACTIONS(103), 1, + [142381] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1979), 1, - aux_sym__types_body_repeat2, - STATE(4736), 1, + ACTIONS(1920), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + sym__unquoted_pattern, + STATE(4963), 1, sym_comment, - [128436] = 4, + [142394] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + ACTIONS(2715), 1, anon_sym_LBRACE, - STATE(4486), 1, - sym_block, - STATE(4737), 1, + STATE(4964), 1, sym_comment, - [128449] = 4, + [142407] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4533), 1, + STATE(4560), 1, sym_block, - STATE(4738), 1, + STATE(4965), 1, sym_comment, - [128462] = 4, - ACTIONS(103), 1, + [142420] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8293), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4739), 1, + ACTIONS(4263), 1, + anon_sym_LBRACE, + STATE(4494), 1, + sym_block, + STATE(4966), 1, sym_comment, - STATE(4755), 1, - aux_sym__unquoted_with_expr_repeat1, - [128475] = 4, + [142433] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4535), 1, + STATE(4561), 1, sym_block, - STATE(4740), 1, + STATE(4967), 1, sym_comment, - [128488] = 4, + [142446] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - STATE(4741), 1, + ACTIONS(6442), 1, + sym__entry_separator, + ACTIONS(6444), 1, + anon_sym_GT2, + STATE(4968), 1, sym_comment, - [128501] = 4, - ACTIONS(103), 1, + [142459] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8295), 1, - anon_sym_RBRACK, - ACTIONS(8297), 1, - sym__entry_separator, - STATE(4742), 1, + ACTIONS(1856), 1, + anon_sym_LBRACE, + ACTIONS(2748), 1, + sym__unquoted_pattern, + STATE(4969), 1, sym_comment, - [128514] = 3, + [142472] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4743), 1, + STATE(4970), 1, sym_comment, - ACTIONS(1537), 2, + ACTIONS(1659), 2, sym__table_head_separator, anon_sym_DOT2, - [128525] = 4, + [142483] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(8636), 1, + anon_sym_GT2, + ACTIONS(8638), 1, sym__entry_separator, - STATE(2120), 1, - aux_sym__types_body_repeat2, - STATE(4744), 1, - sym_comment, - [128538] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8299), 1, - sym__newline, - ACTIONS(8301), 1, - sym__space, - STATE(4745), 1, - sym_comment, - [128551] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8303), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4746), 1, + STATE(4971), 1, sym_comment, - STATE(4757), 1, - aux_sym__unquoted_with_expr_repeat1, - [128564] = 4, + [142496] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(4249), 1, anon_sym_LBRACE, - STATE(4500), 1, + STATE(4632), 1, sym_block, - STATE(4747), 1, - sym_comment, - [128577] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2575), 1, - sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACE, - STATE(4748), 1, - sym_comment, - [128590] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(4367), 1, - aux_sym__types_body_repeat2, - STATE(4749), 1, + STATE(4972), 1, sym_comment, - [128603] = 4, + [142509] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1964), 1, + ACTIONS(6446), 1, sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - STATE(4750), 1, - sym_comment, - [128616] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8305), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4751), 1, + ACTIONS(6448), 1, + anon_sym_GT2, + STATE(4973), 1, sym_comment, - STATE(4764), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128629] = 4, + [142522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(8307), 1, - anon_sym_RBRACK, - STATE(4752), 1, + ACTIONS(4249), 1, + anon_sym_LBRACE, + STATE(4647), 1, + sym_block, + STATE(4974), 1, sym_comment, - [128642] = 4, + [142535] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - STATE(4753), 1, + ACTIONS(8640), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4853), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4975), 1, sym_comment, - [128655] = 4, + [142548] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, - STATE(4754), 1, + ACTIONS(8642), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4976), 1, sym_comment, - [128668] = 4, + STATE(4980), 1, + aux_sym__unquoted_with_expr_repeat1, + [142561] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8309), 1, + ACTIONS(8644), 1, aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, + STATE(4901), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(4755), 1, + STATE(4977), 1, sym_comment, - [128681] = 4, + [142574] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3106), 1, - sym_block, - STATE(4756), 1, + STATE(4978), 1, sym_comment, - [128694] = 4, + ACTIONS(8301), 2, + anon_sym_GT2, + anon_sym_AT2, + [142585] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8311), 1, + ACTIONS(8646), 1, aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, + STATE(4856), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(4757), 1, + STATE(4979), 1, sym_comment, - [128707] = 4, + [142598] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - STATE(1491), 1, - aux_sym__types_body_repeat2, - STATE(4758), 1, + ACTIONS(8648), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4921), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4980), 1, sym_comment, - [128720] = 4, + [142611] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3490), 1, + ACTIONS(8650), 1, + sym__newline, + ACTIONS(8652), 1, sym__space, - STATE(1407), 1, - aux_sym_pipe_element_repeat1, - STATE(4759), 1, - sym_comment, - [128733] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6061), 1, - sym__entry_separator, - ACTIONS(6063), 1, - anon_sym_GT2, - STATE(4760), 1, - sym_comment, - [128746] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8313), 1, - anon_sym_RBRACE, - ACTIONS(8315), 1, - sym__entry_separator, - STATE(4761), 1, + STATE(4981), 1, sym_comment, - [128759] = 4, + [142624] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6065), 1, - sym__entry_separator, - ACTIONS(6067), 1, - anon_sym_GT2, - STATE(4762), 1, + ACTIONS(2006), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4982), 1, sym_comment, - [128772] = 4, + [142634] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3159), 1, - sym_block, - STATE(4763), 1, - sym_comment, - [128785] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8317), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4735), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(4764), 1, + ACTIONS(8654), 1, + anon_sym_RBRACK, + STATE(4983), 1, sym_comment, - [128798] = 4, - ACTIONS(103), 1, + [142644] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7654), 1, + ACTIONS(8656), 1, anon_sym_RBRACE, - ACTIONS(7656), 1, - sym__entry_separator, - STATE(4765), 1, + STATE(4984), 1, sym_comment, - [128811] = 3, + [142654] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4766), 1, - sym_comment, - ACTIONS(8319), 2, + ACTIONS(8658), 1, anon_sym_RBRACK, - sym_hex_digit, - [128822] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - STATE(2118), 1, - aux_sym__types_body_repeat2, - STATE(4767), 1, + STATE(4985), 1, sym_comment, - [128835] = 4, - ACTIONS(103), 1, + [142664] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8321), 1, + ACTIONS(8660), 1, anon_sym_RBRACE, - ACTIONS(8323), 1, - sym__entry_separator, - STATE(4768), 1, + STATE(4986), 1, sym_comment, - [128848] = 4, + [142674] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8167), 1, - aux_sym__immediate_decimal_token5, - STATE(4769), 1, - sym_comment, - [128861] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8325), 1, - anon_sym_RBRACK, - ACTIONS(8327), 1, - sym__entry_separator, - STATE(4770), 1, + ACTIONS(8662), 1, + anon_sym_RPAREN, + STATE(4987), 1, sym_comment, - [128874] = 4, + [142684] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4240), 1, - sym_block, - STATE(4771), 1, - sym_comment, - [128887] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8331), 1, - aux_sym__record_key_token1, - STATE(4772), 1, + ACTIONS(8664), 1, + anon_sym_RBRACE, + STATE(4988), 1, sym_comment, - [128900] = 4, + [142694] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8333), 1, - aux_sym__immediate_decimal_token5, - STATE(4773), 1, + ACTIONS(8666), 1, + anon_sym_RBRACK, + STATE(4989), 1, sym_comment, - [128913] = 4, - ACTIONS(103), 1, + [142704] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7662), 1, + ACTIONS(8668), 1, anon_sym_RBRACE, - ACTIONS(7664), 1, - sym__entry_separator, - STATE(4774), 1, - sym_comment, - [128926] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8335), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4657), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4775), 1, + STATE(4990), 1, sym_comment, - [128939] = 4, + [142714] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3395), 1, - sym_block, - STATE(4776), 1, + ACTIONS(8670), 1, + anon_sym_RBRACE, + STATE(4991), 1, sym_comment, - [128952] = 4, - ACTIONS(103), 1, + [142724] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8337), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4658), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4777), 1, + ACTIONS(8672), 1, + anon_sym_RBRACK, + STATE(4992), 1, sym_comment, - [128965] = 4, - ACTIONS(103), 1, + [142734] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACE, - STATE(4778), 1, + ACTIONS(8674), 1, + anon_sym_RPAREN, + STATE(4993), 1, sym_comment, - [128978] = 4, + [142744] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3346), 1, - sym_block, - STATE(4779), 1, + ACTIONS(8676), 1, + anon_sym_EQ, + STATE(4994), 1, sym_comment, - [128991] = 4, + [142754] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACE, - ACTIONS(1018), 1, - sym__entry_separator, - STATE(4780), 1, + ACTIONS(8678), 1, + aux_sym_cmd_identifier_token6, + STATE(4995), 1, sym_comment, - [129004] = 4, + [142764] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4144), 1, - sym_block, - STATE(4781), 1, + ACTIONS(6878), 1, + sym__unquoted_pattern_in_record, + STATE(4996), 1, sym_comment, - [129017] = 4, + [142774] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4156), 1, - sym_block, - STATE(4782), 1, + ACTIONS(8680), 1, + sym_raw_string_end, + STATE(4997), 1, sym_comment, - [129030] = 4, + [142784] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8339), 1, - sym_identifier, - ACTIONS(8341), 1, - anon_sym_DOLLAR, - STATE(4783), 1, + ACTIONS(355), 1, + anon_sym_RPAREN2, + STATE(4998), 1, sym_comment, - [129043] = 4, + [142794] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8343), 1, - anon_sym_def, - ACTIONS(8345), 1, - anon_sym_extern, - STATE(4784), 1, + ACTIONS(5683), 1, + anon_sym_EQ2, + STATE(4999), 1, sym_comment, - [129056] = 4, - ACTIONS(103), 1, + [142804] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - STATE(2240), 1, - aux_sym__types_body_repeat2, - STATE(4785), 1, + ACTIONS(319), 1, + anon_sym_RBRACE, + STATE(5000), 1, sym_comment, - [129069] = 4, + [142814] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1726), 1, - anon_sym_LBRACE, - ACTIONS(1728), 1, - sym__unquoted_pattern, - STATE(4786), 1, + ACTIONS(8682), 1, + anon_sym_RBRACK, + STATE(5001), 1, sym_comment, - [129082] = 4, + [142824] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LBRACE, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(4787), 1, + ACTIONS(8684), 1, + anon_sym_RPAREN, + STATE(5002), 1, sym_comment, - [129095] = 4, + [142834] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - STATE(4788), 1, + ACTIONS(8686), 1, + anon_sym_RPAREN, + STATE(5003), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [129108] = 4, - ACTIONS(103), 1, + [142844] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8347), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4789), 1, + ACTIONS(8688), 1, + sym_raw_string_content, + STATE(5004), 1, sym_comment, - [129121] = 4, - ACTIONS(103), 1, + [142854] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__entry_separator, - ACTIONS(2569), 1, + ACTIONS(8690), 1, anon_sym_RBRACE, - STATE(4790), 1, + STATE(5005), 1, sym_comment, - [129134] = 3, - ACTIONS(103), 1, + [142864] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8349), 1, - aux_sym_cmd_identifier_token2, - STATE(4791), 1, + ACTIONS(8692), 1, + anon_sym_GT2, + STATE(5006), 1, sym_comment, - [129144] = 3, + [142874] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8351), 1, + ACTIONS(8694), 1, anon_sym_DQUOTE, - STATE(4792), 1, + STATE(5007), 1, sym_comment, - [129154] = 3, + [142884] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8353), 1, + ACTIONS(8696), 1, anon_sym_SQUOTE2, - STATE(4793), 1, + STATE(5008), 1, sym_comment, - [129164] = 3, + [142894] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8355), 1, + ACTIONS(8698), 1, anon_sym_BQUOTE2, - STATE(4794), 1, + STATE(5009), 1, sym_comment, - [129174] = 3, + [142904] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8357), 1, - anon_sym_LT, - STATE(4795), 1, + ACTIONS(8700), 1, + anon_sym_RBRACE, + STATE(5010), 1, sym_comment, - [129184] = 3, + [142914] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8359), 1, - anon_sym_RBRACE, - STATE(4796), 1, + ACTIONS(8702), 1, + anon_sym_RBRACK, + STATE(5011), 1, sym_comment, - [129194] = 3, + [142924] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8361), 1, + ACTIONS(8704), 1, anon_sym_RBRACK, - STATE(4797), 1, + STATE(5012), 1, sym_comment, - [129204] = 3, + [142934] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8363), 1, + ACTIONS(8706), 1, anon_sym_RPAREN, - STATE(4798), 1, + STATE(5013), 1, sym_comment, - [129214] = 3, + [142944] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8365), 1, - anon_sym_RPAREN, - STATE(4799), 1, + ACTIONS(6601), 1, + sym__unquoted_pattern_in_list, + STATE(5014), 1, sym_comment, - [129224] = 3, + [142954] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8367), 1, + ACTIONS(8708), 1, anon_sym_DQUOTE, - STATE(4800), 1, + STATE(5015), 1, sym_comment, - [129234] = 3, + [142964] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8369), 1, - sym_raw_string_end, - STATE(4801), 1, + ACTIONS(8710), 1, + sym__table_head_separator, + STATE(5016), 1, sym_comment, - [129244] = 3, - ACTIONS(103), 1, + [142974] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8371), 1, - aux_sym_cmd_identifier_token6, - STATE(4802), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern_in_record, + STATE(5017), 1, sym_comment, - [129254] = 3, + [142984] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8373), 1, - anon_sym_RBRACE, - STATE(4803), 1, + ACTIONS(2768), 1, + sym__unquoted_pattern, + STATE(5018), 1, sym_comment, - [129264] = 3, + [142994] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8375), 1, - anon_sym_RPAREN, - STATE(4804), 1, + ACTIONS(8712), 1, + anon_sym_GT2, + STATE(5019), 1, sym_comment, - [129274] = 3, + [143004] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8377), 1, + ACTIONS(8714), 1, sym_raw_string_end, - STATE(4805), 1, + STATE(5020), 1, sym_comment, - [129284] = 3, + [143014] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_RPAREN2, - STATE(4806), 1, + ACTIONS(8716), 1, + anon_sym_EQ, + STATE(5021), 1, sym_comment, - [129294] = 3, + [143024] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8379), 1, + ACTIONS(8718), 1, anon_sym_GT2, - STATE(4807), 1, + STATE(5022), 1, sym_comment, - [129304] = 3, + [143034] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8381), 1, - anon_sym_GT2, - STATE(4808), 1, + ACTIONS(8720), 1, + anon_sym_EQ, + STATE(5023), 1, sym_comment, - [129314] = 3, + [143044] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8383), 1, + ACTIONS(8722), 1, anon_sym_RBRACK, - STATE(4809), 1, + STATE(5024), 1, sym_comment, - [129324] = 3, + [143054] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(301), 1, - anon_sym_RBRACE, - STATE(4810), 1, + ACTIONS(8724), 1, + anon_sym_RPAREN, + STATE(5025), 1, sym_comment, - [129334] = 3, + [143064] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8385), 1, - anon_sym_RBRACE, - STATE(4811), 1, + ACTIONS(8726), 1, + anon_sym_SQUOTE2, + STATE(5026), 1, sym_comment, - [129344] = 3, + [143074] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8387), 1, + ACTIONS(8728), 1, + anon_sym_BQUOTE2, + STATE(5027), 1, + sym_comment, + [143084] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8730), 1, anon_sym_DQUOTE, - STATE(4812), 1, + STATE(5028), 1, sym_comment, - [129354] = 3, + [143094] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8389), 1, + ACTIONS(8732), 1, anon_sym_SQUOTE2, - STATE(4813), 1, + STATE(5029), 1, sym_comment, - [129364] = 3, + [143104] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8391), 1, + ACTIONS(8734), 1, anon_sym_BQUOTE2, - STATE(4814), 1, + STATE(5030), 1, sym_comment, - [129374] = 3, + [143114] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8393), 1, - anon_sym_RBRACK, - STATE(4815), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern, + STATE(5031), 1, sym_comment, - [129384] = 3, + [143124] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8395), 1, + ACTIONS(8736), 1, anon_sym_RBRACE, - STATE(4816), 1, + STATE(5032), 1, sym_comment, - [129394] = 3, + [143134] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8397), 1, + ACTIONS(8738), 1, anon_sym_RPAREN, - STATE(4817), 1, + STATE(5033), 1, sym_comment, - [129404] = 3, - ACTIONS(103), 1, + [143144] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8399), 1, - aux_sym_cmd_identifier_token6, - STATE(4818), 1, + ACTIONS(8129), 1, + anon_sym_LBRACE, + STATE(5034), 1, sym_comment, - [129414] = 3, + [143154] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8401), 1, - anon_sym_RBRACE, - STATE(4819), 1, + ACTIONS(8740), 1, + anon_sym_RBRACK, + STATE(5035), 1, sym_comment, - [129424] = 3, + [143164] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_RBRACE, - STATE(4820), 1, + ACTIONS(7603), 1, + sym__unquoted_pattern, + STATE(5036), 1, sym_comment, - [129434] = 3, + [143174] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8405), 1, - anon_sym_DASH_GT, - STATE(4821), 1, + ACTIONS(8742), 1, + anon_sym_RPAREN, + STATE(5037), 1, sym_comment, - [129444] = 3, + [143184] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8407), 1, + ACTIONS(8744), 1, sym_raw_string_end, - STATE(4822), 1, + STATE(5038), 1, sym_comment, - [129454] = 3, - ACTIONS(103), 1, + [143194] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8409), 1, - aux_sym_cmd_identifier_token6, - STATE(4823), 1, + ACTIONS(8746), 1, + anon_sym_RBRACE, + STATE(5039), 1, sym_comment, - [129464] = 3, + [143204] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8411), 1, - anon_sym_DQUOTE, - STATE(4824), 1, + ACTIONS(8748), 1, + anon_sym_RBRACE, + STATE(5040), 1, sym_comment, - [129474] = 3, - ACTIONS(103), 1, + [143214] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8413), 1, - aux_sym_cmd_identifier_token2, - STATE(4825), 1, + ACTIONS(8750), 1, + anon_sym_LBRACE, + STATE(5041), 1, sym_comment, - [129484] = 3, + [143224] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8415), 1, + ACTIONS(8752), 1, anon_sym_RBRACK, - STATE(4826), 1, + STATE(5042), 1, sym_comment, - [129494] = 3, - ACTIONS(3), 1, + [143234] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8417), 1, - anon_sym_RPAREN, - STATE(4827), 1, + ACTIONS(8754), 1, + aux_sym_cmd_identifier_token6, + STATE(5043), 1, sym_comment, - [129504] = 3, + [143244] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8419), 1, - anon_sym_RBRACE, - STATE(4828), 1, + ACTIONS(8756), 1, + anon_sym_RBRACK, + STATE(5044), 1, sym_comment, - [129514] = 3, + [143254] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8421), 1, + ACTIONS(8758), 1, anon_sym_DQUOTE, - STATE(4829), 1, + STATE(5045), 1, sym_comment, - [129524] = 3, + [143264] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8423), 1, + ACTIONS(8760), 1, anon_sym_SQUOTE2, - STATE(4830), 1, + STATE(5046), 1, sym_comment, - [129534] = 3, + [143274] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8425), 1, + ACTIONS(8762), 1, anon_sym_BQUOTE2, - STATE(4831), 1, + STATE(5047), 1, sym_comment, - [129544] = 3, + [143284] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8427), 1, + ACTIONS(8764), 1, anon_sym_RPAREN, - STATE(4832), 1, - sym_comment, - [129554] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8331), 1, - aux_sym__record_key_token1, - STATE(4833), 1, + STATE(5048), 1, sym_comment, - [129564] = 3, + [143294] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8429), 1, - anon_sym_SQUOTE2, - STATE(4834), 1, + ACTIONS(8766), 1, + anon_sym_EQ, + STATE(5049), 1, sym_comment, - [129574] = 3, - ACTIONS(3), 1, + [143304] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8431), 1, - anon_sym_RPAREN, - STATE(4835), 1, + ACTIONS(2818), 1, + aux_sym_cmd_identifier_token2, + STATE(5050), 1, sym_comment, - [129584] = 3, - ACTIONS(3), 1, + [143314] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8433), 1, - anon_sym_EQ, - STATE(4836), 1, + ACTIONS(2002), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5051), 1, sym_comment, - [129594] = 3, + [143324] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8435), 1, + ACTIONS(8768), 1, sym_raw_string_end, - STATE(4837), 1, + STATE(5052), 1, sym_comment, - [129604] = 3, + [143334] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - STATE(4838), 1, + ACTIONS(8192), 1, + anon_sym_EQ_GT, + STATE(5053), 1, sym_comment, - [129614] = 3, + [143344] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_RPAREN, - STATE(4839), 1, + ACTIONS(8504), 1, + anon_sym_LBRACE, + STATE(5054), 1, sym_comment, - [129624] = 3, - ACTIONS(3), 1, + [143354] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8439), 1, - anon_sym_RBRACK, - STATE(4840), 1, + ACTIONS(8770), 1, + aux_sym_cmd_identifier_token6, + STATE(5055), 1, sym_comment, - [129634] = 3, + [143364] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4841), 1, + ACTIONS(8772), 1, + aux_sym_cmd_identifier_token6, + STATE(5056), 1, sym_comment, - [129644] = 3, + [143374] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8441), 1, - anon_sym_RBRACK, - STATE(4842), 1, + ACTIONS(8774), 1, + anon_sym_EQ, + STATE(5057), 1, sym_comment, - [129654] = 3, + [143384] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8443), 1, + ACTIONS(8776), 1, anon_sym_DQUOTE, - STATE(4843), 1, + STATE(5058), 1, sym_comment, - [129664] = 3, + [143394] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8445), 1, + ACTIONS(8778), 1, anon_sym_SQUOTE2, - STATE(4844), 1, + STATE(5059), 1, sym_comment, - [129674] = 3, + [143404] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8447), 1, + ACTIONS(8780), 1, anon_sym_BQUOTE2, - STATE(4845), 1, + STATE(5060), 1, sym_comment, - [129684] = 3, + [143414] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8449), 1, + ACTIONS(8782), 1, anon_sym_RPAREN, - STATE(4846), 1, + STATE(5061), 1, sym_comment, - [129694] = 3, + [143424] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8451), 1, - sym_raw_string_end, - STATE(4847), 1, + ACTIONS(359), 1, + anon_sym_RPAREN2, + STATE(5062), 1, sym_comment, - [129704] = 3, + [143434] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8453), 1, + ACTIONS(8784), 1, sym_identifier, - STATE(4848), 1, + STATE(5063), 1, sym_comment, - [129714] = 3, + [143444] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8455), 1, - anon_sym_DASH_GT, - STATE(4849), 1, + ACTIONS(1774), 1, + sym__unquoted_pattern_in_record, + STATE(5064), 1, sym_comment, - [129724] = 3, + [143454] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8457), 1, + ACTIONS(8786), 1, sym_raw_string_end, - STATE(4850), 1, + STATE(5065), 1, sym_comment, - [129734] = 3, + [143464] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(4851), 1, + ACTIONS(8788), 1, + anon_sym_EQ, + STATE(5066), 1, sym_comment, - [129744] = 3, + [143474] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8459), 1, - anon_sym_RBRACE, - STATE(4852), 1, + ACTIONS(8790), 1, + sym_raw_string_end, + STATE(5067), 1, sym_comment, - [129754] = 3, + [143484] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - STATE(4853), 1, + ACTIONS(8792), 1, + anon_sym_RPAREN, + STATE(5068), 1, sym_comment, - [129764] = 3, + [143494] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8461), 1, + ACTIONS(8794), 1, anon_sym_RBRACK, - STATE(4854), 1, + STATE(5069), 1, + sym_comment, + [143504] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7242), 1, + sym__unquoted_pattern, + STATE(5070), 1, sym_comment, - [129774] = 3, + [143514] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8463), 1, + ACTIONS(8796), 1, anon_sym_DQUOTE, - STATE(4855), 1, + STATE(5071), 1, sym_comment, - [129784] = 3, + [143524] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8465), 1, + ACTIONS(8798), 1, anon_sym_SQUOTE2, - STATE(4856), 1, + STATE(5072), 1, sym_comment, - [129794] = 3, + [143534] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8467), 1, + ACTIONS(8800), 1, anon_sym_BQUOTE2, - STATE(4857), 1, + STATE(5073), 1, sym_comment, - [129804] = 3, + [143544] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8469), 1, - anon_sym_RBRACE, - STATE(4858), 1, + ACTIONS(8802), 1, + anon_sym_RPAREN, + STATE(5074), 1, sym_comment, - [129814] = 3, + [143554] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8471), 1, + ACTIONS(8804), 1, + anon_sym_GT2, + STATE(5075), 1, + sym_comment, + [143564] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8806), 1, anon_sym_RBRACE, - STATE(4859), 1, + STATE(5076), 1, + sym_comment, + [143574] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8808), 1, + anon_sym_EQ, + STATE(5077), 1, sym_comment, - [129824] = 3, + [143584] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8473), 1, + ACTIONS(8810), 1, sym_raw_string_end, - STATE(4860), 1, + STATE(5078), 1, sym_comment, - [129834] = 3, + [143594] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, - STATE(4861), 1, + ACTIONS(8812), 1, + anon_sym_DASH_GT, + STATE(5079), 1, sym_comment, - [129844] = 3, + [143604] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8475), 1, - sym_identifier, - STATE(4862), 1, + ACTIONS(8814), 1, + anon_sym_RPAREN, + STATE(5080), 1, + sym_comment, + [143614] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2006), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5081), 1, + sym_comment, + [143624] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8816), 1, + aux_sym_shebang_token1, + STATE(5082), 1, sym_comment, - [129854] = 3, + [143634] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8477), 1, + ACTIONS(8818), 1, + anon_sym_DQUOTE, + STATE(5083), 1, + sym_comment, + [143644] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8820), 1, + anon_sym_SQUOTE2, + STATE(5084), 1, + sym_comment, + [143654] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8822), 1, + anon_sym_BQUOTE2, + STATE(5085), 1, + sym_comment, + [143664] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5675), 1, + anon_sym_EQ2, + STATE(5086), 1, + sym_comment, + [143674] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8824), 1, anon_sym_RBRACK, - STATE(4863), 1, + STATE(5087), 1, sym_comment, - [129864] = 3, + [143684] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8479), 1, + ACTIONS(8826), 1, + sym_raw_string_end, + STATE(5088), 1, + sym_comment, + [143694] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2760), 1, + sym__unquoted_pattern, + STATE(5089), 1, + sym_comment, + [143704] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8828), 1, anon_sym_DQUOTE, - STATE(4864), 1, + STATE(5090), 1, sym_comment, - [129874] = 3, + [143714] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8481), 1, + ACTIONS(8830), 1, anon_sym_SQUOTE2, - STATE(4865), 1, + STATE(5091), 1, sym_comment, - [129884] = 3, + [143724] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8483), 1, + ACTIONS(8832), 1, anon_sym_BQUOTE2, - STATE(4866), 1, + STATE(5092), 1, sym_comment, - [129894] = 3, + [143734] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(4867), 1, + ACTIONS(5679), 1, + anon_sym_EQ2, + STATE(5093), 1, sym_comment, - [129904] = 3, + [143744] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8485), 1, - anon_sym_RPAREN, - STATE(4868), 1, + ACTIONS(2828), 1, + anon_sym_COLON2, + STATE(5094), 1, sym_comment, - [129914] = 3, + [143754] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8487), 1, + ACTIONS(8834), 1, sym_raw_string_end, - STATE(4869), 1, + STATE(5095), 1, sym_comment, - [129924] = 3, + [143764] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8489), 1, - anon_sym_RBRACK, - STATE(4870), 1, + ACTIONS(8836), 1, + anon_sym_PIPE, + STATE(5096), 1, sym_comment, - [129934] = 3, + [143774] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8491), 1, - anon_sym_GT2, - STATE(4871), 1, + ACTIONS(8838), 1, + anon_sym_DQUOTE, + STATE(5097), 1, sym_comment, - [129944] = 3, + [143784] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(8840), 1, + anon_sym_SQUOTE2, + STATE(5098), 1, + sym_comment, + [143794] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8842), 1, + anon_sym_BQUOTE2, + STATE(5099), 1, + sym_comment, + [143804] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8844), 1, + anon_sym_RPAREN, + STATE(5100), 1, + sym_comment, + [143814] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2772), 1, sym__unquoted_pattern, - STATE(4872), 1, + STATE(5101), 1, + sym_comment, + [143824] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8846), 1, + sym_raw_string_end, + STATE(5102), 1, + sym_comment, + [143834] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8848), 1, + anon_sym_RPAREN, + STATE(5103), 1, sym_comment, - [129954] = 3, + [143844] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8493), 1, + ACTIONS(8850), 1, anon_sym_DQUOTE, - STATE(4873), 1, + STATE(5104), 1, sym_comment, - [129964] = 3, + [143854] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8495), 1, + ACTIONS(8852), 1, anon_sym_SQUOTE2, - STATE(4874), 1, + STATE(5105), 1, sym_comment, - [129974] = 3, + [143864] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8497), 1, + ACTIONS(8854), 1, anon_sym_BQUOTE2, - STATE(4875), 1, + STATE(5106), 1, sym_comment, - [129984] = 3, + [143874] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8499), 1, - anon_sym_RPAREN, - STATE(4876), 1, + ACTIONS(309), 1, + anon_sym_RBRACE, + STATE(5107), 1, sym_comment, - [129994] = 3, - ACTIONS(103), 1, + [143884] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4877), 1, + ACTIONS(8856), 1, + anon_sym_RBRACE, + STATE(5108), 1, sym_comment, - [130004] = 3, + [143894] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8501), 1, + ACTIONS(8858), 1, sym_raw_string_end, - STATE(4878), 1, + STATE(5109), 1, sym_comment, - [130014] = 3, + [143904] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7841), 1, - anon_sym_LBRACE, - STATE(4879), 1, + ACTIONS(8860), 1, + anon_sym_GT2, + STATE(5110), 1, sym_comment, - [130024] = 3, + [143914] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8503), 1, + ACTIONS(8862), 1, anon_sym_DQUOTE, - STATE(4880), 1, + STATE(5111), 1, sym_comment, - [130034] = 3, + [143924] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8505), 1, + ACTIONS(8864), 1, anon_sym_SQUOTE2, - STATE(4881), 1, + STATE(5112), 1, sym_comment, - [130044] = 3, + [143934] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8507), 1, + ACTIONS(8866), 1, anon_sym_BQUOTE2, - STATE(4882), 1, + STATE(5113), 1, sym_comment, - [130054] = 3, + [143944] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8509), 1, - sym_raw_string_end, - STATE(4883), 1, + ACTIONS(8868), 1, + anon_sym_RBRACE, + STATE(5114), 1, sym_comment, - [130064] = 3, - ACTIONS(3), 1, + [143954] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(4884), 1, + ACTIONS(8870), 1, + aux_sym_cmd_identifier_token2, + STATE(5115), 1, sym_comment, - [130074] = 3, + [143964] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8511), 1, + ACTIONS(8872), 1, sym_raw_string_end, - STATE(4885), 1, + STATE(5116), 1, sym_comment, - [130084] = 3, + [143974] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8513), 1, - anon_sym_RBRACK, - STATE(4886), 1, + ACTIONS(8874), 1, + sym__table_head_separator, + STATE(5117), 1, sym_comment, - [130094] = 3, + [143984] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8515), 1, + ACTIONS(8876), 1, anon_sym_DQUOTE, - STATE(4887), 1, + STATE(5118), 1, sym_comment, - [130104] = 3, + [143994] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8517), 1, + ACTIONS(8878), 1, anon_sym_SQUOTE2, - STATE(4888), 1, + STATE(5119), 1, sym_comment, - [130114] = 3, + [144004] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8519), 1, + ACTIONS(8880), 1, anon_sym_BQUOTE2, - STATE(4889), 1, - sym_comment, - [130124] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8521), 1, - anon_sym_SQUOTE2, - STATE(4890), 1, + STATE(5120), 1, sym_comment, - [130134] = 3, + [144014] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8523), 1, - anon_sym_RPAREN, - STATE(4891), 1, + ACTIONS(8882), 1, + anon_sym_DQUOTE, + STATE(5121), 1, sym_comment, - [130144] = 3, + [144024] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8525), 1, + ACTIONS(8884), 1, sym_raw_string_end, - STATE(4892), 1, + STATE(5122), 1, sym_comment, - [130154] = 3, + [144034] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8527), 1, - anon_sym_RPAREN, - STATE(4893), 1, + ACTIONS(8886), 1, + anon_sym_SQUOTE2, + STATE(5123), 1, sym_comment, - [130164] = 3, + [144044] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8529), 1, + ACTIONS(8888), 1, anon_sym_DQUOTE, - STATE(4894), 1, + STATE(5124), 1, sym_comment, - [130174] = 3, + [144054] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8531), 1, + ACTIONS(8890), 1, anon_sym_SQUOTE2, - STATE(4895), 1, + STATE(5125), 1, sym_comment, - [130184] = 3, + [144064] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8533), 1, + ACTIONS(8892), 1, anon_sym_BQUOTE2, - STATE(4896), 1, - sym_comment, - [130194] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8535), 1, - anon_sym_GT2, - STATE(4897), 1, + STATE(5126), 1, sym_comment, - [130204] = 3, + [144074] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(297), 1, - anon_sym_RBRACE, - STATE(4898), 1, + ACTIONS(8894), 1, + anon_sym_RPAREN, + STATE(5127), 1, sym_comment, - [130214] = 3, + [144084] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8537), 1, + ACTIONS(8896), 1, sym_raw_string_end, - STATE(4899), 1, + STATE(5128), 1, sym_comment, - [130224] = 3, + [144094] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(309), 1, + ACTIONS(8898), 1, anon_sym_RBRACE, - STATE(4900), 1, + STATE(5129), 1, sym_comment, - [130234] = 3, + [144104] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8539), 1, + ACTIONS(8900), 1, anon_sym_DQUOTE, - STATE(4901), 1, + STATE(5130), 1, sym_comment, - [130244] = 3, + [144114] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8541), 1, + ACTIONS(8902), 1, anon_sym_SQUOTE2, - STATE(4902), 1, + STATE(5131), 1, sym_comment, - [130254] = 3, + [144124] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8543), 1, + ACTIONS(8904), 1, anon_sym_BQUOTE2, - STATE(4903), 1, + STATE(5132), 1, sym_comment, - [130264] = 3, + [144134] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8545), 1, - anon_sym_RBRACE, - STATE(4904), 1, - sym_comment, - [130274] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4905), 1, + ACTIONS(8906), 1, + anon_sym_BQUOTE2, + STATE(5133), 1, sym_comment, - [130284] = 3, + [144144] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8547), 1, + ACTIONS(8908), 1, sym_raw_string_end, - STATE(4906), 1, - sym_comment, - [130294] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8549), 1, - anon_sym_RBRACE, - STATE(4907), 1, + STATE(5134), 1, sym_comment, - [130304] = 3, + [144154] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8551), 1, + ACTIONS(8910), 1, anon_sym_DQUOTE, - STATE(4908), 1, + STATE(5135), 1, sym_comment, - [130314] = 3, + [144164] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8553), 1, + ACTIONS(8912), 1, anon_sym_SQUOTE2, - STATE(4909), 1, + STATE(5136), 1, sym_comment, - [130324] = 3, + [144174] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8555), 1, + ACTIONS(8914), 1, anon_sym_BQUOTE2, - STATE(4910), 1, + STATE(5137), 1, sym_comment, - [130334] = 3, + [144184] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8557), 1, + ACTIONS(8916), 1, anon_sym_RBRACK, - STATE(4911), 1, + STATE(5138), 1, sym_comment, - [130344] = 3, + [144194] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8559), 1, + ACTIONS(8918), 1, sym_raw_string_end, - STATE(4912), 1, + STATE(5139), 1, sym_comment, - [130354] = 3, + [144204] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8561), 1, + ACTIONS(8920), 1, anon_sym_DQUOTE, - STATE(4913), 1, + STATE(5140), 1, sym_comment, - [130364] = 3, + [144214] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8563), 1, + ACTIONS(8922), 1, anon_sym_SQUOTE2, - STATE(4914), 1, + STATE(5141), 1, sym_comment, - [130374] = 3, + [144224] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8565), 1, + ACTIONS(8924), 1, anon_sym_BQUOTE2, - STATE(4915), 1, + STATE(5142), 1, sym_comment, - [130384] = 3, + [144234] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8567), 1, + ACTIONS(8926), 1, sym_raw_string_content, - STATE(4916), 1, + STATE(5143), 1, sym_comment, - [130394] = 3, + [144244] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7770), 1, - anon_sym_EQ_GT, - STATE(4917), 1, + ACTIONS(8928), 1, + anon_sym_RBRACK, + STATE(5144), 1, sym_comment, - [130404] = 3, + [144254] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7342), 1, - sym__unquoted_pattern, - STATE(4918), 1, + ACTIONS(8930), 1, + anon_sym_LBRACE, + STATE(5145), 1, sym_comment, - [130414] = 3, - ACTIONS(3), 1, + [144264] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8569), 1, - anon_sym_RBRACE, - STATE(4919), 1, + ACTIONS(8932), 1, + aux_sym_cmd_identifier_token6, + STATE(5146), 1, sym_comment, - [130424] = 3, + [144274] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2132), 1, + ACTIONS(2252), 1, anon_sym_LBRACK2, - STATE(4920), 1, + STATE(5147), 1, sym_comment, - [130434] = 3, + [144284] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8571), 1, + ACTIONS(8934), 1, aux_sym__str_single_quotes_token1, - STATE(4921), 1, + STATE(5148), 1, sym_comment, - [130444] = 3, + [144294] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8573), 1, + ACTIONS(8936), 1, aux_sym__str_back_ticks_token1, - STATE(4922), 1, + STATE(5149), 1, sym_comment, - [130454] = 3, - ACTIONS(103), 1, + [144304] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8575), 1, - aux_sym_shebang_token1, - STATE(4923), 1, + ACTIONS(8938), 1, + anon_sym_RBRACE, + STATE(5150), 1, sym_comment, - [130464] = 3, - ACTIONS(3), 1, + [144314] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8577), 1, - anon_sym_in, - STATE(4924), 1, + ACTIONS(8940), 1, + aux_sym_cmd_identifier_token6, + STATE(5151), 1, sym_comment, - [130474] = 3, + [144324] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8579), 1, - anon_sym_GT2, - STATE(4925), 1, + ACTIONS(8942), 1, + anon_sym_RBRACE, + STATE(5152), 1, sym_comment, - [130484] = 3, + [144334] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8581), 1, - anon_sym_RBRACK, - STATE(4926), 1, + ACTIONS(8944), 1, + anon_sym_RBRACE, + STATE(5153), 1, sym_comment, - [130494] = 3, - ACTIONS(3), 1, + [144344] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_record, - STATE(4927), 1, + ACTIONS(2954), 1, + aux_sym_cmd_identifier_token2, + STATE(5154), 1, sym_comment, - [130504] = 3, + [144354] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_record, - STATE(4928), 1, + ACTIONS(8946), 1, + sym_identifier, + STATE(5155), 1, sym_comment, - [130514] = 3, + [144364] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8583), 1, + ACTIONS(8948), 1, anon_sym_RBRACE, - STATE(4929), 1, + STATE(5156), 1, sym_comment, - [130524] = 3, + [144374] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8585), 1, - anon_sym_PIPE, - STATE(4930), 1, + ACTIONS(8950), 1, + anon_sym_RBRACK, + STATE(5157), 1, sym_comment, - [130534] = 3, + [144384] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7867), 1, + ACTIONS(8090), 1, anon_sym_LBRACE, - STATE(4931), 1, + STATE(5158), 1, sym_comment, - [130544] = 3, + [144394] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8587), 1, + ACTIONS(8952), 1, anon_sym_LBRACE, - STATE(4932), 1, + STATE(5159), 1, sym_comment, - [130554] = 3, + [144404] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8589), 1, - anon_sym_GT2, - STATE(4933), 1, + ACTIONS(8954), 1, + sym_identifier, + STATE(5160), 1, sym_comment, - [130564] = 3, + [144414] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8591), 1, + ACTIONS(8956), 1, anon_sym_RBRACK, - STATE(4934), 1, - sym_comment, - [130574] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5241), 1, - anon_sym_EQ2, - STATE(4935), 1, + STATE(5161), 1, sym_comment, - [130584] = 3, + [144424] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1888), 1, + ACTIONS(2006), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(4936), 1, + STATE(5162), 1, sym_comment, - [130594] = 3, + [144434] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1708), 1, - anon_sym_COLON2, - STATE(4937), 1, + ACTIONS(8958), 1, + anon_sym_RBRACE, + STATE(5163), 1, sym_comment, - [130604] = 3, + [144444] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8593), 1, + ACTIONS(8960), 1, + anon_sym_RBRACK, + STATE(5164), 1, + sym_comment, + [144454] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8962), 1, anon_sym_RPAREN, - STATE(4938), 1, + STATE(5165), 1, sym_comment, - [130614] = 3, + [144464] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_DQUOTE, - STATE(4939), 1, + ACTIONS(5693), 1, + anon_sym_EQ2, + STATE(5166), 1, sym_comment, - [130624] = 3, + [144474] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8597), 1, - anon_sym_SQUOTE2, - STATE(4940), 1, + ACTIONS(2772), 1, + sym__unquoted_pattern_in_record, + STATE(5167), 1, sym_comment, - [130634] = 3, + [144484] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8599), 1, + ACTIONS(8964), 1, anon_sym_RBRACE, - STATE(4941), 1, + STATE(5168), 1, sym_comment, - [130644] = 3, + [144494] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8601), 1, - anon_sym_RPAREN2, - STATE(4942), 1, + ACTIONS(8966), 1, + anon_sym_RBRACE, + STATE(5169), 1, sym_comment, - [130654] = 3, - ACTIONS(103), 1, + [144504] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8603), 1, - sym__space, - STATE(4943), 1, + ACTIONS(8968), 1, + anon_sym_RPAREN, + STATE(5170), 1, sym_comment, - [130664] = 3, - ACTIONS(3), 1, + [144514] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8605), 1, - anon_sym_RBRACK, - STATE(4944), 1, + ACTIONS(8970), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5171), 1, sym_comment, - [130674] = 3, + [144524] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8607), 1, - anon_sym_BQUOTE2, - STATE(4945), 1, + ACTIONS(8972), 1, + anon_sym_LPAREN2, + STATE(5172), 1, sym_comment, - [130684] = 3, - ACTIONS(3), 1, + [144534] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6902), 1, - sym__unquoted_pattern, - STATE(4946), 1, + ACTIONS(8974), 1, + aux_sym_cmd_identifier_token6, + STATE(5173), 1, sym_comment, - [130694] = 3, + [144544] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8609), 1, - anon_sym_RBRACE, - STATE(4947), 1, + ACTIONS(8976), 1, + sym_long_flag_identifier, + STATE(5174), 1, sym_comment, - [130704] = 3, - ACTIONS(103), 1, + [144554] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4948), 1, + ACTIONS(8978), 1, + sym_param_short_flag_identifier, + STATE(5175), 1, sym_comment, - [130714] = 3, + [144564] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8611), 1, + ACTIONS(8980), 1, anon_sym_RBRACK, - STATE(4949), 1, + STATE(5176), 1, sym_comment, - [130724] = 3, + [144574] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8613), 1, + ACTIONS(8982), 1, anon_sym_EQ, - STATE(4950), 1, + STATE(5177), 1, sym_comment, - [130734] = 3, + [144584] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8615), 1, - sym__table_head_separator, - STATE(4951), 1, + ACTIONS(339), 1, + anon_sym_RPAREN2, + STATE(5178), 1, sym_comment, - [130744] = 3, - ACTIONS(103), 1, + [144594] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8617), 1, - aux_sym_cmd_identifier_token6, - STATE(4952), 1, + ACTIONS(8984), 1, + anon_sym_in, + STATE(5179), 1, sym_comment, - [130754] = 3, - ACTIONS(3), 1, + [144604] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8619), 1, - anon_sym_GT2, - STATE(4953), 1, + ACTIONS(2002), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5180), 1, sym_comment, - [130764] = 3, + [144614] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8621), 1, - sym_attribute_identifier, - STATE(4954), 1, + ACTIONS(8986), 1, + anon_sym_RBRACE, + STATE(5181), 1, sym_comment, - [130774] = 3, + [144624] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8623), 1, - anon_sym_RBRACK, - STATE(4955), 1, + ACTIONS(8988), 1, + anon_sym_RBRACE, + STATE(5182), 1, sym_comment, - [130784] = 3, + [144634] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8625), 1, - anon_sym_BQUOTE2, - STATE(4956), 1, + ACTIONS(8990), 1, + anon_sym_RBRACE, + STATE(5183), 1, sym_comment, - [130794] = 3, + [144644] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8627), 1, - sym__table_head_separator, - STATE(4957), 1, + ACTIONS(8992), 1, + anon_sym_RBRACK, + STATE(5184), 1, sym_comment, - [130804] = 3, + [144654] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8629), 1, - anon_sym_RBRACE, - STATE(4958), 1, + ACTIONS(2768), 1, + sym__unquoted_pattern_in_record, + STATE(5185), 1, sym_comment, - [130814] = 3, + [144664] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8631), 1, + ACTIONS(8994), 1, anon_sym_EQ, - STATE(4959), 1, + STATE(5186), 1, sym_comment, - [130824] = 3, + [144674] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8633), 1, + ACTIONS(8996), 1, anon_sym_EQ, - STATE(4960), 1, + STATE(5187), 1, sym_comment, - [130834] = 3, + [144684] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8635), 1, - anon_sym_RBRACE, - STATE(4961), 1, + ACTIONS(8998), 1, + anon_sym_EQ_GT, + STATE(5188), 1, sym_comment, - [130844] = 3, + [144694] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8637), 1, - aux_sym_cmd_identifier_token6, - STATE(4962), 1, - sym_comment, - [130854] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1858), 1, - sym__table_head_separator, - STATE(4963), 1, + ACTIONS(9000), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5189), 1, sym_comment, - [130864] = 3, - ACTIONS(3), 1, + [144704] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8639), 1, - anon_sym_RBRACE, - STATE(4964), 1, + ACTIONS(9002), 1, + aux_sym_cmd_identifier_token2, + STATE(5190), 1, sym_comment, - [130874] = 3, + [144714] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8641), 1, - anon_sym_LBRACE, - STATE(4965), 1, - sym_comment, - [130884] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8643), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4966), 1, + ACTIONS(9004), 1, + anon_sym_RPAREN, + STATE(5191), 1, sym_comment, - [130894] = 3, + [144724] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_EQ, - STATE(4967), 1, + ACTIONS(9006), 1, + anon_sym_EQ_GT, + STATE(5192), 1, sym_comment, - [130904] = 3, + [144734] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8647), 1, - anon_sym_RPAREN, - STATE(4968), 1, + ACTIONS(9008), 1, + anon_sym_RBRACK, + STATE(5193), 1, sym_comment, - [130914] = 3, + [144744] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5287), 1, + ACTIONS(5774), 1, anon_sym_EQ2, - STATE(4969), 1, - sym_comment, - [130924] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8649), 1, - aux_sym_cmd_identifier_token6, - STATE(4970), 1, + STATE(5194), 1, sym_comment, - [130934] = 3, + [144754] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2666), 1, - anon_sym_COLON2, - STATE(4971), 1, + ACTIONS(2760), 1, + sym__unquoted_pattern_in_record, + STATE(5195), 1, sym_comment, - [130944] = 3, + [144764] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8327), 1, - anon_sym_LBRACE, - STATE(4972), 1, + ACTIONS(2748), 1, + sym__unquoted_pattern_in_record, + STATE(5196), 1, sym_comment, - [130954] = 3, + [144774] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8651), 1, - aux_sym__str_single_quotes_token1, - STATE(4973), 1, + ACTIONS(2701), 1, + aux_sym_cmd_identifier_token2, + STATE(5197), 1, sym_comment, - [130964] = 3, + [144784] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8653), 1, + ACTIONS(307), 1, anon_sym_RBRACE, - STATE(4974), 1, + STATE(5198), 1, sym_comment, - [130974] = 3, + [144794] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8655), 1, + ACTIONS(9010), 1, anon_sym_RBRACK, - STATE(4975), 1, + STATE(5199), 1, sym_comment, - [130984] = 3, + [144804] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8657), 1, - anon_sym_RBRACE, - STATE(4976), 1, - sym_comment, - [130994] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8659), 1, - aux_sym_comment_token1, - STATE(4977), 1, - sym_comment, - [131004] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8661), 1, - aux_sym_cmd_identifier_token2, - STATE(4978), 1, + ACTIONS(9012), 1, + sym_raw_string_end, + STATE(5200), 1, sym_comment, - [131014] = 3, - ACTIONS(103), 1, + [144814] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8663), 1, - aux_sym_cmd_identifier_token6, - STATE(4979), 1, + ACTIONS(3132), 1, + anon_sym_LBRACK2, + STATE(5201), 1, sym_comment, - [131024] = 3, + [144824] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8665), 1, - anon_sym_RBRACK, - STATE(4980), 1, + ACTIONS(2748), 1, + sym__unquoted_pattern, + STATE(5202), 1, sym_comment, - [131034] = 3, - ACTIONS(103), 1, + [144834] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8667), 1, - aux_sym__str_back_ticks_token1, - STATE(4981), 1, + ACTIONS(1922), 1, + sym__unquoted_pattern_in_record, + STATE(5203), 1, sym_comment, - [131044] = 3, + [144844] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8669), 1, - anon_sym_RPAREN, - STATE(4982), 1, + ACTIONS(3328), 1, + sym__unquoted_pattern, + STATE(5204), 1, sym_comment, - [131054] = 3, + [144854] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8671), 1, - anon_sym_RPAREN, - STATE(4983), 1, + ACTIONS(9014), 1, + anon_sym_EQ, + STATE(5205), 1, sym_comment, - [131064] = 3, + [144864] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(351), 1, - anon_sym_RPAREN2, - STATE(4984), 1, + ACTIONS(1819), 1, + sym__unquoted_pattern, + STATE(5206), 1, sym_comment, - [131074] = 3, + [144874] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2920), 1, - anon_sym_LBRACK2, - STATE(4985), 1, + ACTIONS(1958), 1, + sym__unquoted_pattern_in_record, + STATE(5207), 1, sym_comment, - [131084] = 3, + [144884] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8673), 1, - anon_sym_LBRACE, - STATE(4986), 1, + ACTIONS(1900), 1, + sym__unquoted_pattern, + STATE(5208), 1, sym_comment, - [131094] = 3, + [144894] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5221), 1, - anon_sym_EQ2, - STATE(4987), 1, + ACTIONS(2052), 1, + sym__unquoted_pattern_in_record, + STATE(5209), 1, sym_comment, - [131104] = 3, + [144904] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8675), 1, - sym_raw_string_end, - STATE(4988), 1, + ACTIONS(9016), 1, + anon_sym_GT2, + STATE(5210), 1, sym_comment, - [131114] = 3, + [144914] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(4989), 1, + ACTIONS(9018), 1, + anon_sym_RBRACE, + STATE(5211), 1, sym_comment, - [131124] = 3, + [144924] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8677), 1, - sym_raw_string_end, - STATE(4990), 1, + ACTIONS(9020), 1, + anon_sym_RBRACK, + STATE(5212), 1, sym_comment, - [131134] = 3, - ACTIONS(103), 1, + [144934] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8679), 1, - aux_sym_shebang_token1, - STATE(4991), 1, + ACTIONS(9022), 1, + anon_sym_RBRACE, + STATE(5213), 1, sym_comment, - [131144] = 3, + [144944] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(4992), 1, + ACTIONS(9024), 1, + anon_sym_RPAREN, + STATE(5214), 1, sym_comment, - [131154] = 3, + [144954] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8681), 1, - anon_sym_RBRACK, - STATE(4993), 1, + ACTIONS(2665), 1, + sym__unquoted_pattern_in_record, + STATE(5215), 1, sym_comment, - [131164] = 3, + [144964] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(303), 1, + ACTIONS(305), 1, anon_sym_RBRACE, - STATE(4994), 1, + STATE(5216), 1, sym_comment, - [131174] = 3, + [144974] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8683), 1, + ACTIONS(9026), 1, anon_sym_RBRACE, - STATE(4995), 1, + STATE(5217), 1, sym_comment, - [131184] = 3, + [144984] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(4996), 1, + ACTIONS(9028), 1, + anon_sym_LBRACE, + STATE(5218), 1, sym_comment, - [131194] = 3, + [144994] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(2114), 1, sym__unquoted_pattern_in_record, - STATE(4997), 1, - sym_comment, - [131204] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8685), 1, - sym_raw_string_content, - STATE(4998), 1, + STATE(5219), 1, sym_comment, - [131214] = 3, + [145004] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_EQ2, - STATE(4999), 1, + ACTIONS(9030), 1, + anon_sym_RBRACE, + STATE(5220), 1, sym_comment, - [131224] = 3, + [145014] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8687), 1, - sym_identifier, - STATE(5000), 1, - sym_comment, - [131234] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8689), 1, - aux_sym_cmd_identifier_token2, - STATE(5001), 1, + ACTIONS(9032), 1, + sym_raw_string_end, + STATE(5221), 1, sym_comment, - [131244] = 3, + [145024] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8691), 1, + ACTIONS(9034), 1, anon_sym_EQ, - STATE(5002), 1, + STATE(5222), 1, sym_comment, - [131254] = 3, + [145034] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8693), 1, - anon_sym_RBRACK, - STATE(5003), 1, + ACTIONS(9036), 1, + anon_sym_DQUOTE, + STATE(5223), 1, sym_comment, - [131264] = 3, + [145044] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8695), 1, - anon_sym_GT2, - STATE(5004), 1, + ACTIONS(9038), 1, + anon_sym_SQUOTE2, + STATE(5224), 1, sym_comment, - [131274] = 3, + [145054] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8697), 1, - sym_identifier, - STATE(5005), 1, + ACTIONS(9040), 1, + anon_sym_BQUOTE2, + STATE(5225), 1, sym_comment, - [131284] = 3, + [145064] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8699), 1, - anon_sym_RPAREN, - STATE(5006), 1, + ACTIONS(9042), 1, + anon_sym_RBRACE, + STATE(5226), 1, sym_comment, - [131294] = 3, + [145074] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8701), 1, + ACTIONS(9028), 1, anon_sym_LBRACE, - STATE(5007), 1, + STATE(5227), 1, sym_comment, - [131304] = 3, - ACTIONS(3), 1, + [145084] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8703), 1, - anon_sym_RBRACE, - STATE(5008), 1, + ACTIONS(9044), 1, + aux_sym_cmd_identifier_token6, + STATE(5228), 1, sym_comment, - [131314] = 3, - ACTIONS(103), 1, + [145094] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(5009), 1, + ACTIONS(9046), 1, + anon_sym_RPAREN, + STATE(5229), 1, sym_comment, - [131324] = 3, + [145104] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8705), 1, + ACTIONS(9048), 1, anon_sym_RBRACK, - STATE(5010), 1, + STATE(5230), 1, sym_comment, - [131334] = 3, + [145114] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(289), 1, + ACTIONS(9050), 1, anon_sym_RBRACE, - STATE(5011), 1, + STATE(5231), 1, sym_comment, - [131344] = 3, + [145124] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8707), 1, - anon_sym_RBRACE, - STATE(5012), 1, + ACTIONS(9052), 1, + sym_identifier, + STATE(5232), 1, sym_comment, - [131354] = 3, + [145134] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8709), 1, + ACTIONS(9054), 1, anon_sym_RBRACE, - STATE(5013), 1, + STATE(5233), 1, sym_comment, - [131364] = 3, + [145144] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8711), 1, - anon_sym_RBRACK, - STATE(5014), 1, + ACTIONS(9056), 1, + anon_sym_RPAREN, + STATE(5234), 1, sym_comment, - [131374] = 3, + [145154] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8713), 1, - anon_sym_RBRACE, - STATE(5015), 1, + ACTIONS(4573), 1, + sym__unquoted_pattern, + STATE(5235), 1, + sym_comment, + [145164] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9058), 1, + aux_sym_cmd_identifier_token6, + STATE(5236), 1, sym_comment, - [131384] = 3, + [145174] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_RBRACE, - STATE(5016), 1, + ACTIONS(2016), 1, + sym__table_head_separator, + STATE(5237), 1, sym_comment, - [131394] = 3, + [145184] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8717), 1, - ts_builtin_sym_end, - STATE(5017), 1, + ACTIONS(9060), 1, + anon_sym_RBRACE, + STATE(5238), 1, sym_comment, - [131404] = 3, + [145194] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8719), 1, + ACTIONS(9062), 1, anon_sym_RBRACK, - STATE(5018), 1, + STATE(5239), 1, sym_comment, - [131414] = 3, - ACTIONS(3), 1, + [145204] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8721), 1, - anon_sym_GT2, - STATE(5019), 1, + ACTIONS(9064), 1, + aux_sym_cmd_identifier_token2, + STATE(5240), 1, sym_comment, - [131424] = 3, - ACTIONS(3), 1, + [145214] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8723), 1, - sym_raw_string_end, - STATE(5020), 1, + ACTIONS(9066), 1, + aux_sym_cmd_identifier_token2, + STATE(5241), 1, sym_comment, - [131434] = 3, + [145224] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(5021), 1, + ACTIONS(9068), 1, + anon_sym_LBRACE, + STATE(5242), 1, sym_comment, - [131444] = 3, + [145234] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8725), 1, + ACTIONS(9070), 1, anon_sym_DQUOTE, - STATE(5022), 1, + STATE(5243), 1, sym_comment, - [131454] = 3, + [145244] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8727), 1, + ACTIONS(9072), 1, anon_sym_EQ, - STATE(5023), 1, + STATE(5244), 1, sym_comment, - [131464] = 3, + [145254] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8729), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5024), 1, + ACTIONS(9074), 1, + aux_sym__str_single_quotes_token1, + STATE(5245), 1, sym_comment, - [131474] = 3, + [145264] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8731), 1, - anon_sym_GT2, - STATE(5025), 1, + ACTIONS(9076), 1, + anon_sym_RPAREN, + STATE(5246), 1, sym_comment, - [131484] = 3, - ACTIONS(3), 1, + [145274] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_EQ2, - STATE(5026), 1, + ACTIONS(9078), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5247), 1, sym_comment, - [131494] = 3, + [145284] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8733), 1, - anon_sym_GT2, - STATE(5027), 1, + ACTIONS(5667), 1, + anon_sym_EQ2, + STATE(5248), 1, sym_comment, - [131504] = 3, + [145294] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8735), 1, - anon_sym_SQUOTE2, - STATE(5028), 1, + ACTIONS(9080), 1, + sym_attribute_identifier, + STATE(5249), 1, sym_comment, - [131514] = 3, + [145304] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8737), 1, + ACTIONS(9082), 1, sym_raw_string_end, - STATE(5029), 1, - sym_comment, - [131524] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8739), 1, - anon_sym_EQ_GT, - STATE(5030), 1, + STATE(5250), 1, sym_comment, - [131534] = 3, + [145314] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8741), 1, - anon_sym_BQUOTE2, - STATE(5031), 1, + ACTIONS(9084), 1, + ts_builtin_sym_end, + STATE(5251), 1, sym_comment, - [131544] = 3, + [145324] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7264), 1, - sym__unquoted_pattern, - STATE(5032), 1, + ACTIONS(9086), 1, + sym_raw_string_end, + STATE(5252), 1, sym_comment, - [131554] = 3, + [145334] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(9088), 1, anon_sym_EQ, - STATE(5033), 1, + STATE(5253), 1, sym_comment, - [131564] = 3, - ACTIONS(3), 1, + [145344] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8745), 1, - anon_sym_RPAREN, - STATE(5034), 1, + ACTIONS(9090), 1, + aux_sym__str_back_ticks_token1, + STATE(5254), 1, sym_comment, - [131574] = 3, + [145354] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8747), 1, - anon_sym_LPAREN2, - STATE(5035), 1, + ACTIONS(5487), 1, + sym__unquoted_pattern, + STATE(5255), 1, sym_comment, - [131584] = 3, + [145364] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8749), 1, - anon_sym_EQ, - STATE(5036), 1, + ACTIONS(9092), 1, + anon_sym_SQUOTE2, + STATE(5256), 1, sym_comment, - [131594] = 3, + [145374] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8751), 1, + ACTIONS(9094), 1, anon_sym_BQUOTE2, - STATE(5037), 1, - sym_comment, - [131604] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(5038), 1, - sym_comment, - [131614] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8753), 1, - sym_identifier, - STATE(5039), 1, + STATE(5257), 1, sym_comment, - [131624] = 3, + [145384] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8755), 1, + ACTIONS(9096), 1, anon_sym_RBRACK, - STATE(5040), 1, + STATE(5258), 1, sym_comment, - [131634] = 3, + [145394] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8757), 1, - anon_sym_RBRACK, - STATE(5041), 1, - sym_comment, - [131644] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8759), 1, - aux_sym_cmd_identifier_token6, - STATE(5042), 1, + ACTIONS(7710), 1, + sym__unquoted_pattern, + STATE(5259), 1, sym_comment, - [131654] = 3, + [145404] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8761), 1, + ACTIONS(9098), 1, anon_sym_RBRACE, - STATE(5043), 1, + STATE(5260), 1, sym_comment, - [131664] = 3, + [145414] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8763), 1, + ACTIONS(9100), 1, anon_sym_RBRACK, - STATE(5044), 1, + STATE(5261), 1, sym_comment, - [131674] = 3, + [145424] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, - sym__table_head_separator, - STATE(5045), 1, + ACTIONS(9102), 1, + anon_sym_RBRACE, + STATE(5262), 1, sym_comment, - [131684] = 3, + [145434] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8765), 1, + ACTIONS(9104), 1, anon_sym_RPAREN, - STATE(5046), 1, + STATE(5263), 1, sym_comment, - [131694] = 3, + [145444] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8767), 1, - anon_sym_RBRACK, - STATE(5047), 1, + ACTIONS(9106), 1, + anon_sym_GT2, + STATE(5264), 1, sym_comment, - [131704] = 3, - ACTIONS(103), 1, + [145454] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5048), 1, + ACTIONS(9108), 1, + sym_identifier, + STATE(5265), 1, sym_comment, - [131714] = 3, + [145464] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8769), 1, - anon_sym_RPAREN, - STATE(5049), 1, + ACTIONS(9110), 1, + ts_builtin_sym_end, + STATE(5266), 1, sym_comment, - [131724] = 3, + [145474] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4147), 1, - sym__unquoted_pattern, - STATE(5050), 1, + ACTIONS(9112), 1, + anon_sym_RBRACK, + STATE(5267), 1, sym_comment, - [131734] = 3, + [145484] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8771), 1, - anon_sym_RBRACK, - STATE(5051), 1, + ACTIONS(2114), 1, + sym__unquoted_pattern, + STATE(5268), 1, sym_comment, - [131744] = 3, + [145494] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8773), 1, - anon_sym_RPAREN, - STATE(5052), 1, + ACTIONS(9114), 1, + sym_identifier, + STATE(5269), 1, sym_comment, - [131754] = 3, + [145504] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8775), 1, + ACTIONS(9116), 1, anon_sym_RBRACE, - STATE(5053), 1, + STATE(5270), 1, sym_comment, - [131764] = 3, + [145514] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8777), 1, + ACTIONS(9118), 1, anon_sym_RBRACK, - STATE(5054), 1, + STATE(5271), 1, sym_comment, - [131774] = 3, + [145524] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(313), 1, - anon_sym_RBRACE, - STATE(5055), 1, + ACTIONS(9120), 1, + anon_sym_RPAREN, + STATE(5272), 1, sym_comment, - [131784] = 3, + [145534] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8779), 1, + ACTIONS(9122), 1, anon_sym_RBRACK, - STATE(5056), 1, + STATE(5273), 1, sym_comment, - [131794] = 3, + [145544] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8781), 1, + ACTIONS(9124), 1, sym_raw_string_content, - STATE(5057), 1, + STATE(5274), 1, sym_comment, - [131804] = 3, + [145554] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7518), 1, + ACTIONS(7912), 1, anon_sym_LBRACK2, - STATE(5058), 1, + STATE(5275), 1, sym_comment, - [131814] = 3, + [145564] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8783), 1, + ACTIONS(9126), 1, aux_sym__str_single_quotes_token1, - STATE(5059), 1, + STATE(5276), 1, sym_comment, - [131824] = 3, + [145574] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8785), 1, + ACTIONS(9128), 1, aux_sym__str_back_ticks_token1, - STATE(5060), 1, - sym_comment, - [131834] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8787), 1, - anon_sym_RBRACE, - STATE(5061), 1, + STATE(5277), 1, sym_comment, - [131844] = 3, + [145584] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern_in_record, - STATE(5062), 1, + ACTIONS(9130), 1, + anon_sym_RBRACK, + STATE(5278), 1, sym_comment, - [131854] = 3, + [145594] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8789), 1, - anon_sym_EQ, - STATE(5063), 1, - sym_comment, - [131864] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8791), 1, - sym__space, - STATE(5064), 1, + ACTIONS(9132), 1, + anon_sym_RBRACK, + STATE(5279), 1, sym_comment, - [131874] = 3, + [145604] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8793), 1, - anon_sym_RBRACE, - STATE(5065), 1, + ACTIONS(9134), 1, + anon_sym_RPAREN, + STATE(5280), 1, sym_comment, - [131884] = 3, + [145614] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8795), 1, + ACTIONS(313), 1, anon_sym_RBRACE, - STATE(5066), 1, + STATE(5281), 1, sym_comment, - [131894] = 3, - ACTIONS(3), 1, + [145624] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8797), 1, - anon_sym_RPAREN, - STATE(5067), 1, + ACTIONS(2002), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5282), 1, sym_comment, - [131904] = 3, + [145634] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(5068), 1, + ACTIONS(9136), 1, + anon_sym_COLON2, + STATE(5283), 1, sym_comment, - [131914] = 3, + [145644] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern_in_record, - STATE(5069), 1, + ACTIONS(291), 1, + anon_sym_RBRACE, + STATE(5284), 1, sym_comment, - [131924] = 3, + [145654] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8799), 1, - anon_sym_SQUOTE2, - STATE(5070), 1, + ACTIONS(9138), 1, + anon_sym_RPAREN, + STATE(5285), 1, sym_comment, - [131934] = 3, + [145664] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8801), 1, - aux_sym_cmd_identifier_token6, - STATE(5071), 1, + ACTIONS(9140), 1, + aux_sym_comment_token1, + STATE(5286), 1, sym_comment, - [131944] = 3, + [145674] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8803), 1, - anon_sym_BQUOTE2, - STATE(5072), 1, + ACTIONS(9142), 1, + anon_sym_RBRACE, + STATE(5287), 1, sym_comment, - [131954] = 3, + [145684] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern_in_record, - STATE(5073), 1, + ACTIONS(9144), 1, + anon_sym_LT, + STATE(5288), 1, sym_comment, - [131964] = 3, + [145694] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8805), 1, + ACTIONS(9146), 1, anon_sym_RBRACE, - STATE(5074), 1, - sym_comment, - [131974] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern_in_record, - STATE(5075), 1, + STATE(5289), 1, sym_comment, - [131984] = 3, + [145704] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8807), 1, + ACTIONS(9148), 1, anon_sym_DQUOTE, - STATE(5076), 1, - sym_comment, - [131994] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - STATE(5077), 1, + STATE(5290), 1, sym_comment, - [132004] = 3, + [145714] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8809), 1, + ACTIONS(9150), 1, anon_sym_SQUOTE2, - STATE(5078), 1, + STATE(5291), 1, sym_comment, - [132014] = 3, + [145724] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8811), 1, + ACTIONS(9152), 1, anon_sym_BQUOTE2, - STATE(5079), 1, + STATE(5292), 1, sym_comment, - [132024] = 3, + [145734] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, + ACTIONS(9154), 1, anon_sym_RBRACK, - STATE(5080), 1, + STATE(5293), 1, sym_comment, - [132034] = 3, + [145744] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8815), 1, + ACTIONS(303), 1, anon_sym_RBRACE, - STATE(5081), 1, + STATE(5294), 1, + sym_comment, + [145754] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1858), 1, + anon_sym_COLON2, + STATE(5295), 1, sym_comment, - [132044] = 3, + [145764] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8817), 1, + ACTIONS(9156), 1, aux_sym_cmd_identifier_token6, - STATE(5082), 1, + STATE(5296), 1, sym_comment, - [132054] = 3, + [145774] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8819), 1, + ACTIONS(9158), 1, anon_sym_EQ, - STATE(5083), 1, + STATE(5297), 1, sym_comment, - [132064] = 3, - ACTIONS(103), 1, + [145784] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(5084), 1, + ACTIONS(9160), 1, + sym_identifier, + STATE(5298), 1, sym_comment, - [132074] = 3, + [145794] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8821), 1, - anon_sym_RBRACE, - STATE(5085), 1, + ACTIONS(9162), 1, + anon_sym_EQ, + STATE(5299), 1, sym_comment, - [132084] = 3, + [145804] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(5086), 1, + ACTIONS(9164), 1, + anon_sym_RBRACE, + STATE(5300), 1, sym_comment, - [132094] = 3, + [145814] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8823), 1, - anon_sym_LBRACE, - STATE(5087), 1, + ACTIONS(9166), 1, + anon_sym_DQUOTE, + STATE(5301), 1, sym_comment, - [132104] = 3, + [145824] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8825), 1, - anon_sym_EQ, - STATE(5088), 1, + ACTIONS(9168), 1, + anon_sym_RPAREN, + STATE(5302), 1, sym_comment, - [132114] = 3, - ACTIONS(103), 1, + [145834] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8827), 1, - sym__space, - STATE(5089), 1, + ACTIONS(9170), 1, + anon_sym_RBRACK, + STATE(5303), 1, sym_comment, - [132124] = 3, + [145844] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8829), 1, - anon_sym_RPAREN, - STATE(5090), 1, + ACTIONS(9172), 1, + anon_sym_SQUOTE2, + STATE(5304), 1, sym_comment, - [132134] = 3, + [145854] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8831), 1, + ACTIONS(9174), 1, anon_sym_RBRACK, - STATE(5091), 1, + STATE(5305), 1, sym_comment, - [132144] = 3, + [145864] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8833), 1, - anon_sym_EQ, - STATE(5092), 1, + ACTIONS(9176), 1, + anon_sym_RPAREN2, + STATE(5306), 1, sym_comment, - [132154] = 3, + [145874] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8835), 1, - anon_sym_EQ, - STATE(5093), 1, + ACTIONS(9178), 1, + anon_sym_BQUOTE2, + STATE(5307), 1, + sym_comment, + [145884] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9180), 1, + aux_sym_shebang_token1, + STATE(5308), 1, sym_comment, - [132164] = 3, + [145894] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8837), 1, + ACTIONS(9182), 1, + anon_sym_GT2, + STATE(5309), 1, + sym_comment, + [145904] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9184), 1, sym_raw_string_content, - STATE(5094), 1, + STATE(5310), 1, sym_comment, - [132174] = 3, + [145914] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6016), 1, + ACTIONS(3877), 1, anon_sym_LBRACK2, - STATE(5095), 1, + STATE(5311), 1, sym_comment, - [132184] = 3, + [145924] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8839), 1, + ACTIONS(9186), 1, aux_sym__str_single_quotes_token1, - STATE(5096), 1, + STATE(5312), 1, sym_comment, - [132194] = 3, + [145934] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8841), 1, + ACTIONS(9188), 1, aux_sym__str_back_ticks_token1, - STATE(5097), 1, + STATE(5313), 1, sym_comment, - [132204] = 3, + [145944] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8843), 1, - anon_sym_RBRACK, - STATE(5098), 1, + ACTIONS(9190), 1, + anon_sym_RBRACE, + STATE(5314), 1, sym_comment, - [132214] = 3, - ACTIONS(103), 1, + [145954] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8845), 1, - sym__space, - STATE(5099), 1, + ACTIONS(9192), 1, + anon_sym_RPAREN, + STATE(5315), 1, sym_comment, - [132224] = 3, + [145964] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - STATE(5100), 1, + ACTIONS(9194), 1, + aux_sym_cmd_identifier_token6, + STATE(5316), 1, sym_comment, - [132234] = 3, + [145974] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8847), 1, - anon_sym_RPAREN, - STATE(5101), 1, + ACTIONS(2796), 1, + sym__table_head_separator, + STATE(5317), 1, sym_comment, - [132244] = 3, + [145984] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8823), 1, - anon_sym_LBRACE, - STATE(5102), 1, + ACTIONS(9196), 1, + anon_sym_RBRACE, + STATE(5318), 1, sym_comment, - [132254] = 3, + [145994] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8849), 1, - sym_identifier, - STATE(5103), 1, + ACTIONS(9198), 1, + anon_sym_RBRACK, + STATE(5319), 1, sym_comment, - [132264] = 3, + [146004] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8851), 1, - anon_sym_GT2, - STATE(5104), 1, + ACTIONS(9200), 1, + anon_sym_RBRACE, + STATE(5320), 1, sym_comment, - [132274] = 3, + [146014] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8853), 1, - anon_sym_RPAREN, - STATE(5105), 1, + ACTIONS(9202), 1, + sym_raw_string_content, + STATE(5321), 1, + sym_comment, + [146024] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6301), 1, + anon_sym_LBRACK2, + STATE(5322), 1, + sym_comment, + [146034] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9204), 1, + aux_sym__str_single_quotes_token1, + STATE(5323), 1, + sym_comment, + [146044] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9206), 1, + aux_sym__str_back_ticks_token1, + STATE(5324), 1, sym_comment, - [132284] = 3, + [146054] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8855), 1, + ACTIONS(9208), 1, sym_raw_string_content, - STATE(5106), 1, + STATE(5325), 1, sym_comment, - [132294] = 3, + [146064] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4527), 1, + ACTIONS(4961), 1, anon_sym_LBRACK2, - STATE(5107), 1, + STATE(5326), 1, sym_comment, - [132304] = 3, + [146074] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8857), 1, + ACTIONS(9210), 1, aux_sym__str_single_quotes_token1, - STATE(5108), 1, + STATE(5327), 1, sym_comment, - [132314] = 3, + [146084] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8859), 1, + ACTIONS(9212), 1, aux_sym__str_back_ticks_token1, - STATE(5109), 1, + STATE(5328), 1, sym_comment, - [132324] = 3, + [146094] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8861), 1, + ACTIONS(9214), 1, sym_raw_string_content, - STATE(5110), 1, + STATE(5329), 1, sym_comment, - [132334] = 3, + [146104] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5727), 1, + ACTIONS(6071), 1, anon_sym_LBRACK2, - STATE(5111), 1, + STATE(5330), 1, sym_comment, - [132344] = 3, + [146114] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8863), 1, + ACTIONS(9216), 1, aux_sym__str_single_quotes_token1, - STATE(5112), 1, + STATE(5331), 1, sym_comment, - [132354] = 3, + [146124] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8865), 1, + ACTIONS(9218), 1, aux_sym__str_back_ticks_token1, - STATE(5113), 1, + STATE(5332), 1, sym_comment, - [132364] = 3, + [146134] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8867), 1, + ACTIONS(9220), 1, sym_raw_string_content, - STATE(5114), 1, + STATE(5333), 1, sym_comment, - [132374] = 3, + [146144] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5751), 1, + ACTIONS(6158), 1, anon_sym_LBRACK2, - STATE(5115), 1, + STATE(5334), 1, sym_comment, - [132384] = 3, + [146154] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8869), 1, + ACTIONS(9222), 1, aux_sym__str_single_quotes_token1, - STATE(5116), 1, + STATE(5335), 1, sym_comment, - [132394] = 3, + [146164] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8871), 1, + ACTIONS(9224), 1, aux_sym__str_back_ticks_token1, - STATE(5117), 1, + STATE(5336), 1, sym_comment, - [132404] = 3, + [146174] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8873), 1, + ACTIONS(9226), 1, sym_raw_string_content, - STATE(5118), 1, + STATE(5337), 1, sym_comment, - [132414] = 3, + [146184] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8875), 1, + ACTIONS(9228), 1, aux_sym__str_single_quotes_token1, - STATE(5119), 1, + STATE(5338), 1, sym_comment, - [132424] = 3, + [146194] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8877), 1, + ACTIONS(9230), 1, aux_sym__str_back_ticks_token1, - STATE(5120), 1, + STATE(5339), 1, sym_comment, - [132434] = 3, + [146204] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8879), 1, + ACTIONS(9232), 1, sym_raw_string_content, - STATE(5121), 1, + STATE(5340), 1, sym_comment, - [132444] = 3, + [146214] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8881), 1, + ACTIONS(9234), 1, aux_sym__str_single_quotes_token1, - STATE(5122), 1, + STATE(5341), 1, sym_comment, - [132454] = 3, + [146224] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8883), 1, + ACTIONS(9236), 1, aux_sym__str_back_ticks_token1, - STATE(5123), 1, + STATE(5342), 1, sym_comment, - [132464] = 3, + [146234] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8885), 1, + ACTIONS(9238), 1, sym_raw_string_content, - STATE(5124), 1, + STATE(5343), 1, sym_comment, - [132474] = 3, + [146244] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8887), 1, + ACTIONS(9240), 1, aux_sym__str_single_quotes_token1, - STATE(5125), 1, + STATE(5344), 1, sym_comment, - [132484] = 3, + [146254] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8889), 1, + ACTIONS(9242), 1, aux_sym__str_back_ticks_token1, - STATE(5126), 1, + STATE(5345), 1, sym_comment, - [132494] = 3, + [146264] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8891), 1, + ACTIONS(9244), 1, sym_raw_string_content, - STATE(5127), 1, + STATE(5346), 1, sym_comment, - [132504] = 3, + [146274] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8893), 1, + ACTIONS(9246), 1, aux_sym__str_single_quotes_token1, - STATE(5128), 1, + STATE(5347), 1, sym_comment, - [132514] = 3, + [146284] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8895), 1, + ACTIONS(9248), 1, aux_sym__str_back_ticks_token1, - STATE(5129), 1, + STATE(5348), 1, sym_comment, - [132524] = 3, + [146294] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8897), 1, + ACTIONS(9250), 1, sym_raw_string_content, - STATE(5130), 1, + STATE(5349), 1, sym_comment, - [132534] = 3, + [146304] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8899), 1, + ACTIONS(9252), 1, aux_sym__str_single_quotes_token1, - STATE(5131), 1, + STATE(5350), 1, sym_comment, - [132544] = 3, + [146314] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8901), 1, + ACTIONS(9254), 1, aux_sym__str_back_ticks_token1, - STATE(5132), 1, + STATE(5351), 1, sym_comment, - [132554] = 3, + [146324] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8903), 1, + ACTIONS(9256), 1, sym_raw_string_content, - STATE(5133), 1, + STATE(5352), 1, sym_comment, - [132564] = 3, + [146334] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8905), 1, + ACTIONS(9258), 1, aux_sym__str_single_quotes_token1, - STATE(5134), 1, + STATE(5353), 1, sym_comment, - [132574] = 3, + [146344] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8907), 1, + ACTIONS(9260), 1, aux_sym__str_back_ticks_token1, - STATE(5135), 1, + STATE(5354), 1, sym_comment, - [132584] = 3, + [146354] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8909), 1, + ACTIONS(9262), 1, sym_raw_string_content, - STATE(5136), 1, + STATE(5355), 1, sym_comment, - [132594] = 3, + [146364] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8911), 1, + ACTIONS(9264), 1, aux_sym__str_single_quotes_token1, - STATE(5137), 1, + STATE(5356), 1, sym_comment, - [132604] = 3, + [146374] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8913), 1, + ACTIONS(9266), 1, aux_sym__str_back_ticks_token1, - STATE(5138), 1, + STATE(5357), 1, sym_comment, - [132614] = 3, + [146384] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8915), 1, + ACTIONS(9268), 1, sym_raw_string_content, - STATE(5139), 1, + STATE(5358), 1, sym_comment, - [132624] = 3, + [146394] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8917), 1, + ACTIONS(9270), 1, aux_sym__str_single_quotes_token1, - STATE(5140), 1, + STATE(5359), 1, sym_comment, - [132634] = 3, + [146404] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8919), 1, + ACTIONS(9272), 1, aux_sym__str_back_ticks_token1, - STATE(5141), 1, + STATE(5360), 1, sym_comment, - [132644] = 3, + [146414] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8921), 1, + ACTIONS(9274), 1, sym_raw_string_content, - STATE(5142), 1, + STATE(5361), 1, sym_comment, - [132654] = 3, + [146424] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8923), 1, + ACTIONS(9276), 1, aux_sym__str_single_quotes_token1, - STATE(5143), 1, + STATE(5362), 1, sym_comment, - [132664] = 3, + [146434] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8925), 1, + ACTIONS(9278), 1, aux_sym__str_back_ticks_token1, - STATE(5144), 1, + STATE(5363), 1, sym_comment, - [132674] = 3, + [146444] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8927), 1, + ACTIONS(9280), 1, sym_raw_string_content, - STATE(5145), 1, + STATE(5364), 1, sym_comment, - [132684] = 3, + [146454] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8929), 1, + ACTIONS(9282), 1, aux_sym__str_single_quotes_token1, - STATE(5146), 1, + STATE(5365), 1, sym_comment, - [132694] = 3, + [146464] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8931), 1, + ACTIONS(9284), 1, aux_sym__str_back_ticks_token1, - STATE(5147), 1, + STATE(5366), 1, sym_comment, - [132704] = 3, + [146474] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8933), 1, + ACTIONS(9286), 1, sym_raw_string_content, - STATE(5148), 1, + STATE(5367), 1, sym_comment, - [132714] = 3, + [146484] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8935), 1, + ACTIONS(9288), 1, aux_sym__str_single_quotes_token1, - STATE(5149), 1, + STATE(5368), 1, sym_comment, - [132724] = 3, + [146494] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8937), 1, + ACTIONS(9290), 1, aux_sym__str_back_ticks_token1, - STATE(5150), 1, + STATE(5369), 1, sym_comment, - [132734] = 3, + [146504] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8939), 1, + ACTIONS(9292), 1, sym_raw_string_content, - STATE(5151), 1, + STATE(5370), 1, sym_comment, - [132744] = 3, + [146514] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8941), 1, + ACTIONS(9294), 1, aux_sym__str_single_quotes_token1, - STATE(5152), 1, + STATE(5371), 1, sym_comment, - [132754] = 3, + [146524] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8943), 1, + ACTIONS(9296), 1, aux_sym__str_back_ticks_token1, - STATE(5153), 1, + STATE(5372), 1, sym_comment, - [132764] = 3, + [146534] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8945), 1, + ACTIONS(9298), 1, sym_raw_string_content, - STATE(5154), 1, + STATE(5373), 1, sym_comment, - [132774] = 3, + [146544] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9300), 1, aux_sym__str_single_quotes_token1, - STATE(5155), 1, + STATE(5374), 1, sym_comment, - [132784] = 3, + [146554] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8949), 1, + ACTIONS(9302), 1, aux_sym__str_back_ticks_token1, - STATE(5156), 1, + STATE(5375), 1, + sym_comment, + [146564] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9304), 1, + sym_raw_string_content, + STATE(5376), 1, sym_comment, - [132794] = 3, + [146574] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8951), 1, - aux_sym_cmd_identifier_token6, - STATE(5157), 1, + ACTIONS(9306), 1, + aux_sym__str_single_quotes_token1, + STATE(5377), 1, + sym_comment, + [146584] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9308), 1, + aux_sym__str_back_ticks_token1, + STATE(5378), 1, sym_comment, - [132804] = 3, + [146594] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8953), 1, - sym_raw_string_end, - STATE(5158), 1, + ACTIONS(9310), 1, + sym_raw_string_content, + STATE(5379), 1, + sym_comment, + [146604] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9312), 1, + aux_sym__str_single_quotes_token1, + STATE(5380), 1, + sym_comment, + [146614] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9314), 1, + aux_sym__str_back_ticks_token1, + STATE(5381), 1, sym_comment, - [132814] = 3, + [146624] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - STATE(5159), 1, + ACTIONS(9316), 1, + anon_sym_RBRACE, + STATE(5382), 1, sym_comment, - [132824] = 3, + [146634] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(9318), 1, anon_sym_RBRACE, - STATE(5160), 1, + STATE(5383), 1, sym_comment, - [132834] = 3, + [146644] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8955), 1, - anon_sym_COLON2, - STATE(5161), 1, + ACTIONS(8516), 1, + anon_sym_LPAREN2, + STATE(5384), 1, sym_comment, - [132844] = 3, + [146654] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8957), 1, - anon_sym_LBRACE, - STATE(5162), 1, + ACTIONS(9320), 1, + anon_sym_RPAREN, + STATE(5385), 1, sym_comment, - [132854] = 3, + [146664] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8959), 1, + ACTIONS(9322), 1, anon_sym_RBRACE, - STATE(5163), 1, + STATE(5386), 1, + sym_comment, + [146674] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9324), 1, + aux_sym_cmd_identifier_token6, + STATE(5387), 1, sym_comment, - [132864] = 3, + [146684] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8961), 1, - anon_sym_in, - STATE(5164), 1, + ACTIONS(9326), 1, + anon_sym_RBRACE, + STATE(5388), 1, sym_comment, - [132874] = 3, + [146694] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8963), 1, - ts_builtin_sym_end, - STATE(5165), 1, + ACTIONS(9328), 1, + anon_sym_in, + STATE(5389), 1, sym_comment, - [132884] = 3, + [146704] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8965), 1, - sym_long_flag_identifier, - STATE(5166), 1, + ACTIONS(9330), 1, + anon_sym_GT2, + STATE(5390), 1, sym_comment, - [132894] = 3, + [146714] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8967), 1, + ACTIONS(9332), 1, anon_sym_RBRACE, - STATE(5167), 1, + STATE(5391), 1, sym_comment, - [132904] = 3, + [146724] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8969), 1, - anon_sym_RBRACE, - STATE(5168), 1, + ACTIONS(9334), 1, + anon_sym_RPAREN, + STATE(5392), 1, sym_comment, - [132914] = 3, + [146734] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8701), 1, - anon_sym_LBRACE, - STATE(5169), 1, + ACTIONS(9336), 1, + anon_sym_RBRACE, + STATE(5393), 1, sym_comment, - [132924] = 3, + [146744] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8971), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5170), 1, + ACTIONS(9338), 1, + aux_sym_cmd_identifier_token6, + STATE(5394), 1, sym_comment, - [132934] = 3, + [146754] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8973), 1, - sym_param_short_flag_identifier, - STATE(5171), 1, + ACTIONS(9340), 1, + anon_sym_DQUOTE, + STATE(5395), 1, sym_comment, - [132944] = 3, + [146764] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8975), 1, - anon_sym_RBRACE, - STATE(5172), 1, + ACTIONS(351), 1, + anon_sym_RPAREN2, + STATE(5396), 1, sym_comment, - [132954] = 3, + [146774] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8977), 1, - anon_sym_EQ_GT, - STATE(5173), 1, + ACTIONS(9342), 1, + anon_sym_SQUOTE2, + STATE(5397), 1, sym_comment, - [132964] = 3, + [146784] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8979), 1, - anon_sym_RBRACE, - STATE(5174), 1, + ACTIONS(9344), 1, + anon_sym_BQUOTE2, + STATE(5398), 1, sym_comment, - [132974] = 3, + [146794] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8981), 1, - anon_sym_RPAREN, - STATE(5175), 1, + ACTIONS(9346), 1, + anon_sym_RBRACE, + STATE(5399), 1, sym_comment, - [132984] = 3, - ACTIONS(3), 1, + [146804] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8983), 1, - anon_sym_RBRACE, - STATE(5176), 1, + ACTIONS(8518), 1, + aux_sym__record_key_token1, + STATE(5400), 1, sym_comment, - [132994] = 3, + [146814] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8985), 1, - anon_sym_RBRACK, - STATE(5177), 1, + ACTIONS(9348), 1, + anon_sym_RPAREN, + STATE(5401), 1, + sym_comment, + [146824] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9350), 1, + aux_sym_cmd_identifier_token6, + STATE(5402), 1, sym_comment, - [133004] = 3, + [146834] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8987), 1, - anon_sym_RBRACE, - STATE(5178), 1, + ACTIONS(9352), 1, + sym_raw_string_end, + STATE(5403), 1, sym_comment, - [133014] = 3, + [146844] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8989), 1, + ACTIONS(9354), 1, anon_sym_LT, - STATE(5179), 1, + STATE(5404), 1, sym_comment, - [133024] = 3, + [146854] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8991), 1, - anon_sym_RBRACK, - STATE(5180), 1, + ACTIONS(9356), 1, + anon_sym_EQ, + STATE(5405), 1, sym_comment, - [133034] = 3, + [146864] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8993), 1, - anon_sym_DQUOTE, - STATE(5181), 1, + ACTIONS(5372), 1, + sym__unquoted_pattern, + STATE(5406), 1, sym_comment, - [133044] = 3, - ACTIONS(103), 1, + [146874] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8995), 1, - aux_sym_cmd_identifier_token6, - STATE(5182), 1, + ACTIONS(9358), 1, + sym_raw_string_end, + STATE(5407), 1, sym_comment, - [133054] = 3, + [146884] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_RPAREN2, - STATE(5183), 1, + ACTIONS(9360), 1, + anon_sym_EQ, + STATE(5408), 1, sym_comment, - [133064] = 3, + [146894] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8997), 1, - anon_sym_RPAREN, - STATE(5184), 1, + ACTIONS(9362), 1, + anon_sym_RBRACK, + STATE(5409), 1, sym_comment, - [133074] = 3, + [146904] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8999), 1, - anon_sym_RBRACE, - STATE(5185), 1, + ACTIONS(9364), 1, + sym_raw_string_end, + STATE(5410), 1, sym_comment, - [133084] = 3, + [146914] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(441), 1, - ts_builtin_sym_end, - STATE(5186), 1, + ACTIONS(9366), 1, + anon_sym_RPAREN, + STATE(5411), 1, sym_comment, - [133094] = 3, + [146924] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9001), 1, - anon_sym_SQUOTE2, - STATE(5187), 1, + ACTIONS(9368), 1, + anon_sym_GT2, + STATE(5412), 1, sym_comment, - [133104] = 3, + [146934] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9003), 1, - anon_sym_BQUOTE2, - STATE(5188), 1, + ACTIONS(317), 1, + anon_sym_RBRACE, + STATE(5413), 1, sym_comment, - [133114] = 3, + [146944] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9005), 1, + ACTIONS(9370), 1, anon_sym_LT, - STATE(5189), 1, + STATE(5414), 1, sym_comment, - [133124] = 3, + [146954] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9007), 1, - anon_sym_RBRACE, - STATE(5190), 1, + ACTIONS(381), 1, + ts_builtin_sym_end, + STATE(5415), 1, sym_comment, - [133134] = 3, + [146964] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9009), 1, - anon_sym_RBRACE, - STATE(5191), 1, + ACTIONS(9372), 1, + anon_sym_LBRACE, + STATE(5416), 1, sym_comment, - [133144] = 3, + [146974] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, - STATE(5192), 1, + ACTIONS(9372), 1, + anon_sym_LBRACE, + STATE(5417), 1, sym_comment, - [133154] = 3, - ACTIONS(103), 1, + [146984] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9011), 1, - aux_sym_cmd_identifier_token6, - STATE(5193), 1, + ACTIONS(9374), 1, + anon_sym_DASH_GT, + STATE(5418), 1, sym_comment, - [133164] = 3, + [146994] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9013), 1, - anon_sym_EQ, - STATE(5194), 1, + ACTIONS(9376), 1, + anon_sym_GT2, + STATE(5419), 1, sym_comment, - [133174] = 3, + [147004] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9015), 1, - anon_sym_EQ, - STATE(5195), 1, + ACTIONS(9378), 1, + anon_sym_RBRACE, + STATE(5420), 1, sym_comment, - [133184] = 3, - ACTIONS(103), 1, + [147014] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9017), 1, - aux_sym_cmd_identifier_token6, - STATE(5196), 1, + ACTIONS(9380), 1, + anon_sym_GT2, + STATE(5421), 1, sym_comment, - [133194] = 3, + [147024] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9019), 1, - anon_sym_EQ, - STATE(5197), 1, + ACTIONS(9382), 1, + anon_sym_RPAREN, + STATE(5422), 1, sym_comment, - [133204] = 3, + [147034] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9021), 1, - anon_sym_RPAREN, - STATE(5198), 1, + ACTIONS(9384), 1, + anon_sym_DQUOTE, + STATE(5423), 1, sym_comment, - [133214] = 3, + [147044] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - STATE(5199), 1, + ACTIONS(9386), 1, + anon_sym_SQUOTE2, + STATE(5424), 1, sym_comment, - [133224] = 3, + [147054] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9023), 1, - anon_sym_EQ, - STATE(5200), 1, + ACTIONS(9388), 1, + anon_sym_BQUOTE2, + STATE(5425), 1, sym_comment, - [133234] = 3, + [147064] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5253), 1, - anon_sym_EQ2, - STATE(5201), 1, + ACTIONS(9390), 1, + anon_sym_RBRACK, + STATE(5426), 1, sym_comment, - [133244] = 3, + [147074] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9025), 1, - anon_sym_DQUOTE, - STATE(5202), 1, + ACTIONS(5661), 1, + anon_sym_EQ2, + STATE(5427), 1, sym_comment, - [133254] = 1, - ACTIONS(9027), 1, + [147084] = 1, + ACTIONS(9392), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1263)] = 0, - [SMALL_STATE(1264)] = 73, - [SMALL_STATE(1265)] = 146, - [SMALL_STATE(1266)] = 219, - [SMALL_STATE(1267)] = 292, - [SMALL_STATE(1268)] = 391, - [SMALL_STATE(1269)] = 468, - [SMALL_STATE(1270)] = 541, - [SMALL_STATE(1271)] = 614, - [SMALL_STATE(1272)] = 687, - [SMALL_STATE(1273)] = 760, - [SMALL_STATE(1274)] = 833, - [SMALL_STATE(1275)] = 906, - [SMALL_STATE(1276)] = 1045, - [SMALL_STATE(1277)] = 1128, - [SMALL_STATE(1278)] = 1201, - [SMALL_STATE(1279)] = 1302, - [SMALL_STATE(1280)] = 1375, - [SMALL_STATE(1281)] = 1448, - [SMALL_STATE(1282)] = 1521, - [SMALL_STATE(1283)] = 1594, - [SMALL_STATE(1284)] = 1685, - [SMALL_STATE(1285)] = 1758, - [SMALL_STATE(1286)] = 1831, - [SMALL_STATE(1287)] = 1926, - [SMALL_STATE(1288)] = 2069, - [SMALL_STATE(1289)] = 2144, - [SMALL_STATE(1290)] = 2217, - [SMALL_STATE(1291)] = 2290, - [SMALL_STATE(1292)] = 2433, - [SMALL_STATE(1293)] = 2506, - [SMALL_STATE(1294)] = 2579, - [SMALL_STATE(1295)] = 2652, - [SMALL_STATE(1296)] = 2725, - [SMALL_STATE(1297)] = 2798, - [SMALL_STATE(1298)] = 2871, - [SMALL_STATE(1299)] = 2944, - [SMALL_STATE(1300)] = 3017, - [SMALL_STATE(1301)] = 3090, - [SMALL_STATE(1302)] = 3163, - [SMALL_STATE(1303)] = 3236, - [SMALL_STATE(1304)] = 3309, - [SMALL_STATE(1305)] = 3382, - [SMALL_STATE(1306)] = 3455, - [SMALL_STATE(1307)] = 3528, - [SMALL_STATE(1308)] = 3601, - [SMALL_STATE(1309)] = 3704, - [SMALL_STATE(1310)] = 3777, - [SMALL_STATE(1311)] = 3850, - [SMALL_STATE(1312)] = 3923, - [SMALL_STATE(1313)] = 3996, - [SMALL_STATE(1314)] = 4069, - [SMALL_STATE(1315)] = 4166, - [SMALL_STATE(1316)] = 4259, - [SMALL_STATE(1317)] = 4332, - [SMALL_STATE(1318)] = 4405, - [SMALL_STATE(1319)] = 4478, - [SMALL_STATE(1320)] = 4551, - [SMALL_STATE(1321)] = 4624, - [SMALL_STATE(1322)] = 4697, - [SMALL_STATE(1323)] = 4770, - [SMALL_STATE(1324)] = 4859, - [SMALL_STATE(1325)] = 4932, - [SMALL_STATE(1326)] = 5005, - [SMALL_STATE(1327)] = 5078, - [SMALL_STATE(1328)] = 5151, - [SMALL_STATE(1329)] = 5290, - [SMALL_STATE(1330)] = 5433, - [SMALL_STATE(1331)] = 5518, - [SMALL_STATE(1332)] = 5661, - [SMALL_STATE(1333)] = 5734, - [SMALL_STATE(1334)] = 5807, - [SMALL_STATE(1335)] = 5880, - [SMALL_STATE(1336)] = 5959, - [SMALL_STATE(1337)] = 6032, - [SMALL_STATE(1338)] = 6105, - [SMALL_STATE(1339)] = 6244, - [SMALL_STATE(1340)] = 6317, - [SMALL_STATE(1341)] = 6390, - [SMALL_STATE(1342)] = 6463, - [SMALL_STATE(1343)] = 6536, - [SMALL_STATE(1344)] = 6609, - [SMALL_STATE(1345)] = 6682, - [SMALL_STATE(1346)] = 6755, - [SMALL_STATE(1347)] = 6895, - [SMALL_STATE(1348)] = 7043, - [SMALL_STATE(1349)] = 7180, - [SMALL_STATE(1350)] = 7317, - [SMALL_STATE(1351)] = 7394, - [SMALL_STATE(1352)] = 7531, - [SMALL_STATE(1353)] = 7668, - [SMALL_STATE(1354)] = 7805, - [SMALL_STATE(1355)] = 7882, - [SMALL_STATE(1356)] = 7955, - [SMALL_STATE(1357)] = 8032, - [SMALL_STATE(1358)] = 8105, - [SMALL_STATE(1359)] = 8179, - [SMALL_STATE(1360)] = 8249, - [SMALL_STATE(1361)] = 8391, - [SMALL_STATE(1362)] = 8531, - [SMALL_STATE(1363)] = 8665, - [SMALL_STATE(1364)] = 8741, - [SMALL_STATE(1365)] = 8819, - [SMALL_STATE(1366)] = 8953, - [SMALL_STATE(1367)] = 9023, - [SMALL_STATE(1368)] = 9099, - [SMALL_STATE(1369)] = 9175, - [SMALL_STATE(1370)] = 9247, - [SMALL_STATE(1371)] = 9319, - [SMALL_STATE(1372)] = 9395, - [SMALL_STATE(1373)] = 9537, - [SMALL_STATE(1374)] = 9671, - [SMALL_STATE(1375)] = 9805, - [SMALL_STATE(1376)] = 9939, - [SMALL_STATE(1377)] = 10008, - [SMALL_STATE(1378)] = 10077, - [SMALL_STATE(1379)] = 10146, - [SMALL_STATE(1380)] = 10231, - [SMALL_STATE(1381)] = 10300, - [SMALL_STATE(1382)] = 10373, - [SMALL_STATE(1383)] = 10446, - [SMALL_STATE(1384)] = 10521, - [SMALL_STATE(1385)] = 10590, - [SMALL_STATE(1386)] = 10659, - [SMALL_STATE(1387)] = 10743, - [SMALL_STATE(1388)] = 10825, - [SMALL_STATE(1389)] = 10907, - [SMALL_STATE(1390)] = 10975, - [SMALL_STATE(1391)] = 11061, - [SMALL_STATE(1392)] = 11129, - [SMALL_STATE(1393)] = 11215, - [SMALL_STATE(1394)] = 11340, - [SMALL_STATE(1395)] = 11473, - [SMALL_STATE(1396)] = 11544, - [SMALL_STATE(1397)] = 11625, - [SMALL_STATE(1398)] = 11706, - [SMALL_STATE(1399)] = 11779, - [SMALL_STATE(1400)] = 11904, - [SMALL_STATE(1401)] = 11975, - [SMALL_STATE(1402)] = 12046, - [SMALL_STATE(1403)] = 12116, - [SMALL_STATE(1404)] = 12184, - [SMALL_STATE(1405)] = 12252, - [SMALL_STATE(1406)] = 12320, - [SMALL_STATE(1407)] = 12400, - [SMALL_STATE(1408)] = 12470, - [SMALL_STATE(1409)] = 12540, - [SMALL_STATE(1410)] = 12606, - [SMALL_STATE(1411)] = 12674, - [SMALL_STATE(1412)] = 12739, - [SMALL_STATE(1413)] = 12864, - [SMALL_STATE(1414)] = 12931, - [SMALL_STATE(1415)] = 13000, - [SMALL_STATE(1416)] = 13079, - [SMALL_STATE(1417)] = 13144, - [SMALL_STATE(1418)] = 13273, - [SMALL_STATE(1419)] = 13402, - [SMALL_STATE(1420)] = 13471, - [SMALL_STATE(1421)] = 13600, - [SMALL_STATE(1422)] = 13665, - [SMALL_STATE(1423)] = 13732, - [SMALL_STATE(1424)] = 13797, - [SMALL_STATE(1425)] = 13926, - [SMALL_STATE(1426)] = 13991, - [SMALL_STATE(1427)] = 14059, - [SMALL_STATE(1428)] = 14127, - [SMALL_STATE(1429)] = 14191, - [SMALL_STATE(1430)] = 14257, - [SMALL_STATE(1431)] = 14321, - [SMALL_STATE(1432)] = 14387, - [SMALL_STATE(1433)] = 14451, - [SMALL_STATE(1434)] = 14514, - [SMALL_STATE(1435)] = 14585, - [SMALL_STATE(1436)] = 14648, - [SMALL_STATE(1437)] = 14719, - [SMALL_STATE(1438)] = 14782, - [SMALL_STATE(1439)] = 14847, - [SMALL_STATE(1440)] = 14912, - [SMALL_STATE(1441)] = 14978, - [SMALL_STATE(1442)] = 15048, - [SMALL_STATE(1443)] = 15114, - [SMALL_STATE(1444)] = 15184, - [SMALL_STATE(1445)] = 15246, - [SMALL_STATE(1446)] = 15344, - [SMALL_STATE(1447)] = 15416, - [SMALL_STATE(1448)] = 15514, - [SMALL_STATE(1449)] = 15576, - [SMALL_STATE(1450)] = 15638, - [SMALL_STATE(1451)] = 15709, - [SMALL_STATE(1452)] = 15772, - [SMALL_STATE(1453)] = 15835, - [SMALL_STATE(1454)] = 15928, - [SMALL_STATE(1455)] = 16021, - [SMALL_STATE(1456)] = 16118, - [SMALL_STATE(1457)] = 16183, - [SMALL_STATE(1458)] = 16276, - [SMALL_STATE(1459)] = 16373, - [SMALL_STATE(1460)] = 16438, - [SMALL_STATE(1461)] = 16502, - [SMALL_STATE(1462)] = 16562, - [SMALL_STATE(1463)] = 16626, - [SMALL_STATE(1464)] = 16686, - [SMALL_STATE(1465)] = 16752, - [SMALL_STATE(1466)] = 16816, - [SMALL_STATE(1467)] = 16882, - [SMALL_STATE(1468)] = 16948, - [SMALL_STATE(1469)] = 17014, - [SMALL_STATE(1470)] = 17080, - [SMALL_STATE(1471)] = 17144, - [SMALL_STATE(1472)] = 17208, - [SMALL_STATE(1473)] = 17268, - [SMALL_STATE(1474)] = 17330, - [SMALL_STATE(1475)] = 17396, - [SMALL_STATE(1476)] = 17462, - [SMALL_STATE(1477)] = 17524, - [SMALL_STATE(1478)] = 17584, - [SMALL_STATE(1479)] = 17650, - [SMALL_STATE(1480)] = 17714, - [SMALL_STATE(1481)] = 17780, - [SMALL_STATE(1482)] = 17842, - [SMALL_STATE(1483)] = 17906, - [SMALL_STATE(1484)] = 17972, - [SMALL_STATE(1485)] = 18038, - [SMALL_STATE(1486)] = 18104, - [SMALL_STATE(1487)] = 18168, - [SMALL_STATE(1488)] = 18232, - [SMALL_STATE(1489)] = 18293, - [SMALL_STATE(1490)] = 18352, - [SMALL_STATE(1491)] = 18415, - [SMALL_STATE(1492)] = 18478, - [SMALL_STATE(1493)] = 18537, - [SMALL_STATE(1494)] = 18598, - [SMALL_STATE(1495)] = 18661, - [SMALL_STATE(1496)] = 18724, - [SMALL_STATE(1497)] = 18787, - [SMALL_STATE(1498)] = 18850, - [SMALL_STATE(1499)] = 18911, - [SMALL_STATE(1500)] = 18970, - [SMALL_STATE(1501)] = 19029, - [SMALL_STATE(1502)] = 19092, - [SMALL_STATE(1503)] = 19155, - [SMALL_STATE(1504)] = 19216, - [SMALL_STATE(1505)] = 19279, - [SMALL_STATE(1506)] = 19342, - [SMALL_STATE(1507)] = 19405, - [SMALL_STATE(1508)] = 19464, - [SMALL_STATE(1509)] = 19525, - [SMALL_STATE(1510)] = 19605, - [SMALL_STATE(1511)] = 19665, - [SMALL_STATE(1512)] = 19725, - [SMALL_STATE(1513)] = 19785, - [SMALL_STATE(1514)] = 19865, - [SMALL_STATE(1515)] = 19945, - [SMALL_STATE(1516)] = 20003, - [SMALL_STATE(1517)] = 20083, - [SMALL_STATE(1518)] = 20163, - [SMALL_STATE(1519)] = 20223, - [SMALL_STATE(1520)] = 20297, - [SMALL_STATE(1521)] = 20357, - [SMALL_STATE(1522)] = 20437, - [SMALL_STATE(1523)] = 20517, - [SMALL_STATE(1524)] = 20597, - [SMALL_STATE(1525)] = 20677, - [SMALL_STATE(1526)] = 20767, - [SMALL_STATE(1527)] = 20847, - [SMALL_STATE(1528)] = 20927, - [SMALL_STATE(1529)] = 21007, - [SMALL_STATE(1530)] = 21087, - [SMALL_STATE(1531)] = 21173, - [SMALL_STATE(1532)] = 21253, - [SMALL_STATE(1533)] = 21333, - [SMALL_STATE(1534)] = 21413, - [SMALL_STATE(1535)] = 21493, - [SMALL_STATE(1536)] = 21573, - [SMALL_STATE(1537)] = 21653, - [SMALL_STATE(1538)] = 21745, - [SMALL_STATE(1539)] = 21825, - [SMALL_STATE(1540)] = 21905, - [SMALL_STATE(1541)] = 21985, - [SMALL_STATE(1542)] = 22065, - [SMALL_STATE(1543)] = 22145, - [SMALL_STATE(1544)] = 22225, - [SMALL_STATE(1545)] = 22305, - [SMALL_STATE(1546)] = 22385, - [SMALL_STATE(1547)] = 22465, - [SMALL_STATE(1548)] = 22545, - [SMALL_STATE(1549)] = 22625, - [SMALL_STATE(1550)] = 22705, - [SMALL_STATE(1551)] = 22791, - [SMALL_STATE(1552)] = 22871, - [SMALL_STATE(1553)] = 22951, - [SMALL_STATE(1554)] = 23031, - [SMALL_STATE(1555)] = 23111, - [SMALL_STATE(1556)] = 23191, - [SMALL_STATE(1557)] = 23271, - [SMALL_STATE(1558)] = 23351, - [SMALL_STATE(1559)] = 23431, - [SMALL_STATE(1560)] = 23511, - [SMALL_STATE(1561)] = 23591, - [SMALL_STATE(1562)] = 23671, - [SMALL_STATE(1563)] = 23751, - [SMALL_STATE(1564)] = 23843, - [SMALL_STATE(1565)] = 23919, - [SMALL_STATE(1566)] = 23993, - [SMALL_STATE(1567)] = 24061, - [SMALL_STATE(1568)] = 24125, - [SMALL_STATE(1569)] = 24211, - [SMALL_STATE(1570)] = 24299, - [SMALL_STATE(1571)] = 24389, - [SMALL_STATE(1572)] = 24467, - [SMALL_STATE(1573)] = 24539, - [SMALL_STATE(1574)] = 24619, - [SMALL_STATE(1575)] = 24701, - [SMALL_STATE(1576)] = 24785, - [SMALL_STATE(1577)] = 24865, - [SMALL_STATE(1578)] = 24951, - [SMALL_STATE(1579)] = 25027, - [SMALL_STATE(1580)] = 25101, - [SMALL_STATE(1581)] = 25175, - [SMALL_STATE(1582)] = 25247, - [SMALL_STATE(1583)] = 25315, - [SMALL_STATE(1584)] = 25381, - [SMALL_STATE(1585)] = 25445, - [SMALL_STATE(1586)] = 25507, - [SMALL_STATE(1587)] = 25593, - [SMALL_STATE(1588)] = 25677, - [SMALL_STATE(1589)] = 25765, - [SMALL_STATE(1590)] = 25855, - [SMALL_STATE(1591)] = 25943, - [SMALL_STATE(1592)] = 26021, - [SMALL_STATE(1593)] = 26097, - [SMALL_STATE(1594)] = 26169, - [SMALL_STATE(1595)] = 26239, - [SMALL_STATE(1596)] = 26319, - [SMALL_STATE(1597)] = 26397, - [SMALL_STATE(1598)] = 26479, - [SMALL_STATE(1599)] = 26559, - [SMALL_STATE(1600)] = 26643, - [SMALL_STATE(1601)] = 26725, - [SMALL_STATE(1602)] = 26801, - [SMALL_STATE(1603)] = 26875, - [SMALL_STATE(1604)] = 26943, - [SMALL_STATE(1605)] = 27023, - [SMALL_STATE(1606)] = 27087, - [SMALL_STATE(1607)] = 27173, - [SMALL_STATE(1608)] = 27261, - [SMALL_STATE(1609)] = 27351, - [SMALL_STATE(1610)] = 27429, - [SMALL_STATE(1611)] = 27501, - [SMALL_STATE(1612)] = 27581, - [SMALL_STATE(1613)] = 27663, - [SMALL_STATE(1614)] = 27747, - [SMALL_STATE(1615)] = 27821, - [SMALL_STATE(1616)] = 27893, - [SMALL_STATE(1617)] = 27959, - [SMALL_STATE(1618)] = 28021, - [SMALL_STATE(1619)] = 28105, - [SMALL_STATE(1620)] = 28191, - [SMALL_STATE(1621)] = 28279, - [SMALL_STATE(1622)] = 28355, - [SMALL_STATE(1623)] = 28425, - [SMALL_STATE(1624)] = 28503, - [SMALL_STATE(1625)] = 28583, - [SMALL_STATE(1626)] = 28665, - [SMALL_STATE(1627)] = 28741, - [SMALL_STATE(1628)] = 28815, - [SMALL_STATE(1629)] = 28889, - [SMALL_STATE(1630)] = 28961, - [SMALL_STATE(1631)] = 29029, - [SMALL_STATE(1632)] = 29095, - [SMALL_STATE(1633)] = 29159, - [SMALL_STATE(1634)] = 29221, - [SMALL_STATE(1635)] = 29307, - [SMALL_STATE(1636)] = 29391, - [SMALL_STATE(1637)] = 29479, - [SMALL_STATE(1638)] = 29565, - [SMALL_STATE(1639)] = 29655, - [SMALL_STATE(1640)] = 29743, - [SMALL_STATE(1641)] = 29821, - [SMALL_STATE(1642)] = 29897, - [SMALL_STATE(1643)] = 29969, - [SMALL_STATE(1644)] = 30039, - [SMALL_STATE(1645)] = 30119, - [SMALL_STATE(1646)] = 30197, - [SMALL_STATE(1647)] = 30279, - [SMALL_STATE(1648)] = 30359, - [SMALL_STATE(1649)] = 30443, - [SMALL_STATE(1650)] = 30525, - [SMALL_STATE(1651)] = 30599, - [SMALL_STATE(1652)] = 30671, - [SMALL_STATE(1653)] = 30737, - [SMALL_STATE(1654)] = 30799, - [SMALL_STATE(1655)] = 30883, - [SMALL_STATE(1656)] = 30969, - [SMALL_STATE(1657)] = 31057, - [SMALL_STATE(1658)] = 31133, - [SMALL_STATE(1659)] = 31203, - [SMALL_STATE(1660)] = 31281, - [SMALL_STATE(1661)] = 31361, - [SMALL_STATE(1662)] = 31443, - [SMALL_STATE(1663)] = 31523, - [SMALL_STATE(1664)] = 31603, - [SMALL_STATE(1665)] = 31683, - [SMALL_STATE(1666)] = 31755, - [SMALL_STATE(1667)] = 31825, - [SMALL_STATE(1668)] = 31889, - [SMALL_STATE(1669)] = 31949, - [SMALL_STATE(1670)] = 32031, - [SMALL_STATE(1671)] = 32115, - [SMALL_STATE(1672)] = 32201, - [SMALL_STATE(1673)] = 32275, - [SMALL_STATE(1674)] = 32343, - [SMALL_STATE(1675)] = 32419, - [SMALL_STATE(1676)] = 32497, - [SMALL_STATE(1677)] = 32577, - [SMALL_STATE(1678)] = 32663, - [SMALL_STATE(1679)] = 32749, - [SMALL_STATE(1680)] = 32820, - [SMALL_STATE(1681)] = 32907, - [SMALL_STATE(1682)] = 32978, - [SMALL_STATE(1683)] = 33047, - [SMALL_STATE(1684)] = 33110, - [SMALL_STATE(1685)] = 33169, - [SMALL_STATE(1686)] = 33250, - [SMALL_STATE(1687)] = 33333, - [SMALL_STATE(1688)] = 33418, - [SMALL_STATE(1689)] = 33495, - [SMALL_STATE(1690)] = 33568, - [SMALL_STATE(1691)] = 33635, - [SMALL_STATE(1692)] = 33710, - [SMALL_STATE(1693)] = 33787, - [SMALL_STATE(1694)] = 33866, - [SMALL_STATE(1695)] = 33953, - [SMALL_STATE(1696)] = 34026, - [SMALL_STATE(1697)] = 34085, - [SMALL_STATE(1698)] = 34156, - [SMALL_STATE(1699)] = 34242, - [SMALL_STATE(1700)] = 34328, - [SMALL_STATE(1701)] = 34414, - [SMALL_STATE(1702)] = 34500, - [SMALL_STATE(1703)] = 34586, - [SMALL_STATE(1704)] = 34672, - [SMALL_STATE(1705)] = 34732, - [SMALL_STATE(1706)] = 34802, - [SMALL_STATE(1707)] = 34862, - [SMALL_STATE(1708)] = 34932, - [SMALL_STATE(1709)] = 35002, - [SMALL_STATE(1710)] = 35088, - [SMALL_STATE(1711)] = 35174, - [SMALL_STATE(1712)] = 35244, - [SMALL_STATE(1713)] = 35330, - [SMALL_STATE(1714)] = 35416, - [SMALL_STATE(1715)] = 35502, - [SMALL_STATE(1716)] = 35569, - [SMALL_STATE(1717)] = 35650, - [SMALL_STATE(1718)] = 35717, - [SMALL_STATE(1719)] = 35786, - [SMALL_STATE(1720)] = 35857, - [SMALL_STATE(1721)] = 35916, - [SMALL_STATE(1722)] = 35997, - [SMALL_STATE(1723)] = 36054, - [SMALL_STATE(1724)] = 36121, - [SMALL_STATE(1725)] = 36202, - [SMALL_STATE(1726)] = 36259, - [SMALL_STATE(1727)] = 36330, - [SMALL_STATE(1728)] = 36393, - [SMALL_STATE(1729)] = 36460, - [SMALL_STATE(1730)] = 36527, - [SMALL_STATE(1731)] = 36594, - [SMALL_STATE(1732)] = 36665, - [SMALL_STATE(1733)] = 36736, - [SMALL_STATE(1734)] = 36797, - [SMALL_STATE(1735)] = 36860, - [SMALL_STATE(1736)] = 36923, - [SMALL_STATE(1737)] = 36982, - [SMALL_STATE(1738)] = 37050, - [SMALL_STATE(1739)] = 37112, - [SMALL_STATE(1740)] = 37180, - [SMALL_STATE(1741)] = 37258, - [SMALL_STATE(1742)] = 37320, - [SMALL_STATE(1743)] = 37380, - [SMALL_STATE(1744)] = 37438, - [SMALL_STATE(1745)] = 37496, - [SMALL_STATE(1746)] = 37564, - [SMALL_STATE(1747)] = 37632, - [SMALL_STATE(1748)] = 37690, - [SMALL_STATE(1749)] = 37748, - [SMALL_STATE(1750)] = 37802, - [SMALL_STATE(1751)] = 37856, - [SMALL_STATE(1752)] = 37910, - [SMALL_STATE(1753)] = 37964, - [SMALL_STATE(1754)] = 38042, - [SMALL_STATE(1755)] = 38096, - [SMALL_STATE(1756)] = 38174, - [SMALL_STATE(1757)] = 38252, - [SMALL_STATE(1758)] = 38306, - [SMALL_STATE(1759)] = 38374, - [SMALL_STATE(1760)] = 38428, - [SMALL_STATE(1761)] = 38482, - [SMALL_STATE(1762)] = 38538, - [SMALL_STATE(1763)] = 38594, - [SMALL_STATE(1764)] = 38674, - [SMALL_STATE(1765)] = 38752, - [SMALL_STATE(1766)] = 38810, - [SMALL_STATE(1767)] = 38888, - [SMALL_STATE(1768)] = 38966, - [SMALL_STATE(1769)] = 39044, - [SMALL_STATE(1770)] = 39112, - [SMALL_STATE(1771)] = 39192, - [SMALL_STATE(1772)] = 39270, - [SMALL_STATE(1773)] = 39330, - [SMALL_STATE(1774)] = 39408, - [SMALL_STATE(1775)] = 39470, - [SMALL_STATE(1776)] = 39548, - [SMALL_STATE(1777)] = 39602, - [SMALL_STATE(1778)] = 39655, - [SMALL_STATE(1779)] = 39732, - [SMALL_STATE(1780)] = 39809, - [SMALL_STATE(1781)] = 39862, - [SMALL_STATE(1782)] = 39913, - [SMALL_STATE(1783)] = 39964, - [SMALL_STATE(1784)] = 40029, - [SMALL_STATE(1785)] = 40092, - [SMALL_STATE(1786)] = 40169, - [SMALL_STATE(1787)] = 40222, - [SMALL_STATE(1788)] = 40275, - [SMALL_STATE(1789)] = 40340, - [SMALL_STATE(1790)] = 40405, - [SMALL_STATE(1791)] = 40482, - [SMALL_STATE(1792)] = 40547, - [SMALL_STATE(1793)] = 40598, - [SMALL_STATE(1794)] = 40649, - [SMALL_STATE(1795)] = 40714, - [SMALL_STATE(1796)] = 40769, - [SMALL_STATE(1797)] = 40822, - [SMALL_STATE(1798)] = 40887, - [SMALL_STATE(1799)] = 40940, - [SMALL_STATE(1800)] = 41017, - [SMALL_STATE(1801)] = 41070, - [SMALL_STATE(1802)] = 41125, - [SMALL_STATE(1803)] = 41178, - [SMALL_STATE(1804)] = 41233, - [SMALL_STATE(1805)] = 41290, - [SMALL_STATE(1806)] = 41347, - [SMALL_STATE(1807)] = 41400, - [SMALL_STATE(1808)] = 41451, - [SMALL_STATE(1809)] = 41502, - [SMALL_STATE(1810)] = 41579, - [SMALL_STATE(1811)] = 41644, - [SMALL_STATE(1812)] = 41709, - [SMALL_STATE(1813)] = 41768, - [SMALL_STATE(1814)] = 41825, - [SMALL_STATE(1815)] = 41890, - [SMALL_STATE(1816)] = 41955, - [SMALL_STATE(1817)] = 42010, - [SMALL_STATE(1818)] = 42087, - [SMALL_STATE(1819)] = 42164, - [SMALL_STATE(1820)] = 42241, - [SMALL_STATE(1821)] = 42318, - [SMALL_STATE(1822)] = 42395, - [SMALL_STATE(1823)] = 42472, - [SMALL_STATE(1824)] = 42527, - [SMALL_STATE(1825)] = 42582, - [SMALL_STATE(1826)] = 42634, - [SMALL_STATE(1827)] = 42694, - [SMALL_STATE(1828)] = 42754, - [SMALL_STATE(1829)] = 42816, - [SMALL_STATE(1830)] = 42868, - [SMALL_STATE(1831)] = 42928, - [SMALL_STATE(1832)] = 42990, - [SMALL_STATE(1833)] = 43044, - [SMALL_STATE(1834)] = 43096, - [SMALL_STATE(1835)] = 43148, - [SMALL_STATE(1836)] = 43200, - [SMALL_STATE(1837)] = 43254, - [SMALL_STATE(1838)] = 43308, - [SMALL_STATE(1839)] = 43368, - [SMALL_STATE(1840)] = 43422, - [SMALL_STATE(1841)] = 43474, - [SMALL_STATE(1842)] = 43536, - [SMALL_STATE(1843)] = 43588, - [SMALL_STATE(1844)] = 43640, - [SMALL_STATE(1845)] = 43692, - [SMALL_STATE(1846)] = 43743, - [SMALL_STATE(1847)] = 43802, - [SMALL_STATE(1848)] = 43853, - [SMALL_STATE(1849)] = 43904, - [SMALL_STATE(1850)] = 43955, - [SMALL_STATE(1851)] = 44014, - [SMALL_STATE(1852)] = 44073, - [SMALL_STATE(1853)] = 44124, - [SMALL_STATE(1854)] = 44223, - [SMALL_STATE(1855)] = 44274, - [SMALL_STATE(1856)] = 44333, - [SMALL_STATE(1857)] = 44384, - [SMALL_STATE(1858)] = 44435, - [SMALL_STATE(1859)] = 44486, - [SMALL_STATE(1860)] = 44541, - [SMALL_STATE(1861)] = 44592, - [SMALL_STATE(1862)] = 44643, - [SMALL_STATE(1863)] = 44694, - [SMALL_STATE(1864)] = 44753, - [SMALL_STATE(1865)] = 44808, - [SMALL_STATE(1866)] = 44859, - [SMALL_STATE(1867)] = 44910, - [SMALL_STATE(1868)] = 44961, - [SMALL_STATE(1869)] = 45012, - [SMALL_STATE(1870)] = 45063, - [SMALL_STATE(1871)] = 45114, - [SMALL_STATE(1872)] = 45165, - [SMALL_STATE(1873)] = 45216, - [SMALL_STATE(1874)] = 45267, - [SMALL_STATE(1875)] = 45318, - [SMALL_STATE(1876)] = 45377, - [SMALL_STATE(1877)] = 45428, - [SMALL_STATE(1878)] = 45487, - [SMALL_STATE(1879)] = 45542, - [SMALL_STATE(1880)] = 45597, - [SMALL_STATE(1881)] = 45648, - [SMALL_STATE(1882)] = 45698, - [SMALL_STATE(1883)] = 45754, - [SMALL_STATE(1884)] = 45812, - [SMALL_STATE(1885)] = 45862, - [SMALL_STATE(1886)] = 45912, - [SMALL_STATE(1887)] = 45962, - [SMALL_STATE(1888)] = 46012, - [SMALL_STATE(1889)] = 46070, - [SMALL_STATE(1890)] = 46120, - [SMALL_STATE(1891)] = 46170, - [SMALL_STATE(1892)] = 46220, - [SMALL_STATE(1893)] = 46274, - [SMALL_STATE(1894)] = 46328, - [SMALL_STATE(1895)] = 46386, - [SMALL_STATE(1896)] = 46440, - [SMALL_STATE(1897)] = 46490, - [SMALL_STATE(1898)] = 46586, - [SMALL_STATE(1899)] = 46636, - [SMALL_STATE(1900)] = 46688, - [SMALL_STATE(1901)] = 46784, - [SMALL_STATE(1902)] = 46842, - [SMALL_STATE(1903)] = 46896, - [SMALL_STATE(1904)] = 46946, - [SMALL_STATE(1905)] = 46998, - [SMALL_STATE(1906)] = 47050, - [SMALL_STATE(1907)] = 47100, - [SMALL_STATE(1908)] = 47150, - [SMALL_STATE(1909)] = 47200, - [SMALL_STATE(1910)] = 47258, - [SMALL_STATE(1911)] = 47308, - [SMALL_STATE(1912)] = 47366, - [SMALL_STATE(1913)] = 47418, - [SMALL_STATE(1914)] = 47468, - [SMALL_STATE(1915)] = 47518, - [SMALL_STATE(1916)] = 47568, - [SMALL_STATE(1917)] = 47626, - [SMALL_STATE(1918)] = 47677, - [SMALL_STATE(1919)] = 47730, - [SMALL_STATE(1920)] = 47783, - [SMALL_STATE(1921)] = 47832, - [SMALL_STATE(1922)] = 47885, - [SMALL_STATE(1923)] = 47938, - [SMALL_STATE(1924)] = 47991, - [SMALL_STATE(1925)] = 48044, - [SMALL_STATE(1926)] = 48097, - [SMALL_STATE(1927)] = 48150, - [SMALL_STATE(1928)] = 48203, - [SMALL_STATE(1929)] = 48256, - [SMALL_STATE(1930)] = 48307, - [SMALL_STATE(1931)] = 48360, - [SMALL_STATE(1932)] = 48413, - [SMALL_STATE(1933)] = 48466, - [SMALL_STATE(1934)] = 48519, - [SMALL_STATE(1935)] = 48568, - [SMALL_STATE(1936)] = 48621, - [SMALL_STATE(1937)] = 48716, - [SMALL_STATE(1938)] = 48773, - [SMALL_STATE(1939)] = 48826, - [SMALL_STATE(1940)] = 48877, - [SMALL_STATE(1941)] = 48932, - [SMALL_STATE(1942)] = 48981, - [SMALL_STATE(1943)] = 49032, - [SMALL_STATE(1944)] = 49127, - [SMALL_STATE(1945)] = 49176, - [SMALL_STATE(1946)] = 49225, - [SMALL_STATE(1947)] = 49274, - [SMALL_STATE(1948)] = 49329, - [SMALL_STATE(1949)] = 49382, - [SMALL_STATE(1950)] = 49431, - [SMALL_STATE(1951)] = 49480, - [SMALL_STATE(1952)] = 49529, - [SMALL_STATE(1953)] = 49582, - [SMALL_STATE(1954)] = 49631, - [SMALL_STATE(1955)] = 49680, - [SMALL_STATE(1956)] = 49735, - [SMALL_STATE(1957)] = 49788, - [SMALL_STATE(1958)] = 49841, - [SMALL_STATE(1959)] = 49890, - [SMALL_STATE(1960)] = 49943, - [SMALL_STATE(1961)] = 49996, - [SMALL_STATE(1962)] = 50049, - [SMALL_STATE(1963)] = 50102, - [SMALL_STATE(1964)] = 50155, - [SMALL_STATE(1965)] = 50204, - [SMALL_STATE(1966)] = 50253, - [SMALL_STATE(1967)] = 50306, - [SMALL_STATE(1968)] = 50358, - [SMALL_STATE(1969)] = 50412, - [SMALL_STATE(1970)] = 50464, - [SMALL_STATE(1971)] = 50512, - [SMALL_STATE(1972)] = 50560, - [SMALL_STATE(1973)] = 50608, - [SMALL_STATE(1974)] = 50656, - [SMALL_STATE(1975)] = 50708, - [SMALL_STATE(1976)] = 50758, - [SMALL_STATE(1977)] = 50812, - [SMALL_STATE(1978)] = 50868, - [SMALL_STATE(1979)] = 50920, - [SMALL_STATE(1980)] = 50970, - [SMALL_STATE(1981)] = 51022, - [SMALL_STATE(1982)] = 51078, - [SMALL_STATE(1983)] = 51144, - [SMALL_STATE(1984)] = 51208, - [SMALL_STATE(1985)] = 51266, - [SMALL_STATE(1986)] = 51320, - [SMALL_STATE(1987)] = 51396, - [SMALL_STATE(1988)] = 51474, - [SMALL_STATE(1989)] = 51554, - [SMALL_STATE(1990)] = 51622, - [SMALL_STATE(1991)] = 51676, - [SMALL_STATE(1992)] = 51738, - [SMALL_STATE(1993)] = 51808, - [SMALL_STATE(1994)] = 51880, - [SMALL_STATE(1995)] = 51954, - [SMALL_STATE(1996)] = 52008, - [SMALL_STATE(1997)] = 52074, - [SMALL_STATE(1998)] = 52138, - [SMALL_STATE(1999)] = 52202, - [SMALL_STATE(2000)] = 52264, - [SMALL_STATE(2001)] = 52322, - [SMALL_STATE(2002)] = 52378, - [SMALL_STATE(2003)] = 52432, - [SMALL_STATE(2004)] = 52484, - [SMALL_STATE(2005)] = 52560, - [SMALL_STATE(2006)] = 52634, - [SMALL_STATE(2007)] = 52712, - [SMALL_STATE(2008)] = 52788, - [SMALL_STATE(2009)] = 52868, - [SMALL_STATE(2010)] = 52946, - [SMALL_STATE(2011)] = 53014, - [SMALL_STATE(2012)] = 53080, - [SMALL_STATE(2013)] = 53142, - [SMALL_STATE(2014)] = 53202, - [SMALL_STATE(2015)] = 53272, - [SMALL_STATE(2016)] = 53340, - [SMALL_STATE(2017)] = 53412, - [SMALL_STATE(2018)] = 53482, - [SMALL_STATE(2019)] = 53556, - [SMALL_STATE(2020)] = 53628, - [SMALL_STATE(2021)] = 53694, - [SMALL_STATE(2022)] = 53758, - [SMALL_STATE(2023)] = 53816, - [SMALL_STATE(2024)] = 53870, - [SMALL_STATE(2025)] = 53946, - [SMALL_STATE(2026)] = 54024, - [SMALL_STATE(2027)] = 54104, - [SMALL_STATE(2028)] = 54172, - [SMALL_STATE(2029)] = 54234, - [SMALL_STATE(2030)] = 54304, - [SMALL_STATE(2031)] = 54376, - [SMALL_STATE(2032)] = 54450, - [SMALL_STATE(2033)] = 54514, - [SMALL_STATE(2034)] = 54576, - [SMALL_STATE(2035)] = 54632, - [SMALL_STATE(2036)] = 54684, - [SMALL_STATE(2037)] = 54758, - [SMALL_STATE(2038)] = 54834, - [SMALL_STATE(2039)] = 54912, - [SMALL_STATE(2040)] = 54978, - [SMALL_STATE(2041)] = 55038, - [SMALL_STATE(2042)] = 55106, - [SMALL_STATE(2043)] = 55176, - [SMALL_STATE(2044)] = 55248, - [SMALL_STATE(2045)] = 55314, - [SMALL_STATE(2046)] = 55378, - [SMALL_STATE(2047)] = 55442, - [SMALL_STATE(2048)] = 55504, - [SMALL_STATE(2049)] = 55562, - [SMALL_STATE(2050)] = 55618, - [SMALL_STATE(2051)] = 55672, - [SMALL_STATE(2052)] = 55724, - [SMALL_STATE(2053)] = 55800, - [SMALL_STATE(2054)] = 55874, - [SMALL_STATE(2055)] = 55952, - [SMALL_STATE(2056)] = 56028, - [SMALL_STATE(2057)] = 56108, - [SMALL_STATE(2058)] = 56186, - [SMALL_STATE(2059)] = 56254, - [SMALL_STATE(2060)] = 56320, - [SMALL_STATE(2061)] = 56382, - [SMALL_STATE(2062)] = 56442, - [SMALL_STATE(2063)] = 56512, - [SMALL_STATE(2064)] = 56580, - [SMALL_STATE(2065)] = 56652, - [SMALL_STATE(2066)] = 56722, - [SMALL_STATE(2067)] = 56796, - [SMALL_STATE(2068)] = 56868, - [SMALL_STATE(2069)] = 56932, - [SMALL_STATE(2070)] = 56994, - [SMALL_STATE(2071)] = 57050, - [SMALL_STATE(2072)] = 57102, - [SMALL_STATE(2073)] = 57176, - [SMALL_STATE(2074)] = 57252, - [SMALL_STATE(2075)] = 57330, - [SMALL_STATE(2076)] = 57396, - [SMALL_STATE(2077)] = 57456, - [SMALL_STATE(2078)] = 57524, - [SMALL_STATE(2079)] = 57594, - [SMALL_STATE(2080)] = 57666, - [SMALL_STATE(2081)] = 57714, - [SMALL_STATE(2082)] = 57766, - [SMALL_STATE(2083)] = 57814, - [SMALL_STATE(2084)] = 57862, - [SMALL_STATE(2085)] = 57914, - [SMALL_STATE(2086)] = 57968, - [SMALL_STATE(2087)] = 58020, - [SMALL_STATE(2088)] = 58074, - [SMALL_STATE(2089)] = 58120, - [SMALL_STATE(2090)] = 58168, - [SMALL_STATE(2091)] = 58216, - [SMALL_STATE(2092)] = 58266, - [SMALL_STATE(2093)] = 58318, - [SMALL_STATE(2094)] = 58366, - [SMALL_STATE(2095)] = 58416, - [SMALL_STATE(2096)] = 58466, - [SMALL_STATE(2097)] = 58518, - [SMALL_STATE(2098)] = 58570, - [SMALL_STATE(2099)] = 58620, - [SMALL_STATE(2100)] = 58674, - [SMALL_STATE(2101)] = 58726, - [SMALL_STATE(2102)] = 58780, - [SMALL_STATE(2103)] = 58830, - [SMALL_STATE(2104)] = 58884, - [SMALL_STATE(2105)] = 58938, - [SMALL_STATE(2106)] = 58992, - [SMALL_STATE(2107)] = 59046, - [SMALL_STATE(2108)] = 59100, - [SMALL_STATE(2109)] = 59154, - [SMALL_STATE(2110)] = 59202, - [SMALL_STATE(2111)] = 59256, - [SMALL_STATE(2112)] = 59303, - [SMALL_STATE(2113)] = 59350, - [SMALL_STATE(2114)] = 59397, - [SMALL_STATE(2115)] = 59446, - [SMALL_STATE(2116)] = 59495, - [SMALL_STATE(2117)] = 59544, - [SMALL_STATE(2118)] = 59593, - [SMALL_STATE(2119)] = 59644, - [SMALL_STATE(2120)] = 59693, - [SMALL_STATE(2121)] = 59744, - [SMALL_STATE(2122)] = 59793, - [SMALL_STATE(2123)] = 59842, - [SMALL_STATE(2124)] = 59921, - [SMALL_STATE(2125)] = 60000, - [SMALL_STATE(2126)] = 60049, - [SMALL_STATE(2127)] = 60098, - [SMALL_STATE(2128)] = 60145, - [SMALL_STATE(2129)] = 60224, - [SMALL_STATE(2130)] = 60303, - [SMALL_STATE(2131)] = 60382, - [SMALL_STATE(2132)] = 60461, - [SMALL_STATE(2133)] = 60508, - [SMALL_STATE(2134)] = 60555, - [SMALL_STATE(2135)] = 60600, - [SMALL_STATE(2136)] = 60646, - [SMALL_STATE(2137)] = 60692, - [SMALL_STATE(2138)] = 60750, - [SMALL_STATE(2139)] = 60802, - [SMALL_STATE(2140)] = 60850, - [SMALL_STATE(2141)] = 60920, - [SMALL_STATE(2142)] = 60992, - [SMALL_STATE(2143)] = 61066, - [SMALL_STATE(2144)] = 61128, - [SMALL_STATE(2145)] = 61184, - [SMALL_STATE(2146)] = 61248, - [SMALL_STATE(2147)] = 61314, - [SMALL_STATE(2148)] = 61382, - [SMALL_STATE(2149)] = 61428, - [SMALL_STATE(2150)] = 61476, - [SMALL_STATE(2151)] = 61522, - [SMALL_STATE(2152)] = 61570, - [SMALL_STATE(2153)] = 61616, - [SMALL_STATE(2154)] = 61662, - [SMALL_STATE(2155)] = 61708, - [SMALL_STATE(2156)] = 61754, - [SMALL_STATE(2157)] = 61800, - [SMALL_STATE(2158)] = 61892, - [SMALL_STATE(2159)] = 61938, - [SMALL_STATE(2160)] = 62030, - [SMALL_STATE(2161)] = 62076, - [SMALL_STATE(2162)] = 62124, - [SMALL_STATE(2163)] = 62170, - [SMALL_STATE(2164)] = 62216, - [SMALL_STATE(2165)] = 62262, - [SMALL_STATE(2166)] = 62308, - [SMALL_STATE(2167)] = 62354, - [SMALL_STATE(2168)] = 62400, - [SMALL_STATE(2169)] = 62446, - [SMALL_STATE(2170)] = 62506, - [SMALL_STATE(2171)] = 62564, - [SMALL_STATE(2172)] = 62610, - [SMALL_STATE(2173)] = 62662, - [SMALL_STATE(2174)] = 62708, - [SMALL_STATE(2175)] = 62754, - [SMALL_STATE(2176)] = 62802, - [SMALL_STATE(2177)] = 62848, - [SMALL_STATE(2178)] = 62918, - [SMALL_STATE(2179)] = 62964, - [SMALL_STATE(2180)] = 63010, - [SMALL_STATE(2181)] = 63056, - [SMALL_STATE(2182)] = 63102, - [SMALL_STATE(2183)] = 63148, - [SMALL_STATE(2184)] = 63194, - [SMALL_STATE(2185)] = 63266, - [SMALL_STATE(2186)] = 63340, - [SMALL_STATE(2187)] = 63402, - [SMALL_STATE(2188)] = 63458, - [SMALL_STATE(2189)] = 63522, - [SMALL_STATE(2190)] = 63588, - [SMALL_STATE(2191)] = 63656, - [SMALL_STATE(2192)] = 63702, - [SMALL_STATE(2193)] = 63750, - [SMALL_STATE(2194)] = 63796, - [SMALL_STATE(2195)] = 63842, - [SMALL_STATE(2196)] = 63890, - [SMALL_STATE(2197)] = 63936, - [SMALL_STATE(2198)] = 63982, - [SMALL_STATE(2199)] = 64028, - [SMALL_STATE(2200)] = 64076, - [SMALL_STATE(2201)] = 64124, - [SMALL_STATE(2202)] = 64172, - [SMALL_STATE(2203)] = 64264, - [SMALL_STATE(2204)] = 64310, - [SMALL_STATE(2205)] = 64356, - [SMALL_STATE(2206)] = 64402, - [SMALL_STATE(2207)] = 64448, - [SMALL_STATE(2208)] = 64494, - [SMALL_STATE(2209)] = 64540, - [SMALL_STATE(2210)] = 64586, - [SMALL_STATE(2211)] = 64632, - [SMALL_STATE(2212)] = 64678, - [SMALL_STATE(2213)] = 64738, - [SMALL_STATE(2214)] = 64811, - [SMALL_STATE(2215)] = 64884, - [SMALL_STATE(2216)] = 64957, - [SMALL_STATE(2217)] = 65030, - [SMALL_STATE(2218)] = 65081, - [SMALL_STATE(2219)] = 65154, - [SMALL_STATE(2220)] = 65199, - [SMALL_STATE(2221)] = 65272, - [SMALL_STATE(2222)] = 65322, - [SMALL_STATE(2223)] = 65368, - [SMALL_STATE(2224)] = 65418, - [SMALL_STATE(2225)] = 65504, - [SMALL_STATE(2226)] = 65554, - [SMALL_STATE(2227)] = 65600, - [SMALL_STATE(2228)] = 65650, - [SMALL_STATE(2229)] = 65693, - [SMALL_STATE(2230)] = 65736, - [SMALL_STATE(2231)] = 65779, - [SMALL_STATE(2232)] = 65828, - [SMALL_STATE(2233)] = 65877, - [SMALL_STATE(2234)] = 65920, - [SMALL_STATE(2235)] = 65969, - [SMALL_STATE(2236)] = 66018, - [SMALL_STATE(2237)] = 66067, - [SMALL_STATE(2238)] = 66118, - [SMALL_STATE(2239)] = 66167, - [SMALL_STATE(2240)] = 66210, - [SMALL_STATE(2241)] = 66257, - [SMALL_STATE(2242)] = 66302, - [SMALL_STATE(2243)] = 66345, - [SMALL_STATE(2244)] = 66388, - [SMALL_STATE(2245)] = 66431, - [SMALL_STATE(2246)] = 66476, - [SMALL_STATE(2247)] = 66556, - [SMALL_STATE(2248)] = 66600, - [SMALL_STATE(2249)] = 66642, - [SMALL_STATE(2250)] = 66720, - [SMALL_STATE(2251)] = 66800, - [SMALL_STATE(2252)] = 66842, - [SMALL_STATE(2253)] = 66888, - [SMALL_STATE(2254)] = 66929, - [SMALL_STATE(2255)] = 66974, - [SMALL_STATE(2256)] = 67019, - [SMALL_STATE(2257)] = 67063, - [SMALL_STATE(2258)] = 67145, - [SMALL_STATE(2259)] = 67185, - [SMALL_STATE(2260)] = 67267, - [SMALL_STATE(2261)] = 67311, - [SMALL_STATE(2262)] = 67355, - [SMALL_STATE(2263)] = 67399, - [SMALL_STATE(2264)] = 67444, - [SMALL_STATE(2265)] = 67520, - [SMALL_STATE(2266)] = 67596, - [SMALL_STATE(2267)] = 67672, - [SMALL_STATE(2268)] = 67748, - [SMALL_STATE(2269)] = 67824, - [SMALL_STATE(2270)] = 67900, - [SMALL_STATE(2271)] = 67976, - [SMALL_STATE(2272)] = 68052, - [SMALL_STATE(2273)] = 68128, - [SMALL_STATE(2274)] = 68174, - [SMALL_STATE(2275)] = 68250, - [SMALL_STATE(2276)] = 68326, - [SMALL_STATE(2277)] = 68402, - [SMALL_STATE(2278)] = 68478, - [SMALL_STATE(2279)] = 68554, - [SMALL_STATE(2280)] = 68630, - [SMALL_STATE(2281)] = 68706, - [SMALL_STATE(2282)] = 68782, - [SMALL_STATE(2283)] = 68858, - [SMALL_STATE(2284)] = 68910, - [SMALL_STATE(2285)] = 68986, - [SMALL_STATE(2286)] = 69062, - [SMALL_STATE(2287)] = 69138, - [SMALL_STATE(2288)] = 69214, - [SMALL_STATE(2289)] = 69290, - [SMALL_STATE(2290)] = 69366, - [SMALL_STATE(2291)] = 69410, - [SMALL_STATE(2292)] = 69452, - [SMALL_STATE(2293)] = 69498, - [SMALL_STATE(2294)] = 69544, - [SMALL_STATE(2295)] = 69620, - [SMALL_STATE(2296)] = 69696, - [SMALL_STATE(2297)] = 69735, - [SMALL_STATE(2298)] = 69784, - [SMALL_STATE(2299)] = 69835, - [SMALL_STATE(2300)] = 69884, - [SMALL_STATE(2301)] = 69933, - [SMALL_STATE(2302)] = 69981, - [SMALL_STATE(2303)] = 70051, - [SMALL_STATE(2304)] = 70121, - [SMALL_STATE(2305)] = 70169, - [SMALL_STATE(2306)] = 70239, - [SMALL_STATE(2307)] = 70285, - [SMALL_STATE(2308)] = 70331, - [SMALL_STATE(2309)] = 70377, - [SMALL_STATE(2310)] = 70423, - [SMALL_STATE(2311)] = 70493, - [SMALL_STATE(2312)] = 70563, - [SMALL_STATE(2313)] = 70633, - [SMALL_STATE(2314)] = 70687, - [SMALL_STATE(2315)] = 70735, - [SMALL_STATE(2316)] = 70805, - [SMALL_STATE(2317)] = 70875, - [SMALL_STATE(2318)] = 70945, - [SMALL_STATE(2319)] = 71015, - [SMALL_STATE(2320)] = 71085, - [SMALL_STATE(2321)] = 71155, - [SMALL_STATE(2322)] = 71195, - [SMALL_STATE(2323)] = 71235, - [SMALL_STATE(2324)] = 71280, - [SMALL_STATE(2325)] = 71317, - [SMALL_STATE(2326)] = 71368, - [SMALL_STATE(2327)] = 71421, - [SMALL_STATE(2328)] = 71460, - [SMALL_STATE(2329)] = 71499, - [SMALL_STATE(2330)] = 71550, - [SMALL_STATE(2331)] = 71601, - [SMALL_STATE(2332)] = 71648, - [SMALL_STATE(2333)] = 71693, - [SMALL_STATE(2334)] = 71738, - [SMALL_STATE(2335)] = 71783, - [SMALL_STATE(2336)] = 71820, - [SMALL_STATE(2337)] = 71854, - [SMALL_STATE(2338)] = 71892, - [SMALL_STATE(2339)] = 71938, - [SMALL_STATE(2340)] = 71972, - [SMALL_STATE(2341)] = 72022, - [SMALL_STATE(2342)] = 72070, - [SMALL_STATE(2343)] = 72104, - [SMALL_STATE(2344)] = 72152, - [SMALL_STATE(2345)] = 72200, - [SMALL_STATE(2346)] = 72248, - [SMALL_STATE(2347)] = 72298, - [SMALL_STATE(2348)] = 72334, - [SMALL_STATE(2349)] = 72372, - [SMALL_STATE(2350)] = 72412, - [SMALL_STATE(2351)] = 72450, - [SMALL_STATE(2352)] = 72490, - [SMALL_STATE(2353)] = 72528, - [SMALL_STATE(2354)] = 72578, - [SMALL_STATE(2355)] = 72614, - [SMALL_STATE(2356)] = 72647, - [SMALL_STATE(2357)] = 72694, - [SMALL_STATE(2358)] = 72731, - [SMALL_STATE(2359)] = 72778, - [SMALL_STATE(2360)] = 72817, - [SMALL_STATE(2361)] = 72852, - [SMALL_STATE(2362)] = 72887, - [SMALL_STATE(2363)] = 72926, - [SMALL_STATE(2364)] = 72973, - [SMALL_STATE(2365)] = 73014, - [SMALL_STATE(2366)] = 73051, - [SMALL_STATE(2367)] = 73086, - [SMALL_STATE(2368)] = 73127, - [SMALL_STATE(2369)] = 73164, - [SMALL_STATE(2370)] = 73201, - [SMALL_STATE(2371)] = 73240, - [SMALL_STATE(2372)] = 73275, - [SMALL_STATE(2373)] = 73314, - [SMALL_STATE(2374)] = 73353, - [SMALL_STATE(2375)] = 73392, - [SMALL_STATE(2376)] = 73425, - [SMALL_STATE(2377)] = 73464, - [SMALL_STATE(2378)] = 73511, - [SMALL_STATE(2379)] = 73562, - [SMALL_STATE(2380)] = 73595, - [SMALL_STATE(2381)] = 73630, - [SMALL_STATE(2382)] = 73677, - [SMALL_STATE(2383)] = 73718, - [SMALL_STATE(2384)] = 73766, - [SMALL_STATE(2385)] = 73802, - [SMALL_STATE(2386)] = 73834, - [SMALL_STATE(2387)] = 73868, - [SMALL_STATE(2388)] = 73906, - [SMALL_STATE(2389)] = 73946, - [SMALL_STATE(2390)] = 73984, - [SMALL_STATE(2391)] = 74016, - [SMALL_STATE(2392)] = 74048, - [SMALL_STATE(2393)] = 74096, - [SMALL_STATE(2394)] = 74130, - [SMALL_STATE(2395)] = 74170, - [SMALL_STATE(2396)] = 74206, - [SMALL_STATE(2397)] = 74242, - [SMALL_STATE(2398)] = 74288, - [SMALL_STATE(2399)] = 74320, - [SMALL_STATE(2400)] = 74354, - [SMALL_STATE(2401)] = 74386, - [SMALL_STATE(2402)] = 74418, - [SMALL_STATE(2403)] = 74454, - [SMALL_STATE(2404)] = 74486, - [SMALL_STATE(2405)] = 74524, - [SMALL_STATE(2406)] = 74558, - [SMALL_STATE(2407)] = 74596, - [SMALL_STATE(2408)] = 74632, - [SMALL_STATE(2409)] = 74664, - [SMALL_STATE(2410)] = 74702, - [SMALL_STATE(2411)] = 74734, - [SMALL_STATE(2412)] = 74766, - [SMALL_STATE(2413)] = 74806, - [SMALL_STATE(2414)] = 74844, - [SMALL_STATE(2415)] = 74882, - [SMALL_STATE(2416)] = 74920, - [SMALL_STATE(2417)] = 74958, - [SMALL_STATE(2418)] = 74996, - [SMALL_STATE(2419)] = 75044, - [SMALL_STATE(2420)] = 75078, - [SMALL_STATE(2421)] = 75110, - [SMALL_STATE(2422)] = 75142, - [SMALL_STATE(2423)] = 75174, - [SMALL_STATE(2424)] = 75210, - [SMALL_STATE(2425)] = 75241, - [SMALL_STATE(2426)] = 75280, - [SMALL_STATE(2427)] = 75311, - [SMALL_STATE(2428)] = 75356, - [SMALL_STATE(2429)] = 75401, - [SMALL_STATE(2430)] = 75446, - [SMALL_STATE(2431)] = 75483, - [SMALL_STATE(2432)] = 75518, - [SMALL_STATE(2433)] = 75557, - [SMALL_STATE(2434)] = 75594, - [SMALL_STATE(2435)] = 75629, - [SMALL_STATE(2436)] = 75664, - [SMALL_STATE(2437)] = 75701, - [SMALL_STATE(2438)] = 75746, - [SMALL_STATE(2439)] = 75777, - [SMALL_STATE(2440)] = 75808, - [SMALL_STATE(2441)] = 75839, - [SMALL_STATE(2442)] = 75870, - [SMALL_STATE(2443)] = 75903, - [SMALL_STATE(2444)] = 75938, - [SMALL_STATE(2445)] = 75983, - [SMALL_STATE(2446)] = 76016, - [SMALL_STATE(2447)] = 76047, - [SMALL_STATE(2448)] = 76082, - [SMALL_STATE(2449)] = 76123, - [SMALL_STATE(2450)] = 76156, - [SMALL_STATE(2451)] = 76187, - [SMALL_STATE(2452)] = 76218, - [SMALL_STATE(2453)] = 76251, - [SMALL_STATE(2454)] = 76282, - [SMALL_STATE(2455)] = 76313, - [SMALL_STATE(2456)] = 76350, - [SMALL_STATE(2457)] = 76389, - [SMALL_STATE(2458)] = 76420, - [SMALL_STATE(2459)] = 76451, - [SMALL_STATE(2460)] = 76484, - [SMALL_STATE(2461)] = 76517, - [SMALL_STATE(2462)] = 76550, - [SMALL_STATE(2463)] = 76580, - [SMALL_STATE(2464)] = 76610, - [SMALL_STATE(2465)] = 76662, - [SMALL_STATE(2466)] = 76692, - [SMALL_STATE(2467)] = 76728, - [SMALL_STATE(2468)] = 76778, - [SMALL_STATE(2469)] = 76808, - [SMALL_STATE(2470)] = 76848, - [SMALL_STATE(2471)] = 76884, - [SMALL_STATE(2472)] = 76916, - [SMALL_STATE(2473)] = 76946, - [SMALL_STATE(2474)] = 76976, - [SMALL_STATE(2475)] = 77012, - [SMALL_STATE(2476)] = 77044, - [SMALL_STATE(2477)] = 77074, - [SMALL_STATE(2478)] = 77110, - [SMALL_STATE(2479)] = 77142, - [SMALL_STATE(2480)] = 77178, - [SMALL_STATE(2481)] = 77212, - [SMALL_STATE(2482)] = 77244, - [SMALL_STATE(2483)] = 77278, - [SMALL_STATE(2484)] = 77308, - [SMALL_STATE(2485)] = 77360, - [SMALL_STATE(2486)] = 77412, - [SMALL_STATE(2487)] = 77442, - [SMALL_STATE(2488)] = 77472, - [SMALL_STATE(2489)] = 77506, - [SMALL_STATE(2490)] = 77542, - [SMALL_STATE(2491)] = 77572, - [SMALL_STATE(2492)] = 77610, - [SMALL_STATE(2493)] = 77644, - [SMALL_STATE(2494)] = 77676, - [SMALL_STATE(2495)] = 77714, - [SMALL_STATE(2496)] = 77766, - [SMALL_STATE(2497)] = 77796, - [SMALL_STATE(2498)] = 77828, - [SMALL_STATE(2499)] = 77866, - [SMALL_STATE(2500)] = 77898, - [SMALL_STATE(2501)] = 77930, - [SMALL_STATE(2502)] = 77962, - [SMALL_STATE(2503)] = 77994, - [SMALL_STATE(2504)] = 78026, - [SMALL_STATE(2505)] = 78060, - [SMALL_STATE(2506)] = 78098, - [SMALL_STATE(2507)] = 78130, - [SMALL_STATE(2508)] = 78160, - [SMALL_STATE(2509)] = 78190, - [SMALL_STATE(2510)] = 78228, - [SMALL_STATE(2511)] = 78260, - [SMALL_STATE(2512)] = 78290, - [SMALL_STATE(2513)] = 78322, - [SMALL_STATE(2514)] = 78358, - [SMALL_STATE(2515)] = 78388, - [SMALL_STATE(2516)] = 78419, - [SMALL_STATE(2517)] = 78456, - [SMALL_STATE(2518)] = 78485, - [SMALL_STATE(2519)] = 78516, - [SMALL_STATE(2520)] = 78553, - [SMALL_STATE(2521)] = 78584, - [SMALL_STATE(2522)] = 78621, - [SMALL_STATE(2523)] = 78650, - [SMALL_STATE(2524)] = 78681, - [SMALL_STATE(2525)] = 78712, - [SMALL_STATE(2526)] = 78743, - [SMALL_STATE(2527)] = 78772, - [SMALL_STATE(2528)] = 78803, - [SMALL_STATE(2529)] = 78834, - [SMALL_STATE(2530)] = 78863, - [SMALL_STATE(2531)] = 78892, - [SMALL_STATE(2532)] = 78921, - [SMALL_STATE(2533)] = 78950, - [SMALL_STATE(2534)] = 78981, - [SMALL_STATE(2535)] = 79012, - [SMALL_STATE(2536)] = 79043, - [SMALL_STATE(2537)] = 79072, - [SMALL_STATE(2538)] = 79105, - [SMALL_STATE(2539)] = 79142, - [SMALL_STATE(2540)] = 79179, - [SMALL_STATE(2541)] = 79208, - [SMALL_STATE(2542)] = 79237, - [SMALL_STATE(2543)] = 79266, - [SMALL_STATE(2544)] = 79299, - [SMALL_STATE(2545)] = 79328, - [SMALL_STATE(2546)] = 79365, - [SMALL_STATE(2547)] = 79396, - [SMALL_STATE(2548)] = 79427, - [SMALL_STATE(2549)] = 79456, - [SMALL_STATE(2550)] = 79493, - [SMALL_STATE(2551)] = 79526, - [SMALL_STATE(2552)] = 79557, - [SMALL_STATE(2553)] = 79586, - [SMALL_STATE(2554)] = 79623, - [SMALL_STATE(2555)] = 79660, - [SMALL_STATE(2556)] = 79691, - [SMALL_STATE(2557)] = 79726, - [SMALL_STATE(2558)] = 79763, - [SMALL_STATE(2559)] = 79792, - [SMALL_STATE(2560)] = 79821, - [SMALL_STATE(2561)] = 79858, - [SMALL_STATE(2562)] = 79887, - [SMALL_STATE(2563)] = 79918, - [SMALL_STATE(2564)] = 79951, - [SMALL_STATE(2565)] = 79982, - [SMALL_STATE(2566)] = 80019, - [SMALL_STATE(2567)] = 80048, - [SMALL_STATE(2568)] = 80079, - [SMALL_STATE(2569)] = 80108, - [SMALL_STATE(2570)] = 80137, - [SMALL_STATE(2571)] = 80166, - [SMALL_STATE(2572)] = 80195, - [SMALL_STATE(2573)] = 80226, - [SMALL_STATE(2574)] = 80263, - [SMALL_STATE(2575)] = 80294, - [SMALL_STATE(2576)] = 80327, - [SMALL_STATE(2577)] = 80358, - [SMALL_STATE(2578)] = 80389, - [SMALL_STATE(2579)] = 80420, - [SMALL_STATE(2580)] = 80451, - [SMALL_STATE(2581)] = 80482, - [SMALL_STATE(2582)] = 80513, - [SMALL_STATE(2583)] = 80545, - [SMALL_STATE(2584)] = 80573, - [SMALL_STATE(2585)] = 80617, - [SMALL_STATE(2586)] = 80653, - [SMALL_STATE(2587)] = 80683, - [SMALL_STATE(2588)] = 80713, - [SMALL_STATE(2589)] = 80741, - [SMALL_STATE(2590)] = 80769, - [SMALL_STATE(2591)] = 80807, - [SMALL_STATE(2592)] = 80835, - [SMALL_STATE(2593)] = 80879, - [SMALL_STATE(2594)] = 80909, - [SMALL_STATE(2595)] = 80945, - [SMALL_STATE(2596)] = 80973, - [SMALL_STATE(2597)] = 81001, - [SMALL_STATE(2598)] = 81035, - [SMALL_STATE(2599)] = 81067, - [SMALL_STATE(2600)] = 81103, - [SMALL_STATE(2601)] = 81133, - [SMALL_STATE(2602)] = 81161, - [SMALL_STATE(2603)] = 81197, - [SMALL_STATE(2604)] = 81227, - [SMALL_STATE(2605)] = 81259, - [SMALL_STATE(2606)] = 81291, - [SMALL_STATE(2607)] = 81323, - [SMALL_STATE(2608)] = 81355, - [SMALL_STATE(2609)] = 81387, - [SMALL_STATE(2610)] = 81415, - [SMALL_STATE(2611)] = 81443, - [SMALL_STATE(2612)] = 81471, - [SMALL_STATE(2613)] = 81507, - [SMALL_STATE(2614)] = 81537, - [SMALL_STATE(2615)] = 81567, - [SMALL_STATE(2616)] = 81595, - [SMALL_STATE(2617)] = 81623, - [SMALL_STATE(2618)] = 81659, - [SMALL_STATE(2619)] = 81689, - [SMALL_STATE(2620)] = 81719, - [SMALL_STATE(2621)] = 81747, - [SMALL_STATE(2622)] = 81791, - [SMALL_STATE(2623)] = 81819, - [SMALL_STATE(2624)] = 81863, - [SMALL_STATE(2625)] = 81891, - [SMALL_STATE(2626)] = 81927, - [SMALL_STATE(2627)] = 81957, - [SMALL_STATE(2628)] = 81985, - [SMALL_STATE(2629)] = 82021, - [SMALL_STATE(2630)] = 82053, - [SMALL_STATE(2631)] = 82089, - [SMALL_STATE(2632)] = 82133, - [SMALL_STATE(2633)] = 82163, - [SMALL_STATE(2634)] = 82199, - [SMALL_STATE(2635)] = 82233, - [SMALL_STATE(2636)] = 82269, - [SMALL_STATE(2637)] = 82305, - [SMALL_STATE(2638)] = 82341, - [SMALL_STATE(2639)] = 82371, - [SMALL_STATE(2640)] = 82401, - [SMALL_STATE(2641)] = 82429, - [SMALL_STATE(2642)] = 82459, - [SMALL_STATE(2643)] = 82487, - [SMALL_STATE(2644)] = 82514, - [SMALL_STATE(2645)] = 82541, - [SMALL_STATE(2646)] = 82572, - [SMALL_STATE(2647)] = 82605, - [SMALL_STATE(2648)] = 82636, - [SMALL_STATE(2649)] = 82667, - [SMALL_STATE(2650)] = 82694, - [SMALL_STATE(2651)] = 82721, - [SMALL_STATE(2652)] = 82752, - [SMALL_STATE(2653)] = 82779, - [SMALL_STATE(2654)] = 82806, - [SMALL_STATE(2655)] = 82837, - [SMALL_STATE(2656)] = 82868, - [SMALL_STATE(2657)] = 82897, - [SMALL_STATE(2658)] = 82926, - [SMALL_STATE(2659)] = 82959, - [SMALL_STATE(2660)] = 82992, - [SMALL_STATE(2661)] = 83023, - [SMALL_STATE(2662)] = 83054, - [SMALL_STATE(2663)] = 83081, - [SMALL_STATE(2664)] = 83108, - [SMALL_STATE(2665)] = 83137, - [SMALL_STATE(2666)] = 83166, - [SMALL_STATE(2667)] = 83197, - [SMALL_STATE(2668)] = 83228, - [SMALL_STATE(2669)] = 83255, - [SMALL_STATE(2670)] = 83282, - [SMALL_STATE(2671)] = 83309, - [SMALL_STATE(2672)] = 83336, - [SMALL_STATE(2673)] = 83367, - [SMALL_STATE(2674)] = 83398, - [SMALL_STATE(2675)] = 83427, - [SMALL_STATE(2676)] = 83456, - [SMALL_STATE(2677)] = 83489, - [SMALL_STATE(2678)] = 83522, - [SMALL_STATE(2679)] = 83553, - [SMALL_STATE(2680)] = 83584, - [SMALL_STATE(2681)] = 83617, - [SMALL_STATE(2682)] = 83648, - [SMALL_STATE(2683)] = 83679, - [SMALL_STATE(2684)] = 83710, - [SMALL_STATE(2685)] = 83737, - [SMALL_STATE(2686)] = 83766, - [SMALL_STATE(2687)] = 83795, - [SMALL_STATE(2688)] = 83826, - [SMALL_STATE(2689)] = 83857, - [SMALL_STATE(2690)] = 83884, - [SMALL_STATE(2691)] = 83911, - [SMALL_STATE(2692)] = 83940, - [SMALL_STATE(2693)] = 83969, - [SMALL_STATE(2694)] = 84000, - [SMALL_STATE(2695)] = 84031, - [SMALL_STATE(2696)] = 84062, - [SMALL_STATE(2697)] = 84091, - [SMALL_STATE(2698)] = 84118, - [SMALL_STATE(2699)] = 84145, - [SMALL_STATE(2700)] = 84176, - [SMALL_STATE(2701)] = 84203, - [SMALL_STATE(2702)] = 84230, - [SMALL_STATE(2703)] = 84257, - [SMALL_STATE(2704)] = 84288, - [SMALL_STATE(2705)] = 84319, - [SMALL_STATE(2706)] = 84350, - [SMALL_STATE(2707)] = 84381, - [SMALL_STATE(2708)] = 84412, - [SMALL_STATE(2709)] = 84443, - [SMALL_STATE(2710)] = 84472, - [SMALL_STATE(2711)] = 84503, - [SMALL_STATE(2712)] = 84534, - [SMALL_STATE(2713)] = 84565, - [SMALL_STATE(2714)] = 84596, - [SMALL_STATE(2715)] = 84625, - [SMALL_STATE(2716)] = 84654, - [SMALL_STATE(2717)] = 84681, - [SMALL_STATE(2718)] = 84712, - [SMALL_STATE(2719)] = 84745, - [SMALL_STATE(2720)] = 84778, - [SMALL_STATE(2721)] = 84809, - [SMALL_STATE(2722)] = 84842, - [SMALL_STATE(2723)] = 84873, - [SMALL_STATE(2724)] = 84904, - [SMALL_STATE(2725)] = 84935, - [SMALL_STATE(2726)] = 84968, - [SMALL_STATE(2727)] = 85001, - [SMALL_STATE(2728)] = 85028, - [SMALL_STATE(2729)] = 85059, - [SMALL_STATE(2730)] = 85086, - [SMALL_STATE(2731)] = 85113, - [SMALL_STATE(2732)] = 85140, - [SMALL_STATE(2733)] = 85171, - [SMALL_STATE(2734)] = 85202, - [SMALL_STATE(2735)] = 85233, - [SMALL_STATE(2736)] = 85266, - [SMALL_STATE(2737)] = 85297, - [SMALL_STATE(2738)] = 85328, - [SMALL_STATE(2739)] = 85359, - [SMALL_STATE(2740)] = 85390, - [SMALL_STATE(2741)] = 85421, - [SMALL_STATE(2742)] = 85454, - [SMALL_STATE(2743)] = 85487, - [SMALL_STATE(2744)] = 85518, - [SMALL_STATE(2745)] = 85549, - [SMALL_STATE(2746)] = 85574, - [SMALL_STATE(2747)] = 85607, - [SMALL_STATE(2748)] = 85634, - [SMALL_STATE(2749)] = 85661, - [SMALL_STATE(2750)] = 85692, - [SMALL_STATE(2751)] = 85723, - [SMALL_STATE(2752)] = 85756, - [SMALL_STATE(2753)] = 85789, - [SMALL_STATE(2754)] = 85822, - [SMALL_STATE(2755)] = 85849, - [SMALL_STATE(2756)] = 85876, - [SMALL_STATE(2757)] = 85903, - [SMALL_STATE(2758)] = 85930, - [SMALL_STATE(2759)] = 85957, - [SMALL_STATE(2760)] = 85988, - [SMALL_STATE(2761)] = 86021, - [SMALL_STATE(2762)] = 86048, - [SMALL_STATE(2763)] = 86079, - [SMALL_STATE(2764)] = 86114, - [SMALL_STATE(2765)] = 86141, - [SMALL_STATE(2766)] = 86172, - [SMALL_STATE(2767)] = 86201, - [SMALL_STATE(2768)] = 86230, - [SMALL_STATE(2769)] = 86257, - [SMALL_STATE(2770)] = 86284, - [SMALL_STATE(2771)] = 86319, - [SMALL_STATE(2772)] = 86352, - [SMALL_STATE(2773)] = 86385, - [SMALL_STATE(2774)] = 86416, - [SMALL_STATE(2775)] = 86447, - [SMALL_STATE(2776)] = 86474, - [SMALL_STATE(2777)] = 86509, - [SMALL_STATE(2778)] = 86544, - [SMALL_STATE(2779)] = 86577, - [SMALL_STATE(2780)] = 86602, - [SMALL_STATE(2781)] = 86627, - [SMALL_STATE(2782)] = 86654, - [SMALL_STATE(2783)] = 86679, - [SMALL_STATE(2784)] = 86704, - [SMALL_STATE(2785)] = 86731, - [SMALL_STATE(2786)] = 86766, - [SMALL_STATE(2787)] = 86791, - [SMALL_STATE(2788)] = 86828, - [SMALL_STATE(2789)] = 86859, - [SMALL_STATE(2790)] = 86890, - [SMALL_STATE(2791)] = 86921, - [SMALL_STATE(2792)] = 86956, - [SMALL_STATE(2793)] = 86991, - [SMALL_STATE(2794)] = 87026, - [SMALL_STATE(2795)] = 87061, - [SMALL_STATE(2796)] = 87096, - [SMALL_STATE(2797)] = 87131, - [SMALL_STATE(2798)] = 87156, - [SMALL_STATE(2799)] = 87181, - [SMALL_STATE(2800)] = 87206, - [SMALL_STATE(2801)] = 87233, - [SMALL_STATE(2802)] = 87260, - [SMALL_STATE(2803)] = 87289, - [SMALL_STATE(2804)] = 87318, - [SMALL_STATE(2805)] = 87349, - [SMALL_STATE(2806)] = 87374, - [SMALL_STATE(2807)] = 87401, - [SMALL_STATE(2808)] = 87428, - [SMALL_STATE(2809)] = 87453, - [SMALL_STATE(2810)] = 87480, - [SMALL_STATE(2811)] = 87507, - [SMALL_STATE(2812)] = 87536, - [SMALL_STATE(2813)] = 87565, - [SMALL_STATE(2814)] = 87594, - [SMALL_STATE(2815)] = 87623, - [SMALL_STATE(2816)] = 87650, - [SMALL_STATE(2817)] = 87680, - [SMALL_STATE(2818)] = 87706, - [SMALL_STATE(2819)] = 87738, - [SMALL_STATE(2820)] = 87764, - [SMALL_STATE(2821)] = 87790, - [SMALL_STATE(2822)] = 87820, - [SMALL_STATE(2823)] = 87846, - [SMALL_STATE(2824)] = 87876, - [SMALL_STATE(2825)] = 87906, - [SMALL_STATE(2826)] = 87934, - [SMALL_STATE(2827)] = 87960, - [SMALL_STATE(2828)] = 87990, - [SMALL_STATE(2829)] = 88036, - [SMALL_STATE(2830)] = 88062, - [SMALL_STATE(2831)] = 88092, - [SMALL_STATE(2832)] = 88116, - [SMALL_STATE(2833)] = 88146, - [SMALL_STATE(2834)] = 88172, - [SMALL_STATE(2835)] = 88202, - [SMALL_STATE(2836)] = 88228, - [SMALL_STATE(2837)] = 88254, - [SMALL_STATE(2838)] = 88284, - [SMALL_STATE(2839)] = 88314, - [SMALL_STATE(2840)] = 88342, - [SMALL_STATE(2841)] = 88370, - [SMALL_STATE(2842)] = 88394, - [SMALL_STATE(2843)] = 88420, - [SMALL_STATE(2844)] = 88446, - [SMALL_STATE(2845)] = 88470, - [SMALL_STATE(2846)] = 88494, - [SMALL_STATE(2847)] = 88526, - [SMALL_STATE(2848)] = 88578, - [SMALL_STATE(2849)] = 88622, - [SMALL_STATE(2850)] = 88646, - [SMALL_STATE(2851)] = 88670, - [SMALL_STATE(2852)] = 88694, - [SMALL_STATE(2853)] = 88746, - [SMALL_STATE(2854)] = 88770, - [SMALL_STATE(2855)] = 88794, - [SMALL_STATE(2856)] = 88818, - [SMALL_STATE(2857)] = 88844, - [SMALL_STATE(2858)] = 88870, - [SMALL_STATE(2859)] = 88896, - [SMALL_STATE(2860)] = 88924, - [SMALL_STATE(2861)] = 88952, - [SMALL_STATE(2862)] = 88976, - [SMALL_STATE(2863)] = 89000, - [SMALL_STATE(2864)] = 89026, - [SMALL_STATE(2865)] = 89052, - [SMALL_STATE(2866)] = 89078, - [SMALL_STATE(2867)] = 89108, - [SMALL_STATE(2868)] = 89136, - [SMALL_STATE(2869)] = 89162, - [SMALL_STATE(2870)] = 89188, - [SMALL_STATE(2871)] = 89214, - [SMALL_STATE(2872)] = 89244, - [SMALL_STATE(2873)] = 89274, - [SMALL_STATE(2874)] = 89304, - [SMALL_STATE(2875)] = 89330, - [SMALL_STATE(2876)] = 89360, - [SMALL_STATE(2877)] = 89390, - [SMALL_STATE(2878)] = 89420, - [SMALL_STATE(2879)] = 89450, - [SMALL_STATE(2880)] = 89502, - [SMALL_STATE(2881)] = 89554, - [SMALL_STATE(2882)] = 89582, - [SMALL_STATE(2883)] = 89612, - [SMALL_STATE(2884)] = 89640, - [SMALL_STATE(2885)] = 89670, - [SMALL_STATE(2886)] = 89696, - [SMALL_STATE(2887)] = 89726, - [SMALL_STATE(2888)] = 89778, - [SMALL_STATE(2889)] = 89808, - [SMALL_STATE(2890)] = 89860, - [SMALL_STATE(2891)] = 89888, - [SMALL_STATE(2892)] = 89912, - [SMALL_STATE(2893)] = 89952, - [SMALL_STATE(2894)] = 89982, - [SMALL_STATE(2895)] = 90012, - [SMALL_STATE(2896)] = 90044, - [SMALL_STATE(2897)] = 90072, - [SMALL_STATE(2898)] = 90098, - [SMALL_STATE(2899)] = 90126, - [SMALL_STATE(2900)] = 90152, - [SMALL_STATE(2901)] = 90178, - [SMALL_STATE(2902)] = 90230, - [SMALL_STATE(2903)] = 90282, - [SMALL_STATE(2904)] = 90308, - [SMALL_STATE(2905)] = 90334, - [SMALL_STATE(2906)] = 90362, - [SMALL_STATE(2907)] = 90392, - [SMALL_STATE(2908)] = 90418, - [SMALL_STATE(2909)] = 90444, - [SMALL_STATE(2910)] = 90474, - [SMALL_STATE(2911)] = 90526, - [SMALL_STATE(2912)] = 90558, - [SMALL_STATE(2913)] = 90610, - [SMALL_STATE(2914)] = 90640, - [SMALL_STATE(2915)] = 90666, - [SMALL_STATE(2916)] = 90694, - [SMALL_STATE(2917)] = 90723, - [SMALL_STATE(2918)] = 90752, - [SMALL_STATE(2919)] = 90783, - [SMALL_STATE(2920)] = 90812, - [SMALL_STATE(2921)] = 90837, - [SMALL_STATE(2922)] = 90862, - [SMALL_STATE(2923)] = 90887, - [SMALL_STATE(2924)] = 90916, - [SMALL_STATE(2925)] = 90941, - [SMALL_STATE(2926)] = 90966, - [SMALL_STATE(2927)] = 90993, - [SMALL_STATE(2928)] = 91022, - [SMALL_STATE(2929)] = 91051, - [SMALL_STATE(2930)] = 91080, - [SMALL_STATE(2931)] = 91105, - [SMALL_STATE(2932)] = 91130, - [SMALL_STATE(2933)] = 91155, - [SMALL_STATE(2934)] = 91180, - [SMALL_STATE(2935)] = 91205, - [SMALL_STATE(2936)] = 91230, - [SMALL_STATE(2937)] = 91255, - [SMALL_STATE(2938)] = 91284, - [SMALL_STATE(2939)] = 91315, - [SMALL_STATE(2940)] = 91338, - [SMALL_STATE(2941)] = 91363, - [SMALL_STATE(2942)] = 91400, - [SMALL_STATE(2943)] = 91425, - [SMALL_STATE(2944)] = 91450, - [SMALL_STATE(2945)] = 91479, - [SMALL_STATE(2946)] = 91508, - [SMALL_STATE(2947)] = 91537, - [SMALL_STATE(2948)] = 91562, - [SMALL_STATE(2949)] = 91591, - [SMALL_STATE(2950)] = 91634, - [SMALL_STATE(2951)] = 91663, - [SMALL_STATE(2952)] = 91688, - [SMALL_STATE(2953)] = 91713, - [SMALL_STATE(2954)] = 91744, - [SMALL_STATE(2955)] = 91769, - [SMALL_STATE(2956)] = 91794, - [SMALL_STATE(2957)] = 91819, - [SMALL_STATE(2958)] = 91848, - [SMALL_STATE(2959)] = 91873, - [SMALL_STATE(2960)] = 91898, - [SMALL_STATE(2961)] = 91941, - [SMALL_STATE(2962)] = 91970, - [SMALL_STATE(2963)] = 91999, - [SMALL_STATE(2964)] = 92028, - [SMALL_STATE(2965)] = 92057, - [SMALL_STATE(2966)] = 92082, - [SMALL_STATE(2967)] = 92111, - [SMALL_STATE(2968)] = 92136, - [SMALL_STATE(2969)] = 92161, - [SMALL_STATE(2970)] = 92190, - [SMALL_STATE(2971)] = 92215, - [SMALL_STATE(2972)] = 92240, - [SMALL_STATE(2973)] = 92265, - [SMALL_STATE(2974)] = 92290, - [SMALL_STATE(2975)] = 92315, - [SMALL_STATE(2976)] = 92340, - [SMALL_STATE(2977)] = 92371, - [SMALL_STATE(2978)] = 92396, - [SMALL_STATE(2979)] = 92421, - [SMALL_STATE(2980)] = 92446, - [SMALL_STATE(2981)] = 92475, - [SMALL_STATE(2982)] = 92500, - [SMALL_STATE(2983)] = 92525, - [SMALL_STATE(2984)] = 92554, - [SMALL_STATE(2985)] = 92579, - [SMALL_STATE(2986)] = 92604, - [SMALL_STATE(2987)] = 92629, - [SMALL_STATE(2988)] = 92654, - [SMALL_STATE(2989)] = 92679, - [SMALL_STATE(2990)] = 92708, - [SMALL_STATE(2991)] = 92735, - [SMALL_STATE(2992)] = 92764, - [SMALL_STATE(2993)] = 92791, - [SMALL_STATE(2994)] = 92820, - [SMALL_STATE(2995)] = 92849, - [SMALL_STATE(2996)] = 92874, - [SMALL_STATE(2997)] = 92899, - [SMALL_STATE(2998)] = 92924, - [SMALL_STATE(2999)] = 92949, - [SMALL_STATE(3000)] = 92988, - [SMALL_STATE(3001)] = 93013, - [SMALL_STATE(3002)] = 93040, - [SMALL_STATE(3003)] = 93065, - [SMALL_STATE(3004)] = 93090, - [SMALL_STATE(3005)] = 93127, - [SMALL_STATE(3006)] = 93152, - [SMALL_STATE(3007)] = 93177, - [SMALL_STATE(3008)] = 93206, - [SMALL_STATE(3009)] = 93231, - [SMALL_STATE(3010)] = 93260, - [SMALL_STATE(3011)] = 93285, - [SMALL_STATE(3012)] = 93310, - [SMALL_STATE(3013)] = 93335, - [SMALL_STATE(3014)] = 93360, - [SMALL_STATE(3015)] = 93389, - [SMALL_STATE(3016)] = 93418, - [SMALL_STATE(3017)] = 93443, - [SMALL_STATE(3018)] = 93468, - [SMALL_STATE(3019)] = 93493, - [SMALL_STATE(3020)] = 93518, - [SMALL_STATE(3021)] = 93543, - [SMALL_STATE(3022)] = 93568, - [SMALL_STATE(3023)] = 93593, - [SMALL_STATE(3024)] = 93618, - [SMALL_STATE(3025)] = 93647, - [SMALL_STATE(3026)] = 93672, - [SMALL_STATE(3027)] = 93701, - [SMALL_STATE(3028)] = 93726, - [SMALL_STATE(3029)] = 93755, - [SMALL_STATE(3030)] = 93778, - [SMALL_STATE(3031)] = 93803, - [SMALL_STATE(3032)] = 93832, - [SMALL_STATE(3033)] = 93857, - [SMALL_STATE(3034)] = 93886, - [SMALL_STATE(3035)] = 93911, - [SMALL_STATE(3036)] = 93936, - [SMALL_STATE(3037)] = 93961, - [SMALL_STATE(3038)] = 93986, - [SMALL_STATE(3039)] = 94011, - [SMALL_STATE(3040)] = 94048, - [SMALL_STATE(3041)] = 94077, - [SMALL_STATE(3042)] = 94106, - [SMALL_STATE(3043)] = 94135, - [SMALL_STATE(3044)] = 94162, - [SMALL_STATE(3045)] = 94191, - [SMALL_STATE(3046)] = 94216, - [SMALL_STATE(3047)] = 94241, - [SMALL_STATE(3048)] = 94270, - [SMALL_STATE(3049)] = 94299, - [SMALL_STATE(3050)] = 94324, - [SMALL_STATE(3051)] = 94349, - [SMALL_STATE(3052)] = 94374, - [SMALL_STATE(3053)] = 94399, - [SMALL_STATE(3054)] = 94428, - [SMALL_STATE(3055)] = 94457, - [SMALL_STATE(3056)] = 94482, - [SMALL_STATE(3057)] = 94507, - [SMALL_STATE(3058)] = 94536, - [SMALL_STATE(3059)] = 94561, - [SMALL_STATE(3060)] = 94586, - [SMALL_STATE(3061)] = 94611, - [SMALL_STATE(3062)] = 94636, - [SMALL_STATE(3063)] = 94661, - [SMALL_STATE(3064)] = 94686, - [SMALL_STATE(3065)] = 94713, - [SMALL_STATE(3066)] = 94740, - [SMALL_STATE(3067)] = 94765, - [SMALL_STATE(3068)] = 94790, - [SMALL_STATE(3069)] = 94815, - [SMALL_STATE(3070)] = 94844, - [SMALL_STATE(3071)] = 94869, - [SMALL_STATE(3072)] = 94898, - [SMALL_STATE(3073)] = 94923, - [SMALL_STATE(3074)] = 94948, - [SMALL_STATE(3075)] = 94973, - [SMALL_STATE(3076)] = 95007, - [SMALL_STATE(3077)] = 95031, - [SMALL_STATE(3078)] = 95077, - [SMALL_STATE(3079)] = 95101, - [SMALL_STATE(3080)] = 95123, - [SMALL_STATE(3081)] = 95165, - [SMALL_STATE(3082)] = 95189, - [SMALL_STATE(3083)] = 95223, - [SMALL_STATE(3084)] = 95269, - [SMALL_STATE(3085)] = 95293, - [SMALL_STATE(3086)] = 95317, - [SMALL_STATE(3087)] = 95341, - [SMALL_STATE(3088)] = 95363, - [SMALL_STATE(3089)] = 95409, - [SMALL_STATE(3090)] = 95433, - [SMALL_STATE(3091)] = 95473, - [SMALL_STATE(3092)] = 95497, - [SMALL_STATE(3093)] = 95521, - [SMALL_STATE(3094)] = 95545, - [SMALL_STATE(3095)] = 95569, - [SMALL_STATE(3096)] = 95593, - [SMALL_STATE(3097)] = 95617, - [SMALL_STATE(3098)] = 95641, - [SMALL_STATE(3099)] = 95665, - [SMALL_STATE(3100)] = 95705, - [SMALL_STATE(3101)] = 95729, - [SMALL_STATE(3102)] = 95753, - [SMALL_STATE(3103)] = 95775, - [SMALL_STATE(3104)] = 95799, - [SMALL_STATE(3105)] = 95823, - [SMALL_STATE(3106)] = 95847, - [SMALL_STATE(3107)] = 95871, - [SMALL_STATE(3108)] = 95895, - [SMALL_STATE(3109)] = 95935, - [SMALL_STATE(3110)] = 95957, - [SMALL_STATE(3111)] = 95981, - [SMALL_STATE(3112)] = 96005, - [SMALL_STATE(3113)] = 96029, - [SMALL_STATE(3114)] = 96051, - [SMALL_STATE(3115)] = 96073, - [SMALL_STATE(3116)] = 96095, - [SMALL_STATE(3117)] = 96119, - [SMALL_STATE(3118)] = 96145, - [SMALL_STATE(3119)] = 96167, - [SMALL_STATE(3120)] = 96207, - [SMALL_STATE(3121)] = 96231, - [SMALL_STATE(3122)] = 96255, - [SMALL_STATE(3123)] = 96279, - [SMALL_STATE(3124)] = 96303, - [SMALL_STATE(3125)] = 96327, - [SMALL_STATE(3126)] = 96351, - [SMALL_STATE(3127)] = 96375, - [SMALL_STATE(3128)] = 96415, - [SMALL_STATE(3129)] = 96441, - [SMALL_STATE(3130)] = 96465, - [SMALL_STATE(3131)] = 96489, - [SMALL_STATE(3132)] = 96513, - [SMALL_STATE(3133)] = 96537, - [SMALL_STATE(3134)] = 96561, - [SMALL_STATE(3135)] = 96585, - [SMALL_STATE(3136)] = 96609, - [SMALL_STATE(3137)] = 96631, - [SMALL_STATE(3138)] = 96655, - [SMALL_STATE(3139)] = 96679, - [SMALL_STATE(3140)] = 96703, - [SMALL_STATE(3141)] = 96727, - [SMALL_STATE(3142)] = 96751, - [SMALL_STATE(3143)] = 96775, - [SMALL_STATE(3144)] = 96799, - [SMALL_STATE(3145)] = 96823, - [SMALL_STATE(3146)] = 96845, - [SMALL_STATE(3147)] = 96867, - [SMALL_STATE(3148)] = 96891, - [SMALL_STATE(3149)] = 96915, - [SMALL_STATE(3150)] = 96951, - [SMALL_STATE(3151)] = 96975, - [SMALL_STATE(3152)] = 97021, - [SMALL_STATE(3153)] = 97045, - [SMALL_STATE(3154)] = 97069, - [SMALL_STATE(3155)] = 97103, - [SMALL_STATE(3156)] = 97127, - [SMALL_STATE(3157)] = 97151, - [SMALL_STATE(3158)] = 97175, - [SMALL_STATE(3159)] = 97199, - [SMALL_STATE(3160)] = 97223, - [SMALL_STATE(3161)] = 97257, - [SMALL_STATE(3162)] = 97279, - [SMALL_STATE(3163)] = 97303, - [SMALL_STATE(3164)] = 97327, - [SMALL_STATE(3165)] = 97363, - [SMALL_STATE(3166)] = 97387, - [SMALL_STATE(3167)] = 97411, - [SMALL_STATE(3168)] = 97433, - [SMALL_STATE(3169)] = 97457, - [SMALL_STATE(3170)] = 97479, - [SMALL_STATE(3171)] = 97503, - [SMALL_STATE(3172)] = 97549, - [SMALL_STATE(3173)] = 97595, - [SMALL_STATE(3174)] = 97619, - [SMALL_STATE(3175)] = 97665, - [SMALL_STATE(3176)] = 97705, - [SMALL_STATE(3177)] = 97729, - [SMALL_STATE(3178)] = 97753, - [SMALL_STATE(3179)] = 97795, - [SMALL_STATE(3180)] = 97841, - [SMALL_STATE(3181)] = 97865, - [SMALL_STATE(3182)] = 97889, - [SMALL_STATE(3183)] = 97913, - [SMALL_STATE(3184)] = 97941, - [SMALL_STATE(3185)] = 97969, - [SMALL_STATE(3186)] = 97997, - [SMALL_STATE(3187)] = 98025, - [SMALL_STATE(3188)] = 98053, - [SMALL_STATE(3189)] = 98081, - [SMALL_STATE(3190)] = 98109, - [SMALL_STATE(3191)] = 98137, - [SMALL_STATE(3192)] = 98165, - [SMALL_STATE(3193)] = 98193, - [SMALL_STATE(3194)] = 98221, - [SMALL_STATE(3195)] = 98249, - [SMALL_STATE(3196)] = 98273, - [SMALL_STATE(3197)] = 98297, - [SMALL_STATE(3198)] = 98321, - [SMALL_STATE(3199)] = 98367, - [SMALL_STATE(3200)] = 98391, - [SMALL_STATE(3201)] = 98431, - [SMALL_STATE(3202)] = 98455, - [SMALL_STATE(3203)] = 98501, - [SMALL_STATE(3204)] = 98525, - [SMALL_STATE(3205)] = 98549, - [SMALL_STATE(3206)] = 98573, - [SMALL_STATE(3207)] = 98597, - [SMALL_STATE(3208)] = 98619, - [SMALL_STATE(3209)] = 98643, - [SMALL_STATE(3210)] = 98665, - [SMALL_STATE(3211)] = 98689, - [SMALL_STATE(3212)] = 98713, - [SMALL_STATE(3213)] = 98737, - [SMALL_STATE(3214)] = 98761, - [SMALL_STATE(3215)] = 98788, - [SMALL_STATE(3216)] = 98809, - [SMALL_STATE(3217)] = 98848, - [SMALL_STATE(3218)] = 98869, - [SMALL_STATE(3219)] = 98890, - [SMALL_STATE(3220)] = 98913, - [SMALL_STATE(3221)] = 98936, - [SMALL_STATE(3222)] = 98959, - [SMALL_STATE(3223)] = 98980, - [SMALL_STATE(3224)] = 99001, - [SMALL_STATE(3225)] = 99022, - [SMALL_STATE(3226)] = 99043, - [SMALL_STATE(3227)] = 99066, - [SMALL_STATE(3228)] = 99093, - [SMALL_STATE(3229)] = 99120, - [SMALL_STATE(3230)] = 99141, - [SMALL_STATE(3231)] = 99162, - [SMALL_STATE(3232)] = 99185, - [SMALL_STATE(3233)] = 99206, - [SMALL_STATE(3234)] = 99229, - [SMALL_STATE(3235)] = 99252, - [SMALL_STATE(3236)] = 99289, - [SMALL_STATE(3237)] = 99326, - [SMALL_STATE(3238)] = 99363, - [SMALL_STATE(3239)] = 99400, - [SMALL_STATE(3240)] = 99423, - [SMALL_STATE(3241)] = 99460, - [SMALL_STATE(3242)] = 99483, - [SMALL_STATE(3243)] = 99506, - [SMALL_STATE(3244)] = 99529, - [SMALL_STATE(3245)] = 99552, - [SMALL_STATE(3246)] = 99573, - [SMALL_STATE(3247)] = 99594, - [SMALL_STATE(3248)] = 99615, - [SMALL_STATE(3249)] = 99642, - [SMALL_STATE(3250)] = 99663, - [SMALL_STATE(3251)] = 99684, - [SMALL_STATE(3252)] = 99707, - [SMALL_STATE(3253)] = 99728, - [SMALL_STATE(3254)] = 99755, - [SMALL_STATE(3255)] = 99782, - [SMALL_STATE(3256)] = 99803, - [SMALL_STATE(3257)] = 99826, - [SMALL_STATE(3258)] = 99847, - [SMALL_STATE(3259)] = 99868, - [SMALL_STATE(3260)] = 99889, - [SMALL_STATE(3261)] = 99912, - [SMALL_STATE(3262)] = 99933, - [SMALL_STATE(3263)] = 99954, - [SMALL_STATE(3264)] = 99975, - [SMALL_STATE(3265)] = 100012, - [SMALL_STATE(3266)] = 100033, - [SMALL_STATE(3267)] = 100054, - [SMALL_STATE(3268)] = 100081, - [SMALL_STATE(3269)] = 100110, - [SMALL_STATE(3270)] = 100133, - [SMALL_STATE(3271)] = 100160, - [SMALL_STATE(3272)] = 100183, - [SMALL_STATE(3273)] = 100204, - [SMALL_STATE(3274)] = 100243, - [SMALL_STATE(3275)] = 100266, - [SMALL_STATE(3276)] = 100289, - [SMALL_STATE(3277)] = 100316, - [SMALL_STATE(3278)] = 100353, - [SMALL_STATE(3279)] = 100374, - [SMALL_STATE(3280)] = 100397, - [SMALL_STATE(3281)] = 100418, - [SMALL_STATE(3282)] = 100439, - [SMALL_STATE(3283)] = 100460, - [SMALL_STATE(3284)] = 100481, - [SMALL_STATE(3285)] = 100504, - [SMALL_STATE(3286)] = 100527, - [SMALL_STATE(3287)] = 100566, - [SMALL_STATE(3288)] = 100587, - [SMALL_STATE(3289)] = 100608, - [SMALL_STATE(3290)] = 100629, - [SMALL_STATE(3291)] = 100652, - [SMALL_STATE(3292)] = 100673, - [SMALL_STATE(3293)] = 100710, - [SMALL_STATE(3294)] = 100741, - [SMALL_STATE(3295)] = 100762, - [SMALL_STATE(3296)] = 100783, - [SMALL_STATE(3297)] = 100804, - [SMALL_STATE(3298)] = 100825, - [SMALL_STATE(3299)] = 100852, - [SMALL_STATE(3300)] = 100873, - [SMALL_STATE(3301)] = 100896, - [SMALL_STATE(3302)] = 100917, - [SMALL_STATE(3303)] = 100938, - [SMALL_STATE(3304)] = 100959, - [SMALL_STATE(3305)] = 100982, - [SMALL_STATE(3306)] = 101005, - [SMALL_STATE(3307)] = 101030, - [SMALL_STATE(3308)] = 101051, - [SMALL_STATE(3309)] = 101072, - [SMALL_STATE(3310)] = 101093, - [SMALL_STATE(3311)] = 101114, - [SMALL_STATE(3312)] = 101135, - [SMALL_STATE(3313)] = 101156, - [SMALL_STATE(3314)] = 101177, - [SMALL_STATE(3315)] = 101200, - [SMALL_STATE(3316)] = 101221, - [SMALL_STATE(3317)] = 101242, - [SMALL_STATE(3318)] = 101269, - [SMALL_STATE(3319)] = 101296, - [SMALL_STATE(3320)] = 101323, - [SMALL_STATE(3321)] = 101350, - [SMALL_STATE(3322)] = 101377, - [SMALL_STATE(3323)] = 101404, - [SMALL_STATE(3324)] = 101431, - [SMALL_STATE(3325)] = 101458, - [SMALL_STATE(3326)] = 101485, - [SMALL_STATE(3327)] = 101512, - [SMALL_STATE(3328)] = 101539, - [SMALL_STATE(3329)] = 101562, - [SMALL_STATE(3330)] = 101583, - [SMALL_STATE(3331)] = 101604, - [SMALL_STATE(3332)] = 101641, - [SMALL_STATE(3333)] = 101662, - [SMALL_STATE(3334)] = 101683, - [SMALL_STATE(3335)] = 101704, - [SMALL_STATE(3336)] = 101741, - [SMALL_STATE(3337)] = 101778, - [SMALL_STATE(3338)] = 101815, - [SMALL_STATE(3339)] = 101852, - [SMALL_STATE(3340)] = 101891, - [SMALL_STATE(3341)] = 101912, - [SMALL_STATE(3342)] = 101933, - [SMALL_STATE(3343)] = 101972, - [SMALL_STATE(3344)] = 101995, - [SMALL_STATE(3345)] = 102034, - [SMALL_STATE(3346)] = 102057, - [SMALL_STATE(3347)] = 102080, - [SMALL_STATE(3348)] = 102103, - [SMALL_STATE(3349)] = 102130, - [SMALL_STATE(3350)] = 102151, - [SMALL_STATE(3351)] = 102178, - [SMALL_STATE(3352)] = 102201, - [SMALL_STATE(3353)] = 102222, - [SMALL_STATE(3354)] = 102261, - [SMALL_STATE(3355)] = 102282, - [SMALL_STATE(3356)] = 102314, - [SMALL_STATE(3357)] = 102336, - [SMALL_STATE(3358)] = 102372, - [SMALL_STATE(3359)] = 102396, - [SMALL_STATE(3360)] = 102428, - [SMALL_STATE(3361)] = 102452, - [SMALL_STATE(3362)] = 102486, - [SMALL_STATE(3363)] = 102512, - [SMALL_STATE(3364)] = 102538, - [SMALL_STATE(3365)] = 102564, - [SMALL_STATE(3366)] = 102588, - [SMALL_STATE(3367)] = 102624, - [SMALL_STATE(3368)] = 102650, - [SMALL_STATE(3369)] = 102674, - [SMALL_STATE(3370)] = 102704, - [SMALL_STATE(3371)] = 102728, - [SMALL_STATE(3372)] = 102752, - [SMALL_STATE(3373)] = 102774, - [SMALL_STATE(3374)] = 102798, - [SMALL_STATE(3375)] = 102824, - [SMALL_STATE(3376)] = 102858, - [SMALL_STATE(3377)] = 102880, - [SMALL_STATE(3378)] = 102902, - [SMALL_STATE(3379)] = 102930, - [SMALL_STATE(3380)] = 102952, - [SMALL_STATE(3381)] = 102978, - [SMALL_STATE(3382)] = 103010, - [SMALL_STATE(3383)] = 103032, - [SMALL_STATE(3384)] = 103054, - [SMALL_STATE(3385)] = 103080, - [SMALL_STATE(3386)] = 103114, - [SMALL_STATE(3387)] = 103144, - [SMALL_STATE(3388)] = 103180, - [SMALL_STATE(3389)] = 103204, - [SMALL_STATE(3390)] = 103240, - [SMALL_STATE(3391)] = 103266, - [SMALL_STATE(3392)] = 103292, - [SMALL_STATE(3393)] = 103318, - [SMALL_STATE(3394)] = 103350, - [SMALL_STATE(3395)] = 103376, - [SMALL_STATE(3396)] = 103398, - [SMALL_STATE(3397)] = 103430, - [SMALL_STATE(3398)] = 103456, - [SMALL_STATE(3399)] = 103480, - [SMALL_STATE(3400)] = 103504, - [SMALL_STATE(3401)] = 103530, - [SMALL_STATE(3402)] = 103563, - [SMALL_STATE(3403)] = 103594, - [SMALL_STATE(3404)] = 103625, - [SMALL_STATE(3405)] = 103656, - [SMALL_STATE(3406)] = 103689, - [SMALL_STATE(3407)] = 103722, - [SMALL_STATE(3408)] = 103743, - [SMALL_STATE(3409)] = 103774, - [SMALL_STATE(3410)] = 103807, - [SMALL_STATE(3411)] = 103840, - [SMALL_STATE(3412)] = 103873, - [SMALL_STATE(3413)] = 103896, - [SMALL_STATE(3414)] = 103921, - [SMALL_STATE(3415)] = 103942, - [SMALL_STATE(3416)] = 103973, - [SMALL_STATE(3417)] = 103998, - [SMALL_STATE(3418)] = 104019, - [SMALL_STATE(3419)] = 104054, - [SMALL_STATE(3420)] = 104077, - [SMALL_STATE(3421)] = 104110, - [SMALL_STATE(3422)] = 104143, - [SMALL_STATE(3423)] = 104174, - [SMALL_STATE(3424)] = 104199, - [SMALL_STATE(3425)] = 104220, - [SMALL_STATE(3426)] = 104241, - [SMALL_STATE(3427)] = 104266, - [SMALL_STATE(3428)] = 104297, - [SMALL_STATE(3429)] = 104328, - [SMALL_STATE(3430)] = 104349, - [SMALL_STATE(3431)] = 104382, - [SMALL_STATE(3432)] = 104415, - [SMALL_STATE(3433)] = 104446, - [SMALL_STATE(3434)] = 104477, - [SMALL_STATE(3435)] = 104508, - [SMALL_STATE(3436)] = 104531, - [SMALL_STATE(3437)] = 104564, - [SMALL_STATE(3438)] = 104597, - [SMALL_STATE(3439)] = 104628, - [SMALL_STATE(3440)] = 104653, - [SMALL_STATE(3441)] = 104676, - [SMALL_STATE(3442)] = 104707, - [SMALL_STATE(3443)] = 104740, - [SMALL_STATE(3444)] = 104773, - [SMALL_STATE(3445)] = 104804, - [SMALL_STATE(3446)] = 104827, - [SMALL_STATE(3447)] = 104860, - [SMALL_STATE(3448)] = 104893, - [SMALL_STATE(3449)] = 104914, - [SMALL_STATE(3450)] = 104947, - [SMALL_STATE(3451)] = 104970, - [SMALL_STATE(3452)] = 105003, - [SMALL_STATE(3453)] = 105024, - [SMALL_STATE(3454)] = 105057, - [SMALL_STATE(3455)] = 105088, - [SMALL_STATE(3456)] = 105121, - [SMALL_STATE(3457)] = 105156, - [SMALL_STATE(3458)] = 105189, - [SMALL_STATE(3459)] = 105222, - [SMALL_STATE(3460)] = 105253, - [SMALL_STATE(3461)] = 105276, - [SMALL_STATE(3462)] = 105309, - [SMALL_STATE(3463)] = 105342, - [SMALL_STATE(3464)] = 105375, - [SMALL_STATE(3465)] = 105408, - [SMALL_STATE(3466)] = 105441, - [SMALL_STATE(3467)] = 105474, - [SMALL_STATE(3468)] = 105505, - [SMALL_STATE(3469)] = 105538, - [SMALL_STATE(3470)] = 105571, - [SMALL_STATE(3471)] = 105596, - [SMALL_STATE(3472)] = 105629, - [SMALL_STATE(3473)] = 105662, - [SMALL_STATE(3474)] = 105695, - [SMALL_STATE(3475)] = 105728, - [SMALL_STATE(3476)] = 105761, - [SMALL_STATE(3477)] = 105792, - [SMALL_STATE(3478)] = 105823, - [SMALL_STATE(3479)] = 105856, - [SMALL_STATE(3480)] = 105887, - [SMALL_STATE(3481)] = 105912, - [SMALL_STATE(3482)] = 105933, - [SMALL_STATE(3483)] = 105958, - [SMALL_STATE(3484)] = 105989, - [SMALL_STATE(3485)] = 106010, - [SMALL_STATE(3486)] = 106031, - [SMALL_STATE(3487)] = 106062, - [SMALL_STATE(3488)] = 106091, - [SMALL_STATE(3489)] = 106112, - [SMALL_STATE(3490)] = 106133, - [SMALL_STATE(3491)] = 106164, - [SMALL_STATE(3492)] = 106184, - [SMALL_STATE(3493)] = 106204, - [SMALL_STATE(3494)] = 106230, - [SMALL_STATE(3495)] = 106258, - [SMALL_STATE(3496)] = 106286, - [SMALL_STATE(3497)] = 106312, - [SMALL_STATE(3498)] = 106332, - [SMALL_STATE(3499)] = 106360, - [SMALL_STATE(3500)] = 106388, - [SMALL_STATE(3501)] = 106410, - [SMALL_STATE(3502)] = 106438, - [SMALL_STATE(3503)] = 106466, - [SMALL_STATE(3504)] = 106494, - [SMALL_STATE(3505)] = 106522, - [SMALL_STATE(3506)] = 106542, - [SMALL_STATE(3507)] = 106570, - [SMALL_STATE(3508)] = 106598, - [SMALL_STATE(3509)] = 106618, - [SMALL_STATE(3510)] = 106646, - [SMALL_STATE(3511)] = 106674, - [SMALL_STATE(3512)] = 106694, - [SMALL_STATE(3513)] = 106722, - [SMALL_STATE(3514)] = 106750, - [SMALL_STATE(3515)] = 106774, - [SMALL_STATE(3516)] = 106802, - [SMALL_STATE(3517)] = 106830, - [SMALL_STATE(3518)] = 106858, - [SMALL_STATE(3519)] = 106882, - [SMALL_STATE(3520)] = 106910, - [SMALL_STATE(3521)] = 106938, - [SMALL_STATE(3522)] = 106966, - [SMALL_STATE(3523)] = 106994, - [SMALL_STATE(3524)] = 107022, - [SMALL_STATE(3525)] = 107050, - [SMALL_STATE(3526)] = 107078, - [SMALL_STATE(3527)] = 107108, - [SMALL_STATE(3528)] = 107136, - [SMALL_STATE(3529)] = 107156, - [SMALL_STATE(3530)] = 107184, - [SMALL_STATE(3531)] = 107212, - [SMALL_STATE(3532)] = 107240, - [SMALL_STATE(3533)] = 107258, - [SMALL_STATE(3534)] = 107286, - [SMALL_STATE(3535)] = 107308, - [SMALL_STATE(3536)] = 107336, - [SMALL_STATE(3537)] = 107358, - [SMALL_STATE(3538)] = 107386, - [SMALL_STATE(3539)] = 107406, - [SMALL_STATE(3540)] = 107434, - [SMALL_STATE(3541)] = 107462, - [SMALL_STATE(3542)] = 107482, - [SMALL_STATE(3543)] = 107502, - [SMALL_STATE(3544)] = 107530, - [SMALL_STATE(3545)] = 107558, - [SMALL_STATE(3546)] = 107586, - [SMALL_STATE(3547)] = 107606, - [SMALL_STATE(3548)] = 107634, - [SMALL_STATE(3549)] = 107656, - [SMALL_STATE(3550)] = 107676, - [SMALL_STATE(3551)] = 107704, - [SMALL_STATE(3552)] = 107732, - [SMALL_STATE(3553)] = 107760, - [SMALL_STATE(3554)] = 107782, - [SMALL_STATE(3555)] = 107806, - [SMALL_STATE(3556)] = 107836, - [SMALL_STATE(3557)] = 107864, - [SMALL_STATE(3558)] = 107892, - [SMALL_STATE(3559)] = 107920, - [SMALL_STATE(3560)] = 107944, - [SMALL_STATE(3561)] = 107964, - [SMALL_STATE(3562)] = 107984, - [SMALL_STATE(3563)] = 108010, - [SMALL_STATE(3564)] = 108032, - [SMALL_STATE(3565)] = 108056, - [SMALL_STATE(3566)] = 108078, - [SMALL_STATE(3567)] = 108106, - [SMALL_STATE(3568)] = 108134, - [SMALL_STATE(3569)] = 108154, - [SMALL_STATE(3570)] = 108176, - [SMALL_STATE(3571)] = 108194, - [SMALL_STATE(3572)] = 108218, - [SMALL_STATE(3573)] = 108244, - [SMALL_STATE(3574)] = 108269, - [SMALL_STATE(3575)] = 108294, - [SMALL_STATE(3576)] = 108315, - [SMALL_STATE(3577)] = 108340, - [SMALL_STATE(3578)] = 108363, - [SMALL_STATE(3579)] = 108382, - [SMALL_STATE(3580)] = 108401, - [SMALL_STATE(3581)] = 108426, - [SMALL_STATE(3582)] = 108455, - [SMALL_STATE(3583)] = 108474, - [SMALL_STATE(3584)] = 108493, - [SMALL_STATE(3585)] = 108512, - [SMALL_STATE(3586)] = 108531, - [SMALL_STATE(3587)] = 108556, - [SMALL_STATE(3588)] = 108581, - [SMALL_STATE(3589)] = 108600, - [SMALL_STATE(3590)] = 108621, - [SMALL_STATE(3591)] = 108642, - [SMALL_STATE(3592)] = 108667, - [SMALL_STATE(3593)] = 108690, - [SMALL_STATE(3594)] = 108711, - [SMALL_STATE(3595)] = 108736, - [SMALL_STATE(3596)] = 108757, - [SMALL_STATE(3597)] = 108776, - [SMALL_STATE(3598)] = 108795, - [SMALL_STATE(3599)] = 108822, - [SMALL_STATE(3600)] = 108853, - [SMALL_STATE(3601)] = 108876, - [SMALL_STATE(3602)] = 108897, - [SMALL_STATE(3603)] = 108922, - [SMALL_STATE(3604)] = 108949, - [SMALL_STATE(3605)] = 108970, - [SMALL_STATE(3606)] = 108995, - [SMALL_STATE(3607)] = 109022, - [SMALL_STATE(3608)] = 109047, - [SMALL_STATE(3609)] = 109074, - [SMALL_STATE(3610)] = 109097, - [SMALL_STATE(3611)] = 109122, - [SMALL_STATE(3612)] = 109145, - [SMALL_STATE(3613)] = 109170, - [SMALL_STATE(3614)] = 109195, - [SMALL_STATE(3615)] = 109214, - [SMALL_STATE(3616)] = 109239, - [SMALL_STATE(3617)] = 109258, - [SMALL_STATE(3618)] = 109277, - [SMALL_STATE(3619)] = 109296, - [SMALL_STATE(3620)] = 109321, - [SMALL_STATE(3621)] = 109348, - [SMALL_STATE(3622)] = 109375, - [SMALL_STATE(3623)] = 109397, - [SMALL_STATE(3624)] = 109425, - [SMALL_STATE(3625)] = 109447, - [SMALL_STATE(3626)] = 109467, - [SMALL_STATE(3627)] = 109485, - [SMALL_STATE(3628)] = 109513, - [SMALL_STATE(3629)] = 109541, - [SMALL_STATE(3630)] = 109569, - [SMALL_STATE(3631)] = 109591, - [SMALL_STATE(3632)] = 109613, - [SMALL_STATE(3633)] = 109639, - [SMALL_STATE(3634)] = 109667, - [SMALL_STATE(3635)] = 109687, - [SMALL_STATE(3636)] = 109707, - [SMALL_STATE(3637)] = 109727, - [SMALL_STATE(3638)] = 109749, - [SMALL_STATE(3639)] = 109767, - [SMALL_STATE(3640)] = 109793, - [SMALL_STATE(3641)] = 109817, - [SMALL_STATE(3642)] = 109845, - [SMALL_STATE(3643)] = 109873, - [SMALL_STATE(3644)] = 109897, - [SMALL_STATE(3645)] = 109917, - [SMALL_STATE(3646)] = 109935, - [SMALL_STATE(3647)] = 109963, - [SMALL_STATE(3648)] = 109989, - [SMALL_STATE(3649)] = 110017, - [SMALL_STATE(3650)] = 110035, - [SMALL_STATE(3651)] = 110063, - [SMALL_STATE(3652)] = 110091, - [SMALL_STATE(3653)] = 110109, - [SMALL_STATE(3654)] = 110133, - [SMALL_STATE(3655)] = 110161, - [SMALL_STATE(3656)] = 110187, - [SMALL_STATE(3657)] = 110215, - [SMALL_STATE(3658)] = 110243, - [SMALL_STATE(3659)] = 110271, - [SMALL_STATE(3660)] = 110299, - [SMALL_STATE(3661)] = 110323, - [SMALL_STATE(3662)] = 110341, - [SMALL_STATE(3663)] = 110369, - [SMALL_STATE(3664)] = 110387, - [SMALL_STATE(3665)] = 110413, - [SMALL_STATE(3666)] = 110441, - [SMALL_STATE(3667)] = 110469, - [SMALL_STATE(3668)] = 110495, - [SMALL_STATE(3669)] = 110521, - [SMALL_STATE(3670)] = 110547, - [SMALL_STATE(3671)] = 110575, - [SMALL_STATE(3672)] = 110603, - [SMALL_STATE(3673)] = 110629, - [SMALL_STATE(3674)] = 110655, - [SMALL_STATE(3675)] = 110683, - [SMALL_STATE(3676)] = 110711, - [SMALL_STATE(3677)] = 110737, - [SMALL_STATE(3678)] = 110759, - [SMALL_STATE(3679)] = 110781, - [SMALL_STATE(3680)] = 110803, - [SMALL_STATE(3681)] = 110825, - [SMALL_STATE(3682)] = 110847, - [SMALL_STATE(3683)] = 110873, - [SMALL_STATE(3684)] = 110891, - [SMALL_STATE(3685)] = 110917, - [SMALL_STATE(3686)] = 110945, - [SMALL_STATE(3687)] = 110973, - [SMALL_STATE(3688)] = 110995, - [SMALL_STATE(3689)] = 111023, - [SMALL_STATE(3690)] = 111051, - [SMALL_STATE(3691)] = 111075, - [SMALL_STATE(3692)] = 111103, - [SMALL_STATE(3693)] = 111129, - [SMALL_STATE(3694)] = 111155, - [SMALL_STATE(3695)] = 111173, - [SMALL_STATE(3696)] = 111201, - [SMALL_STATE(3697)] = 111227, - [SMALL_STATE(3698)] = 111255, - [SMALL_STATE(3699)] = 111279, - [SMALL_STATE(3700)] = 111303, - [SMALL_STATE(3701)] = 111325, - [SMALL_STATE(3702)] = 111353, - [SMALL_STATE(3703)] = 111381, - [SMALL_STATE(3704)] = 111405, - [SMALL_STATE(3705)] = 111429, - [SMALL_STATE(3706)] = 111447, - [SMALL_STATE(3707)] = 111475, - [SMALL_STATE(3708)] = 111503, - [SMALL_STATE(3709)] = 111531, - [SMALL_STATE(3710)] = 111559, - [SMALL_STATE(3711)] = 111585, - [SMALL_STATE(3712)] = 111611, - [SMALL_STATE(3713)] = 111637, - [SMALL_STATE(3714)] = 111665, - [SMALL_STATE(3715)] = 111685, - [SMALL_STATE(3716)] = 111705, - [SMALL_STATE(3717)] = 111733, - [SMALL_STATE(3718)] = 111751, - [SMALL_STATE(3719)] = 111777, - [SMALL_STATE(3720)] = 111803, - [SMALL_STATE(3721)] = 111831, - [SMALL_STATE(3722)] = 111859, - [SMALL_STATE(3723)] = 111887, - [SMALL_STATE(3724)] = 111907, - [SMALL_STATE(3725)] = 111935, - [SMALL_STATE(3726)] = 111963, - [SMALL_STATE(3727)] = 111981, - [SMALL_STATE(3728)] = 112009, - [SMALL_STATE(3729)] = 112037, - [SMALL_STATE(3730)] = 112065, - [SMALL_STATE(3731)] = 112083, - [SMALL_STATE(3732)] = 112108, - [SMALL_STATE(3733)] = 112131, - [SMALL_STATE(3734)] = 112152, - [SMALL_STATE(3735)] = 112175, - [SMALL_STATE(3736)] = 112198, - [SMALL_STATE(3737)] = 112221, - [SMALL_STATE(3738)] = 112244, - [SMALL_STATE(3739)] = 112265, - [SMALL_STATE(3740)] = 112282, - [SMALL_STATE(3741)] = 112299, - [SMALL_STATE(3742)] = 112320, - [SMALL_STATE(3743)] = 112341, - [SMALL_STATE(3744)] = 112366, - [SMALL_STATE(3745)] = 112391, - [SMALL_STATE(3746)] = 112416, - [SMALL_STATE(3747)] = 112437, - [SMALL_STATE(3748)] = 112460, - [SMALL_STATE(3749)] = 112483, - [SMALL_STATE(3750)] = 112506, - [SMALL_STATE(3751)] = 112527, - [SMALL_STATE(3752)] = 112548, - [SMALL_STATE(3753)] = 112571, - [SMALL_STATE(3754)] = 112590, - [SMALL_STATE(3755)] = 112609, - [SMALL_STATE(3756)] = 112630, - [SMALL_STATE(3757)] = 112651, - [SMALL_STATE(3758)] = 112672, - [SMALL_STATE(3759)] = 112691, - [SMALL_STATE(3760)] = 112710, - [SMALL_STATE(3761)] = 112733, - [SMALL_STATE(3762)] = 112756, - [SMALL_STATE(3763)] = 112781, - [SMALL_STATE(3764)] = 112804, - [SMALL_STATE(3765)] = 112827, - [SMALL_STATE(3766)] = 112848, - [SMALL_STATE(3767)] = 112869, - [SMALL_STATE(3768)] = 112894, - [SMALL_STATE(3769)] = 112913, - [SMALL_STATE(3770)] = 112932, - [SMALL_STATE(3771)] = 112957, - [SMALL_STATE(3772)] = 112980, - [SMALL_STATE(3773)] = 113005, - [SMALL_STATE(3774)] = 113030, - [SMALL_STATE(3775)] = 113053, - [SMALL_STATE(3776)] = 113078, - [SMALL_STATE(3777)] = 113103, - [SMALL_STATE(3778)] = 113128, - [SMALL_STATE(3779)] = 113151, - [SMALL_STATE(3780)] = 113176, - [SMALL_STATE(3781)] = 113197, - [SMALL_STATE(3782)] = 113220, - [SMALL_STATE(3783)] = 113243, - [SMALL_STATE(3784)] = 113266, - [SMALL_STATE(3785)] = 113291, - [SMALL_STATE(3786)] = 113314, - [SMALL_STATE(3787)] = 113339, - [SMALL_STATE(3788)] = 113362, - [SMALL_STATE(3789)] = 113385, - [SMALL_STATE(3790)] = 113408, - [SMALL_STATE(3791)] = 113431, - [SMALL_STATE(3792)] = 113446, - [SMALL_STATE(3793)] = 113471, - [SMALL_STATE(3794)] = 113490, - [SMALL_STATE(3795)] = 113515, - [SMALL_STATE(3796)] = 113530, - [SMALL_STATE(3797)] = 113545, - [SMALL_STATE(3798)] = 113566, - [SMALL_STATE(3799)] = 113581, - [SMALL_STATE(3800)] = 113596, - [SMALL_STATE(3801)] = 113611, - [SMALL_STATE(3802)] = 113630, - [SMALL_STATE(3803)] = 113655, - [SMALL_STATE(3804)] = 113674, - [SMALL_STATE(3805)] = 113699, - [SMALL_STATE(3806)] = 113722, - [SMALL_STATE(3807)] = 113745, - [SMALL_STATE(3808)] = 113766, - [SMALL_STATE(3809)] = 113787, - [SMALL_STATE(3810)] = 113808, - [SMALL_STATE(3811)] = 113827, - [SMALL_STATE(3812)] = 113848, - [SMALL_STATE(3813)] = 113867, - [SMALL_STATE(3814)] = 113886, - [SMALL_STATE(3815)] = 113907, - [SMALL_STATE(3816)] = 113932, - [SMALL_STATE(3817)] = 113957, - [SMALL_STATE(3818)] = 113980, - [SMALL_STATE(3819)] = 114001, - [SMALL_STATE(3820)] = 114024, - [SMALL_STATE(3821)] = 114049, - [SMALL_STATE(3822)] = 114072, - [SMALL_STATE(3823)] = 114095, - [SMALL_STATE(3824)] = 114118, - [SMALL_STATE(3825)] = 114141, - [SMALL_STATE(3826)] = 114164, - [SMALL_STATE(3827)] = 114187, - [SMALL_STATE(3828)] = 114210, - [SMALL_STATE(3829)] = 114233, - [SMALL_STATE(3830)] = 114256, - [SMALL_STATE(3831)] = 114279, - [SMALL_STATE(3832)] = 114302, - [SMALL_STATE(3833)] = 114325, - [SMALL_STATE(3834)] = 114348, - [SMALL_STATE(3835)] = 114371, - [SMALL_STATE(3836)] = 114394, - [SMALL_STATE(3837)] = 114419, - [SMALL_STATE(3838)] = 114442, - [SMALL_STATE(3839)] = 114463, - [SMALL_STATE(3840)] = 114486, - [SMALL_STATE(3841)] = 114509, - [SMALL_STATE(3842)] = 114532, - [SMALL_STATE(3843)] = 114555, - [SMALL_STATE(3844)] = 114576, - [SMALL_STATE(3845)] = 114597, - [SMALL_STATE(3846)] = 114616, - [SMALL_STATE(3847)] = 114637, - [SMALL_STATE(3848)] = 114662, - [SMALL_STATE(3849)] = 114683, - [SMALL_STATE(3850)] = 114702, - [SMALL_STATE(3851)] = 114721, - [SMALL_STATE(3852)] = 114742, - [SMALL_STATE(3853)] = 114761, - [SMALL_STATE(3854)] = 114782, - [SMALL_STATE(3855)] = 114799, - [SMALL_STATE(3856)] = 114816, - [SMALL_STATE(3857)] = 114833, - [SMALL_STATE(3858)] = 114856, - [SMALL_STATE(3859)] = 114879, - [SMALL_STATE(3860)] = 114902, - [SMALL_STATE(3861)] = 114923, - [SMALL_STATE(3862)] = 114944, - [SMALL_STATE(3863)] = 114965, - [SMALL_STATE(3864)] = 114986, - [SMALL_STATE(3865)] = 115009, - [SMALL_STATE(3866)] = 115034, - [SMALL_STATE(3867)] = 115059, - [SMALL_STATE(3868)] = 115084, - [SMALL_STATE(3869)] = 115105, - [SMALL_STATE(3870)] = 115126, - [SMALL_STATE(3871)] = 115147, - [SMALL_STATE(3872)] = 115166, - [SMALL_STATE(3873)] = 115187, - [SMALL_STATE(3874)] = 115206, - [SMALL_STATE(3875)] = 115227, - [SMALL_STATE(3876)] = 115246, - [SMALL_STATE(3877)] = 115271, - [SMALL_STATE(3878)] = 115296, - [SMALL_STATE(3879)] = 115321, - [SMALL_STATE(3880)] = 115340, - [SMALL_STATE(3881)] = 115361, - [SMALL_STATE(3882)] = 115386, - [SMALL_STATE(3883)] = 115411, - [SMALL_STATE(3884)] = 115430, - [SMALL_STATE(3885)] = 115446, - [SMALL_STATE(3886)] = 115466, - [SMALL_STATE(3887)] = 115486, - [SMALL_STATE(3888)] = 115508, - [SMALL_STATE(3889)] = 115522, - [SMALL_STATE(3890)] = 115538, - [SMALL_STATE(3891)] = 115554, - [SMALL_STATE(3892)] = 115568, - [SMALL_STATE(3893)] = 115588, - [SMALL_STATE(3894)] = 115610, - [SMALL_STATE(3895)] = 115624, - [SMALL_STATE(3896)] = 115638, - [SMALL_STATE(3897)] = 115660, - [SMALL_STATE(3898)] = 115682, - [SMALL_STATE(3899)] = 115696, - [SMALL_STATE(3900)] = 115718, - [SMALL_STATE(3901)] = 115734, - [SMALL_STATE(3902)] = 115754, - [SMALL_STATE(3903)] = 115772, - [SMALL_STATE(3904)] = 115790, - [SMALL_STATE(3905)] = 115806, - [SMALL_STATE(3906)] = 115828, - [SMALL_STATE(3907)] = 115850, - [SMALL_STATE(3908)] = 115872, - [SMALL_STATE(3909)] = 115888, - [SMALL_STATE(3910)] = 115904, - [SMALL_STATE(3911)] = 115926, - [SMALL_STATE(3912)] = 115946, - [SMALL_STATE(3913)] = 115966, - [SMALL_STATE(3914)] = 115988, - [SMALL_STATE(3915)] = 116004, - [SMALL_STATE(3916)] = 116026, - [SMALL_STATE(3917)] = 116044, - [SMALL_STATE(3918)] = 116066, - [SMALL_STATE(3919)] = 116084, - [SMALL_STATE(3920)] = 116100, - [SMALL_STATE(3921)] = 116122, - [SMALL_STATE(3922)] = 116138, - [SMALL_STATE(3923)] = 116158, - [SMALL_STATE(3924)] = 116174, - [SMALL_STATE(3925)] = 116192, - [SMALL_STATE(3926)] = 116210, - [SMALL_STATE(3927)] = 116226, - [SMALL_STATE(3928)] = 116246, - [SMALL_STATE(3929)] = 116266, - [SMALL_STATE(3930)] = 116282, - [SMALL_STATE(3931)] = 116302, - [SMALL_STATE(3932)] = 116318, - [SMALL_STATE(3933)] = 116338, - [SMALL_STATE(3934)] = 116360, - [SMALL_STATE(3935)] = 116380, - [SMALL_STATE(3936)] = 116396, - [SMALL_STATE(3937)] = 116412, - [SMALL_STATE(3938)] = 116432, - [SMALL_STATE(3939)] = 116452, - [SMALL_STATE(3940)] = 116474, - [SMALL_STATE(3941)] = 116496, - [SMALL_STATE(3942)] = 116516, - [SMALL_STATE(3943)] = 116534, - [SMALL_STATE(3944)] = 116554, - [SMALL_STATE(3945)] = 116574, - [SMALL_STATE(3946)] = 116594, - [SMALL_STATE(3947)] = 116610, - [SMALL_STATE(3948)] = 116626, - [SMALL_STATE(3949)] = 116642, - [SMALL_STATE(3950)] = 116658, - [SMALL_STATE(3951)] = 116674, - [SMALL_STATE(3952)] = 116692, - [SMALL_STATE(3953)] = 116706, - [SMALL_STATE(3954)] = 116724, - [SMALL_STATE(3955)] = 116744, - [SMALL_STATE(3956)] = 116764, - [SMALL_STATE(3957)] = 116786, - [SMALL_STATE(3958)] = 116808, - [SMALL_STATE(3959)] = 116826, - [SMALL_STATE(3960)] = 116844, - [SMALL_STATE(3961)] = 116866, - [SMALL_STATE(3962)] = 116886, - [SMALL_STATE(3963)] = 116902, - [SMALL_STATE(3964)] = 116920, - [SMALL_STATE(3965)] = 116936, - [SMALL_STATE(3966)] = 116956, - [SMALL_STATE(3967)] = 116976, - [SMALL_STATE(3968)] = 116998, - [SMALL_STATE(3969)] = 117018, - [SMALL_STATE(3970)] = 117038, - [SMALL_STATE(3971)] = 117056, - [SMALL_STATE(3972)] = 117072, - [SMALL_STATE(3973)] = 117088, - [SMALL_STATE(3974)] = 117104, - [SMALL_STATE(3975)] = 117124, - [SMALL_STATE(3976)] = 117146, - [SMALL_STATE(3977)] = 117166, - [SMALL_STATE(3978)] = 117186, - [SMALL_STATE(3979)] = 117208, - [SMALL_STATE(3980)] = 117228, - [SMALL_STATE(3981)] = 117250, - [SMALL_STATE(3982)] = 117272, - [SMALL_STATE(3983)] = 117294, - [SMALL_STATE(3984)] = 117312, - [SMALL_STATE(3985)] = 117330, - [SMALL_STATE(3986)] = 117348, - [SMALL_STATE(3987)] = 117368, - [SMALL_STATE(3988)] = 117390, - [SMALL_STATE(3989)] = 117412, - [SMALL_STATE(3990)] = 117430, - [SMALL_STATE(3991)] = 117446, - [SMALL_STATE(3992)] = 117466, - [SMALL_STATE(3993)] = 117488, - [SMALL_STATE(3994)] = 117504, - [SMALL_STATE(3995)] = 117526, - [SMALL_STATE(3996)] = 117544, - [SMALL_STATE(3997)] = 117564, - [SMALL_STATE(3998)] = 117582, - [SMALL_STATE(3999)] = 117602, - [SMALL_STATE(4000)] = 117622, - [SMALL_STATE(4001)] = 117642, - [SMALL_STATE(4002)] = 117656, - [SMALL_STATE(4003)] = 117674, - [SMALL_STATE(4004)] = 117694, - [SMALL_STATE(4005)] = 117714, - [SMALL_STATE(4006)] = 117734, - [SMALL_STATE(4007)] = 117754, - [SMALL_STATE(4008)] = 117768, - [SMALL_STATE(4009)] = 117788, - [SMALL_STATE(4010)] = 117808, - [SMALL_STATE(4011)] = 117828, - [SMALL_STATE(4012)] = 117848, - [SMALL_STATE(4013)] = 117868, - [SMALL_STATE(4014)] = 117888, - [SMALL_STATE(4015)] = 117910, - [SMALL_STATE(4016)] = 117926, - [SMALL_STATE(4017)] = 117942, - [SMALL_STATE(4018)] = 117958, - [SMALL_STATE(4019)] = 117974, - [SMALL_STATE(4020)] = 117996, - [SMALL_STATE(4021)] = 118016, - [SMALL_STATE(4022)] = 118038, - [SMALL_STATE(4023)] = 118060, - [SMALL_STATE(4024)] = 118082, - [SMALL_STATE(4025)] = 118098, - [SMALL_STATE(4026)] = 118118, - [SMALL_STATE(4027)] = 118138, - [SMALL_STATE(4028)] = 118158, - [SMALL_STATE(4029)] = 118180, - [SMALL_STATE(4030)] = 118198, - [SMALL_STATE(4031)] = 118214, - [SMALL_STATE(4032)] = 118234, - [SMALL_STATE(4033)] = 118252, - [SMALL_STATE(4034)] = 118272, - [SMALL_STATE(4035)] = 118294, - [SMALL_STATE(4036)] = 118312, - [SMALL_STATE(4037)] = 118332, - [SMALL_STATE(4038)] = 118352, - [SMALL_STATE(4039)] = 118370, - [SMALL_STATE(4040)] = 118388, - [SMALL_STATE(4041)] = 118410, - [SMALL_STATE(4042)] = 118432, - [SMALL_STATE(4043)] = 118452, - [SMALL_STATE(4044)] = 118470, - [SMALL_STATE(4045)] = 118488, - [SMALL_STATE(4046)] = 118510, - [SMALL_STATE(4047)] = 118532, - [SMALL_STATE(4048)] = 118554, - [SMALL_STATE(4049)] = 118573, - [SMALL_STATE(4050)] = 118586, - [SMALL_STATE(4051)] = 118599, - [SMALL_STATE(4052)] = 118618, - [SMALL_STATE(4053)] = 118631, - [SMALL_STATE(4054)] = 118644, - [SMALL_STATE(4055)] = 118657, - [SMALL_STATE(4056)] = 118672, - [SMALL_STATE(4057)] = 118687, - [SMALL_STATE(4058)] = 118702, - [SMALL_STATE(4059)] = 118717, - [SMALL_STATE(4060)] = 118736, - [SMALL_STATE(4061)] = 118749, - [SMALL_STATE(4062)] = 118764, - [SMALL_STATE(4063)] = 118779, - [SMALL_STATE(4064)] = 118792, - [SMALL_STATE(4065)] = 118807, - [SMALL_STATE(4066)] = 118824, - [SMALL_STATE(4067)] = 118841, - [SMALL_STATE(4068)] = 118854, - [SMALL_STATE(4069)] = 118867, - [SMALL_STATE(4070)] = 118880, - [SMALL_STATE(4071)] = 118893, - [SMALL_STATE(4072)] = 118908, - [SMALL_STATE(4073)] = 118923, - [SMALL_STATE(4074)] = 118938, - [SMALL_STATE(4075)] = 118953, - [SMALL_STATE(4076)] = 118968, - [SMALL_STATE(4077)] = 118981, - [SMALL_STATE(4078)] = 118998, - [SMALL_STATE(4079)] = 119011, - [SMALL_STATE(4080)] = 119026, - [SMALL_STATE(4081)] = 119039, - [SMALL_STATE(4082)] = 119052, - [SMALL_STATE(4083)] = 119065, - [SMALL_STATE(4084)] = 119078, - [SMALL_STATE(4085)] = 119097, - [SMALL_STATE(4086)] = 119110, - [SMALL_STATE(4087)] = 119123, - [SMALL_STATE(4088)] = 119138, - [SMALL_STATE(4089)] = 119155, - [SMALL_STATE(4090)] = 119170, - [SMALL_STATE(4091)] = 119183, - [SMALL_STATE(4092)] = 119196, - [SMALL_STATE(4093)] = 119215, - [SMALL_STATE(4094)] = 119228, - [SMALL_STATE(4095)] = 119241, - [SMALL_STATE(4096)] = 119254, - [SMALL_STATE(4097)] = 119269, - [SMALL_STATE(4098)] = 119288, - [SMALL_STATE(4099)] = 119301, - [SMALL_STATE(4100)] = 119314, - [SMALL_STATE(4101)] = 119329, - [SMALL_STATE(4102)] = 119342, - [SMALL_STATE(4103)] = 119357, - [SMALL_STATE(4104)] = 119376, - [SMALL_STATE(4105)] = 119391, - [SMALL_STATE(4106)] = 119406, - [SMALL_STATE(4107)] = 119421, - [SMALL_STATE(4108)] = 119436, - [SMALL_STATE(4109)] = 119449, - [SMALL_STATE(4110)] = 119464, - [SMALL_STATE(4111)] = 119477, - [SMALL_STATE(4112)] = 119490, - [SMALL_STATE(4113)] = 119505, - [SMALL_STATE(4114)] = 119520, - [SMALL_STATE(4115)] = 119539, - [SMALL_STATE(4116)] = 119554, - [SMALL_STATE(4117)] = 119569, - [SMALL_STATE(4118)] = 119584, - [SMALL_STATE(4119)] = 119599, - [SMALL_STATE(4120)] = 119614, - [SMALL_STATE(4121)] = 119629, - [SMALL_STATE(4122)] = 119644, - [SMALL_STATE(4123)] = 119659, - [SMALL_STATE(4124)] = 119674, - [SMALL_STATE(4125)] = 119689, - [SMALL_STATE(4126)] = 119704, - [SMALL_STATE(4127)] = 119723, - [SMALL_STATE(4128)] = 119738, - [SMALL_STATE(4129)] = 119757, - [SMALL_STATE(4130)] = 119770, - [SMALL_STATE(4131)] = 119789, - [SMALL_STATE(4132)] = 119808, - [SMALL_STATE(4133)] = 119827, - [SMALL_STATE(4134)] = 119844, - [SMALL_STATE(4135)] = 119861, - [SMALL_STATE(4136)] = 119878, - [SMALL_STATE(4137)] = 119891, - [SMALL_STATE(4138)] = 119904, - [SMALL_STATE(4139)] = 119923, - [SMALL_STATE(4140)] = 119940, - [SMALL_STATE(4141)] = 119953, - [SMALL_STATE(4142)] = 119966, - [SMALL_STATE(4143)] = 119979, - [SMALL_STATE(4144)] = 119998, - [SMALL_STATE(4145)] = 120011, - [SMALL_STATE(4146)] = 120030, - [SMALL_STATE(4147)] = 120045, - [SMALL_STATE(4148)] = 120064, - [SMALL_STATE(4149)] = 120083, - [SMALL_STATE(4150)] = 120096, - [SMALL_STATE(4151)] = 120109, - [SMALL_STATE(4152)] = 120122, - [SMALL_STATE(4153)] = 120139, - [SMALL_STATE(4154)] = 120152, - [SMALL_STATE(4155)] = 120169, - [SMALL_STATE(4156)] = 120182, - [SMALL_STATE(4157)] = 120195, - [SMALL_STATE(4158)] = 120210, - [SMALL_STATE(4159)] = 120225, - [SMALL_STATE(4160)] = 120244, - [SMALL_STATE(4161)] = 120257, - [SMALL_STATE(4162)] = 120270, - [SMALL_STATE(4163)] = 120283, - [SMALL_STATE(4164)] = 120298, - [SMALL_STATE(4165)] = 120311, - [SMALL_STATE(4166)] = 120326, - [SMALL_STATE(4167)] = 120345, - [SMALL_STATE(4168)] = 120362, - [SMALL_STATE(4169)] = 120375, - [SMALL_STATE(4170)] = 120388, - [SMALL_STATE(4171)] = 120401, - [SMALL_STATE(4172)] = 120420, - [SMALL_STATE(4173)] = 120433, - [SMALL_STATE(4174)] = 120452, - [SMALL_STATE(4175)] = 120471, - [SMALL_STATE(4176)] = 120484, - [SMALL_STATE(4177)] = 120499, - [SMALL_STATE(4178)] = 120518, - [SMALL_STATE(4179)] = 120535, - [SMALL_STATE(4180)] = 120552, - [SMALL_STATE(4181)] = 120565, - [SMALL_STATE(4182)] = 120580, - [SMALL_STATE(4183)] = 120599, - [SMALL_STATE(4184)] = 120616, - [SMALL_STATE(4185)] = 120635, - [SMALL_STATE(4186)] = 120652, - [SMALL_STATE(4187)] = 120669, - [SMALL_STATE(4188)] = 120682, - [SMALL_STATE(4189)] = 120699, - [SMALL_STATE(4190)] = 120718, - [SMALL_STATE(4191)] = 120735, - [SMALL_STATE(4192)] = 120752, - [SMALL_STATE(4193)] = 120769, - [SMALL_STATE(4194)] = 120782, - [SMALL_STATE(4195)] = 120799, - [SMALL_STATE(4196)] = 120814, - [SMALL_STATE(4197)] = 120833, - [SMALL_STATE(4198)] = 120848, - [SMALL_STATE(4199)] = 120865, - [SMALL_STATE(4200)] = 120880, - [SMALL_STATE(4201)] = 120899, - [SMALL_STATE(4202)] = 120912, - [SMALL_STATE(4203)] = 120925, - [SMALL_STATE(4204)] = 120944, - [SMALL_STATE(4205)] = 120957, - [SMALL_STATE(4206)] = 120972, - [SMALL_STATE(4207)] = 120987, - [SMALL_STATE(4208)] = 121004, - [SMALL_STATE(4209)] = 121023, - [SMALL_STATE(4210)] = 121038, - [SMALL_STATE(4211)] = 121053, - [SMALL_STATE(4212)] = 121066, - [SMALL_STATE(4213)] = 121079, - [SMALL_STATE(4214)] = 121092, - [SMALL_STATE(4215)] = 121107, - [SMALL_STATE(4216)] = 121122, - [SMALL_STATE(4217)] = 121141, - [SMALL_STATE(4218)] = 121154, - [SMALL_STATE(4219)] = 121169, - [SMALL_STATE(4220)] = 121184, - [SMALL_STATE(4221)] = 121197, - [SMALL_STATE(4222)] = 121212, - [SMALL_STATE(4223)] = 121231, - [SMALL_STATE(4224)] = 121246, - [SMALL_STATE(4225)] = 121259, - [SMALL_STATE(4226)] = 121272, - [SMALL_STATE(4227)] = 121285, - [SMALL_STATE(4228)] = 121298, - [SMALL_STATE(4229)] = 121311, - [SMALL_STATE(4230)] = 121330, - [SMALL_STATE(4231)] = 121343, - [SMALL_STATE(4232)] = 121356, - [SMALL_STATE(4233)] = 121373, - [SMALL_STATE(4234)] = 121386, - [SMALL_STATE(4235)] = 121401, - [SMALL_STATE(4236)] = 121420, - [SMALL_STATE(4237)] = 121439, - [SMALL_STATE(4238)] = 121452, - [SMALL_STATE(4239)] = 121471, - [SMALL_STATE(4240)] = 121490, - [SMALL_STATE(4241)] = 121503, - [SMALL_STATE(4242)] = 121516, - [SMALL_STATE(4243)] = 121529, - [SMALL_STATE(4244)] = 121542, - [SMALL_STATE(4245)] = 121555, - [SMALL_STATE(4246)] = 121570, - [SMALL_STATE(4247)] = 121583, - [SMALL_STATE(4248)] = 121602, - [SMALL_STATE(4249)] = 121615, - [SMALL_STATE(4250)] = 121634, - [SMALL_STATE(4251)] = 121647, - [SMALL_STATE(4252)] = 121660, - [SMALL_STATE(4253)] = 121673, - [SMALL_STATE(4254)] = 121692, - [SMALL_STATE(4255)] = 121705, - [SMALL_STATE(4256)] = 121722, - [SMALL_STATE(4257)] = 121741, - [SMALL_STATE(4258)] = 121754, - [SMALL_STATE(4259)] = 121771, - [SMALL_STATE(4260)] = 121784, - [SMALL_STATE(4261)] = 121803, - [SMALL_STATE(4262)] = 121820, - [SMALL_STATE(4263)] = 121839, - [SMALL_STATE(4264)] = 121858, - [SMALL_STATE(4265)] = 121875, - [SMALL_STATE(4266)] = 121888, - [SMALL_STATE(4267)] = 121901, - [SMALL_STATE(4268)] = 121920, - [SMALL_STATE(4269)] = 121933, - [SMALL_STATE(4270)] = 121946, - [SMALL_STATE(4271)] = 121959, - [SMALL_STATE(4272)] = 121978, - [SMALL_STATE(4273)] = 121997, - [SMALL_STATE(4274)] = 122016, - [SMALL_STATE(4275)] = 122029, - [SMALL_STATE(4276)] = 122048, - [SMALL_STATE(4277)] = 122061, - [SMALL_STATE(4278)] = 122080, - [SMALL_STATE(4279)] = 122097, - [SMALL_STATE(4280)] = 122116, - [SMALL_STATE(4281)] = 122135, - [SMALL_STATE(4282)] = 122148, - [SMALL_STATE(4283)] = 122163, - [SMALL_STATE(4284)] = 122176, - [SMALL_STATE(4285)] = 122191, - [SMALL_STATE(4286)] = 122204, - [SMALL_STATE(4287)] = 122223, - [SMALL_STATE(4288)] = 122236, - [SMALL_STATE(4289)] = 122249, - [SMALL_STATE(4290)] = 122262, - [SMALL_STATE(4291)] = 122279, - [SMALL_STATE(4292)] = 122294, - [SMALL_STATE(4293)] = 122309, - [SMALL_STATE(4294)] = 122322, - [SMALL_STATE(4295)] = 122335, - [SMALL_STATE(4296)] = 122352, - [SMALL_STATE(4297)] = 122369, - [SMALL_STATE(4298)] = 122382, - [SMALL_STATE(4299)] = 122401, - [SMALL_STATE(4300)] = 122414, - [SMALL_STATE(4301)] = 122433, - [SMALL_STATE(4302)] = 122448, - [SMALL_STATE(4303)] = 122461, - [SMALL_STATE(4304)] = 122476, - [SMALL_STATE(4305)] = 122489, - [SMALL_STATE(4306)] = 122506, - [SMALL_STATE(4307)] = 122521, - [SMALL_STATE(4308)] = 122534, - [SMALL_STATE(4309)] = 122551, - [SMALL_STATE(4310)] = 122564, - [SMALL_STATE(4311)] = 122579, - [SMALL_STATE(4312)] = 122592, - [SMALL_STATE(4313)] = 122611, - [SMALL_STATE(4314)] = 122624, - [SMALL_STATE(4315)] = 122639, - [SMALL_STATE(4316)] = 122652, - [SMALL_STATE(4317)] = 122665, - [SMALL_STATE(4318)] = 122680, - [SMALL_STATE(4319)] = 122695, - [SMALL_STATE(4320)] = 122712, - [SMALL_STATE(4321)] = 122725, - [SMALL_STATE(4322)] = 122738, - [SMALL_STATE(4323)] = 122751, - [SMALL_STATE(4324)] = 122768, - [SMALL_STATE(4325)] = 122781, - [SMALL_STATE(4326)] = 122794, - [SMALL_STATE(4327)] = 122807, - [SMALL_STATE(4328)] = 122820, - [SMALL_STATE(4329)] = 122833, - [SMALL_STATE(4330)] = 122846, - [SMALL_STATE(4331)] = 122859, - [SMALL_STATE(4332)] = 122872, - [SMALL_STATE(4333)] = 122885, - [SMALL_STATE(4334)] = 122898, - [SMALL_STATE(4335)] = 122911, - [SMALL_STATE(4336)] = 122926, - [SMALL_STATE(4337)] = 122939, - [SMALL_STATE(4338)] = 122952, - [SMALL_STATE(4339)] = 122965, - [SMALL_STATE(4340)] = 122978, - [SMALL_STATE(4341)] = 122991, - [SMALL_STATE(4342)] = 123004, - [SMALL_STATE(4343)] = 123019, - [SMALL_STATE(4344)] = 123032, - [SMALL_STATE(4345)] = 123049, - [SMALL_STATE(4346)] = 123062, - [SMALL_STATE(4347)] = 123075, - [SMALL_STATE(4348)] = 123088, - [SMALL_STATE(4349)] = 123101, - [SMALL_STATE(4350)] = 123116, - [SMALL_STATE(4351)] = 123135, - [SMALL_STATE(4352)] = 123148, - [SMALL_STATE(4353)] = 123167, - [SMALL_STATE(4354)] = 123182, - [SMALL_STATE(4355)] = 123201, - [SMALL_STATE(4356)] = 123220, - [SMALL_STATE(4357)] = 123239, - [SMALL_STATE(4358)] = 123258, - [SMALL_STATE(4359)] = 123277, - [SMALL_STATE(4360)] = 123296, - [SMALL_STATE(4361)] = 123315, - [SMALL_STATE(4362)] = 123334, - [SMALL_STATE(4363)] = 123353, - [SMALL_STATE(4364)] = 123372, - [SMALL_STATE(4365)] = 123385, - [SMALL_STATE(4366)] = 123402, - [SMALL_STATE(4367)] = 123415, - [SMALL_STATE(4368)] = 123431, - [SMALL_STATE(4369)] = 123443, - [SMALL_STATE(4370)] = 123455, - [SMALL_STATE(4371)] = 123467, - [SMALL_STATE(4372)] = 123479, - [SMALL_STATE(4373)] = 123491, - [SMALL_STATE(4374)] = 123507, - [SMALL_STATE(4375)] = 123523, - [SMALL_STATE(4376)] = 123537, - [SMALL_STATE(4377)] = 123549, - [SMALL_STATE(4378)] = 123563, - [SMALL_STATE(4379)] = 123579, - [SMALL_STATE(4380)] = 123591, - [SMALL_STATE(4381)] = 123605, - [SMALL_STATE(4382)] = 123621, - [SMALL_STATE(4383)] = 123633, - [SMALL_STATE(4384)] = 123645, - [SMALL_STATE(4385)] = 123657, - [SMALL_STATE(4386)] = 123669, - [SMALL_STATE(4387)] = 123685, - [SMALL_STATE(4388)] = 123697, - [SMALL_STATE(4389)] = 123713, - [SMALL_STATE(4390)] = 123725, - [SMALL_STATE(4391)] = 123737, - [SMALL_STATE(4392)] = 123753, - [SMALL_STATE(4393)] = 123765, - [SMALL_STATE(4394)] = 123781, - [SMALL_STATE(4395)] = 123793, - [SMALL_STATE(4396)] = 123805, - [SMALL_STATE(4397)] = 123819, - [SMALL_STATE(4398)] = 123831, - [SMALL_STATE(4399)] = 123845, - [SMALL_STATE(4400)] = 123857, - [SMALL_STATE(4401)] = 123869, - [SMALL_STATE(4402)] = 123885, - [SMALL_STATE(4403)] = 123901, - [SMALL_STATE(4404)] = 123913, - [SMALL_STATE(4405)] = 123929, - [SMALL_STATE(4406)] = 123941, - [SMALL_STATE(4407)] = 123953, - [SMALL_STATE(4408)] = 123969, - [SMALL_STATE(4409)] = 123985, - [SMALL_STATE(4410)] = 123997, - [SMALL_STATE(4411)] = 124009, - [SMALL_STATE(4412)] = 124023, - [SMALL_STATE(4413)] = 124035, - [SMALL_STATE(4414)] = 124051, - [SMALL_STATE(4415)] = 124065, - [SMALL_STATE(4416)] = 124077, - [SMALL_STATE(4417)] = 124089, - [SMALL_STATE(4418)] = 124101, - [SMALL_STATE(4419)] = 124113, - [SMALL_STATE(4420)] = 124125, - [SMALL_STATE(4421)] = 124137, - [SMALL_STATE(4422)] = 124149, - [SMALL_STATE(4423)] = 124161, - [SMALL_STATE(4424)] = 124177, - [SMALL_STATE(4425)] = 124191, - [SMALL_STATE(4426)] = 124205, - [SMALL_STATE(4427)] = 124219, - [SMALL_STATE(4428)] = 124231, - [SMALL_STATE(4429)] = 124247, - [SMALL_STATE(4430)] = 124259, - [SMALL_STATE(4431)] = 124271, - [SMALL_STATE(4432)] = 124287, - [SMALL_STATE(4433)] = 124299, - [SMALL_STATE(4434)] = 124311, - [SMALL_STATE(4435)] = 124323, - [SMALL_STATE(4436)] = 124335, - [SMALL_STATE(4437)] = 124349, - [SMALL_STATE(4438)] = 124361, - [SMALL_STATE(4439)] = 124377, - [SMALL_STATE(4440)] = 124393, - [SMALL_STATE(4441)] = 124405, - [SMALL_STATE(4442)] = 124421, - [SMALL_STATE(4443)] = 124433, - [SMALL_STATE(4444)] = 124445, - [SMALL_STATE(4445)] = 124457, - [SMALL_STATE(4446)] = 124473, - [SMALL_STATE(4447)] = 124489, - [SMALL_STATE(4448)] = 124505, - [SMALL_STATE(4449)] = 124521, - [SMALL_STATE(4450)] = 124537, - [SMALL_STATE(4451)] = 124553, - [SMALL_STATE(4452)] = 124569, - [SMALL_STATE(4453)] = 124583, - [SMALL_STATE(4454)] = 124597, - [SMALL_STATE(4455)] = 124611, - [SMALL_STATE(4456)] = 124623, - [SMALL_STATE(4457)] = 124635, - [SMALL_STATE(4458)] = 124647, - [SMALL_STATE(4459)] = 124659, - [SMALL_STATE(4460)] = 124671, - [SMALL_STATE(4461)] = 124683, - [SMALL_STATE(4462)] = 124697, - [SMALL_STATE(4463)] = 124709, - [SMALL_STATE(4464)] = 124721, - [SMALL_STATE(4465)] = 124735, - [SMALL_STATE(4466)] = 124751, - [SMALL_STATE(4467)] = 124763, - [SMALL_STATE(4468)] = 124777, - [SMALL_STATE(4469)] = 124793, - [SMALL_STATE(4470)] = 124809, - [SMALL_STATE(4471)] = 124823, - [SMALL_STATE(4472)] = 124839, - [SMALL_STATE(4473)] = 124855, - [SMALL_STATE(4474)] = 124871, - [SMALL_STATE(4475)] = 124887, - [SMALL_STATE(4476)] = 124903, - [SMALL_STATE(4477)] = 124917, - [SMALL_STATE(4478)] = 124931, - [SMALL_STATE(4479)] = 124945, - [SMALL_STATE(4480)] = 124959, - [SMALL_STATE(4481)] = 124973, - [SMALL_STATE(4482)] = 124985, - [SMALL_STATE(4483)] = 125001, - [SMALL_STATE(4484)] = 125015, - [SMALL_STATE(4485)] = 125031, - [SMALL_STATE(4486)] = 125047, - [SMALL_STATE(4487)] = 125059, - [SMALL_STATE(4488)] = 125071, - [SMALL_STATE(4489)] = 125083, - [SMALL_STATE(4490)] = 125095, - [SMALL_STATE(4491)] = 125111, - [SMALL_STATE(4492)] = 125125, - [SMALL_STATE(4493)] = 125137, - [SMALL_STATE(4494)] = 125153, - [SMALL_STATE(4495)] = 125165, - [SMALL_STATE(4496)] = 125177, - [SMALL_STATE(4497)] = 125193, - [SMALL_STATE(4498)] = 125209, - [SMALL_STATE(4499)] = 125225, - [SMALL_STATE(4500)] = 125241, - [SMALL_STATE(4501)] = 125253, - [SMALL_STATE(4502)] = 125269, - [SMALL_STATE(4503)] = 125283, - [SMALL_STATE(4504)] = 125295, - [SMALL_STATE(4505)] = 125307, - [SMALL_STATE(4506)] = 125321, - [SMALL_STATE(4507)] = 125335, - [SMALL_STATE(4508)] = 125347, - [SMALL_STATE(4509)] = 125359, - [SMALL_STATE(4510)] = 125375, - [SMALL_STATE(4511)] = 125389, - [SMALL_STATE(4512)] = 125403, - [SMALL_STATE(4513)] = 125419, - [SMALL_STATE(4514)] = 125433, - [SMALL_STATE(4515)] = 125447, - [SMALL_STATE(4516)] = 125461, - [SMALL_STATE(4517)] = 125475, - [SMALL_STATE(4518)] = 125489, - [SMALL_STATE(4519)] = 125501, - [SMALL_STATE(4520)] = 125513, - [SMALL_STATE(4521)] = 125527, - [SMALL_STATE(4522)] = 125539, - [SMALL_STATE(4523)] = 125553, - [SMALL_STATE(4524)] = 125565, - [SMALL_STATE(4525)] = 125581, - [SMALL_STATE(4526)] = 125593, - [SMALL_STATE(4527)] = 125609, - [SMALL_STATE(4528)] = 125621, - [SMALL_STATE(4529)] = 125633, - [SMALL_STATE(4530)] = 125645, - [SMALL_STATE(4531)] = 125659, - [SMALL_STATE(4532)] = 125675, - [SMALL_STATE(4533)] = 125687, - [SMALL_STATE(4534)] = 125699, - [SMALL_STATE(4535)] = 125711, - [SMALL_STATE(4536)] = 125723, - [SMALL_STATE(4537)] = 125737, - [SMALL_STATE(4538)] = 125749, - [SMALL_STATE(4539)] = 125761, - [SMALL_STATE(4540)] = 125777, - [SMALL_STATE(4541)] = 125791, - [SMALL_STATE(4542)] = 125807, - [SMALL_STATE(4543)] = 125823, - [SMALL_STATE(4544)] = 125839, - [SMALL_STATE(4545)] = 125853, - [SMALL_STATE(4546)] = 125865, - [SMALL_STATE(4547)] = 125877, - [SMALL_STATE(4548)] = 125889, - [SMALL_STATE(4549)] = 125901, - [SMALL_STATE(4550)] = 125917, - [SMALL_STATE(4551)] = 125929, - [SMALL_STATE(4552)] = 125945, - [SMALL_STATE(4553)] = 125961, - [SMALL_STATE(4554)] = 125973, - [SMALL_STATE(4555)] = 125987, - [SMALL_STATE(4556)] = 125999, - [SMALL_STATE(4557)] = 126013, - [SMALL_STATE(4558)] = 126029, - [SMALL_STATE(4559)] = 126045, - [SMALL_STATE(4560)] = 126061, - [SMALL_STATE(4561)] = 126073, - [SMALL_STATE(4562)] = 126085, - [SMALL_STATE(4563)] = 126097, - [SMALL_STATE(4564)] = 126109, - [SMALL_STATE(4565)] = 126121, - [SMALL_STATE(4566)] = 126133, - [SMALL_STATE(4567)] = 126149, - [SMALL_STATE(4568)] = 126161, - [SMALL_STATE(4569)] = 126177, - [SMALL_STATE(4570)] = 126193, - [SMALL_STATE(4571)] = 126209, - [SMALL_STATE(4572)] = 126225, - [SMALL_STATE(4573)] = 126239, - [SMALL_STATE(4574)] = 126255, - [SMALL_STATE(4575)] = 126269, - [SMALL_STATE(4576)] = 126285, - [SMALL_STATE(4577)] = 126301, - [SMALL_STATE(4578)] = 126317, - [SMALL_STATE(4579)] = 126333, - [SMALL_STATE(4580)] = 126349, - [SMALL_STATE(4581)] = 126365, - [SMALL_STATE(4582)] = 126381, - [SMALL_STATE(4583)] = 126393, - [SMALL_STATE(4584)] = 126409, - [SMALL_STATE(4585)] = 126425, - [SMALL_STATE(4586)] = 126437, - [SMALL_STATE(4587)] = 126453, - [SMALL_STATE(4588)] = 126465, - [SMALL_STATE(4589)] = 126481, - [SMALL_STATE(4590)] = 126493, - [SMALL_STATE(4591)] = 126509, - [SMALL_STATE(4592)] = 126523, - [SMALL_STATE(4593)] = 126535, - [SMALL_STATE(4594)] = 126551, - [SMALL_STATE(4595)] = 126567, - [SMALL_STATE(4596)] = 126583, - [SMALL_STATE(4597)] = 126597, - [SMALL_STATE(4598)] = 126609, - [SMALL_STATE(4599)] = 126625, - [SMALL_STATE(4600)] = 126637, - [SMALL_STATE(4601)] = 126653, - [SMALL_STATE(4602)] = 126669, - [SMALL_STATE(4603)] = 126681, - [SMALL_STATE(4604)] = 126697, - [SMALL_STATE(4605)] = 126709, - [SMALL_STATE(4606)] = 126725, - [SMALL_STATE(4607)] = 126739, - [SMALL_STATE(4608)] = 126755, - [SMALL_STATE(4609)] = 126771, - [SMALL_STATE(4610)] = 126787, - [SMALL_STATE(4611)] = 126803, - [SMALL_STATE(4612)] = 126815, - [SMALL_STATE(4613)] = 126827, - [SMALL_STATE(4614)] = 126843, - [SMALL_STATE(4615)] = 126859, - [SMALL_STATE(4616)] = 126875, - [SMALL_STATE(4617)] = 126887, - [SMALL_STATE(4618)] = 126899, - [SMALL_STATE(4619)] = 126915, - [SMALL_STATE(4620)] = 126927, - [SMALL_STATE(4621)] = 126941, - [SMALL_STATE(4622)] = 126957, - [SMALL_STATE(4623)] = 126970, - [SMALL_STATE(4624)] = 126981, - [SMALL_STATE(4625)] = 126992, - [SMALL_STATE(4626)] = 127005, - [SMALL_STATE(4627)] = 127018, - [SMALL_STATE(4628)] = 127031, - [SMALL_STATE(4629)] = 127044, - [SMALL_STATE(4630)] = 127057, - [SMALL_STATE(4631)] = 127070, - [SMALL_STATE(4632)] = 127083, - [SMALL_STATE(4633)] = 127096, - [SMALL_STATE(4634)] = 127109, - [SMALL_STATE(4635)] = 127122, - [SMALL_STATE(4636)] = 127135, - [SMALL_STATE(4637)] = 127148, - [SMALL_STATE(4638)] = 127161, - [SMALL_STATE(4639)] = 127174, - [SMALL_STATE(4640)] = 127187, - [SMALL_STATE(4641)] = 127198, - [SMALL_STATE(4642)] = 127209, - [SMALL_STATE(4643)] = 127222, - [SMALL_STATE(4644)] = 127235, - [SMALL_STATE(4645)] = 127248, - [SMALL_STATE(4646)] = 127261, - [SMALL_STATE(4647)] = 127274, - [SMALL_STATE(4648)] = 127287, - [SMALL_STATE(4649)] = 127300, - [SMALL_STATE(4650)] = 127313, - [SMALL_STATE(4651)] = 127324, - [SMALL_STATE(4652)] = 127337, - [SMALL_STATE(4653)] = 127350, - [SMALL_STATE(4654)] = 127363, - [SMALL_STATE(4655)] = 127376, - [SMALL_STATE(4656)] = 127389, - [SMALL_STATE(4657)] = 127402, - [SMALL_STATE(4658)] = 127415, - [SMALL_STATE(4659)] = 127428, - [SMALL_STATE(4660)] = 127441, - [SMALL_STATE(4661)] = 127454, - [SMALL_STATE(4662)] = 127467, - [SMALL_STATE(4663)] = 127480, - [SMALL_STATE(4664)] = 127493, - [SMALL_STATE(4665)] = 127506, - [SMALL_STATE(4666)] = 127519, - [SMALL_STATE(4667)] = 127532, - [SMALL_STATE(4668)] = 127545, - [SMALL_STATE(4669)] = 127558, - [SMALL_STATE(4670)] = 127571, - [SMALL_STATE(4671)] = 127584, - [SMALL_STATE(4672)] = 127597, - [SMALL_STATE(4673)] = 127610, - [SMALL_STATE(4674)] = 127623, - [SMALL_STATE(4675)] = 127636, - [SMALL_STATE(4676)] = 127649, - [SMALL_STATE(4677)] = 127662, - [SMALL_STATE(4678)] = 127675, - [SMALL_STATE(4679)] = 127688, - [SMALL_STATE(4680)] = 127701, - [SMALL_STATE(4681)] = 127714, - [SMALL_STATE(4682)] = 127727, - [SMALL_STATE(4683)] = 127740, - [SMALL_STATE(4684)] = 127753, - [SMALL_STATE(4685)] = 127766, - [SMALL_STATE(4686)] = 127779, - [SMALL_STATE(4687)] = 127792, - [SMALL_STATE(4688)] = 127805, - [SMALL_STATE(4689)] = 127818, - [SMALL_STATE(4690)] = 127831, - [SMALL_STATE(4691)] = 127844, - [SMALL_STATE(4692)] = 127857, - [SMALL_STATE(4693)] = 127870, - [SMALL_STATE(4694)] = 127883, - [SMALL_STATE(4695)] = 127896, - [SMALL_STATE(4696)] = 127909, - [SMALL_STATE(4697)] = 127922, - [SMALL_STATE(4698)] = 127935, - [SMALL_STATE(4699)] = 127948, - [SMALL_STATE(4700)] = 127961, - [SMALL_STATE(4701)] = 127974, - [SMALL_STATE(4702)] = 127987, - [SMALL_STATE(4703)] = 128000, - [SMALL_STATE(4704)] = 128013, - [SMALL_STATE(4705)] = 128026, - [SMALL_STATE(4706)] = 128039, - [SMALL_STATE(4707)] = 128052, - [SMALL_STATE(4708)] = 128065, - [SMALL_STATE(4709)] = 128078, - [SMALL_STATE(4710)] = 128091, - [SMALL_STATE(4711)] = 128104, - [SMALL_STATE(4712)] = 128117, - [SMALL_STATE(4713)] = 128128, - [SMALL_STATE(4714)] = 128141, - [SMALL_STATE(4715)] = 128154, - [SMALL_STATE(4716)] = 128167, - [SMALL_STATE(4717)] = 128180, - [SMALL_STATE(4718)] = 128193, - [SMALL_STATE(4719)] = 128206, - [SMALL_STATE(4720)] = 128219, - [SMALL_STATE(4721)] = 128232, - [SMALL_STATE(4722)] = 128245, - [SMALL_STATE(4723)] = 128258, - [SMALL_STATE(4724)] = 128271, - [SMALL_STATE(4725)] = 128284, - [SMALL_STATE(4726)] = 128297, - [SMALL_STATE(4727)] = 128310, - [SMALL_STATE(4728)] = 128323, - [SMALL_STATE(4729)] = 128336, - [SMALL_STATE(4730)] = 128349, - [SMALL_STATE(4731)] = 128362, - [SMALL_STATE(4732)] = 128375, - [SMALL_STATE(4733)] = 128388, - [SMALL_STATE(4734)] = 128399, - [SMALL_STATE(4735)] = 128412, - [SMALL_STATE(4736)] = 128423, - [SMALL_STATE(4737)] = 128436, - [SMALL_STATE(4738)] = 128449, - [SMALL_STATE(4739)] = 128462, - [SMALL_STATE(4740)] = 128475, - [SMALL_STATE(4741)] = 128488, - [SMALL_STATE(4742)] = 128501, - [SMALL_STATE(4743)] = 128514, - [SMALL_STATE(4744)] = 128525, - [SMALL_STATE(4745)] = 128538, - [SMALL_STATE(4746)] = 128551, - [SMALL_STATE(4747)] = 128564, - [SMALL_STATE(4748)] = 128577, - [SMALL_STATE(4749)] = 128590, - [SMALL_STATE(4750)] = 128603, - [SMALL_STATE(4751)] = 128616, - [SMALL_STATE(4752)] = 128629, - [SMALL_STATE(4753)] = 128642, - [SMALL_STATE(4754)] = 128655, - [SMALL_STATE(4755)] = 128668, - [SMALL_STATE(4756)] = 128681, - [SMALL_STATE(4757)] = 128694, - [SMALL_STATE(4758)] = 128707, - [SMALL_STATE(4759)] = 128720, - [SMALL_STATE(4760)] = 128733, - [SMALL_STATE(4761)] = 128746, - [SMALL_STATE(4762)] = 128759, - [SMALL_STATE(4763)] = 128772, - [SMALL_STATE(4764)] = 128785, - [SMALL_STATE(4765)] = 128798, - [SMALL_STATE(4766)] = 128811, - [SMALL_STATE(4767)] = 128822, - [SMALL_STATE(4768)] = 128835, - [SMALL_STATE(4769)] = 128848, - [SMALL_STATE(4770)] = 128861, - [SMALL_STATE(4771)] = 128874, - [SMALL_STATE(4772)] = 128887, - [SMALL_STATE(4773)] = 128900, - [SMALL_STATE(4774)] = 128913, - [SMALL_STATE(4775)] = 128926, - [SMALL_STATE(4776)] = 128939, - [SMALL_STATE(4777)] = 128952, - [SMALL_STATE(4778)] = 128965, - [SMALL_STATE(4779)] = 128978, - [SMALL_STATE(4780)] = 128991, - [SMALL_STATE(4781)] = 129004, - [SMALL_STATE(4782)] = 129017, - [SMALL_STATE(4783)] = 129030, - [SMALL_STATE(4784)] = 129043, - [SMALL_STATE(4785)] = 129056, - [SMALL_STATE(4786)] = 129069, - [SMALL_STATE(4787)] = 129082, - [SMALL_STATE(4788)] = 129095, - [SMALL_STATE(4789)] = 129108, - [SMALL_STATE(4790)] = 129121, - [SMALL_STATE(4791)] = 129134, - [SMALL_STATE(4792)] = 129144, - [SMALL_STATE(4793)] = 129154, - [SMALL_STATE(4794)] = 129164, - [SMALL_STATE(4795)] = 129174, - [SMALL_STATE(4796)] = 129184, - [SMALL_STATE(4797)] = 129194, - [SMALL_STATE(4798)] = 129204, - [SMALL_STATE(4799)] = 129214, - [SMALL_STATE(4800)] = 129224, - [SMALL_STATE(4801)] = 129234, - [SMALL_STATE(4802)] = 129244, - [SMALL_STATE(4803)] = 129254, - [SMALL_STATE(4804)] = 129264, - [SMALL_STATE(4805)] = 129274, - [SMALL_STATE(4806)] = 129284, - [SMALL_STATE(4807)] = 129294, - [SMALL_STATE(4808)] = 129304, - [SMALL_STATE(4809)] = 129314, - [SMALL_STATE(4810)] = 129324, - [SMALL_STATE(4811)] = 129334, - [SMALL_STATE(4812)] = 129344, - [SMALL_STATE(4813)] = 129354, - [SMALL_STATE(4814)] = 129364, - [SMALL_STATE(4815)] = 129374, - [SMALL_STATE(4816)] = 129384, - [SMALL_STATE(4817)] = 129394, - [SMALL_STATE(4818)] = 129404, - [SMALL_STATE(4819)] = 129414, - [SMALL_STATE(4820)] = 129424, - [SMALL_STATE(4821)] = 129434, - [SMALL_STATE(4822)] = 129444, - [SMALL_STATE(4823)] = 129454, - [SMALL_STATE(4824)] = 129464, - [SMALL_STATE(4825)] = 129474, - [SMALL_STATE(4826)] = 129484, - [SMALL_STATE(4827)] = 129494, - [SMALL_STATE(4828)] = 129504, - [SMALL_STATE(4829)] = 129514, - [SMALL_STATE(4830)] = 129524, - [SMALL_STATE(4831)] = 129534, - [SMALL_STATE(4832)] = 129544, - [SMALL_STATE(4833)] = 129554, - [SMALL_STATE(4834)] = 129564, - [SMALL_STATE(4835)] = 129574, - [SMALL_STATE(4836)] = 129584, - [SMALL_STATE(4837)] = 129594, - [SMALL_STATE(4838)] = 129604, - [SMALL_STATE(4839)] = 129614, - [SMALL_STATE(4840)] = 129624, - [SMALL_STATE(4841)] = 129634, - [SMALL_STATE(4842)] = 129644, - [SMALL_STATE(4843)] = 129654, - [SMALL_STATE(4844)] = 129664, - [SMALL_STATE(4845)] = 129674, - [SMALL_STATE(4846)] = 129684, - [SMALL_STATE(4847)] = 129694, - [SMALL_STATE(4848)] = 129704, - [SMALL_STATE(4849)] = 129714, - [SMALL_STATE(4850)] = 129724, - [SMALL_STATE(4851)] = 129734, - [SMALL_STATE(4852)] = 129744, - [SMALL_STATE(4853)] = 129754, - [SMALL_STATE(4854)] = 129764, - [SMALL_STATE(4855)] = 129774, - [SMALL_STATE(4856)] = 129784, - [SMALL_STATE(4857)] = 129794, - [SMALL_STATE(4858)] = 129804, - [SMALL_STATE(4859)] = 129814, - [SMALL_STATE(4860)] = 129824, - [SMALL_STATE(4861)] = 129834, - [SMALL_STATE(4862)] = 129844, - [SMALL_STATE(4863)] = 129854, - [SMALL_STATE(4864)] = 129864, - [SMALL_STATE(4865)] = 129874, - [SMALL_STATE(4866)] = 129884, - [SMALL_STATE(4867)] = 129894, - [SMALL_STATE(4868)] = 129904, - [SMALL_STATE(4869)] = 129914, - [SMALL_STATE(4870)] = 129924, - [SMALL_STATE(4871)] = 129934, - [SMALL_STATE(4872)] = 129944, - [SMALL_STATE(4873)] = 129954, - [SMALL_STATE(4874)] = 129964, - [SMALL_STATE(4875)] = 129974, - [SMALL_STATE(4876)] = 129984, - [SMALL_STATE(4877)] = 129994, - [SMALL_STATE(4878)] = 130004, - [SMALL_STATE(4879)] = 130014, - [SMALL_STATE(4880)] = 130024, - [SMALL_STATE(4881)] = 130034, - [SMALL_STATE(4882)] = 130044, - [SMALL_STATE(4883)] = 130054, - [SMALL_STATE(4884)] = 130064, - [SMALL_STATE(4885)] = 130074, - [SMALL_STATE(4886)] = 130084, - [SMALL_STATE(4887)] = 130094, - [SMALL_STATE(4888)] = 130104, - [SMALL_STATE(4889)] = 130114, - [SMALL_STATE(4890)] = 130124, - [SMALL_STATE(4891)] = 130134, - [SMALL_STATE(4892)] = 130144, - [SMALL_STATE(4893)] = 130154, - [SMALL_STATE(4894)] = 130164, - [SMALL_STATE(4895)] = 130174, - [SMALL_STATE(4896)] = 130184, - [SMALL_STATE(4897)] = 130194, - [SMALL_STATE(4898)] = 130204, - [SMALL_STATE(4899)] = 130214, - [SMALL_STATE(4900)] = 130224, - [SMALL_STATE(4901)] = 130234, - [SMALL_STATE(4902)] = 130244, - [SMALL_STATE(4903)] = 130254, - [SMALL_STATE(4904)] = 130264, - [SMALL_STATE(4905)] = 130274, - [SMALL_STATE(4906)] = 130284, - [SMALL_STATE(4907)] = 130294, - [SMALL_STATE(4908)] = 130304, - [SMALL_STATE(4909)] = 130314, - [SMALL_STATE(4910)] = 130324, - [SMALL_STATE(4911)] = 130334, - [SMALL_STATE(4912)] = 130344, - [SMALL_STATE(4913)] = 130354, - [SMALL_STATE(4914)] = 130364, - [SMALL_STATE(4915)] = 130374, - [SMALL_STATE(4916)] = 130384, - [SMALL_STATE(4917)] = 130394, - [SMALL_STATE(4918)] = 130404, - [SMALL_STATE(4919)] = 130414, - [SMALL_STATE(4920)] = 130424, - [SMALL_STATE(4921)] = 130434, - [SMALL_STATE(4922)] = 130444, - [SMALL_STATE(4923)] = 130454, - [SMALL_STATE(4924)] = 130464, - [SMALL_STATE(4925)] = 130474, - [SMALL_STATE(4926)] = 130484, - [SMALL_STATE(4927)] = 130494, - [SMALL_STATE(4928)] = 130504, - [SMALL_STATE(4929)] = 130514, - [SMALL_STATE(4930)] = 130524, - [SMALL_STATE(4931)] = 130534, - [SMALL_STATE(4932)] = 130544, - [SMALL_STATE(4933)] = 130554, - [SMALL_STATE(4934)] = 130564, - [SMALL_STATE(4935)] = 130574, - [SMALL_STATE(4936)] = 130584, - [SMALL_STATE(4937)] = 130594, - [SMALL_STATE(4938)] = 130604, - [SMALL_STATE(4939)] = 130614, - [SMALL_STATE(4940)] = 130624, - [SMALL_STATE(4941)] = 130634, - [SMALL_STATE(4942)] = 130644, - [SMALL_STATE(4943)] = 130654, - [SMALL_STATE(4944)] = 130664, - [SMALL_STATE(4945)] = 130674, - [SMALL_STATE(4946)] = 130684, - [SMALL_STATE(4947)] = 130694, - [SMALL_STATE(4948)] = 130704, - [SMALL_STATE(4949)] = 130714, - [SMALL_STATE(4950)] = 130724, - [SMALL_STATE(4951)] = 130734, - [SMALL_STATE(4952)] = 130744, - [SMALL_STATE(4953)] = 130754, - [SMALL_STATE(4954)] = 130764, - [SMALL_STATE(4955)] = 130774, - [SMALL_STATE(4956)] = 130784, - [SMALL_STATE(4957)] = 130794, - [SMALL_STATE(4958)] = 130804, - [SMALL_STATE(4959)] = 130814, - [SMALL_STATE(4960)] = 130824, - [SMALL_STATE(4961)] = 130834, - [SMALL_STATE(4962)] = 130844, - [SMALL_STATE(4963)] = 130854, - [SMALL_STATE(4964)] = 130864, - [SMALL_STATE(4965)] = 130874, - [SMALL_STATE(4966)] = 130884, - [SMALL_STATE(4967)] = 130894, - [SMALL_STATE(4968)] = 130904, - [SMALL_STATE(4969)] = 130914, - [SMALL_STATE(4970)] = 130924, - [SMALL_STATE(4971)] = 130934, - [SMALL_STATE(4972)] = 130944, - [SMALL_STATE(4973)] = 130954, - [SMALL_STATE(4974)] = 130964, - [SMALL_STATE(4975)] = 130974, - [SMALL_STATE(4976)] = 130984, - [SMALL_STATE(4977)] = 130994, - [SMALL_STATE(4978)] = 131004, - [SMALL_STATE(4979)] = 131014, - [SMALL_STATE(4980)] = 131024, - [SMALL_STATE(4981)] = 131034, - [SMALL_STATE(4982)] = 131044, - [SMALL_STATE(4983)] = 131054, - [SMALL_STATE(4984)] = 131064, - [SMALL_STATE(4985)] = 131074, - [SMALL_STATE(4986)] = 131084, - [SMALL_STATE(4987)] = 131094, - [SMALL_STATE(4988)] = 131104, - [SMALL_STATE(4989)] = 131114, - [SMALL_STATE(4990)] = 131124, - [SMALL_STATE(4991)] = 131134, - [SMALL_STATE(4992)] = 131144, - [SMALL_STATE(4993)] = 131154, - [SMALL_STATE(4994)] = 131164, - [SMALL_STATE(4995)] = 131174, - [SMALL_STATE(4996)] = 131184, - [SMALL_STATE(4997)] = 131194, - [SMALL_STATE(4998)] = 131204, - [SMALL_STATE(4999)] = 131214, - [SMALL_STATE(5000)] = 131224, - [SMALL_STATE(5001)] = 131234, - [SMALL_STATE(5002)] = 131244, - [SMALL_STATE(5003)] = 131254, - [SMALL_STATE(5004)] = 131264, - [SMALL_STATE(5005)] = 131274, - [SMALL_STATE(5006)] = 131284, - [SMALL_STATE(5007)] = 131294, - [SMALL_STATE(5008)] = 131304, - [SMALL_STATE(5009)] = 131314, - [SMALL_STATE(5010)] = 131324, - [SMALL_STATE(5011)] = 131334, - [SMALL_STATE(5012)] = 131344, - [SMALL_STATE(5013)] = 131354, - [SMALL_STATE(5014)] = 131364, - [SMALL_STATE(5015)] = 131374, - [SMALL_STATE(5016)] = 131384, - [SMALL_STATE(5017)] = 131394, - [SMALL_STATE(5018)] = 131404, - [SMALL_STATE(5019)] = 131414, - [SMALL_STATE(5020)] = 131424, - [SMALL_STATE(5021)] = 131434, - [SMALL_STATE(5022)] = 131444, - [SMALL_STATE(5023)] = 131454, - [SMALL_STATE(5024)] = 131464, - [SMALL_STATE(5025)] = 131474, - [SMALL_STATE(5026)] = 131484, - [SMALL_STATE(5027)] = 131494, - [SMALL_STATE(5028)] = 131504, - [SMALL_STATE(5029)] = 131514, - [SMALL_STATE(5030)] = 131524, - [SMALL_STATE(5031)] = 131534, - [SMALL_STATE(5032)] = 131544, - [SMALL_STATE(5033)] = 131554, - [SMALL_STATE(5034)] = 131564, - [SMALL_STATE(5035)] = 131574, - [SMALL_STATE(5036)] = 131584, - [SMALL_STATE(5037)] = 131594, - [SMALL_STATE(5038)] = 131604, - [SMALL_STATE(5039)] = 131614, - [SMALL_STATE(5040)] = 131624, - [SMALL_STATE(5041)] = 131634, - [SMALL_STATE(5042)] = 131644, - [SMALL_STATE(5043)] = 131654, - [SMALL_STATE(5044)] = 131664, - [SMALL_STATE(5045)] = 131674, - [SMALL_STATE(5046)] = 131684, - [SMALL_STATE(5047)] = 131694, - [SMALL_STATE(5048)] = 131704, - [SMALL_STATE(5049)] = 131714, - [SMALL_STATE(5050)] = 131724, - [SMALL_STATE(5051)] = 131734, - [SMALL_STATE(5052)] = 131744, - [SMALL_STATE(5053)] = 131754, - [SMALL_STATE(5054)] = 131764, - [SMALL_STATE(5055)] = 131774, - [SMALL_STATE(5056)] = 131784, - [SMALL_STATE(5057)] = 131794, - [SMALL_STATE(5058)] = 131804, - [SMALL_STATE(5059)] = 131814, - [SMALL_STATE(5060)] = 131824, - [SMALL_STATE(5061)] = 131834, - [SMALL_STATE(5062)] = 131844, - [SMALL_STATE(5063)] = 131854, - [SMALL_STATE(5064)] = 131864, - [SMALL_STATE(5065)] = 131874, - [SMALL_STATE(5066)] = 131884, - [SMALL_STATE(5067)] = 131894, - [SMALL_STATE(5068)] = 131904, - [SMALL_STATE(5069)] = 131914, - [SMALL_STATE(5070)] = 131924, - [SMALL_STATE(5071)] = 131934, - [SMALL_STATE(5072)] = 131944, - [SMALL_STATE(5073)] = 131954, - [SMALL_STATE(5074)] = 131964, - [SMALL_STATE(5075)] = 131974, - [SMALL_STATE(5076)] = 131984, - [SMALL_STATE(5077)] = 131994, - [SMALL_STATE(5078)] = 132004, - [SMALL_STATE(5079)] = 132014, - [SMALL_STATE(5080)] = 132024, - [SMALL_STATE(5081)] = 132034, - [SMALL_STATE(5082)] = 132044, - [SMALL_STATE(5083)] = 132054, - [SMALL_STATE(5084)] = 132064, - [SMALL_STATE(5085)] = 132074, - [SMALL_STATE(5086)] = 132084, - [SMALL_STATE(5087)] = 132094, - [SMALL_STATE(5088)] = 132104, - [SMALL_STATE(5089)] = 132114, - [SMALL_STATE(5090)] = 132124, - [SMALL_STATE(5091)] = 132134, - [SMALL_STATE(5092)] = 132144, - [SMALL_STATE(5093)] = 132154, - [SMALL_STATE(5094)] = 132164, - [SMALL_STATE(5095)] = 132174, - [SMALL_STATE(5096)] = 132184, - [SMALL_STATE(5097)] = 132194, - [SMALL_STATE(5098)] = 132204, - [SMALL_STATE(5099)] = 132214, - [SMALL_STATE(5100)] = 132224, - [SMALL_STATE(5101)] = 132234, - [SMALL_STATE(5102)] = 132244, - [SMALL_STATE(5103)] = 132254, - [SMALL_STATE(5104)] = 132264, - [SMALL_STATE(5105)] = 132274, - [SMALL_STATE(5106)] = 132284, - [SMALL_STATE(5107)] = 132294, - [SMALL_STATE(5108)] = 132304, - [SMALL_STATE(5109)] = 132314, - [SMALL_STATE(5110)] = 132324, - [SMALL_STATE(5111)] = 132334, - [SMALL_STATE(5112)] = 132344, - [SMALL_STATE(5113)] = 132354, - [SMALL_STATE(5114)] = 132364, - [SMALL_STATE(5115)] = 132374, - [SMALL_STATE(5116)] = 132384, - [SMALL_STATE(5117)] = 132394, - [SMALL_STATE(5118)] = 132404, - [SMALL_STATE(5119)] = 132414, - [SMALL_STATE(5120)] = 132424, - [SMALL_STATE(5121)] = 132434, - [SMALL_STATE(5122)] = 132444, - [SMALL_STATE(5123)] = 132454, - [SMALL_STATE(5124)] = 132464, - [SMALL_STATE(5125)] = 132474, - [SMALL_STATE(5126)] = 132484, - [SMALL_STATE(5127)] = 132494, - [SMALL_STATE(5128)] = 132504, - [SMALL_STATE(5129)] = 132514, - [SMALL_STATE(5130)] = 132524, - [SMALL_STATE(5131)] = 132534, - [SMALL_STATE(5132)] = 132544, - [SMALL_STATE(5133)] = 132554, - [SMALL_STATE(5134)] = 132564, - [SMALL_STATE(5135)] = 132574, - [SMALL_STATE(5136)] = 132584, - [SMALL_STATE(5137)] = 132594, - [SMALL_STATE(5138)] = 132604, - [SMALL_STATE(5139)] = 132614, - [SMALL_STATE(5140)] = 132624, - [SMALL_STATE(5141)] = 132634, - [SMALL_STATE(5142)] = 132644, - [SMALL_STATE(5143)] = 132654, - [SMALL_STATE(5144)] = 132664, - [SMALL_STATE(5145)] = 132674, - [SMALL_STATE(5146)] = 132684, - [SMALL_STATE(5147)] = 132694, - [SMALL_STATE(5148)] = 132704, - [SMALL_STATE(5149)] = 132714, - [SMALL_STATE(5150)] = 132724, - [SMALL_STATE(5151)] = 132734, - [SMALL_STATE(5152)] = 132744, - [SMALL_STATE(5153)] = 132754, - [SMALL_STATE(5154)] = 132764, - [SMALL_STATE(5155)] = 132774, - [SMALL_STATE(5156)] = 132784, - [SMALL_STATE(5157)] = 132794, - [SMALL_STATE(5158)] = 132804, - [SMALL_STATE(5159)] = 132814, - [SMALL_STATE(5160)] = 132824, - [SMALL_STATE(5161)] = 132834, - [SMALL_STATE(5162)] = 132844, - [SMALL_STATE(5163)] = 132854, - [SMALL_STATE(5164)] = 132864, - [SMALL_STATE(5165)] = 132874, - [SMALL_STATE(5166)] = 132884, - [SMALL_STATE(5167)] = 132894, - [SMALL_STATE(5168)] = 132904, - [SMALL_STATE(5169)] = 132914, - [SMALL_STATE(5170)] = 132924, - [SMALL_STATE(5171)] = 132934, - [SMALL_STATE(5172)] = 132944, - [SMALL_STATE(5173)] = 132954, - [SMALL_STATE(5174)] = 132964, - [SMALL_STATE(5175)] = 132974, - [SMALL_STATE(5176)] = 132984, - [SMALL_STATE(5177)] = 132994, - [SMALL_STATE(5178)] = 133004, - [SMALL_STATE(5179)] = 133014, - [SMALL_STATE(5180)] = 133024, - [SMALL_STATE(5181)] = 133034, - [SMALL_STATE(5182)] = 133044, - [SMALL_STATE(5183)] = 133054, - [SMALL_STATE(5184)] = 133064, - [SMALL_STATE(5185)] = 133074, - [SMALL_STATE(5186)] = 133084, - [SMALL_STATE(5187)] = 133094, - [SMALL_STATE(5188)] = 133104, - [SMALL_STATE(5189)] = 133114, - [SMALL_STATE(5190)] = 133124, - [SMALL_STATE(5191)] = 133134, - [SMALL_STATE(5192)] = 133144, - [SMALL_STATE(5193)] = 133154, - [SMALL_STATE(5194)] = 133164, - [SMALL_STATE(5195)] = 133174, - [SMALL_STATE(5196)] = 133184, - [SMALL_STATE(5197)] = 133194, - [SMALL_STATE(5198)] = 133204, - [SMALL_STATE(5199)] = 133214, - [SMALL_STATE(5200)] = 133224, - [SMALL_STATE(5201)] = 133234, - [SMALL_STATE(5202)] = 133244, - [SMALL_STATE(5203)] = 133254, + [SMALL_STATE(1282)] = 0, + [SMALL_STATE(1283)] = 73, + [SMALL_STATE(1284)] = 150, + [SMALL_STATE(1285)] = 293, + [SMALL_STATE(1286)] = 436, + [SMALL_STATE(1287)] = 509, + [SMALL_STATE(1288)] = 582, + [SMALL_STATE(1289)] = 655, + [SMALL_STATE(1290)] = 728, + [SMALL_STATE(1291)] = 801, + [SMALL_STATE(1292)] = 874, + [SMALL_STATE(1293)] = 947, + [SMALL_STATE(1294)] = 1020, + [SMALL_STATE(1295)] = 1093, + [SMALL_STATE(1296)] = 1166, + [SMALL_STATE(1297)] = 1239, + [SMALL_STATE(1298)] = 1312, + [SMALL_STATE(1299)] = 1385, + [SMALL_STATE(1300)] = 1458, + [SMALL_STATE(1301)] = 1535, + [SMALL_STATE(1302)] = 1618, + [SMALL_STATE(1303)] = 1691, + [SMALL_STATE(1304)] = 1764, + [SMALL_STATE(1305)] = 1851, + [SMALL_STATE(1306)] = 1924, + [SMALL_STATE(1307)] = 2011, + [SMALL_STATE(1308)] = 2084, + [SMALL_STATE(1309)] = 2171, + [SMALL_STATE(1310)] = 2258, + [SMALL_STATE(1311)] = 2331, + [SMALL_STATE(1312)] = 2406, + [SMALL_STATE(1313)] = 2503, + [SMALL_STATE(1314)] = 2646, + [SMALL_STATE(1315)] = 2719, + [SMALL_STATE(1316)] = 2814, + [SMALL_STATE(1317)] = 2887, + [SMALL_STATE(1318)] = 2960, + [SMALL_STATE(1319)] = 3033, + [SMALL_STATE(1320)] = 3106, + [SMALL_STATE(1321)] = 3179, + [SMALL_STATE(1322)] = 3252, + [SMALL_STATE(1323)] = 3345, + [SMALL_STATE(1324)] = 3420, + [SMALL_STATE(1325)] = 3493, + [SMALL_STATE(1326)] = 3566, + [SMALL_STATE(1327)] = 3639, + [SMALL_STATE(1328)] = 3712, + [SMALL_STATE(1329)] = 3785, + [SMALL_STATE(1330)] = 3858, + [SMALL_STATE(1331)] = 3931, + [SMALL_STATE(1332)] = 4004, + [SMALL_STATE(1333)] = 4147, + [SMALL_STATE(1334)] = 4220, + [SMALL_STATE(1335)] = 4293, + [SMALL_STATE(1336)] = 4366, + [SMALL_STATE(1337)] = 4439, + [SMALL_STATE(1338)] = 4516, + [SMALL_STATE(1339)] = 4603, + [SMALL_STATE(1340)] = 4742, + [SMALL_STATE(1341)] = 4815, + [SMALL_STATE(1342)] = 4888, + [SMALL_STATE(1343)] = 4961, + [SMALL_STATE(1344)] = 5034, + [SMALL_STATE(1345)] = 5107, + [SMALL_STATE(1346)] = 5180, + [SMALL_STATE(1347)] = 5253, + [SMALL_STATE(1348)] = 5392, + [SMALL_STATE(1349)] = 5465, + [SMALL_STATE(1350)] = 5554, + [SMALL_STATE(1351)] = 5627, + [SMALL_STATE(1352)] = 5700, + [SMALL_STATE(1353)] = 5773, + [SMALL_STATE(1354)] = 5858, + [SMALL_STATE(1355)] = 5931, + [SMALL_STATE(1356)] = 6010, + [SMALL_STATE(1357)] = 6083, + [SMALL_STATE(1358)] = 6158, + [SMALL_STATE(1359)] = 6231, + [SMALL_STATE(1360)] = 6304, + [SMALL_STATE(1361)] = 6377, + [SMALL_STATE(1362)] = 6476, + [SMALL_STATE(1363)] = 6549, + [SMALL_STATE(1364)] = 6650, + [SMALL_STATE(1365)] = 6789, + [SMALL_STATE(1366)] = 6862, + [SMALL_STATE(1367)] = 6965, + [SMALL_STATE(1368)] = 7038, + [SMALL_STATE(1369)] = 7129, + [SMALL_STATE(1370)] = 7202, + [SMALL_STATE(1371)] = 7275, + [SMALL_STATE(1372)] = 7348, + [SMALL_STATE(1373)] = 7421, + [SMALL_STATE(1374)] = 7494, + [SMALL_STATE(1375)] = 7574, + [SMALL_STATE(1376)] = 7648, + [SMALL_STATE(1377)] = 7720, + [SMALL_STATE(1378)] = 7792, + [SMALL_STATE(1379)] = 7940, + [SMALL_STATE(1380)] = 8016, + [SMALL_STATE(1381)] = 8156, + [SMALL_STATE(1382)] = 8236, + [SMALL_STATE(1383)] = 8314, + [SMALL_STATE(1384)] = 8388, + [SMALL_STATE(1385)] = 8464, + [SMALL_STATE(1386)] = 8544, + [SMALL_STATE(1387)] = 8616, + [SMALL_STATE(1388)] = 8689, + [SMALL_STATE(1389)] = 8766, + [SMALL_STATE(1390)] = 8837, + [SMALL_STATE(1391)] = 8974, + [SMALL_STATE(1392)] = 9045, + [SMALL_STATE(1393)] = 9182, + [SMALL_STATE(1394)] = 9319, + [SMALL_STATE(1395)] = 9392, + [SMALL_STATE(1396)] = 9469, + [SMALL_STATE(1397)] = 9544, + [SMALL_STATE(1398)] = 9617, + [SMALL_STATE(1399)] = 9694, + [SMALL_STATE(1400)] = 9771, + [SMALL_STATE(1401)] = 9842, + [SMALL_STATE(1402)] = 9913, + [SMALL_STATE(1403)] = 9994, + [SMALL_STATE(1404)] = 10065, + [SMALL_STATE(1405)] = 10138, + [SMALL_STATE(1406)] = 10209, + [SMALL_STATE(1407)] = 10280, + [SMALL_STATE(1408)] = 10351, + [SMALL_STATE(1409)] = 10488, + [SMALL_STATE(1410)] = 10559, + [SMALL_STATE(1411)] = 10696, + [SMALL_STATE(1412)] = 10774, + [SMALL_STATE(1413)] = 10846, + [SMALL_STATE(1414)] = 10916, + [SMALL_STATE(1415)] = 10986, + [SMALL_STATE(1416)] = 11120, + [SMALL_STATE(1417)] = 11196, + [SMALL_STATE(1418)] = 11330, + [SMALL_STATE(1419)] = 11400, + [SMALL_STATE(1420)] = 11474, + [SMALL_STATE(1421)] = 11608, + [SMALL_STATE(1422)] = 11682, + [SMALL_STATE(1423)] = 11816, + [SMALL_STATE(1424)] = 11886, + [SMALL_STATE(1425)] = 11958, + [SMALL_STATE(1426)] = 12034, + [SMALL_STATE(1427)] = 12108, + [SMALL_STATE(1428)] = 12242, + [SMALL_STATE(1429)] = 12384, + [SMALL_STATE(1430)] = 12462, + [SMALL_STATE(1431)] = 12540, + [SMALL_STATE(1432)] = 12612, + [SMALL_STATE(1433)] = 12754, + [SMALL_STATE(1434)] = 12826, + [SMALL_STATE(1435)] = 12896, + [SMALL_STATE(1436)] = 13036, + [SMALL_STATE(1437)] = 13112, + [SMALL_STATE(1438)] = 13188, + [SMALL_STATE(1439)] = 13265, + [SMALL_STATE(1440)] = 13338, + [SMALL_STATE(1441)] = 13415, + [SMALL_STATE(1442)] = 13484, + [SMALL_STATE(1443)] = 13561, + [SMALL_STATE(1444)] = 13630, + [SMALL_STATE(1445)] = 13699, + [SMALL_STATE(1446)] = 13768, + [SMALL_STATE(1447)] = 13845, + [SMALL_STATE(1448)] = 13914, + [SMALL_STATE(1449)] = 13991, + [SMALL_STATE(1450)] = 14064, + [SMALL_STATE(1451)] = 14133, + [SMALL_STATE(1452)] = 14202, + [SMALL_STATE(1453)] = 14277, + [SMALL_STATE(1454)] = 14350, + [SMALL_STATE(1455)] = 14425, + [SMALL_STATE(1456)] = 14496, + [SMALL_STATE(1457)] = 14565, + [SMALL_STATE(1458)] = 14642, + [SMALL_STATE(1459)] = 14719, + [SMALL_STATE(1460)] = 14796, + [SMALL_STATE(1461)] = 14867, + [SMALL_STATE(1462)] = 14940, + [SMALL_STATE(1463)] = 15017, + [SMALL_STATE(1464)] = 15094, + [SMALL_STATE(1465)] = 15179, + [SMALL_STATE(1466)] = 15256, + [SMALL_STATE(1467)] = 15333, + [SMALL_STATE(1468)] = 15410, + [SMALL_STATE(1469)] = 15479, + [SMALL_STATE(1470)] = 15556, + [SMALL_STATE(1471)] = 15638, + [SMALL_STATE(1472)] = 15706, + [SMALL_STATE(1473)] = 15774, + [SMALL_STATE(1474)] = 15842, + [SMALL_STATE(1475)] = 15910, + [SMALL_STATE(1476)] = 15978, + [SMALL_STATE(1477)] = 16046, + [SMALL_STATE(1478)] = 16118, + [SMALL_STATE(1479)] = 16190, + [SMALL_STATE(1480)] = 16264, + [SMALL_STATE(1481)] = 16336, + [SMALL_STATE(1482)] = 16406, + [SMALL_STATE(1483)] = 16474, + [SMALL_STATE(1484)] = 16542, + [SMALL_STATE(1485)] = 16610, + [SMALL_STATE(1486)] = 16678, + [SMALL_STATE(1487)] = 16748, + [SMALL_STATE(1488)] = 16820, + [SMALL_STATE(1489)] = 16888, + [SMALL_STATE(1490)] = 16956, + [SMALL_STATE(1491)] = 17040, + [SMALL_STATE(1492)] = 17114, + [SMALL_STATE(1493)] = 17186, + [SMALL_STATE(1494)] = 17272, + [SMALL_STATE(1495)] = 17346, + [SMALL_STATE(1496)] = 17414, + [SMALL_STATE(1497)] = 17486, + [SMALL_STATE(1498)] = 17558, + [SMALL_STATE(1499)] = 17626, + [SMALL_STATE(1500)] = 17708, + [SMALL_STATE(1501)] = 17776, + [SMALL_STATE(1502)] = 17844, + [SMALL_STATE(1503)] = 17930, + [SMALL_STATE(1504)] = 18001, + [SMALL_STATE(1505)] = 18072, + [SMALL_STATE(1506)] = 18139, + [SMALL_STATE(1507)] = 18212, + [SMALL_STATE(1508)] = 18279, + [SMALL_STATE(1509)] = 18350, + [SMALL_STATE(1510)] = 18417, + [SMALL_STATE(1511)] = 18488, + [SMALL_STATE(1512)] = 18559, + [SMALL_STATE(1513)] = 18630, + [SMALL_STATE(1514)] = 18701, + [SMALL_STATE(1515)] = 18772, + [SMALL_STATE(1516)] = 18897, + [SMALL_STATE(1517)] = 19030, + [SMALL_STATE(1518)] = 19101, + [SMALL_STATE(1519)] = 19172, + [SMALL_STATE(1520)] = 19253, + [SMALL_STATE(1521)] = 19324, + [SMALL_STATE(1522)] = 19405, + [SMALL_STATE(1523)] = 19476, + [SMALL_STATE(1524)] = 19547, + [SMALL_STATE(1525)] = 19618, + [SMALL_STATE(1526)] = 19689, + [SMALL_STATE(1527)] = 19760, + [SMALL_STATE(1528)] = 19885, + [SMALL_STATE(1529)] = 19952, + [SMALL_STATE(1530)] = 20021, + [SMALL_STATE(1531)] = 20092, + [SMALL_STATE(1532)] = 20161, + [SMALL_STATE(1533)] = 20232, + [SMALL_STATE(1534)] = 20303, + [SMALL_STATE(1535)] = 20374, + [SMALL_STATE(1536)] = 20445, + [SMALL_STATE(1537)] = 20511, + [SMALL_STATE(1538)] = 20581, + [SMALL_STATE(1539)] = 20649, + [SMALL_STATE(1540)] = 20715, + [SMALL_STATE(1541)] = 20783, + [SMALL_STATE(1542)] = 20851, + [SMALL_STATE(1543)] = 20931, + [SMALL_STATE(1544)] = 20997, + [SMALL_STATE(1545)] = 21063, + [SMALL_STATE(1546)] = 21131, + [SMALL_STATE(1547)] = 21199, + [SMALL_STATE(1548)] = 21265, + [SMALL_STATE(1549)] = 21333, + [SMALL_STATE(1550)] = 21399, + [SMALL_STATE(1551)] = 21465, + [SMALL_STATE(1552)] = 21535, + [SMALL_STATE(1553)] = 21605, + [SMALL_STATE(1554)] = 21673, + [SMALL_STATE(1555)] = 21741, + [SMALL_STATE(1556)] = 21809, + [SMALL_STATE(1557)] = 21877, + [SMALL_STATE(1558)] = 21945, + [SMALL_STATE(1559)] = 22013, + [SMALL_STATE(1560)] = 22081, + [SMALL_STATE(1561)] = 22146, + [SMALL_STATE(1562)] = 22211, + [SMALL_STATE(1563)] = 22276, + [SMALL_STATE(1564)] = 22341, + [SMALL_STATE(1565)] = 22410, + [SMALL_STATE(1566)] = 22479, + [SMALL_STATE(1567)] = 22544, + [SMALL_STATE(1568)] = 22609, + [SMALL_STATE(1569)] = 22674, + [SMALL_STATE(1570)] = 22739, + [SMALL_STATE(1571)] = 22804, + [SMALL_STATE(1572)] = 22869, + [SMALL_STATE(1573)] = 22934, + [SMALL_STATE(1574)] = 22999, + [SMALL_STATE(1575)] = 23128, + [SMALL_STATE(1576)] = 23193, + [SMALL_STATE(1577)] = 23322, + [SMALL_STATE(1578)] = 23387, + [SMALL_STATE(1579)] = 23452, + [SMALL_STATE(1580)] = 23517, + [SMALL_STATE(1581)] = 23582, + [SMALL_STATE(1582)] = 23647, + [SMALL_STATE(1583)] = 23712, + [SMALL_STATE(1584)] = 23777, + [SMALL_STATE(1585)] = 23842, + [SMALL_STATE(1586)] = 23907, + [SMALL_STATE(1587)] = 23986, + [SMALL_STATE(1588)] = 24051, + [SMALL_STATE(1589)] = 24116, + [SMALL_STATE(1590)] = 24181, + [SMALL_STATE(1591)] = 24246, + [SMALL_STATE(1592)] = 24311, + [SMALL_STATE(1593)] = 24376, + [SMALL_STATE(1594)] = 24441, + [SMALL_STATE(1595)] = 24506, + [SMALL_STATE(1596)] = 24571, + [SMALL_STATE(1597)] = 24636, + [SMALL_STATE(1598)] = 24701, + [SMALL_STATE(1599)] = 24766, + [SMALL_STATE(1600)] = 24831, + [SMALL_STATE(1601)] = 24896, + [SMALL_STATE(1602)] = 24961, + [SMALL_STATE(1603)] = 25026, + [SMALL_STATE(1604)] = 25091, + [SMALL_STATE(1605)] = 25156, + [SMALL_STATE(1606)] = 25221, + [SMALL_STATE(1607)] = 25286, + [SMALL_STATE(1608)] = 25351, + [SMALL_STATE(1609)] = 25416, + [SMALL_STATE(1610)] = 25481, + [SMALL_STATE(1611)] = 25546, + [SMALL_STATE(1612)] = 25611, + [SMALL_STATE(1613)] = 25676, + [SMALL_STATE(1614)] = 25741, + [SMALL_STATE(1615)] = 25806, + [SMALL_STATE(1616)] = 25871, + [SMALL_STATE(1617)] = 25936, + [SMALL_STATE(1618)] = 26001, + [SMALL_STATE(1619)] = 26066, + [SMALL_STATE(1620)] = 26131, + [SMALL_STATE(1621)] = 26196, + [SMALL_STATE(1622)] = 26261, + [SMALL_STATE(1623)] = 26326, + [SMALL_STATE(1624)] = 26391, + [SMALL_STATE(1625)] = 26456, + [SMALL_STATE(1626)] = 26521, + [SMALL_STATE(1627)] = 26586, + [SMALL_STATE(1628)] = 26651, + [SMALL_STATE(1629)] = 26716, + [SMALL_STATE(1630)] = 26781, + [SMALL_STATE(1631)] = 26846, + [SMALL_STATE(1632)] = 26911, + [SMALL_STATE(1633)] = 26976, + [SMALL_STATE(1634)] = 27041, + [SMALL_STATE(1635)] = 27106, + [SMALL_STATE(1636)] = 27171, + [SMALL_STATE(1637)] = 27236, + [SMALL_STATE(1638)] = 27301, + [SMALL_STATE(1639)] = 27366, + [SMALL_STATE(1640)] = 27431, + [SMALL_STATE(1641)] = 27496, + [SMALL_STATE(1642)] = 27561, + [SMALL_STATE(1643)] = 27626, + [SMALL_STATE(1644)] = 27693, + [SMALL_STATE(1645)] = 27760, + [SMALL_STATE(1646)] = 27889, + [SMALL_STATE(1647)] = 27954, + [SMALL_STATE(1648)] = 28019, + [SMALL_STATE(1649)] = 28144, + [SMALL_STATE(1650)] = 28273, + [SMALL_STATE(1651)] = 28338, + [SMALL_STATE(1652)] = 28406, + [SMALL_STATE(1653)] = 28474, + [SMALL_STATE(1654)] = 28538, + [SMALL_STATE(1655)] = 28602, + [SMALL_STATE(1656)] = 28666, + [SMALL_STATE(1657)] = 28732, + [SMALL_STATE(1658)] = 28798, + [SMALL_STATE(1659)] = 28861, + [SMALL_STATE(1660)] = 28924, + [SMALL_STATE(1661)] = 28989, + [SMALL_STATE(1662)] = 29054, + [SMALL_STATE(1663)] = 29125, + [SMALL_STATE(1664)] = 29196, + [SMALL_STATE(1665)] = 29259, + [SMALL_STATE(1666)] = 29331, + [SMALL_STATE(1667)] = 29429, + [SMALL_STATE(1668)] = 29495, + [SMALL_STATE(1669)] = 29557, + [SMALL_STATE(1670)] = 29627, + [SMALL_STATE(1671)] = 29689, + [SMALL_STATE(1672)] = 29759, + [SMALL_STATE(1673)] = 29825, + [SMALL_STATE(1674)] = 29887, + [SMALL_STATE(1675)] = 29985, + [SMALL_STATE(1676)] = 30078, + [SMALL_STATE(1677)] = 30143, + [SMALL_STATE(1678)] = 30236, + [SMALL_STATE(1679)] = 30333, + [SMALL_STATE(1680)] = 30398, + [SMALL_STATE(1681)] = 30461, + [SMALL_STATE(1682)] = 30554, + [SMALL_STATE(1683)] = 30651, + [SMALL_STATE(1684)] = 30722, + [SMALL_STATE(1685)] = 30785, + [SMALL_STATE(1686)] = 30851, + [SMALL_STATE(1687)] = 30917, + [SMALL_STATE(1688)] = 30979, + [SMALL_STATE(1689)] = 31041, + [SMALL_STATE(1690)] = 31107, + [SMALL_STATE(1691)] = 31173, + [SMALL_STATE(1692)] = 31239, + [SMALL_STATE(1693)] = 31303, + [SMALL_STATE(1694)] = 31369, + [SMALL_STATE(1695)] = 31433, + [SMALL_STATE(1696)] = 31499, + [SMALL_STATE(1697)] = 31563, + [SMALL_STATE(1698)] = 31627, + [SMALL_STATE(1699)] = 31691, + [SMALL_STATE(1700)] = 31755, + [SMALL_STATE(1701)] = 31815, + [SMALL_STATE(1702)] = 31879, + [SMALL_STATE(1703)] = 31943, + [SMALL_STATE(1704)] = 32007, + [SMALL_STATE(1705)] = 32073, + [SMALL_STATE(1706)] = 32135, + [SMALL_STATE(1707)] = 32195, + [SMALL_STATE(1708)] = 32261, + [SMALL_STATE(1709)] = 32327, + [SMALL_STATE(1710)] = 32387, + [SMALL_STATE(1711)] = 32447, + [SMALL_STATE(1712)] = 32513, + [SMALL_STATE(1713)] = 32579, + [SMALL_STATE(1714)] = 32642, + [SMALL_STATE(1715)] = 32703, + [SMALL_STATE(1716)] = 32762, + [SMALL_STATE(1717)] = 32825, + [SMALL_STATE(1718)] = 32888, + [SMALL_STATE(1719)] = 32947, + [SMALL_STATE(1720)] = 33006, + [SMALL_STATE(1721)] = 33067, + [SMALL_STATE(1722)] = 33130, + [SMALL_STATE(1723)] = 33193, + [SMALL_STATE(1724)] = 33256, + [SMALL_STATE(1725)] = 33319, + [SMALL_STATE(1726)] = 33380, + [SMALL_STATE(1727)] = 33443, + [SMALL_STATE(1728)] = 33506, + [SMALL_STATE(1729)] = 33567, + [SMALL_STATE(1730)] = 33630, + [SMALL_STATE(1731)] = 33693, + [SMALL_STATE(1732)] = 33754, + [SMALL_STATE(1733)] = 33813, + [SMALL_STATE(1734)] = 33872, + [SMALL_STATE(1735)] = 33946, + [SMALL_STATE(1736)] = 34026, + [SMALL_STATE(1737)] = 34108, + [SMALL_STATE(1738)] = 34192, + [SMALL_STATE(1739)] = 34272, + [SMALL_STATE(1740)] = 34352, + [SMALL_STATE(1741)] = 34438, + [SMALL_STATE(1742)] = 34518, + [SMALL_STATE(1743)] = 34598, + [SMALL_STATE(1744)] = 34674, + [SMALL_STATE(1745)] = 34748, + [SMALL_STATE(1746)] = 34822, + [SMALL_STATE(1747)] = 34894, + [SMALL_STATE(1748)] = 34962, + [SMALL_STATE(1749)] = 35028, + [SMALL_STATE(1750)] = 35092, + [SMALL_STATE(1751)] = 35154, + [SMALL_STATE(1752)] = 35240, + [SMALL_STATE(1753)] = 35324, + [SMALL_STATE(1754)] = 35412, + [SMALL_STATE(1755)] = 35498, + [SMALL_STATE(1756)] = 35588, + [SMALL_STATE(1757)] = 35676, + [SMALL_STATE(1758)] = 35754, + [SMALL_STATE(1759)] = 35830, + [SMALL_STATE(1760)] = 35902, + [SMALL_STATE(1761)] = 35972, + [SMALL_STATE(1762)] = 36052, + [SMALL_STATE(1763)] = 36130, + [SMALL_STATE(1764)] = 36212, + [SMALL_STATE(1765)] = 36292, + [SMALL_STATE(1766)] = 36376, + [SMALL_STATE(1767)] = 36458, + [SMALL_STATE(1768)] = 36538, + [SMALL_STATE(1769)] = 36614, + [SMALL_STATE(1770)] = 36688, + [SMALL_STATE(1771)] = 36768, + [SMALL_STATE(1772)] = 36836, + [SMALL_STATE(1773)] = 36916, + [SMALL_STATE(1774)] = 36980, + [SMALL_STATE(1775)] = 37060, + [SMALL_STATE(1776)] = 37146, + [SMALL_STATE(1777)] = 37234, + [SMALL_STATE(1778)] = 37314, + [SMALL_STATE(1779)] = 37404, + [SMALL_STATE(1780)] = 37484, + [SMALL_STATE(1781)] = 37562, + [SMALL_STATE(1782)] = 37642, + [SMALL_STATE(1783)] = 37722, + [SMALL_STATE(1784)] = 37794, + [SMALL_STATE(1785)] = 37874, + [SMALL_STATE(1786)] = 37954, + [SMALL_STATE(1787)] = 38036, + [SMALL_STATE(1788)] = 38116, + [SMALL_STATE(1789)] = 38200, + [SMALL_STATE(1790)] = 38280, + [SMALL_STATE(1791)] = 38360, + [SMALL_STATE(1792)] = 38446, + [SMALL_STATE(1793)] = 38506, + [SMALL_STATE(1794)] = 38586, + [SMALL_STATE(1795)] = 38658, + [SMALL_STATE(1796)] = 38724, + [SMALL_STATE(1797)] = 38786, + [SMALL_STATE(1798)] = 38870, + [SMALL_STATE(1799)] = 38956, + [SMALL_STATE(1800)] = 39044, + [SMALL_STATE(1801)] = 39120, + [SMALL_STATE(1802)] = 39190, + [SMALL_STATE(1803)] = 39268, + [SMALL_STATE(1804)] = 39348, + [SMALL_STATE(1805)] = 39430, + [SMALL_STATE(1806)] = 39506, + [SMALL_STATE(1807)] = 39580, + [SMALL_STATE(1808)] = 39654, + [SMALL_STATE(1809)] = 39726, + [SMALL_STATE(1810)] = 39794, + [SMALL_STATE(1811)] = 39860, + [SMALL_STATE(1812)] = 39924, + [SMALL_STATE(1813)] = 39986, + [SMALL_STATE(1814)] = 40072, + [SMALL_STATE(1815)] = 40156, + [SMALL_STATE(1816)] = 40244, + [SMALL_STATE(1817)] = 40330, + [SMALL_STATE(1818)] = 40420, + [SMALL_STATE(1819)] = 40508, + [SMALL_STATE(1820)] = 40586, + [SMALL_STATE(1821)] = 40662, + [SMALL_STATE(1822)] = 40734, + [SMALL_STATE(1823)] = 40804, + [SMALL_STATE(1824)] = 40884, + [SMALL_STATE(1825)] = 40962, + [SMALL_STATE(1826)] = 41044, + [SMALL_STATE(1827)] = 41124, + [SMALL_STATE(1828)] = 41208, + [SMALL_STATE(1829)] = 41288, + [SMALL_STATE(1830)] = 41368, + [SMALL_STATE(1831)] = 41448, + [SMALL_STATE(1832)] = 41528, + [SMALL_STATE(1833)] = 41608, + [SMALL_STATE(1834)] = 41688, + [SMALL_STATE(1835)] = 41762, + [SMALL_STATE(1836)] = 41834, + [SMALL_STATE(1837)] = 41900, + [SMALL_STATE(1838)] = 41962, + [SMALL_STATE(1839)] = 42046, + [SMALL_STATE(1840)] = 42132, + [SMALL_STATE(1841)] = 42220, + [SMALL_STATE(1842)] = 42296, + [SMALL_STATE(1843)] = 42366, + [SMALL_STATE(1844)] = 42444, + [SMALL_STATE(1845)] = 42524, + [SMALL_STATE(1846)] = 42606, + [SMALL_STATE(1847)] = 42686, + [SMALL_STATE(1848)] = 42766, + [SMALL_STATE(1849)] = 42846, + [SMALL_STATE(1850)] = 42926, + [SMALL_STATE(1851)] = 43006, + [SMALL_STATE(1852)] = 43086, + [SMALL_STATE(1853)] = 43166, + [SMALL_STATE(1854)] = 43256, + [SMALL_STATE(1855)] = 43336, + [SMALL_STATE(1856)] = 43416, + [SMALL_STATE(1857)] = 43496, + [SMALL_STATE(1858)] = 43588, + [SMALL_STATE(1859)] = 43668, + [SMALL_STATE(1860)] = 43748, + [SMALL_STATE(1861)] = 43828, + [SMALL_STATE(1862)] = 43900, + [SMALL_STATE(1863)] = 43970, + [SMALL_STATE(1864)] = 44034, + [SMALL_STATE(1865)] = 44094, + [SMALL_STATE(1866)] = 44176, + [SMALL_STATE(1867)] = 44260, + [SMALL_STATE(1868)] = 44346, + [SMALL_STATE(1869)] = 44420, + [SMALL_STATE(1870)] = 44488, + [SMALL_STATE(1871)] = 44564, + [SMALL_STATE(1872)] = 44642, + [SMALL_STATE(1873)] = 44722, + [SMALL_STATE(1874)] = 44802, + [SMALL_STATE(1875)] = 44882, + [SMALL_STATE(1876)] = 44962, + [SMALL_STATE(1877)] = 45042, + [SMALL_STATE(1878)] = 45122, + [SMALL_STATE(1879)] = 45202, + [SMALL_STATE(1880)] = 45282, + [SMALL_STATE(1881)] = 45340, + [SMALL_STATE(1882)] = 45426, + [SMALL_STATE(1883)] = 45512, + [SMALL_STATE(1884)] = 45592, + [SMALL_STATE(1885)] = 45652, + [SMALL_STATE(1886)] = 45732, + [SMALL_STATE(1887)] = 45808, + [SMALL_STATE(1888)] = 45900, + [SMALL_STATE(1889)] = 45960, + [SMALL_STATE(1890)] = 46020, + [SMALL_STATE(1891)] = 46080, + [SMALL_STATE(1892)] = 46154, + [SMALL_STATE(1893)] = 46222, + [SMALL_STATE(1894)] = 46296, + [SMALL_STATE(1895)] = 46360, + [SMALL_STATE(1896)] = 46446, + [SMALL_STATE(1897)] = 46534, + [SMALL_STATE(1898)] = 46624, + [SMALL_STATE(1899)] = 46704, + [SMALL_STATE(1900)] = 46784, + [SMALL_STATE(1901)] = 46862, + [SMALL_STATE(1902)] = 46934, + [SMALL_STATE(1903)] = 47014, + [SMALL_STATE(1904)] = 47096, + [SMALL_STATE(1905)] = 47181, + [SMALL_STATE(1906)] = 47252, + [SMALL_STATE(1907)] = 47315, + [SMALL_STATE(1908)] = 47374, + [SMALL_STATE(1909)] = 47453, + [SMALL_STATE(1910)] = 47512, + [SMALL_STATE(1911)] = 47585, + [SMALL_STATE(1912)] = 47666, + [SMALL_STATE(1913)] = 47739, + [SMALL_STATE(1914)] = 47816, + [SMALL_STATE(1915)] = 47885, + [SMALL_STATE(1916)] = 47972, + [SMALL_STATE(1917)] = 48047, + [SMALL_STATE(1918)] = 48124, + [SMALL_STATE(1919)] = 48195, + [SMALL_STATE(1920)] = 48282, + [SMALL_STATE(1921)] = 48365, + [SMALL_STATE(1922)] = 48432, + [SMALL_STATE(1923)] = 48503, + [SMALL_STATE(1924)] = 48589, + [SMALL_STATE(1925)] = 48659, + [SMALL_STATE(1926)] = 48745, + [SMALL_STATE(1927)] = 48831, + [SMALL_STATE(1928)] = 48917, + [SMALL_STATE(1929)] = 48987, + [SMALL_STATE(1930)] = 49057, + [SMALL_STATE(1931)] = 49117, + [SMALL_STATE(1932)] = 49203, + [SMALL_STATE(1933)] = 49273, + [SMALL_STATE(1934)] = 49359, + [SMALL_STATE(1935)] = 49445, + [SMALL_STATE(1936)] = 49505, + [SMALL_STATE(1937)] = 49591, + [SMALL_STATE(1938)] = 49677, + [SMALL_STATE(1939)] = 49763, + [SMALL_STATE(1940)] = 49849, + [SMALL_STATE(1941)] = 49912, + [SMALL_STATE(1942)] = 49983, + [SMALL_STATE(1943)] = 50046, + [SMALL_STATE(1944)] = 50127, + [SMALL_STATE(1945)] = 50194, + [SMALL_STATE(1946)] = 50261, + [SMALL_STATE(1947)] = 50328, + [SMALL_STATE(1948)] = 50395, + [SMALL_STATE(1949)] = 50466, + [SMALL_STATE(1950)] = 50547, + [SMALL_STATE(1951)] = 50618, + [SMALL_STATE(1952)] = 50685, + [SMALL_STATE(1953)] = 50752, + [SMALL_STATE(1954)] = 50823, + [SMALL_STATE(1955)] = 50880, + [SMALL_STATE(1956)] = 50939, + [SMALL_STATE(1957)] = 51000, + [SMALL_STATE(1958)] = 51057, + [SMALL_STATE(1959)] = 51126, + [SMALL_STATE(1960)] = 51189, + [SMALL_STATE(1961)] = 51248, + [SMALL_STATE(1962)] = 51329, + [SMALL_STATE(1963)] = 51407, + [SMALL_STATE(1964)] = 51475, + [SMALL_STATE(1965)] = 51553, + [SMALL_STATE(1966)] = 51621, + [SMALL_STATE(1967)] = 51689, + [SMALL_STATE(1968)] = 51751, + [SMALL_STATE(1969)] = 51809, + [SMALL_STATE(1970)] = 51887, + [SMALL_STATE(1971)] = 51945, + [SMALL_STATE(1972)] = 52005, + [SMALL_STATE(1973)] = 52085, + [SMALL_STATE(1974)] = 52163, + [SMALL_STATE(1975)] = 52241, + [SMALL_STATE(1976)] = 52321, + [SMALL_STATE(1977)] = 52389, + [SMALL_STATE(1978)] = 52457, + [SMALL_STATE(1979)] = 52517, + [SMALL_STATE(1980)] = 52571, + [SMALL_STATE(1981)] = 52633, + [SMALL_STATE(1982)] = 52691, + [SMALL_STATE(1983)] = 52769, + [SMALL_STATE(1984)] = 52847, + [SMALL_STATE(1985)] = 52901, + [SMALL_STATE(1986)] = 52959, + [SMALL_STATE(1987)] = 53013, + [SMALL_STATE(1988)] = 53091, + [SMALL_STATE(1989)] = 53145, + [SMALL_STATE(1990)] = 53223, + [SMALL_STATE(1991)] = 53301, + [SMALL_STATE(1992)] = 53355, + [SMALL_STATE(1993)] = 53433, + [SMALL_STATE(1994)] = 53487, + [SMALL_STATE(1995)] = 53541, + [SMALL_STATE(1996)] = 53603, + [SMALL_STATE(1997)] = 53661, + [SMALL_STATE(1998)] = 53715, + [SMALL_STATE(1999)] = 53771, + [SMALL_STATE(2000)] = 53827, + [SMALL_STATE(2001)] = 53881, + [SMALL_STATE(2002)] = 53949, + [SMALL_STATE(2003)] = 54002, + [SMALL_STATE(2004)] = 54055, + [SMALL_STATE(2005)] = 54110, + [SMALL_STATE(2006)] = 54175, + [SMALL_STATE(2007)] = 54230, + [SMALL_STATE(2008)] = 54281, + [SMALL_STATE(2009)] = 54338, + [SMALL_STATE(2010)] = 54403, + [SMALL_STATE(2011)] = 54468, + [SMALL_STATE(2012)] = 54519, + [SMALL_STATE(2013)] = 54574, + [SMALL_STATE(2014)] = 54627, + [SMALL_STATE(2015)] = 54704, + [SMALL_STATE(2016)] = 54757, + [SMALL_STATE(2017)] = 54822, + [SMALL_STATE(2018)] = 54887, + [SMALL_STATE(2019)] = 54952, + [SMALL_STATE(2020)] = 55007, + [SMALL_STATE(2021)] = 55064, + [SMALL_STATE(2022)] = 55129, + [SMALL_STATE(2023)] = 55182, + [SMALL_STATE(2024)] = 55233, + [SMALL_STATE(2025)] = 55284, + [SMALL_STATE(2026)] = 55335, + [SMALL_STATE(2027)] = 55400, + [SMALL_STATE(2028)] = 55463, + [SMALL_STATE(2029)] = 55540, + [SMALL_STATE(2030)] = 55591, + [SMALL_STATE(2031)] = 55648, + [SMALL_STATE(2032)] = 55725, + [SMALL_STATE(2033)] = 55802, + [SMALL_STATE(2034)] = 55879, + [SMALL_STATE(2035)] = 55956, + [SMALL_STATE(2036)] = 56009, + [SMALL_STATE(2037)] = 56086, + [SMALL_STATE(2038)] = 56163, + [SMALL_STATE(2039)] = 56218, + [SMALL_STATE(2040)] = 56273, + [SMALL_STATE(2041)] = 56350, + [SMALL_STATE(2042)] = 56415, + [SMALL_STATE(2043)] = 56492, + [SMALL_STATE(2044)] = 56545, + [SMALL_STATE(2045)] = 56598, + [SMALL_STATE(2046)] = 56675, + [SMALL_STATE(2047)] = 56728, + [SMALL_STATE(2048)] = 56805, + [SMALL_STATE(2049)] = 56870, + [SMALL_STATE(2050)] = 56929, + [SMALL_STATE(2051)] = 56989, + [SMALL_STATE(2052)] = 57041, + [SMALL_STATE(2053)] = 57093, + [SMALL_STATE(2054)] = 57145, + [SMALL_STATE(2055)] = 57207, + [SMALL_STATE(2056)] = 57261, + [SMALL_STATE(2057)] = 57323, + [SMALL_STATE(2058)] = 57383, + [SMALL_STATE(2059)] = 57435, + [SMALL_STATE(2060)] = 57487, + [SMALL_STATE(2061)] = 57541, + [SMALL_STATE(2062)] = 57593, + [SMALL_STATE(2063)] = 57655, + [SMALL_STATE(2064)] = 57715, + [SMALL_STATE(2065)] = 57767, + [SMALL_STATE(2066)] = 57821, + [SMALL_STATE(2067)] = 57881, + [SMALL_STATE(2068)] = 57935, + [SMALL_STATE(2069)] = 57987, + [SMALL_STATE(2070)] = 58039, + [SMALL_STATE(2071)] = 58090, + [SMALL_STATE(2072)] = 58141, + [SMALL_STATE(2073)] = 58192, + [SMALL_STATE(2074)] = 58247, + [SMALL_STATE(2075)] = 58298, + [SMALL_STATE(2076)] = 58349, + [SMALL_STATE(2077)] = 58400, + [SMALL_STATE(2078)] = 58451, + [SMALL_STATE(2079)] = 58502, + [SMALL_STATE(2080)] = 58561, + [SMALL_STATE(2081)] = 58612, + [SMALL_STATE(2082)] = 58663, + [SMALL_STATE(2083)] = 58714, + [SMALL_STATE(2084)] = 58769, + [SMALL_STATE(2085)] = 58820, + [SMALL_STATE(2086)] = 58919, + [SMALL_STATE(2087)] = 58970, + [SMALL_STATE(2088)] = 59021, + [SMALL_STATE(2089)] = 59072, + [SMALL_STATE(2090)] = 59123, + [SMALL_STATE(2091)] = 59182, + [SMALL_STATE(2092)] = 59233, + [SMALL_STATE(2093)] = 59292, + [SMALL_STATE(2094)] = 59343, + [SMALL_STATE(2095)] = 59394, + [SMALL_STATE(2096)] = 59445, + [SMALL_STATE(2097)] = 59500, + [SMALL_STATE(2098)] = 59551, + [SMALL_STATE(2099)] = 59610, + [SMALL_STATE(2100)] = 59661, + [SMALL_STATE(2101)] = 59720, + [SMALL_STATE(2102)] = 59771, + [SMALL_STATE(2103)] = 59830, + [SMALL_STATE(2104)] = 59881, + [SMALL_STATE(2105)] = 59940, + [SMALL_STATE(2106)] = 59995, + [SMALL_STATE(2107)] = 60045, + [SMALL_STATE(2108)] = 60095, + [SMALL_STATE(2109)] = 60153, + [SMALL_STATE(2110)] = 60203, + [SMALL_STATE(2111)] = 60261, + [SMALL_STATE(2112)] = 60311, + [SMALL_STATE(2113)] = 60365, + [SMALL_STATE(2114)] = 60415, + [SMALL_STATE(2115)] = 60511, + [SMALL_STATE(2116)] = 60565, + [SMALL_STATE(2117)] = 60615, + [SMALL_STATE(2118)] = 60665, + [SMALL_STATE(2119)] = 60715, + [SMALL_STATE(2120)] = 60773, + [SMALL_STATE(2121)] = 60827, + [SMALL_STATE(2122)] = 60877, + [SMALL_STATE(2123)] = 60935, + [SMALL_STATE(2124)] = 60985, + [SMALL_STATE(2125)] = 61035, + [SMALL_STATE(2126)] = 61093, + [SMALL_STATE(2127)] = 61143, + [SMALL_STATE(2128)] = 61197, + [SMALL_STATE(2129)] = 61247, + [SMALL_STATE(2130)] = 61303, + [SMALL_STATE(2131)] = 61355, + [SMALL_STATE(2132)] = 61413, + [SMALL_STATE(2133)] = 61463, + [SMALL_STATE(2134)] = 61513, + [SMALL_STATE(2135)] = 61571, + [SMALL_STATE(2136)] = 61667, + [SMALL_STATE(2137)] = 61719, + [SMALL_STATE(2138)] = 61771, + [SMALL_STATE(2139)] = 61821, + [SMALL_STATE(2140)] = 61871, + [SMALL_STATE(2141)] = 61923, + [SMALL_STATE(2142)] = 61973, + [SMALL_STATE(2143)] = 62026, + [SMALL_STATE(2144)] = 62083, + [SMALL_STATE(2145)] = 62136, + [SMALL_STATE(2146)] = 62189, + [SMALL_STATE(2147)] = 62242, + [SMALL_STATE(2148)] = 62295, + [SMALL_STATE(2149)] = 62348, + [SMALL_STATE(2150)] = 62401, + [SMALL_STATE(2151)] = 62454, + [SMALL_STATE(2152)] = 62507, + [SMALL_STATE(2153)] = 62560, + [SMALL_STATE(2154)] = 62613, + [SMALL_STATE(2155)] = 62666, + [SMALL_STATE(2156)] = 62719, + [SMALL_STATE(2157)] = 62814, + [SMALL_STATE(2158)] = 62863, + [SMALL_STATE(2159)] = 62912, + [SMALL_STATE(2160)] = 62961, + [SMALL_STATE(2161)] = 63016, + [SMALL_STATE(2162)] = 63069, + [SMALL_STATE(2163)] = 63122, + [SMALL_STATE(2164)] = 63175, + [SMALL_STATE(2165)] = 63228, + [SMALL_STATE(2166)] = 63277, + [SMALL_STATE(2167)] = 63330, + [SMALL_STATE(2168)] = 63379, + [SMALL_STATE(2169)] = 63432, + [SMALL_STATE(2170)] = 63483, + [SMALL_STATE(2171)] = 63532, + [SMALL_STATE(2172)] = 63581, + [SMALL_STATE(2173)] = 63630, + [SMALL_STATE(2174)] = 63679, + [SMALL_STATE(2175)] = 63728, + [SMALL_STATE(2176)] = 63777, + [SMALL_STATE(2177)] = 63826, + [SMALL_STATE(2178)] = 63881, + [SMALL_STATE(2179)] = 63932, + [SMALL_STATE(2180)] = 63983, + [SMALL_STATE(2181)] = 64034, + [SMALL_STATE(2182)] = 64129, + [SMALL_STATE(2183)] = 64182, + [SMALL_STATE(2184)] = 64231, + [SMALL_STATE(2185)] = 64284, + [SMALL_STATE(2186)] = 64337, + [SMALL_STATE(2187)] = 64392, + [SMALL_STATE(2188)] = 64445, + [SMALL_STATE(2189)] = 64498, + [SMALL_STATE(2190)] = 64551, + [SMALL_STATE(2191)] = 64604, + [SMALL_STATE(2192)] = 64653, + [SMALL_STATE(2193)] = 64707, + [SMALL_STATE(2194)] = 64757, + [SMALL_STATE(2195)] = 64809, + [SMALL_STATE(2196)] = 64859, + [SMALL_STATE(2197)] = 64909, + [SMALL_STATE(2198)] = 64961, + [SMALL_STATE(2199)] = 65009, + [SMALL_STATE(2200)] = 65061, + [SMALL_STATE(2201)] = 65115, + [SMALL_STATE(2202)] = 65167, + [SMALL_STATE(2203)] = 65219, + [SMALL_STATE(2204)] = 65271, + [SMALL_STATE(2205)] = 65323, + [SMALL_STATE(2206)] = 65375, + [SMALL_STATE(2207)] = 65423, + [SMALL_STATE(2208)] = 65471, + [SMALL_STATE(2209)] = 65523, + [SMALL_STATE(2210)] = 65575, + [SMALL_STATE(2211)] = 65627, + [SMALL_STATE(2212)] = 65675, + [SMALL_STATE(2213)] = 65723, + [SMALL_STATE(2214)] = 65777, + [SMALL_STATE(2215)] = 65825, + [SMALL_STATE(2216)] = 65873, + [SMALL_STATE(2217)] = 65921, + [SMALL_STATE(2218)] = 65971, + [SMALL_STATE(2219)] = 66019, + [SMALL_STATE(2220)] = 66073, + [SMALL_STATE(2221)] = 66125, + [SMALL_STATE(2222)] = 66181, + [SMALL_STATE(2223)] = 66235, + [SMALL_STATE(2224)] = 66281, + [SMALL_STATE(2225)] = 66329, + [SMALL_STATE(2226)] = 66395, + [SMALL_STATE(2227)] = 66459, + [SMALL_STATE(2228)] = 66517, + [SMALL_STATE(2229)] = 66571, + [SMALL_STATE(2230)] = 66647, + [SMALL_STATE(2231)] = 66725, + [SMALL_STATE(2232)] = 66805, + [SMALL_STATE(2233)] = 66873, + [SMALL_STATE(2234)] = 66935, + [SMALL_STATE(2235)] = 67005, + [SMALL_STATE(2236)] = 67077, + [SMALL_STATE(2237)] = 67151, + [SMALL_STATE(2238)] = 67201, + [SMALL_STATE(2239)] = 67255, + [SMALL_STATE(2240)] = 67309, + [SMALL_STATE(2241)] = 67375, + [SMALL_STATE(2242)] = 67439, + [SMALL_STATE(2243)] = 67503, + [SMALL_STATE(2244)] = 67565, + [SMALL_STATE(2245)] = 67623, + [SMALL_STATE(2246)] = 67679, + [SMALL_STATE(2247)] = 67733, + [SMALL_STATE(2248)] = 67785, + [SMALL_STATE(2249)] = 67861, + [SMALL_STATE(2250)] = 67935, + [SMALL_STATE(2251)] = 68013, + [SMALL_STATE(2252)] = 68089, + [SMALL_STATE(2253)] = 68169, + [SMALL_STATE(2254)] = 68247, + [SMALL_STATE(2255)] = 68315, + [SMALL_STATE(2256)] = 68381, + [SMALL_STATE(2257)] = 68443, + [SMALL_STATE(2258)] = 68503, + [SMALL_STATE(2259)] = 68573, + [SMALL_STATE(2260)] = 68641, + [SMALL_STATE(2261)] = 68713, + [SMALL_STATE(2262)] = 68783, + [SMALL_STATE(2263)] = 68857, + [SMALL_STATE(2264)] = 68929, + [SMALL_STATE(2265)] = 68995, + [SMALL_STATE(2266)] = 69059, + [SMALL_STATE(2267)] = 69117, + [SMALL_STATE(2268)] = 69171, + [SMALL_STATE(2269)] = 69247, + [SMALL_STATE(2270)] = 69297, + [SMALL_STATE(2271)] = 69377, + [SMALL_STATE(2272)] = 69445, + [SMALL_STATE(2273)] = 69507, + [SMALL_STATE(2274)] = 69577, + [SMALL_STATE(2275)] = 69649, + [SMALL_STATE(2276)] = 69723, + [SMALL_STATE(2277)] = 69771, + [SMALL_STATE(2278)] = 69835, + [SMALL_STATE(2279)] = 69897, + [SMALL_STATE(2280)] = 69953, + [SMALL_STATE(2281)] = 70005, + [SMALL_STATE(2282)] = 70079, + [SMALL_STATE(2283)] = 70155, + [SMALL_STATE(2284)] = 70233, + [SMALL_STATE(2285)] = 70299, + [SMALL_STATE(2286)] = 70359, + [SMALL_STATE(2287)] = 70427, + [SMALL_STATE(2288)] = 70497, + [SMALL_STATE(2289)] = 70569, + [SMALL_STATE(2290)] = 70635, + [SMALL_STATE(2291)] = 70699, + [SMALL_STATE(2292)] = 70763, + [SMALL_STATE(2293)] = 70825, + [SMALL_STATE(2294)] = 70883, + [SMALL_STATE(2295)] = 70939, + [SMALL_STATE(2296)] = 70993, + [SMALL_STATE(2297)] = 71045, + [SMALL_STATE(2298)] = 71121, + [SMALL_STATE(2299)] = 71195, + [SMALL_STATE(2300)] = 71273, + [SMALL_STATE(2301)] = 71349, + [SMALL_STATE(2302)] = 71429, + [SMALL_STATE(2303)] = 71507, + [SMALL_STATE(2304)] = 71575, + [SMALL_STATE(2305)] = 71641, + [SMALL_STATE(2306)] = 71703, + [SMALL_STATE(2307)] = 71763, + [SMALL_STATE(2308)] = 71833, + [SMALL_STATE(2309)] = 71901, + [SMALL_STATE(2310)] = 71973, + [SMALL_STATE(2311)] = 72043, + [SMALL_STATE(2312)] = 72117, + [SMALL_STATE(2313)] = 72189, + [SMALL_STATE(2314)] = 72253, + [SMALL_STATE(2315)] = 72315, + [SMALL_STATE(2316)] = 72371, + [SMALL_STATE(2317)] = 72423, + [SMALL_STATE(2318)] = 72497, + [SMALL_STATE(2319)] = 72573, + [SMALL_STATE(2320)] = 72651, + [SMALL_STATE(2321)] = 72717, + [SMALL_STATE(2322)] = 72777, + [SMALL_STATE(2323)] = 72845, + [SMALL_STATE(2324)] = 72915, + [SMALL_STATE(2325)] = 72987, + [SMALL_STATE(2326)] = 73041, + [SMALL_STATE(2327)] = 73097, + [SMALL_STATE(2328)] = 73151, + [SMALL_STATE(2329)] = 73201, + [SMALL_STATE(2330)] = 73255, + [SMALL_STATE(2331)] = 73309, + [SMALL_STATE(2332)] = 73363, + [SMALL_STATE(2333)] = 73417, + [SMALL_STATE(2334)] = 73471, + [SMALL_STATE(2335)] = 73525, + [SMALL_STATE(2336)] = 73603, + [SMALL_STATE(2337)] = 73652, + [SMALL_STATE(2338)] = 73701, + [SMALL_STATE(2339)] = 73780, + [SMALL_STATE(2340)] = 73825, + [SMALL_STATE(2341)] = 73874, + [SMALL_STATE(2342)] = 73923, + [SMALL_STATE(2343)] = 73972, + [SMALL_STATE(2344)] = 74019, + [SMALL_STATE(2345)] = 74066, + [SMALL_STATE(2346)] = 74145, + [SMALL_STATE(2347)] = 74192, + [SMALL_STATE(2348)] = 74241, + [SMALL_STATE(2349)] = 74288, + [SMALL_STATE(2350)] = 74367, + [SMALL_STATE(2351)] = 74446, + [SMALL_STATE(2352)] = 74495, + [SMALL_STATE(2353)] = 74546, + [SMALL_STATE(2354)] = 74597, + [SMALL_STATE(2355)] = 74676, + [SMALL_STATE(2356)] = 74755, + [SMALL_STATE(2357)] = 74802, + [SMALL_STATE(2358)] = 74851, + [SMALL_STATE(2359)] = 74900, + [SMALL_STATE(2360)] = 74947, + [SMALL_STATE(2361)] = 74993, + [SMALL_STATE(2362)] = 75041, + [SMALL_STATE(2363)] = 75087, + [SMALL_STATE(2364)] = 75133, + [SMALL_STATE(2365)] = 75179, + [SMALL_STATE(2366)] = 75225, + [SMALL_STATE(2367)] = 75285, + [SMALL_STATE(2368)] = 75343, + [SMALL_STATE(2369)] = 75395, + [SMALL_STATE(2370)] = 75441, + [SMALL_STATE(2371)] = 75489, + [SMALL_STATE(2372)] = 75535, + [SMALL_STATE(2373)] = 75605, + [SMALL_STATE(2374)] = 75651, + [SMALL_STATE(2375)] = 75723, + [SMALL_STATE(2376)] = 75797, + [SMALL_STATE(2377)] = 75843, + [SMALL_STATE(2378)] = 75905, + [SMALL_STATE(2379)] = 75961, + [SMALL_STATE(2380)] = 76025, + [SMALL_STATE(2381)] = 76091, + [SMALL_STATE(2382)] = 76139, + [SMALL_STATE(2383)] = 76207, + [SMALL_STATE(2384)] = 76255, + [SMALL_STATE(2385)] = 76301, + [SMALL_STATE(2386)] = 76347, + [SMALL_STATE(2387)] = 76393, + [SMALL_STATE(2388)] = 76439, + [SMALL_STATE(2389)] = 76485, + [SMALL_STATE(2390)] = 76531, + [SMALL_STATE(2391)] = 76623, + [SMALL_STATE(2392)] = 76669, + [SMALL_STATE(2393)] = 76761, + [SMALL_STATE(2394)] = 76807, + [SMALL_STATE(2395)] = 76853, + [SMALL_STATE(2396)] = 76899, + [SMALL_STATE(2397)] = 76945, + [SMALL_STATE(2398)] = 76991, + [SMALL_STATE(2399)] = 77037, + [SMALL_STATE(2400)] = 77083, + [SMALL_STATE(2401)] = 77129, + [SMALL_STATE(2402)] = 77175, + [SMALL_STATE(2403)] = 77221, + [SMALL_STATE(2404)] = 77267, + [SMALL_STATE(2405)] = 77313, + [SMALL_STATE(2406)] = 77361, + [SMALL_STATE(2407)] = 77407, + [SMALL_STATE(2408)] = 77453, + [SMALL_STATE(2409)] = 77499, + [SMALL_STATE(2410)] = 77545, + [SMALL_STATE(2411)] = 77591, + [SMALL_STATE(2412)] = 77637, + [SMALL_STATE(2413)] = 77683, + [SMALL_STATE(2414)] = 77729, + [SMALL_STATE(2415)] = 77775, + [SMALL_STATE(2416)] = 77821, + [SMALL_STATE(2417)] = 77867, + [SMALL_STATE(2418)] = 77913, + [SMALL_STATE(2419)] = 77959, + [SMALL_STATE(2420)] = 78005, + [SMALL_STATE(2421)] = 78065, + [SMALL_STATE(2422)] = 78123, + [SMALL_STATE(2423)] = 78175, + [SMALL_STATE(2424)] = 78223, + [SMALL_STATE(2425)] = 78293, + [SMALL_STATE(2426)] = 78365, + [SMALL_STATE(2427)] = 78439, + [SMALL_STATE(2428)] = 78501, + [SMALL_STATE(2429)] = 78557, + [SMALL_STATE(2430)] = 78621, + [SMALL_STATE(2431)] = 78687, + [SMALL_STATE(2432)] = 78755, + [SMALL_STATE(2433)] = 78803, + [SMALL_STATE(2434)] = 78895, + [SMALL_STATE(2435)] = 78943, + [SMALL_STATE(2436)] = 78991, + [SMALL_STATE(2437)] = 79039, + [SMALL_STATE(2438)] = 79085, + [SMALL_STATE(2439)] = 79158, + [SMALL_STATE(2440)] = 79231, + [SMALL_STATE(2441)] = 79304, + [SMALL_STATE(2442)] = 79355, + [SMALL_STATE(2443)] = 79400, + [SMALL_STATE(2444)] = 79473, + [SMALL_STATE(2445)] = 79546, + [SMALL_STATE(2446)] = 79619, + [SMALL_STATE(2447)] = 79669, + [SMALL_STATE(2448)] = 79719, + [SMALL_STATE(2449)] = 79765, + [SMALL_STATE(2450)] = 79811, + [SMALL_STATE(2451)] = 79897, + [SMALL_STATE(2452)] = 79947, + [SMALL_STATE(2453)] = 79997, + [SMALL_STATE(2454)] = 80042, + [SMALL_STATE(2455)] = 80087, + [SMALL_STATE(2456)] = 80136, + [SMALL_STATE(2457)] = 80179, + [SMALL_STATE(2458)] = 80228, + [SMALL_STATE(2459)] = 80277, + [SMALL_STATE(2460)] = 80326, + [SMALL_STATE(2461)] = 80369, + [SMALL_STATE(2462)] = 80412, + [SMALL_STATE(2463)] = 80461, + [SMALL_STATE(2464)] = 80512, + [SMALL_STATE(2465)] = 80555, + [SMALL_STATE(2466)] = 80598, + [SMALL_STATE(2467)] = 80647, + [SMALL_STATE(2468)] = 80694, + [SMALL_STATE(2469)] = 80737, + [SMALL_STATE(2470)] = 80780, + [SMALL_STATE(2471)] = 80823, + [SMALL_STATE(2472)] = 80901, + [SMALL_STATE(2473)] = 80947, + [SMALL_STATE(2474)] = 80991, + [SMALL_STATE(2475)] = 81033, + [SMALL_STATE(2476)] = 81113, + [SMALL_STATE(2477)] = 81155, + [SMALL_STATE(2478)] = 81235, + [SMALL_STATE(2479)] = 81280, + [SMALL_STATE(2480)] = 81321, + [SMALL_STATE(2481)] = 81366, + [SMALL_STATE(2482)] = 81410, + [SMALL_STATE(2483)] = 81492, + [SMALL_STATE(2484)] = 81536, + [SMALL_STATE(2485)] = 81580, + [SMALL_STATE(2486)] = 81662, + [SMALL_STATE(2487)] = 81706, + [SMALL_STATE(2488)] = 81746, + [SMALL_STATE(2489)] = 81791, + [SMALL_STATE(2490)] = 81835, + [SMALL_STATE(2491)] = 81911, + [SMALL_STATE(2492)] = 81987, + [SMALL_STATE(2493)] = 82063, + [SMALL_STATE(2494)] = 82139, + [SMALL_STATE(2495)] = 82215, + [SMALL_STATE(2496)] = 82291, + [SMALL_STATE(2497)] = 82367, + [SMALL_STATE(2498)] = 82443, + [SMALL_STATE(2499)] = 82519, + [SMALL_STATE(2500)] = 82595, + [SMALL_STATE(2501)] = 82671, + [SMALL_STATE(2502)] = 82747, + [SMALL_STATE(2503)] = 82823, + [SMALL_STATE(2504)] = 82899, + [SMALL_STATE(2505)] = 82975, + [SMALL_STATE(2506)] = 83051, + [SMALL_STATE(2507)] = 83127, + [SMALL_STATE(2508)] = 83179, + [SMALL_STATE(2509)] = 83255, + [SMALL_STATE(2510)] = 83301, + [SMALL_STATE(2511)] = 83377, + [SMALL_STATE(2512)] = 83453, + [SMALL_STATE(2513)] = 83495, + [SMALL_STATE(2514)] = 83541, + [SMALL_STATE(2515)] = 83587, + [SMALL_STATE(2516)] = 83663, + [SMALL_STATE(2517)] = 83739, + [SMALL_STATE(2518)] = 83815, + [SMALL_STATE(2519)] = 83891, + [SMALL_STATE(2520)] = 83967, + [SMALL_STATE(2521)] = 84043, + [SMALL_STATE(2522)] = 84092, + [SMALL_STATE(2523)] = 84141, + [SMALL_STATE(2524)] = 84180, + [SMALL_STATE(2525)] = 84229, + [SMALL_STATE(2526)] = 84280, + [SMALL_STATE(2527)] = 84328, + [SMALL_STATE(2528)] = 84398, + [SMALL_STATE(2529)] = 84468, + [SMALL_STATE(2530)] = 84538, + [SMALL_STATE(2531)] = 84608, + [SMALL_STATE(2532)] = 84678, + [SMALL_STATE(2533)] = 84748, + [SMALL_STATE(2534)] = 84818, + [SMALL_STATE(2535)] = 84888, + [SMALL_STATE(2536)] = 84958, + [SMALL_STATE(2537)] = 85028, + [SMALL_STATE(2538)] = 85074, + [SMALL_STATE(2539)] = 85120, + [SMALL_STATE(2540)] = 85166, + [SMALL_STATE(2541)] = 85212, + [SMALL_STATE(2542)] = 85266, + [SMALL_STATE(2543)] = 85306, + [SMALL_STATE(2544)] = 85354, + [SMALL_STATE(2545)] = 85394, + [SMALL_STATE(2546)] = 85442, + [SMALL_STATE(2547)] = 85512, + [SMALL_STATE(2548)] = 85582, + [SMALL_STATE(2549)] = 85633, + [SMALL_STATE(2550)] = 85684, + [SMALL_STATE(2551)] = 85723, + [SMALL_STATE(2552)] = 85774, + [SMALL_STATE(2553)] = 85813, + [SMALL_STATE(2554)] = 85860, + [SMALL_STATE(2555)] = 85905, + [SMALL_STATE(2556)] = 85942, + [SMALL_STATE(2557)] = 85987, + [SMALL_STATE(2558)] = 86032, + [SMALL_STATE(2559)] = 86077, + [SMALL_STATE(2560)] = 86114, + [SMALL_STATE(2561)] = 86167, + [SMALL_STATE(2562)] = 86217, + [SMALL_STATE(2563)] = 86265, + [SMALL_STATE(2564)] = 86303, + [SMALL_STATE(2565)] = 86351, + [SMALL_STATE(2566)] = 86399, + [SMALL_STATE(2567)] = 86435, + [SMALL_STATE(2568)] = 86471, + [SMALL_STATE(2569)] = 86509, + [SMALL_STATE(2570)] = 86543, + [SMALL_STATE(2571)] = 86583, + [SMALL_STATE(2572)] = 86631, + [SMALL_STATE(2573)] = 86677, + [SMALL_STATE(2574)] = 86717, + [SMALL_STATE(2575)] = 86755, + [SMALL_STATE(2576)] = 86805, + [SMALL_STATE(2577)] = 86839, + [SMALL_STATE(2578)] = 86873, + [SMALL_STATE(2579)] = 86923, + [SMALL_STATE(2580)] = 86961, + [SMALL_STATE(2581)] = 87008, + [SMALL_STATE(2582)] = 87047, + [SMALL_STATE(2583)] = 87086, + [SMALL_STATE(2584)] = 87125, + [SMALL_STATE(2585)] = 87162, + [SMALL_STATE(2586)] = 87197, + [SMALL_STATE(2587)] = 87236, + [SMALL_STATE(2588)] = 87269, + [SMALL_STATE(2589)] = 87304, + [SMALL_STATE(2590)] = 87351, + [SMALL_STATE(2591)] = 87384, + [SMALL_STATE(2592)] = 87431, + [SMALL_STATE(2593)] = 87478, + [SMALL_STATE(2594)] = 87511, + [SMALL_STATE(2595)] = 87550, + [SMALL_STATE(2596)] = 87597, + [SMALL_STATE(2597)] = 87634, + [SMALL_STATE(2598)] = 87685, + [SMALL_STATE(2599)] = 87724, + [SMALL_STATE(2600)] = 87765, + [SMALL_STATE(2601)] = 87802, + [SMALL_STATE(2602)] = 87837, + [SMALL_STATE(2603)] = 87878, + [SMALL_STATE(2604)] = 87913, + [SMALL_STATE(2605)] = 87950, + [SMALL_STATE(2606)] = 87985, + [SMALL_STATE(2607)] = 88026, + [SMALL_STATE(2608)] = 88065, + [SMALL_STATE(2609)] = 88097, + [SMALL_STATE(2610)] = 88131, + [SMALL_STATE(2611)] = 88171, + [SMALL_STATE(2612)] = 88205, + [SMALL_STATE(2613)] = 88241, + [SMALL_STATE(2614)] = 88279, + [SMALL_STATE(2615)] = 88317, + [SMALL_STATE(2616)] = 88365, + [SMALL_STATE(2617)] = 88413, + [SMALL_STATE(2618)] = 88451, + [SMALL_STATE(2619)] = 88483, + [SMALL_STATE(2620)] = 88519, + [SMALL_STATE(2621)] = 88551, + [SMALL_STATE(2622)] = 88583, + [SMALL_STATE(2623)] = 88615, + [SMALL_STATE(2624)] = 88647, + [SMALL_STATE(2625)] = 88679, + [SMALL_STATE(2626)] = 88711, + [SMALL_STATE(2627)] = 88743, + [SMALL_STATE(2628)] = 88779, + [SMALL_STATE(2629)] = 88827, + [SMALL_STATE(2630)] = 88861, + [SMALL_STATE(2631)] = 88897, + [SMALL_STATE(2632)] = 88933, + [SMALL_STATE(2633)] = 88965, + [SMALL_STATE(2634)] = 88997, + [SMALL_STATE(2635)] = 89029, + [SMALL_STATE(2636)] = 89075, + [SMALL_STATE(2637)] = 89113, + [SMALL_STATE(2638)] = 89149, + [SMALL_STATE(2639)] = 89181, + [SMALL_STATE(2640)] = 89215, + [SMALL_STATE(2641)] = 89253, + [SMALL_STATE(2642)] = 89293, + [SMALL_STATE(2643)] = 89333, + [SMALL_STATE(2644)] = 89371, + [SMALL_STATE(2645)] = 89409, + [SMALL_STATE(2646)] = 89447, + [SMALL_STATE(2647)] = 89485, + [SMALL_STATE(2648)] = 89523, + [SMALL_STATE(2649)] = 89557, + [SMALL_STATE(2650)] = 89588, + [SMALL_STATE(2651)] = 89629, + [SMALL_STATE(2652)] = 89662, + [SMALL_STATE(2653)] = 89697, + [SMALL_STATE(2654)] = 89734, + [SMALL_STATE(2655)] = 89771, + [SMALL_STATE(2656)] = 89802, + [SMALL_STATE(2657)] = 89833, + [SMALL_STATE(2658)] = 89870, + [SMALL_STATE(2659)] = 89901, + [SMALL_STATE(2660)] = 89932, + [SMALL_STATE(2661)] = 89963, + [SMALL_STATE(2662)] = 89994, + [SMALL_STATE(2663)] = 90025, + [SMALL_STATE(2664)] = 90060, + [SMALL_STATE(2665)] = 90093, + [SMALL_STATE(2666)] = 90126, + [SMALL_STATE(2667)] = 90159, + [SMALL_STATE(2668)] = 90194, + [SMALL_STATE(2669)] = 90227, + [SMALL_STATE(2670)] = 90264, + [SMALL_STATE(2671)] = 90299, + [SMALL_STATE(2672)] = 90334, + [SMALL_STATE(2673)] = 90373, + [SMALL_STATE(2674)] = 90418, + [SMALL_STATE(2675)] = 90457, + [SMALL_STATE(2676)] = 90502, + [SMALL_STATE(2677)] = 90535, + [SMALL_STATE(2678)] = 90580, + [SMALL_STATE(2679)] = 90625, + [SMALL_STATE(2680)] = 90670, + [SMALL_STATE(2681)] = 90703, + [SMALL_STATE(2682)] = 90734, + [SMALL_STATE(2683)] = 90765, + [SMALL_STATE(2684)] = 90796, + [SMALL_STATE(2685)] = 90835, + [SMALL_STATE(2686)] = 90866, + [SMALL_STATE(2687)] = 90897, + [SMALL_STATE(2688)] = 90929, + [SMALL_STATE(2689)] = 90959, + [SMALL_STATE(2690)] = 90993, + [SMALL_STATE(2691)] = 91023, + [SMALL_STATE(2692)] = 91053, + [SMALL_STATE(2693)] = 91087, + [SMALL_STATE(2694)] = 91139, + [SMALL_STATE(2695)] = 91175, + [SMALL_STATE(2696)] = 91211, + [SMALL_STATE(2697)] = 91263, + [SMALL_STATE(2698)] = 91299, + [SMALL_STATE(2699)] = 91335, + [SMALL_STATE(2700)] = 91365, + [SMALL_STATE(2701)] = 91401, + [SMALL_STATE(2702)] = 91437, + [SMALL_STATE(2703)] = 91467, + [SMALL_STATE(2704)] = 91499, + [SMALL_STATE(2705)] = 91531, + [SMALL_STATE(2706)] = 91563, + [SMALL_STATE(2707)] = 91593, + [SMALL_STATE(2708)] = 91623, + [SMALL_STATE(2709)] = 91661, + [SMALL_STATE(2710)] = 91699, + [SMALL_STATE(2711)] = 91733, + [SMALL_STATE(2712)] = 91763, + [SMALL_STATE(2713)] = 91797, + [SMALL_STATE(2714)] = 91827, + [SMALL_STATE(2715)] = 91857, + [SMALL_STATE(2716)] = 91895, + [SMALL_STATE(2717)] = 91947, + [SMALL_STATE(2718)] = 91977, + [SMALL_STATE(2719)] = 92017, + [SMALL_STATE(2720)] = 92055, + [SMALL_STATE(2721)] = 92107, + [SMALL_STATE(2722)] = 92159, + [SMALL_STATE(2723)] = 92189, + [SMALL_STATE(2724)] = 92221, + [SMALL_STATE(2725)] = 92257, + [SMALL_STATE(2726)] = 92287, + [SMALL_STATE(2727)] = 92319, + [SMALL_STATE(2728)] = 92349, + [SMALL_STATE(2729)] = 92387, + [SMALL_STATE(2730)] = 92419, + [SMALL_STATE(2731)] = 92449, + [SMALL_STATE(2732)] = 92481, + [SMALL_STATE(2733)] = 92531, + [SMALL_STATE(2734)] = 92563, + [SMALL_STATE(2735)] = 92595, + [SMALL_STATE(2736)] = 92627, + [SMALL_STATE(2737)] = 92659, + [SMALL_STATE(2738)] = 92689, + [SMALL_STATE(2739)] = 92721, + [SMALL_STATE(2740)] = 92755, + [SMALL_STATE(2741)] = 92787, + [SMALL_STATE(2742)] = 92824, + [SMALL_STATE(2743)] = 92855, + [SMALL_STATE(2744)] = 92884, + [SMALL_STATE(2745)] = 92915, + [SMALL_STATE(2746)] = 92946, + [SMALL_STATE(2747)] = 92975, + [SMALL_STATE(2748)] = 93004, + [SMALL_STATE(2749)] = 93033, + [SMALL_STATE(2750)] = 93064, + [SMALL_STATE(2751)] = 93093, + [SMALL_STATE(2752)] = 93124, + [SMALL_STATE(2753)] = 93153, + [SMALL_STATE(2754)] = 93182, + [SMALL_STATE(2755)] = 93213, + [SMALL_STATE(2756)] = 93244, + [SMALL_STATE(2757)] = 93275, + [SMALL_STATE(2758)] = 93306, + [SMALL_STATE(2759)] = 93335, + [SMALL_STATE(2760)] = 93372, + [SMALL_STATE(2761)] = 93403, + [SMALL_STATE(2762)] = 93434, + [SMALL_STATE(2763)] = 93467, + [SMALL_STATE(2764)] = 93496, + [SMALL_STATE(2765)] = 93525, + [SMALL_STATE(2766)] = 93562, + [SMALL_STATE(2767)] = 93599, + [SMALL_STATE(2768)] = 93628, + [SMALL_STATE(2769)] = 93659, + [SMALL_STATE(2770)] = 93694, + [SMALL_STATE(2771)] = 93727, + [SMALL_STATE(2772)] = 93764, + [SMALL_STATE(2773)] = 93801, + [SMALL_STATE(2774)] = 93838, + [SMALL_STATE(2775)] = 93869, + [SMALL_STATE(2776)] = 93906, + [SMALL_STATE(2777)] = 93935, + [SMALL_STATE(2778)] = 93972, + [SMALL_STATE(2779)] = 94001, + [SMALL_STATE(2780)] = 94030, + [SMALL_STATE(2781)] = 94061, + [SMALL_STATE(2782)] = 94098, + [SMALL_STATE(2783)] = 94127, + [SMALL_STATE(2784)] = 94160, + [SMALL_STATE(2785)] = 94189, + [SMALL_STATE(2786)] = 94218, + [SMALL_STATE(2787)] = 94249, + [SMALL_STATE(2788)] = 94278, + [SMALL_STATE(2789)] = 94307, + [SMALL_STATE(2790)] = 94336, + [SMALL_STATE(2791)] = 94367, + [SMALL_STATE(2792)] = 94396, + [SMALL_STATE(2793)] = 94427, + [SMALL_STATE(2794)] = 94458, + [SMALL_STATE(2795)] = 94487, + [SMALL_STATE(2796)] = 94518, + [SMALL_STATE(2797)] = 94555, + [SMALL_STATE(2798)] = 94588, + [SMALL_STATE(2799)] = 94619, + [SMALL_STATE(2800)] = 94650, + [SMALL_STATE(2801)] = 94687, + [SMALL_STATE(2802)] = 94724, + [SMALL_STATE(2803)] = 94755, + [SMALL_STATE(2804)] = 94788, + [SMALL_STATE(2805)] = 94819, + [SMALL_STATE(2806)] = 94850, + [SMALL_STATE(2807)] = 94881, + [SMALL_STATE(2808)] = 94912, + [SMALL_STATE(2809)] = 94948, + [SMALL_STATE(2810)] = 94978, + [SMALL_STATE(2811)] = 95010, + [SMALL_STATE(2812)] = 95046, + [SMALL_STATE(2813)] = 95076, + [SMALL_STATE(2814)] = 95120, + [SMALL_STATE(2815)] = 95152, + [SMALL_STATE(2816)] = 95184, + [SMALL_STATE(2817)] = 95214, + [SMALL_STATE(2818)] = 95246, + [SMALL_STATE(2819)] = 95274, + [SMALL_STATE(2820)] = 95306, + [SMALL_STATE(2821)] = 95336, + [SMALL_STATE(2822)] = 95372, + [SMALL_STATE(2823)] = 95408, + [SMALL_STATE(2824)] = 95440, + [SMALL_STATE(2825)] = 95470, + [SMALL_STATE(2826)] = 95498, + [SMALL_STATE(2827)] = 95542, + [SMALL_STATE(2828)] = 95586, + [SMALL_STATE(2829)] = 95624, + [SMALL_STATE(2830)] = 95654, + [SMALL_STATE(2831)] = 95688, + [SMALL_STATE(2832)] = 95720, + [SMALL_STATE(2833)] = 95756, + [SMALL_STATE(2834)] = 95792, + [SMALL_STATE(2835)] = 95828, + [SMALL_STATE(2836)] = 95856, + [SMALL_STATE(2837)] = 95886, + [SMALL_STATE(2838)] = 95914, + [SMALL_STATE(2839)] = 95950, + [SMALL_STATE(2840)] = 95978, + [SMALL_STATE(2841)] = 96022, + [SMALL_STATE(2842)] = 96066, + [SMALL_STATE(2843)] = 96094, + [SMALL_STATE(2844)] = 96122, + [SMALL_STATE(2845)] = 96150, + [SMALL_STATE(2846)] = 96180, + [SMALL_STATE(2847)] = 96208, + [SMALL_STATE(2848)] = 96236, + [SMALL_STATE(2849)] = 96268, + [SMALL_STATE(2850)] = 96298, + [SMALL_STATE(2851)] = 96328, + [SMALL_STATE(2852)] = 96358, + [SMALL_STATE(2853)] = 96388, + [SMALL_STATE(2854)] = 96422, + [SMALL_STATE(2855)] = 96458, + [SMALL_STATE(2856)] = 96486, + [SMALL_STATE(2857)] = 96514, + [SMALL_STATE(2858)] = 96542, + [SMALL_STATE(2859)] = 96572, + [SMALL_STATE(2860)] = 96608, + [SMALL_STATE(2861)] = 96636, + [SMALL_STATE(2862)] = 96672, + [SMALL_STATE(2863)] = 96700, + [SMALL_STATE(2864)] = 96728, + [SMALL_STATE(2865)] = 96758, + [SMALL_STATE(2866)] = 96786, + [SMALL_STATE(2867)] = 96822, + [SMALL_STATE(2868)] = 96850, + [SMALL_STATE(2869)] = 96886, + [SMALL_STATE(2870)] = 96911, + [SMALL_STATE(2871)] = 96940, + [SMALL_STATE(2872)] = 96967, + [SMALL_STATE(2873)] = 96998, + [SMALL_STATE(2874)] = 97027, + [SMALL_STATE(2875)] = 97058, + [SMALL_STATE(2876)] = 97089, + [SMALL_STATE(2877)] = 97118, + [SMALL_STATE(2878)] = 97145, + [SMALL_STATE(2879)] = 97172, + [SMALL_STATE(2880)] = 97199, + [SMALL_STATE(2881)] = 97232, + [SMALL_STATE(2882)] = 97263, + [SMALL_STATE(2883)] = 97290, + [SMALL_STATE(2884)] = 97323, + [SMALL_STATE(2885)] = 97354, + [SMALL_STATE(2886)] = 97379, + [SMALL_STATE(2887)] = 97406, + [SMALL_STATE(2888)] = 97439, + [SMALL_STATE(2889)] = 97470, + [SMALL_STATE(2890)] = 97503, + [SMALL_STATE(2891)] = 97534, + [SMALL_STATE(2892)] = 97561, + [SMALL_STATE(2893)] = 97588, + [SMALL_STATE(2894)] = 97617, + [SMALL_STATE(2895)] = 97644, + [SMALL_STATE(2896)] = 97675, + [SMALL_STATE(2897)] = 97706, + [SMALL_STATE(2898)] = 97739, + [SMALL_STATE(2899)] = 97772, + [SMALL_STATE(2900)] = 97799, + [SMALL_STATE(2901)] = 97826, + [SMALL_STATE(2902)] = 97859, + [SMALL_STATE(2903)] = 97890, + [SMALL_STATE(2904)] = 97921, + [SMALL_STATE(2905)] = 97954, + [SMALL_STATE(2906)] = 97981, + [SMALL_STATE(2907)] = 98014, + [SMALL_STATE(2908)] = 98047, + [SMALL_STATE(2909)] = 98074, + [SMALL_STATE(2910)] = 98105, + [SMALL_STATE(2911)] = 98132, + [SMALL_STATE(2912)] = 98159, + [SMALL_STATE(2913)] = 98188, + [SMALL_STATE(2914)] = 98217, + [SMALL_STATE(2915)] = 98248, + [SMALL_STATE(2916)] = 98279, + [SMALL_STATE(2917)] = 98310, + [SMALL_STATE(2918)] = 98341, + [SMALL_STATE(2919)] = 98368, + [SMALL_STATE(2920)] = 98401, + [SMALL_STATE(2921)] = 98432, + [SMALL_STATE(2922)] = 98459, + [SMALL_STATE(2923)] = 98488, + [SMALL_STATE(2924)] = 98517, + [SMALL_STATE(2925)] = 98548, + [SMALL_STATE(2926)] = 98579, + [SMALL_STATE(2927)] = 98610, + [SMALL_STATE(2928)] = 98641, + [SMALL_STATE(2929)] = 98672, + [SMALL_STATE(2930)] = 98701, + [SMALL_STATE(2931)] = 98732, + [SMALL_STATE(2932)] = 98763, + [SMALL_STATE(2933)] = 98794, + [SMALL_STATE(2934)] = 98825, + [SMALL_STATE(2935)] = 98850, + [SMALL_STATE(2936)] = 98875, + [SMALL_STATE(2937)] = 98900, + [SMALL_STATE(2938)] = 98931, + [SMALL_STATE(2939)] = 98962, + [SMALL_STATE(2940)] = 98987, + [SMALL_STATE(2941)] = 99012, + [SMALL_STATE(2942)] = 99037, + [SMALL_STATE(2943)] = 99062, + [SMALL_STATE(2944)] = 99089, + [SMALL_STATE(2945)] = 99116, + [SMALL_STATE(2946)] = 99145, + [SMALL_STATE(2947)] = 99174, + [SMALL_STATE(2948)] = 99199, + [SMALL_STATE(2949)] = 99230, + [SMALL_STATE(2950)] = 99255, + [SMALL_STATE(2951)] = 99282, + [SMALL_STATE(2952)] = 99309, + [SMALL_STATE(2953)] = 99338, + [SMALL_STATE(2954)] = 99367, + [SMALL_STATE(2955)] = 99394, + [SMALL_STATE(2956)] = 99421, + [SMALL_STATE(2957)] = 99456, + [SMALL_STATE(2958)] = 99491, + [SMALL_STATE(2959)] = 99522, + [SMALL_STATE(2960)] = 99555, + [SMALL_STATE(2961)] = 99588, + [SMALL_STATE(2962)] = 99619, + [SMALL_STATE(2963)] = 99646, + [SMALL_STATE(2964)] = 99677, + [SMALL_STATE(2965)] = 99704, + [SMALL_STATE(2966)] = 99739, + [SMALL_STATE(2967)] = 99774, + [SMALL_STATE(2968)] = 99811, + [SMALL_STATE(2969)] = 99838, + [SMALL_STATE(2970)] = 99865, + [SMALL_STATE(2971)] = 99896, + [SMALL_STATE(2972)] = 99923, + [SMALL_STATE(2973)] = 99952, + [SMALL_STATE(2974)] = 99981, + [SMALL_STATE(2975)] = 100012, + [SMALL_STATE(2976)] = 100043, + [SMALL_STATE(2977)] = 100070, + [SMALL_STATE(2978)] = 100097, + [SMALL_STATE(2979)] = 100128, + [SMALL_STATE(2980)] = 100159, + [SMALL_STATE(2981)] = 100190, + [SMALL_STATE(2982)] = 100217, + [SMALL_STATE(2983)] = 100244, + [SMALL_STATE(2984)] = 100275, + [SMALL_STATE(2985)] = 100308, + [SMALL_STATE(2986)] = 100335, + [SMALL_STATE(2987)] = 100362, + [SMALL_STATE(2988)] = 100389, + [SMALL_STATE(2989)] = 100416, + [SMALL_STATE(2990)] = 100447, + [SMALL_STATE(2991)] = 100478, + [SMALL_STATE(2992)] = 100507, + [SMALL_STATE(2993)] = 100536, + [SMALL_STATE(2994)] = 100569, + [SMALL_STATE(2995)] = 100602, + [SMALL_STATE(2996)] = 100633, + [SMALL_STATE(2997)] = 100664, + [SMALL_STATE(2998)] = 100697, + [SMALL_STATE(2999)] = 100728, + [SMALL_STATE(3000)] = 100759, + [SMALL_STATE(3001)] = 100794, + [SMALL_STATE(3002)] = 100823, + [SMALL_STATE(3003)] = 100852, + [SMALL_STATE(3004)] = 100883, + [SMALL_STATE(3005)] = 100916, + [SMALL_STATE(3006)] = 100947, + [SMALL_STATE(3007)] = 100974, + [SMALL_STATE(3008)] = 101001, + [SMALL_STATE(3009)] = 101034, + [SMALL_STATE(3010)] = 101065, + [SMALL_STATE(3011)] = 101100, + [SMALL_STATE(3012)] = 101135, + [SMALL_STATE(3013)] = 101170, + [SMALL_STATE(3014)] = 101205, + [SMALL_STATE(3015)] = 101240, + [SMALL_STATE(3016)] = 101275, + [SMALL_STATE(3017)] = 101306, + [SMALL_STATE(3018)] = 101337, + [SMALL_STATE(3019)] = 101364, + [SMALL_STATE(3020)] = 101391, + [SMALL_STATE(3021)] = 101422, + [SMALL_STATE(3022)] = 101449, + [SMALL_STATE(3023)] = 101476, + [SMALL_STATE(3024)] = 101505, + [SMALL_STATE(3025)] = 101534, + [SMALL_STATE(3026)] = 101565, + [SMALL_STATE(3027)] = 101596, + [SMALL_STATE(3028)] = 101627, + [SMALL_STATE(3029)] = 101658, + [SMALL_STATE(3030)] = 101689, + [SMALL_STATE(3031)] = 101720, + [SMALL_STATE(3032)] = 101751, + [SMALL_STATE(3033)] = 101784, + [SMALL_STATE(3034)] = 101817, + [SMALL_STATE(3035)] = 101844, + [SMALL_STATE(3036)] = 101871, + [SMALL_STATE(3037)] = 101898, + [SMALL_STATE(3038)] = 101925, + [SMALL_STATE(3039)] = 101956, + [SMALL_STATE(3040)] = 101987, + [SMALL_STATE(3041)] = 102016, + [SMALL_STATE(3042)] = 102049, + [SMALL_STATE(3043)] = 102093, + [SMALL_STATE(3044)] = 102123, + [SMALL_STATE(3045)] = 102147, + [SMALL_STATE(3046)] = 102177, + [SMALL_STATE(3047)] = 102203, + [SMALL_STATE(3048)] = 102255, + [SMALL_STATE(3049)] = 102281, + [SMALL_STATE(3050)] = 102333, + [SMALL_STATE(3051)] = 102359, + [SMALL_STATE(3052)] = 102389, + [SMALL_STATE(3053)] = 102419, + [SMALL_STATE(3054)] = 102443, + [SMALL_STATE(3055)] = 102469, + [SMALL_STATE(3056)] = 102495, + [SMALL_STATE(3057)] = 102519, + [SMALL_STATE(3058)] = 102571, + [SMALL_STATE(3059)] = 102623, + [SMALL_STATE(3060)] = 102647, + [SMALL_STATE(3061)] = 102675, + [SMALL_STATE(3062)] = 102699, + [SMALL_STATE(3063)] = 102725, + [SMALL_STATE(3064)] = 102749, + [SMALL_STATE(3065)] = 102801, + [SMALL_STATE(3066)] = 102853, + [SMALL_STATE(3067)] = 102879, + [SMALL_STATE(3068)] = 102909, + [SMALL_STATE(3069)] = 102935, + [SMALL_STATE(3070)] = 102965, + [SMALL_STATE(3071)] = 103011, + [SMALL_STATE(3072)] = 103037, + [SMALL_STATE(3073)] = 103061, + [SMALL_STATE(3074)] = 103091, + [SMALL_STATE(3075)] = 103121, + [SMALL_STATE(3076)] = 103145, + [SMALL_STATE(3077)] = 103175, + [SMALL_STATE(3078)] = 103201, + [SMALL_STATE(3079)] = 103227, + [SMALL_STATE(3080)] = 103259, + [SMALL_STATE(3081)] = 103291, + [SMALL_STATE(3082)] = 103321, + [SMALL_STATE(3083)] = 103347, + [SMALL_STATE(3084)] = 103399, + [SMALL_STATE(3085)] = 103425, + [SMALL_STATE(3086)] = 103451, + [SMALL_STATE(3087)] = 103491, + [SMALL_STATE(3088)] = 103519, + [SMALL_STATE(3089)] = 103547, + [SMALL_STATE(3090)] = 103577, + [SMALL_STATE(3091)] = 103603, + [SMALL_STATE(3092)] = 103631, + [SMALL_STATE(3093)] = 103657, + [SMALL_STATE(3094)] = 103683, + [SMALL_STATE(3095)] = 103713, + [SMALL_STATE(3096)] = 103765, + [SMALL_STATE(3097)] = 103789, + [SMALL_STATE(3098)] = 103817, + [SMALL_STATE(3099)] = 103849, + [SMALL_STATE(3100)] = 103873, + [SMALL_STATE(3101)] = 103925, + [SMALL_STATE(3102)] = 103951, + [SMALL_STATE(3103)] = 103983, + [SMALL_STATE(3104)] = 104007, + [SMALL_STATE(3105)] = 104033, + [SMALL_STATE(3106)] = 104059, + [SMALL_STATE(3107)] = 104087, + [SMALL_STATE(3108)] = 104113, + [SMALL_STATE(3109)] = 104139, + [SMALL_STATE(3110)] = 104169, + [SMALL_STATE(3111)] = 104199, + [SMALL_STATE(3112)] = 104227, + [SMALL_STATE(3113)] = 104251, + [SMALL_STATE(3114)] = 104281, + [SMALL_STATE(3115)] = 104311, + [SMALL_STATE(3116)] = 104341, + [SMALL_STATE(3117)] = 104371, + [SMALL_STATE(3118)] = 104397, + [SMALL_STATE(3119)] = 104425, + [SMALL_STATE(3120)] = 104455, + [SMALL_STATE(3121)] = 104485, + [SMALL_STATE(3122)] = 104513, + [SMALL_STATE(3123)] = 104543, + [SMALL_STATE(3124)] = 104567, + [SMALL_STATE(3125)] = 104597, + [SMALL_STATE(3126)] = 104625, + [SMALL_STATE(3127)] = 104651, + [SMALL_STATE(3128)] = 104679, + [SMALL_STATE(3129)] = 104705, + [SMALL_STATE(3130)] = 104733, + [SMALL_STATE(3131)] = 104763, + [SMALL_STATE(3132)] = 104793, + [SMALL_STATE(3133)] = 104823, + [SMALL_STATE(3134)] = 104853, + [SMALL_STATE(3135)] = 104881, + [SMALL_STATE(3136)] = 104907, + [SMALL_STATE(3137)] = 104933, + [SMALL_STATE(3138)] = 104985, + [SMALL_STATE(3139)] = 105015, + [SMALL_STATE(3140)] = 105041, + [SMALL_STATE(3141)] = 105067, + [SMALL_STATE(3142)] = 105093, + [SMALL_STATE(3143)] = 105120, + [SMALL_STATE(3144)] = 105151, + [SMALL_STATE(3145)] = 105176, + [SMALL_STATE(3146)] = 105201, + [SMALL_STATE(3147)] = 105226, + [SMALL_STATE(3148)] = 105251, + [SMALL_STATE(3149)] = 105276, + [SMALL_STATE(3150)] = 105301, + [SMALL_STATE(3151)] = 105324, + [SMALL_STATE(3152)] = 105349, + [SMALL_STATE(3153)] = 105380, + [SMALL_STATE(3154)] = 105405, + [SMALL_STATE(3155)] = 105434, + [SMALL_STATE(3156)] = 105459, + [SMALL_STATE(3157)] = 105484, + [SMALL_STATE(3158)] = 105509, + [SMALL_STATE(3159)] = 105538, + [SMALL_STATE(3160)] = 105563, + [SMALL_STATE(3161)] = 105588, + [SMALL_STATE(3162)] = 105613, + [SMALL_STATE(3163)] = 105638, + [SMALL_STATE(3164)] = 105667, + [SMALL_STATE(3165)] = 105696, + [SMALL_STATE(3166)] = 105725, + [SMALL_STATE(3167)] = 105750, + [SMALL_STATE(3168)] = 105779, + [SMALL_STATE(3169)] = 105804, + [SMALL_STATE(3170)] = 105841, + [SMALL_STATE(3171)] = 105872, + [SMALL_STATE(3172)] = 105901, + [SMALL_STATE(3173)] = 105926, + [SMALL_STATE(3174)] = 105951, + [SMALL_STATE(3175)] = 105976, + [SMALL_STATE(3176)] = 106005, + [SMALL_STATE(3177)] = 106034, + [SMALL_STATE(3178)] = 106063, + [SMALL_STATE(3179)] = 106088, + [SMALL_STATE(3180)] = 106113, + [SMALL_STATE(3181)] = 106138, + [SMALL_STATE(3182)] = 106163, + [SMALL_STATE(3183)] = 106188, + [SMALL_STATE(3184)] = 106217, + [SMALL_STATE(3185)] = 106246, + [SMALL_STATE(3186)] = 106275, + [SMALL_STATE(3187)] = 106300, + [SMALL_STATE(3188)] = 106325, + [SMALL_STATE(3189)] = 106350, + [SMALL_STATE(3190)] = 106379, + [SMALL_STATE(3191)] = 106404, + [SMALL_STATE(3192)] = 106429, + [SMALL_STATE(3193)] = 106454, + [SMALL_STATE(3194)] = 106479, + [SMALL_STATE(3195)] = 106508, + [SMALL_STATE(3196)] = 106537, + [SMALL_STATE(3197)] = 106566, + [SMALL_STATE(3198)] = 106591, + [SMALL_STATE(3199)] = 106628, + [SMALL_STATE(3200)] = 106653, + [SMALL_STATE(3201)] = 106678, + [SMALL_STATE(3202)] = 106707, + [SMALL_STATE(3203)] = 106732, + [SMALL_STATE(3204)] = 106775, + [SMALL_STATE(3205)] = 106800, + [SMALL_STATE(3206)] = 106825, + [SMALL_STATE(3207)] = 106854, + [SMALL_STATE(3208)] = 106879, + [SMALL_STATE(3209)] = 106904, + [SMALL_STATE(3210)] = 106929, + [SMALL_STATE(3211)] = 106954, + [SMALL_STATE(3212)] = 106979, + [SMALL_STATE(3213)] = 107004, + [SMALL_STATE(3214)] = 107041, + [SMALL_STATE(3215)] = 107070, + [SMALL_STATE(3216)] = 107095, + [SMALL_STATE(3217)] = 107120, + [SMALL_STATE(3218)] = 107149, + [SMALL_STATE(3219)] = 107178, + [SMALL_STATE(3220)] = 107203, + [SMALL_STATE(3221)] = 107232, + [SMALL_STATE(3222)] = 107261, + [SMALL_STATE(3223)] = 107290, + [SMALL_STATE(3224)] = 107319, + [SMALL_STATE(3225)] = 107348, + [SMALL_STATE(3226)] = 107377, + [SMALL_STATE(3227)] = 107404, + [SMALL_STATE(3228)] = 107433, + [SMALL_STATE(3229)] = 107460, + [SMALL_STATE(3230)] = 107489, + [SMALL_STATE(3231)] = 107516, + [SMALL_STATE(3232)] = 107545, + [SMALL_STATE(3233)] = 107570, + [SMALL_STATE(3234)] = 107595, + [SMALL_STATE(3235)] = 107624, + [SMALL_STATE(3236)] = 107649, + [SMALL_STATE(3237)] = 107674, + [SMALL_STATE(3238)] = 107697, + [SMALL_STATE(3239)] = 107722, + [SMALL_STATE(3240)] = 107747, + [SMALL_STATE(3241)] = 107772, + [SMALL_STATE(3242)] = 107797, + [SMALL_STATE(3243)] = 107822, + [SMALL_STATE(3244)] = 107847, + [SMALL_STATE(3245)] = 107876, + [SMALL_STATE(3246)] = 107901, + [SMALL_STATE(3247)] = 107926, + [SMALL_STATE(3248)] = 107951, + [SMALL_STATE(3249)] = 107976, + [SMALL_STATE(3250)] = 108005, + [SMALL_STATE(3251)] = 108032, + [SMALL_STATE(3252)] = 108059, + [SMALL_STATE(3253)] = 108090, + [SMALL_STATE(3254)] = 108115, + [SMALL_STATE(3255)] = 108140, + [SMALL_STATE(3256)] = 108169, + [SMALL_STATE(3257)] = 108194, + [SMALL_STATE(3258)] = 108219, + [SMALL_STATE(3259)] = 108244, + [SMALL_STATE(3260)] = 108269, + [SMALL_STATE(3261)] = 108294, + [SMALL_STATE(3262)] = 108319, + [SMALL_STATE(3263)] = 108344, + [SMALL_STATE(3264)] = 108369, + [SMALL_STATE(3265)] = 108394, + [SMALL_STATE(3266)] = 108433, + [SMALL_STATE(3267)] = 108458, + [SMALL_STATE(3268)] = 108487, + [SMALL_STATE(3269)] = 108516, + [SMALL_STATE(3270)] = 108545, + [SMALL_STATE(3271)] = 108574, + [SMALL_STATE(3272)] = 108599, + [SMALL_STATE(3273)] = 108628, + [SMALL_STATE(3274)] = 108653, + [SMALL_STATE(3275)] = 108682, + [SMALL_STATE(3276)] = 108707, + [SMALL_STATE(3277)] = 108732, + [SMALL_STATE(3278)] = 108761, + [SMALL_STATE(3279)] = 108786, + [SMALL_STATE(3280)] = 108815, + [SMALL_STATE(3281)] = 108840, + [SMALL_STATE(3282)] = 108865, + [SMALL_STATE(3283)] = 108890, + [SMALL_STATE(3284)] = 108915, + [SMALL_STATE(3285)] = 108940, + [SMALL_STATE(3286)] = 108965, + [SMALL_STATE(3287)] = 108994, + [SMALL_STATE(3288)] = 109019, + [SMALL_STATE(3289)] = 109044, + [SMALL_STATE(3290)] = 109069, + [SMALL_STATE(3291)] = 109094, + [SMALL_STATE(3292)] = 109123, + [SMALL_STATE(3293)] = 109150, + [SMALL_STATE(3294)] = 109179, + [SMALL_STATE(3295)] = 109204, + [SMALL_STATE(3296)] = 109229, + [SMALL_STATE(3297)] = 109254, + [SMALL_STATE(3298)] = 109279, + [SMALL_STATE(3299)] = 109304, + [SMALL_STATE(3300)] = 109329, + [SMALL_STATE(3301)] = 109357, + [SMALL_STATE(3302)] = 109379, + [SMALL_STATE(3303)] = 109403, + [SMALL_STATE(3304)] = 109425, + [SMALL_STATE(3305)] = 109449, + [SMALL_STATE(3306)] = 109495, + [SMALL_STATE(3307)] = 109519, + [SMALL_STATE(3308)] = 109543, + [SMALL_STATE(3309)] = 109589, + [SMALL_STATE(3310)] = 109613, + [SMALL_STATE(3311)] = 109637, + [SMALL_STATE(3312)] = 109661, + [SMALL_STATE(3313)] = 109701, + [SMALL_STATE(3314)] = 109723, + [SMALL_STATE(3315)] = 109745, + [SMALL_STATE(3316)] = 109767, + [SMALL_STATE(3317)] = 109789, + [SMALL_STATE(3318)] = 109811, + [SMALL_STATE(3319)] = 109835, + [SMALL_STATE(3320)] = 109861, + [SMALL_STATE(3321)] = 109885, + [SMALL_STATE(3322)] = 109909, + [SMALL_STATE(3323)] = 109933, + [SMALL_STATE(3324)] = 109957, + [SMALL_STATE(3325)] = 109981, + [SMALL_STATE(3326)] = 110015, + [SMALL_STATE(3327)] = 110039, + [SMALL_STATE(3328)] = 110079, + [SMALL_STATE(3329)] = 110113, + [SMALL_STATE(3330)] = 110147, + [SMALL_STATE(3331)] = 110181, + [SMALL_STATE(3332)] = 110205, + [SMALL_STATE(3333)] = 110229, + [SMALL_STATE(3334)] = 110275, + [SMALL_STATE(3335)] = 110321, + [SMALL_STATE(3336)] = 110367, + [SMALL_STATE(3337)] = 110391, + [SMALL_STATE(3338)] = 110415, + [SMALL_STATE(3339)] = 110439, + [SMALL_STATE(3340)] = 110463, + [SMALL_STATE(3341)] = 110487, + [SMALL_STATE(3342)] = 110511, + [SMALL_STATE(3343)] = 110535, + [SMALL_STATE(3344)] = 110557, + [SMALL_STATE(3345)] = 110581, + [SMALL_STATE(3346)] = 110605, + [SMALL_STATE(3347)] = 110647, + [SMALL_STATE(3348)] = 110671, + [SMALL_STATE(3349)] = 110695, + [SMALL_STATE(3350)] = 110719, + [SMALL_STATE(3351)] = 110743, + [SMALL_STATE(3352)] = 110767, + [SMALL_STATE(3353)] = 110791, + [SMALL_STATE(3354)] = 110831, + [SMALL_STATE(3355)] = 110855, + [SMALL_STATE(3356)] = 110879, + [SMALL_STATE(3357)] = 110903, + [SMALL_STATE(3358)] = 110927, + [SMALL_STATE(3359)] = 110949, + [SMALL_STATE(3360)] = 110995, + [SMALL_STATE(3361)] = 111019, + [SMALL_STATE(3362)] = 111043, + [SMALL_STATE(3363)] = 111067, + [SMALL_STATE(3364)] = 111091, + [SMALL_STATE(3365)] = 111115, + [SMALL_STATE(3366)] = 111139, + [SMALL_STATE(3367)] = 111161, + [SMALL_STATE(3368)] = 111185, + [SMALL_STATE(3369)] = 111209, + [SMALL_STATE(3370)] = 111231, + [SMALL_STATE(3371)] = 111255, + [SMALL_STATE(3372)] = 111279, + [SMALL_STATE(3373)] = 111303, + [SMALL_STATE(3374)] = 111327, + [SMALL_STATE(3375)] = 111351, + [SMALL_STATE(3376)] = 111375, + [SMALL_STATE(3377)] = 111399, + [SMALL_STATE(3378)] = 111423, + [SMALL_STATE(3379)] = 111447, + [SMALL_STATE(3380)] = 111471, + [SMALL_STATE(3381)] = 111495, + [SMALL_STATE(3382)] = 111519, + [SMALL_STATE(3383)] = 111543, + [SMALL_STATE(3384)] = 111569, + [SMALL_STATE(3385)] = 111593, + [SMALL_STATE(3386)] = 111635, + [SMALL_STATE(3387)] = 111659, + [SMALL_STATE(3388)] = 111683, + [SMALL_STATE(3389)] = 111707, + [SMALL_STATE(3390)] = 111753, + [SMALL_STATE(3391)] = 111789, + [SMALL_STATE(3392)] = 111813, + [SMALL_STATE(3393)] = 111837, + [SMALL_STATE(3394)] = 111861, + [SMALL_STATE(3395)] = 111885, + [SMALL_STATE(3396)] = 111909, + [SMALL_STATE(3397)] = 111933, + [SMALL_STATE(3398)] = 111957, + [SMALL_STATE(3399)] = 111997, + [SMALL_STATE(3400)] = 112021, + [SMALL_STATE(3401)] = 112045, + [SMALL_STATE(3402)] = 112069, + [SMALL_STATE(3403)] = 112093, + [SMALL_STATE(3404)] = 112115, + [SMALL_STATE(3405)] = 112139, + [SMALL_STATE(3406)] = 112161, + [SMALL_STATE(3407)] = 112197, + [SMALL_STATE(3408)] = 112221, + [SMALL_STATE(3409)] = 112243, + [SMALL_STATE(3410)] = 112267, + [SMALL_STATE(3411)] = 112291, + [SMALL_STATE(3412)] = 112319, + [SMALL_STATE(3413)] = 112347, + [SMALL_STATE(3414)] = 112375, + [SMALL_STATE(3415)] = 112403, + [SMALL_STATE(3416)] = 112431, + [SMALL_STATE(3417)] = 112459, + [SMALL_STATE(3418)] = 112505, + [SMALL_STATE(3419)] = 112533, + [SMALL_STATE(3420)] = 112561, + [SMALL_STATE(3421)] = 112589, + [SMALL_STATE(3422)] = 112617, + [SMALL_STATE(3423)] = 112645, + [SMALL_STATE(3424)] = 112669, + [SMALL_STATE(3425)] = 112691, + [SMALL_STATE(3426)] = 112715, + [SMALL_STATE(3427)] = 112761, + [SMALL_STATE(3428)] = 112785, + [SMALL_STATE(3429)] = 112809, + [SMALL_STATE(3430)] = 112833, + [SMALL_STATE(3431)] = 112879, + [SMALL_STATE(3432)] = 112903, + [SMALL_STATE(3433)] = 112927, + [SMALL_STATE(3434)] = 112951, + [SMALL_STATE(3435)] = 112973, + [SMALL_STATE(3436)] = 112997, + [SMALL_STATE(3437)] = 113024, + [SMALL_STATE(3438)] = 113045, + [SMALL_STATE(3439)] = 113066, + [SMALL_STATE(3440)] = 113087, + [SMALL_STATE(3441)] = 113108, + [SMALL_STATE(3442)] = 113129, + [SMALL_STATE(3443)] = 113150, + [SMALL_STATE(3444)] = 113173, + [SMALL_STATE(3445)] = 113196, + [SMALL_STATE(3446)] = 113235, + [SMALL_STATE(3447)] = 113256, + [SMALL_STATE(3448)] = 113277, + [SMALL_STATE(3449)] = 113300, + [SMALL_STATE(3450)] = 113325, + [SMALL_STATE(3451)] = 113362, + [SMALL_STATE(3452)] = 113399, + [SMALL_STATE(3453)] = 113436, + [SMALL_STATE(3454)] = 113473, + [SMALL_STATE(3455)] = 113494, + [SMALL_STATE(3456)] = 113517, + [SMALL_STATE(3457)] = 113538, + [SMALL_STATE(3458)] = 113565, + [SMALL_STATE(3459)] = 113586, + [SMALL_STATE(3460)] = 113607, + [SMALL_STATE(3461)] = 113628, + [SMALL_STATE(3462)] = 113649, + [SMALL_STATE(3463)] = 113672, + [SMALL_STATE(3464)] = 113693, + [SMALL_STATE(3465)] = 113720, + [SMALL_STATE(3466)] = 113759, + [SMALL_STATE(3467)] = 113780, + [SMALL_STATE(3468)] = 113801, + [SMALL_STATE(3469)] = 113822, + [SMALL_STATE(3470)] = 113843, + [SMALL_STATE(3471)] = 113880, + [SMALL_STATE(3472)] = 113901, + [SMALL_STATE(3473)] = 113924, + [SMALL_STATE(3474)] = 113945, + [SMALL_STATE(3475)] = 113984, + [SMALL_STATE(3476)] = 114005, + [SMALL_STATE(3477)] = 114026, + [SMALL_STATE(3478)] = 114047, + [SMALL_STATE(3479)] = 114070, + [SMALL_STATE(3480)] = 114091, + [SMALL_STATE(3481)] = 114112, + [SMALL_STATE(3482)] = 114135, + [SMALL_STATE(3483)] = 114156, + [SMALL_STATE(3484)] = 114179, + [SMALL_STATE(3485)] = 114200, + [SMALL_STATE(3486)] = 114223, + [SMALL_STATE(3487)] = 114244, + [SMALL_STATE(3488)] = 114283, + [SMALL_STATE(3489)] = 114322, + [SMALL_STATE(3490)] = 114343, + [SMALL_STATE(3491)] = 114366, + [SMALL_STATE(3492)] = 114403, + [SMALL_STATE(3493)] = 114426, + [SMALL_STATE(3494)] = 114447, + [SMALL_STATE(3495)] = 114468, + [SMALL_STATE(3496)] = 114495, + [SMALL_STATE(3497)] = 114518, + [SMALL_STATE(3498)] = 114555, + [SMALL_STATE(3499)] = 114576, + [SMALL_STATE(3500)] = 114603, + [SMALL_STATE(3501)] = 114630, + [SMALL_STATE(3502)] = 114657, + [SMALL_STATE(3503)] = 114684, + [SMALL_STATE(3504)] = 114711, + [SMALL_STATE(3505)] = 114738, + [SMALL_STATE(3506)] = 114765, + [SMALL_STATE(3507)] = 114788, + [SMALL_STATE(3508)] = 114809, + [SMALL_STATE(3509)] = 114830, + [SMALL_STATE(3510)] = 114857, + [SMALL_STATE(3511)] = 114884, + [SMALL_STATE(3512)] = 114907, + [SMALL_STATE(3513)] = 114928, + [SMALL_STATE(3514)] = 114951, + [SMALL_STATE(3515)] = 114972, + [SMALL_STATE(3516)] = 114993, + [SMALL_STATE(3517)] = 115020, + [SMALL_STATE(3518)] = 115041, + [SMALL_STATE(3519)] = 115080, + [SMALL_STATE(3520)] = 115111, + [SMALL_STATE(3521)] = 115134, + [SMALL_STATE(3522)] = 115171, + [SMALL_STATE(3523)] = 115194, + [SMALL_STATE(3524)] = 115217, + [SMALL_STATE(3525)] = 115238, + [SMALL_STATE(3526)] = 115259, + [SMALL_STATE(3527)] = 115280, + [SMALL_STATE(3528)] = 115303, + [SMALL_STATE(3529)] = 115330, + [SMALL_STATE(3530)] = 115353, + [SMALL_STATE(3531)] = 115374, + [SMALL_STATE(3532)] = 115401, + [SMALL_STATE(3533)] = 115424, + [SMALL_STATE(3534)] = 115447, + [SMALL_STATE(3535)] = 115470, + [SMALL_STATE(3536)] = 115491, + [SMALL_STATE(3537)] = 115512, + [SMALL_STATE(3538)] = 115533, + [SMALL_STATE(3539)] = 115554, + [SMALL_STATE(3540)] = 115577, + [SMALL_STATE(3541)] = 115616, + [SMALL_STATE(3542)] = 115637, + [SMALL_STATE(3543)] = 115658, + [SMALL_STATE(3544)] = 115681, + [SMALL_STATE(3545)] = 115708, + [SMALL_STATE(3546)] = 115729, + [SMALL_STATE(3547)] = 115750, + [SMALL_STATE(3548)] = 115771, + [SMALL_STATE(3549)] = 115794, + [SMALL_STATE(3550)] = 115815, + [SMALL_STATE(3551)] = 115836, + [SMALL_STATE(3552)] = 115863, + [SMALL_STATE(3553)] = 115890, + [SMALL_STATE(3554)] = 115913, + [SMALL_STATE(3555)] = 115934, + [SMALL_STATE(3556)] = 115957, + [SMALL_STATE(3557)] = 115980, + [SMALL_STATE(3558)] = 116001, + [SMALL_STATE(3559)] = 116024, + [SMALL_STATE(3560)] = 116045, + [SMALL_STATE(3561)] = 116068, + [SMALL_STATE(3562)] = 116097, + [SMALL_STATE(3563)] = 116118, + [SMALL_STATE(3564)] = 116141, + [SMALL_STATE(3565)] = 116162, + [SMALL_STATE(3566)] = 116199, + [SMALL_STATE(3567)] = 116226, + [SMALL_STATE(3568)] = 116247, + [SMALL_STATE(3569)] = 116268, + [SMALL_STATE(3570)] = 116289, + [SMALL_STATE(3571)] = 116316, + [SMALL_STATE(3572)] = 116342, + [SMALL_STATE(3573)] = 116374, + [SMALL_STATE(3574)] = 116398, + [SMALL_STATE(3575)] = 116424, + [SMALL_STATE(3576)] = 116460, + [SMALL_STATE(3577)] = 116484, + [SMALL_STATE(3578)] = 116516, + [SMALL_STATE(3579)] = 116542, + [SMALL_STATE(3580)] = 116566, + [SMALL_STATE(3581)] = 116600, + [SMALL_STATE(3582)] = 116624, + [SMALL_STATE(3583)] = 116658, + [SMALL_STATE(3584)] = 116684, + [SMALL_STATE(3585)] = 116706, + [SMALL_STATE(3586)] = 116730, + [SMALL_STATE(3587)] = 116752, + [SMALL_STATE(3588)] = 116788, + [SMALL_STATE(3589)] = 116816, + [SMALL_STATE(3590)] = 116842, + [SMALL_STATE(3591)] = 116878, + [SMALL_STATE(3592)] = 116902, + [SMALL_STATE(3593)] = 116928, + [SMALL_STATE(3594)] = 116960, + [SMALL_STATE(3595)] = 116982, + [SMALL_STATE(3596)] = 117006, + [SMALL_STATE(3597)] = 117032, + [SMALL_STATE(3598)] = 117058, + [SMALL_STATE(3599)] = 117080, + [SMALL_STATE(3600)] = 117102, + [SMALL_STATE(3601)] = 117128, + [SMALL_STATE(3602)] = 117158, + [SMALL_STATE(3603)] = 117180, + [SMALL_STATE(3604)] = 117206, + [SMALL_STATE(3605)] = 117230, + [SMALL_STATE(3606)] = 117252, + [SMALL_STATE(3607)] = 117274, + [SMALL_STATE(3608)] = 117300, + [SMALL_STATE(3609)] = 117334, + [SMALL_STATE(3610)] = 117364, + [SMALL_STATE(3611)] = 117390, + [SMALL_STATE(3612)] = 117416, + [SMALL_STATE(3613)] = 117448, + [SMALL_STATE(3614)] = 117480, + [SMALL_STATE(3615)] = 117513, + [SMALL_STATE(3616)] = 117544, + [SMALL_STATE(3617)] = 117565, + [SMALL_STATE(3618)] = 117596, + [SMALL_STATE(3619)] = 117627, + [SMALL_STATE(3620)] = 117660, + [SMALL_STATE(3621)] = 117685, + [SMALL_STATE(3622)] = 117718, + [SMALL_STATE(3623)] = 117751, + [SMALL_STATE(3624)] = 117784, + [SMALL_STATE(3625)] = 117817, + [SMALL_STATE(3626)] = 117850, + [SMALL_STATE(3627)] = 117881, + [SMALL_STATE(3628)] = 117912, + [SMALL_STATE(3629)] = 117937, + [SMALL_STATE(3630)] = 117958, + [SMALL_STATE(3631)] = 117991, + [SMALL_STATE(3632)] = 118014, + [SMALL_STATE(3633)] = 118047, + [SMALL_STATE(3634)] = 118070, + [SMALL_STATE(3635)] = 118101, + [SMALL_STATE(3636)] = 118122, + [SMALL_STATE(3637)] = 118147, + [SMALL_STATE(3638)] = 118178, + [SMALL_STATE(3639)] = 118201, + [SMALL_STATE(3640)] = 118234, + [SMALL_STATE(3641)] = 118267, + [SMALL_STATE(3642)] = 118288, + [SMALL_STATE(3643)] = 118321, + [SMALL_STATE(3644)] = 118352, + [SMALL_STATE(3645)] = 118377, + [SMALL_STATE(3646)] = 118410, + [SMALL_STATE(3647)] = 118431, + [SMALL_STATE(3648)] = 118454, + [SMALL_STATE(3649)] = 118475, + [SMALL_STATE(3650)] = 118506, + [SMALL_STATE(3651)] = 118527, + [SMALL_STATE(3652)] = 118552, + [SMALL_STATE(3653)] = 118577, + [SMALL_STATE(3654)] = 118610, + [SMALL_STATE(3655)] = 118643, + [SMALL_STATE(3656)] = 118676, + [SMALL_STATE(3657)] = 118707, + [SMALL_STATE(3658)] = 118730, + [SMALL_STATE(3659)] = 118761, + [SMALL_STATE(3660)] = 118792, + [SMALL_STATE(3661)] = 118825, + [SMALL_STATE(3662)] = 118858, + [SMALL_STATE(3663)] = 118889, + [SMALL_STATE(3664)] = 118922, + [SMALL_STATE(3665)] = 118953, + [SMALL_STATE(3666)] = 118976, + [SMALL_STATE(3667)] = 119011, + [SMALL_STATE(3668)] = 119044, + [SMALL_STATE(3669)] = 119077, + [SMALL_STATE(3670)] = 119108, + [SMALL_STATE(3671)] = 119129, + [SMALL_STATE(3672)] = 119162, + [SMALL_STATE(3673)] = 119195, + [SMALL_STATE(3674)] = 119228, + [SMALL_STATE(3675)] = 119259, + [SMALL_STATE(3676)] = 119280, + [SMALL_STATE(3677)] = 119309, + [SMALL_STATE(3678)] = 119342, + [SMALL_STATE(3679)] = 119377, + [SMALL_STATE(3680)] = 119410, + [SMALL_STATE(3681)] = 119443, + [SMALL_STATE(3682)] = 119474, + [SMALL_STATE(3683)] = 119507, + [SMALL_STATE(3684)] = 119538, + [SMALL_STATE(3685)] = 119559, + [SMALL_STATE(3686)] = 119592, + [SMALL_STATE(3687)] = 119625, + [SMALL_STATE(3688)] = 119656, + [SMALL_STATE(3689)] = 119689, + [SMALL_STATE(3690)] = 119722, + [SMALL_STATE(3691)] = 119755, + [SMALL_STATE(3692)] = 119786, + [SMALL_STATE(3693)] = 119817, + [SMALL_STATE(3694)] = 119848, + [SMALL_STATE(3695)] = 119879, + [SMALL_STATE(3696)] = 119910, + [SMALL_STATE(3697)] = 119933, + [SMALL_STATE(3698)] = 119964, + [SMALL_STATE(3699)] = 119997, + [SMALL_STATE(3700)] = 120030, + [SMALL_STATE(3701)] = 120063, + [SMALL_STATE(3702)] = 120091, + [SMALL_STATE(3703)] = 120117, + [SMALL_STATE(3704)] = 120145, + [SMALL_STATE(3705)] = 120167, + [SMALL_STATE(3706)] = 120187, + [SMALL_STATE(3707)] = 120209, + [SMALL_STATE(3708)] = 120231, + [SMALL_STATE(3709)] = 120255, + [SMALL_STATE(3710)] = 120275, + [SMALL_STATE(3711)] = 120295, + [SMALL_STATE(3712)] = 120315, + [SMALL_STATE(3713)] = 120341, + [SMALL_STATE(3714)] = 120361, + [SMALL_STATE(3715)] = 120389, + [SMALL_STATE(3716)] = 120417, + [SMALL_STATE(3717)] = 120445, + [SMALL_STATE(3718)] = 120473, + [SMALL_STATE(3719)] = 120497, + [SMALL_STATE(3720)] = 120525, + [SMALL_STATE(3721)] = 120549, + [SMALL_STATE(3722)] = 120577, + [SMALL_STATE(3723)] = 120601, + [SMALL_STATE(3724)] = 120619, + [SMALL_STATE(3725)] = 120647, + [SMALL_STATE(3726)] = 120675, + [SMALL_STATE(3727)] = 120703, + [SMALL_STATE(3728)] = 120725, + [SMALL_STATE(3729)] = 120751, + [SMALL_STATE(3730)] = 120775, + [SMALL_STATE(3731)] = 120803, + [SMALL_STATE(3732)] = 120831, + [SMALL_STATE(3733)] = 120859, + [SMALL_STATE(3734)] = 120887, + [SMALL_STATE(3735)] = 120915, + [SMALL_STATE(3736)] = 120943, + [SMALL_STATE(3737)] = 120971, + [SMALL_STATE(3738)] = 120999, + [SMALL_STATE(3739)] = 121027, + [SMALL_STATE(3740)] = 121047, + [SMALL_STATE(3741)] = 121075, + [SMALL_STATE(3742)] = 121103, + [SMALL_STATE(3743)] = 121123, + [SMALL_STATE(3744)] = 121143, + [SMALL_STATE(3745)] = 121171, + [SMALL_STATE(3746)] = 121199, + [SMALL_STATE(3747)] = 121227, + [SMALL_STATE(3748)] = 121255, + [SMALL_STATE(3749)] = 121275, + [SMALL_STATE(3750)] = 121303, + [SMALL_STATE(3751)] = 121331, + [SMALL_STATE(3752)] = 121359, + [SMALL_STATE(3753)] = 121387, + [SMALL_STATE(3754)] = 121407, + [SMALL_STATE(3755)] = 121435, + [SMALL_STATE(3756)] = 121455, + [SMALL_STATE(3757)] = 121475, + [SMALL_STATE(3758)] = 121503, + [SMALL_STATE(3759)] = 121531, + [SMALL_STATE(3760)] = 121559, + [SMALL_STATE(3761)] = 121587, + [SMALL_STATE(3762)] = 121615, + [SMALL_STATE(3763)] = 121643, + [SMALL_STATE(3764)] = 121671, + [SMALL_STATE(3765)] = 121699, + [SMALL_STATE(3766)] = 121721, + [SMALL_STATE(3767)] = 121749, + [SMALL_STATE(3768)] = 121777, + [SMALL_STATE(3769)] = 121805, + [SMALL_STATE(3770)] = 121831, + [SMALL_STATE(3771)] = 121849, + [SMALL_STATE(3772)] = 121877, + [SMALL_STATE(3773)] = 121905, + [SMALL_STATE(3774)] = 121935, + [SMALL_STATE(3775)] = 121955, + [SMALL_STATE(3776)] = 121979, + [SMALL_STATE(3777)] = 121999, + [SMALL_STATE(3778)] = 122019, + [SMALL_STATE(3779)] = 122041, + [SMALL_STATE(3780)] = 122069, + [SMALL_STATE(3781)] = 122092, + [SMALL_STATE(3782)] = 122113, + [SMALL_STATE(3783)] = 122138, + [SMALL_STATE(3784)] = 122157, + [SMALL_STATE(3785)] = 122180, + [SMALL_STATE(3786)] = 122205, + [SMALL_STATE(3787)] = 122230, + [SMALL_STATE(3788)] = 122255, + [SMALL_STATE(3789)] = 122280, + [SMALL_STATE(3790)] = 122301, + [SMALL_STATE(3791)] = 122332, + [SMALL_STATE(3792)] = 122355, + [SMALL_STATE(3793)] = 122380, + [SMALL_STATE(3794)] = 122405, + [SMALL_STATE(3795)] = 122430, + [SMALL_STATE(3796)] = 122449, + [SMALL_STATE(3797)] = 122474, + [SMALL_STATE(3798)] = 122497, + [SMALL_STATE(3799)] = 122524, + [SMALL_STATE(3800)] = 122549, + [SMALL_STATE(3801)] = 122578, + [SMALL_STATE(3802)] = 122603, + [SMALL_STATE(3803)] = 122628, + [SMALL_STATE(3804)] = 122647, + [SMALL_STATE(3805)] = 122666, + [SMALL_STATE(3806)] = 122687, + [SMALL_STATE(3807)] = 122712, + [SMALL_STATE(3808)] = 122739, + [SMALL_STATE(3809)] = 122764, + [SMALL_STATE(3810)] = 122783, + [SMALL_STATE(3811)] = 122808, + [SMALL_STATE(3812)] = 122831, + [SMALL_STATE(3813)] = 122852, + [SMALL_STATE(3814)] = 122873, + [SMALL_STATE(3815)] = 122894, + [SMALL_STATE(3816)] = 122919, + [SMALL_STATE(3817)] = 122946, + [SMALL_STATE(3818)] = 122965, + [SMALL_STATE(3819)] = 122986, + [SMALL_STATE(3820)] = 123005, + [SMALL_STATE(3821)] = 123030, + [SMALL_STATE(3822)] = 123049, + [SMALL_STATE(3823)] = 123068, + [SMALL_STATE(3824)] = 123087, + [SMALL_STATE(3825)] = 123114, + [SMALL_STATE(3826)] = 123139, + [SMALL_STATE(3827)] = 123165, + [SMALL_STATE(3828)] = 123189, + [SMALL_STATE(3829)] = 123211, + [SMALL_STATE(3830)] = 123235, + [SMALL_STATE(3831)] = 123261, + [SMALL_STATE(3832)] = 123287, + [SMALL_STATE(3833)] = 123305, + [SMALL_STATE(3834)] = 123333, + [SMALL_STATE(3835)] = 123351, + [SMALL_STATE(3836)] = 123379, + [SMALL_STATE(3837)] = 123401, + [SMALL_STATE(3838)] = 123429, + [SMALL_STATE(3839)] = 123457, + [SMALL_STATE(3840)] = 123483, + [SMALL_STATE(3841)] = 123511, + [SMALL_STATE(3842)] = 123537, + [SMALL_STATE(3843)] = 123563, + [SMALL_STATE(3844)] = 123589, + [SMALL_STATE(3845)] = 123607, + [SMALL_STATE(3846)] = 123625, + [SMALL_STATE(3847)] = 123647, + [SMALL_STATE(3848)] = 123675, + [SMALL_STATE(3849)] = 123703, + [SMALL_STATE(3850)] = 123725, + [SMALL_STATE(3851)] = 123749, + [SMALL_STATE(3852)] = 123777, + [SMALL_STATE(3853)] = 123805, + [SMALL_STATE(3854)] = 123833, + [SMALL_STATE(3855)] = 123861, + [SMALL_STATE(3856)] = 123889, + [SMALL_STATE(3857)] = 123917, + [SMALL_STATE(3858)] = 123943, + [SMALL_STATE(3859)] = 123971, + [SMALL_STATE(3860)] = 123999, + [SMALL_STATE(3861)] = 124027, + [SMALL_STATE(3862)] = 124053, + [SMALL_STATE(3863)] = 124079, + [SMALL_STATE(3864)] = 124107, + [SMALL_STATE(3865)] = 124133, + [SMALL_STATE(3866)] = 124161, + [SMALL_STATE(3867)] = 124183, + [SMALL_STATE(3868)] = 124207, + [SMALL_STATE(3869)] = 124235, + [SMALL_STATE(3870)] = 124259, + [SMALL_STATE(3871)] = 124287, + [SMALL_STATE(3872)] = 124309, + [SMALL_STATE(3873)] = 124333, + [SMALL_STATE(3874)] = 124361, + [SMALL_STATE(3875)] = 124389, + [SMALL_STATE(3876)] = 124409, + [SMALL_STATE(3877)] = 124437, + [SMALL_STATE(3878)] = 124459, + [SMALL_STATE(3879)] = 124485, + [SMALL_STATE(3880)] = 124507, + [SMALL_STATE(3881)] = 124533, + [SMALL_STATE(3882)] = 124551, + [SMALL_STATE(3883)] = 124579, + [SMALL_STATE(3884)] = 124605, + [SMALL_STATE(3885)] = 124633, + [SMALL_STATE(3886)] = 124651, + [SMALL_STATE(3887)] = 124675, + [SMALL_STATE(3888)] = 124701, + [SMALL_STATE(3889)] = 124723, + [SMALL_STATE(3890)] = 124741, + [SMALL_STATE(3891)] = 124769, + [SMALL_STATE(3892)] = 124797, + [SMALL_STATE(3893)] = 124817, + [SMALL_STATE(3894)] = 124845, + [SMALL_STATE(3895)] = 124873, + [SMALL_STATE(3896)] = 124901, + [SMALL_STATE(3897)] = 124929, + [SMALL_STATE(3898)] = 124957, + [SMALL_STATE(3899)] = 124983, + [SMALL_STATE(3900)] = 125011, + [SMALL_STATE(3901)] = 125039, + [SMALL_STATE(3902)] = 125067, + [SMALL_STATE(3903)] = 125095, + [SMALL_STATE(3904)] = 125123, + [SMALL_STATE(3905)] = 125151, + [SMALL_STATE(3906)] = 125171, + [SMALL_STATE(3907)] = 125191, + [SMALL_STATE(3908)] = 125215, + [SMALL_STATE(3909)] = 125243, + [SMALL_STATE(3910)] = 125263, + [SMALL_STATE(3911)] = 125283, + [SMALL_STATE(3912)] = 125303, + [SMALL_STATE(3913)] = 125329, + [SMALL_STATE(3914)] = 125357, + [SMALL_STATE(3915)] = 125383, + [SMALL_STATE(3916)] = 125409, + [SMALL_STATE(3917)] = 125431, + [SMALL_STATE(3918)] = 125451, + [SMALL_STATE(3919)] = 125479, + [SMALL_STATE(3920)] = 125507, + [SMALL_STATE(3921)] = 125525, + [SMALL_STATE(3922)] = 125543, + [SMALL_STATE(3923)] = 125571, + [SMALL_STATE(3924)] = 125599, + [SMALL_STATE(3925)] = 125617, + [SMALL_STATE(3926)] = 125643, + [SMALL_STATE(3927)] = 125661, + [SMALL_STATE(3928)] = 125689, + [SMALL_STATE(3929)] = 125707, + [SMALL_STATE(3930)] = 125725, + [SMALL_STATE(3931)] = 125751, + [SMALL_STATE(3932)] = 125779, + [SMALL_STATE(3933)] = 125807, + [SMALL_STATE(3934)] = 125831, + [SMALL_STATE(3935)] = 125854, + [SMALL_STATE(3936)] = 125875, + [SMALL_STATE(3937)] = 125898, + [SMALL_STATE(3938)] = 125921, + [SMALL_STATE(3939)] = 125946, + [SMALL_STATE(3940)] = 125967, + [SMALL_STATE(3941)] = 125988, + [SMALL_STATE(3942)] = 126013, + [SMALL_STATE(3943)] = 126038, + [SMALL_STATE(3944)] = 126063, + [SMALL_STATE(3945)] = 126086, + [SMALL_STATE(3946)] = 126107, + [SMALL_STATE(3947)] = 126130, + [SMALL_STATE(3948)] = 126155, + [SMALL_STATE(3949)] = 126178, + [SMALL_STATE(3950)] = 126201, + [SMALL_STATE(3951)] = 126224, + [SMALL_STATE(3952)] = 126247, + [SMALL_STATE(3953)] = 126272, + [SMALL_STATE(3954)] = 126293, + [SMALL_STATE(3955)] = 126314, + [SMALL_STATE(3956)] = 126333, + [SMALL_STATE(3957)] = 126356, + [SMALL_STATE(3958)] = 126379, + [SMALL_STATE(3959)] = 126402, + [SMALL_STATE(3960)] = 126427, + [SMALL_STATE(3961)] = 126450, + [SMALL_STATE(3962)] = 126469, + [SMALL_STATE(3963)] = 126486, + [SMALL_STATE(3964)] = 126505, + [SMALL_STATE(3965)] = 126528, + [SMALL_STATE(3966)] = 126549, + [SMALL_STATE(3967)] = 126572, + [SMALL_STATE(3968)] = 126595, + [SMALL_STATE(3969)] = 126618, + [SMALL_STATE(3970)] = 126637, + [SMALL_STATE(3971)] = 126656, + [SMALL_STATE(3972)] = 126677, + [SMALL_STATE(3973)] = 126694, + [SMALL_STATE(3974)] = 126719, + [SMALL_STATE(3975)] = 126742, + [SMALL_STATE(3976)] = 126765, + [SMALL_STATE(3977)] = 126788, + [SMALL_STATE(3978)] = 126809, + [SMALL_STATE(3979)] = 126828, + [SMALL_STATE(3980)] = 126853, + [SMALL_STATE(3981)] = 126872, + [SMALL_STATE(3982)] = 126895, + [SMALL_STATE(3983)] = 126920, + [SMALL_STATE(3984)] = 126943, + [SMALL_STATE(3985)] = 126962, + [SMALL_STATE(3986)] = 126985, + [SMALL_STATE(3987)] = 127010, + [SMALL_STATE(3988)] = 127033, + [SMALL_STATE(3989)] = 127058, + [SMALL_STATE(3990)] = 127081, + [SMALL_STATE(3991)] = 127104, + [SMALL_STATE(3992)] = 127129, + [SMALL_STATE(3993)] = 127154, + [SMALL_STATE(3994)] = 127173, + [SMALL_STATE(3995)] = 127196, + [SMALL_STATE(3996)] = 127215, + [SMALL_STATE(3997)] = 127234, + [SMALL_STATE(3998)] = 127257, + [SMALL_STATE(3999)] = 127280, + [SMALL_STATE(4000)] = 127299, + [SMALL_STATE(4001)] = 127318, + [SMALL_STATE(4002)] = 127341, + [SMALL_STATE(4003)] = 127362, + [SMALL_STATE(4004)] = 127381, + [SMALL_STATE(4005)] = 127396, + [SMALL_STATE(4006)] = 127419, + [SMALL_STATE(4007)] = 127438, + [SMALL_STATE(4008)] = 127461, + [SMALL_STATE(4009)] = 127484, + [SMALL_STATE(4010)] = 127507, + [SMALL_STATE(4011)] = 127530, + [SMALL_STATE(4012)] = 127555, + [SMALL_STATE(4013)] = 127578, + [SMALL_STATE(4014)] = 127601, + [SMALL_STATE(4015)] = 127626, + [SMALL_STATE(4016)] = 127645, + [SMALL_STATE(4017)] = 127666, + [SMALL_STATE(4018)] = 127687, + [SMALL_STATE(4019)] = 127710, + [SMALL_STATE(4020)] = 127731, + [SMALL_STATE(4021)] = 127756, + [SMALL_STATE(4022)] = 127777, + [SMALL_STATE(4023)] = 127798, + [SMALL_STATE(4024)] = 127823, + [SMALL_STATE(4025)] = 127842, + [SMALL_STATE(4026)] = 127865, + [SMALL_STATE(4027)] = 127886, + [SMALL_STATE(4028)] = 127907, + [SMALL_STATE(4029)] = 127928, + [SMALL_STATE(4030)] = 127951, + [SMALL_STATE(4031)] = 127972, + [SMALL_STATE(4032)] = 127993, + [SMALL_STATE(4033)] = 128014, + [SMALL_STATE(4034)] = 128037, + [SMALL_STATE(4035)] = 128060, + [SMALL_STATE(4036)] = 128081, + [SMALL_STATE(4037)] = 128104, + [SMALL_STATE(4038)] = 128127, + [SMALL_STATE(4039)] = 128148, + [SMALL_STATE(4040)] = 128173, + [SMALL_STATE(4041)] = 128198, + [SMALL_STATE(4042)] = 128223, + [SMALL_STATE(4043)] = 128248, + [SMALL_STATE(4044)] = 128263, + [SMALL_STATE(4045)] = 128288, + [SMALL_STATE(4046)] = 128313, + [SMALL_STATE(4047)] = 128334, + [SMALL_STATE(4048)] = 128357, + [SMALL_STATE(4049)] = 128380, + [SMALL_STATE(4050)] = 128401, + [SMALL_STATE(4051)] = 128416, + [SMALL_STATE(4052)] = 128437, + [SMALL_STATE(4053)] = 128462, + [SMALL_STATE(4054)] = 128483, + [SMALL_STATE(4055)] = 128506, + [SMALL_STATE(4056)] = 128525, + [SMALL_STATE(4057)] = 128550, + [SMALL_STATE(4058)] = 128573, + [SMALL_STATE(4059)] = 128590, + [SMALL_STATE(4060)] = 128613, + [SMALL_STATE(4061)] = 128638, + [SMALL_STATE(4062)] = 128663, + [SMALL_STATE(4063)] = 128688, + [SMALL_STATE(4064)] = 128709, + [SMALL_STATE(4065)] = 128732, + [SMALL_STATE(4066)] = 128755, + [SMALL_STATE(4067)] = 128770, + [SMALL_STATE(4068)] = 128785, + [SMALL_STATE(4069)] = 128808, + [SMALL_STATE(4070)] = 128833, + [SMALL_STATE(4071)] = 128858, + [SMALL_STATE(4072)] = 128883, + [SMALL_STATE(4073)] = 128904, + [SMALL_STATE(4074)] = 128925, + [SMALL_STATE(4075)] = 128948, + [SMALL_STATE(4076)] = 128969, + [SMALL_STATE(4077)] = 128986, + [SMALL_STATE(4078)] = 129005, + [SMALL_STATE(4079)] = 129022, + [SMALL_STATE(4080)] = 129037, + [SMALL_STATE(4081)] = 129060, + [SMALL_STATE(4082)] = 129080, + [SMALL_STATE(4083)] = 129098, + [SMALL_STATE(4084)] = 129120, + [SMALL_STATE(4085)] = 129138, + [SMALL_STATE(4086)] = 129158, + [SMALL_STATE(4087)] = 129178, + [SMALL_STATE(4088)] = 129198, + [SMALL_STATE(4089)] = 129218, + [SMALL_STATE(4090)] = 129236, + [SMALL_STATE(4091)] = 129254, + [SMALL_STATE(4092)] = 129272, + [SMALL_STATE(4093)] = 129286, + [SMALL_STATE(4094)] = 129302, + [SMALL_STATE(4095)] = 129324, + [SMALL_STATE(4096)] = 129346, + [SMALL_STATE(4097)] = 129368, + [SMALL_STATE(4098)] = 129388, + [SMALL_STATE(4099)] = 129408, + [SMALL_STATE(4100)] = 129428, + [SMALL_STATE(4101)] = 129450, + [SMALL_STATE(4102)] = 129466, + [SMALL_STATE(4103)] = 129482, + [SMALL_STATE(4104)] = 129504, + [SMALL_STATE(4105)] = 129520, + [SMALL_STATE(4106)] = 129540, + [SMALL_STATE(4107)] = 129558, + [SMALL_STATE(4108)] = 129580, + [SMALL_STATE(4109)] = 129602, + [SMALL_STATE(4110)] = 129616, + [SMALL_STATE(4111)] = 129638, + [SMALL_STATE(4112)] = 129658, + [SMALL_STATE(4113)] = 129678, + [SMALL_STATE(4114)] = 129700, + [SMALL_STATE(4115)] = 129720, + [SMALL_STATE(4116)] = 129742, + [SMALL_STATE(4117)] = 129762, + [SMALL_STATE(4118)] = 129784, + [SMALL_STATE(4119)] = 129806, + [SMALL_STATE(4120)] = 129828, + [SMALL_STATE(4121)] = 129848, + [SMALL_STATE(4122)] = 129870, + [SMALL_STATE(4123)] = 129892, + [SMALL_STATE(4124)] = 129912, + [SMALL_STATE(4125)] = 129934, + [SMALL_STATE(4126)] = 129954, + [SMALL_STATE(4127)] = 129976, + [SMALL_STATE(4128)] = 129998, + [SMALL_STATE(4129)] = 130020, + [SMALL_STATE(4130)] = 130040, + [SMALL_STATE(4131)] = 130062, + [SMALL_STATE(4132)] = 130084, + [SMALL_STATE(4133)] = 130104, + [SMALL_STATE(4134)] = 130126, + [SMALL_STATE(4135)] = 130146, + [SMALL_STATE(4136)] = 130168, + [SMALL_STATE(4137)] = 130182, + [SMALL_STATE(4138)] = 130204, + [SMALL_STATE(4139)] = 130220, + [SMALL_STATE(4140)] = 130242, + [SMALL_STATE(4141)] = 130262, + [SMALL_STATE(4142)] = 130284, + [SMALL_STATE(4143)] = 130302, + [SMALL_STATE(4144)] = 130324, + [SMALL_STATE(4145)] = 130344, + [SMALL_STATE(4146)] = 130366, + [SMALL_STATE(4147)] = 130382, + [SMALL_STATE(4148)] = 130402, + [SMALL_STATE(4149)] = 130424, + [SMALL_STATE(4150)] = 130444, + [SMALL_STATE(4151)] = 130462, + [SMALL_STATE(4152)] = 130484, + [SMALL_STATE(4153)] = 130500, + [SMALL_STATE(4154)] = 130520, + [SMALL_STATE(4155)] = 130540, + [SMALL_STATE(4156)] = 130558, + [SMALL_STATE(4157)] = 130576, + [SMALL_STATE(4158)] = 130596, + [SMALL_STATE(4159)] = 130616, + [SMALL_STATE(4160)] = 130632, + [SMALL_STATE(4161)] = 130652, + [SMALL_STATE(4162)] = 130668, + [SMALL_STATE(4163)] = 130688, + [SMALL_STATE(4164)] = 130706, + [SMALL_STATE(4165)] = 130724, + [SMALL_STATE(4166)] = 130742, + [SMALL_STATE(4167)] = 130760, + [SMALL_STATE(4168)] = 130780, + [SMALL_STATE(4169)] = 130802, + [SMALL_STATE(4170)] = 130822, + [SMALL_STATE(4171)] = 130842, + [SMALL_STATE(4172)] = 130862, + [SMALL_STATE(4173)] = 130882, + [SMALL_STATE(4174)] = 130898, + [SMALL_STATE(4175)] = 130918, + [SMALL_STATE(4176)] = 130938, + [SMALL_STATE(4177)] = 130956, + [SMALL_STATE(4178)] = 130972, + [SMALL_STATE(4179)] = 130990, + [SMALL_STATE(4180)] = 131004, + [SMALL_STATE(4181)] = 131024, + [SMALL_STATE(4182)] = 131044, + [SMALL_STATE(4183)] = 131062, + [SMALL_STATE(4184)] = 131084, + [SMALL_STATE(4185)] = 131098, + [SMALL_STATE(4186)] = 131114, + [SMALL_STATE(4187)] = 131130, + [SMALL_STATE(4188)] = 131150, + [SMALL_STATE(4189)] = 131168, + [SMALL_STATE(4190)] = 131186, + [SMALL_STATE(4191)] = 131202, + [SMALL_STATE(4192)] = 131224, + [SMALL_STATE(4193)] = 131244, + [SMALL_STATE(4194)] = 131262, + [SMALL_STATE(4195)] = 131276, + [SMALL_STATE(4196)] = 131290, + [SMALL_STATE(4197)] = 131308, + [SMALL_STATE(4198)] = 131330, + [SMALL_STATE(4199)] = 131346, + [SMALL_STATE(4200)] = 131360, + [SMALL_STATE(4201)] = 131376, + [SMALL_STATE(4202)] = 131394, + [SMALL_STATE(4203)] = 131410, + [SMALL_STATE(4204)] = 131432, + [SMALL_STATE(4205)] = 131452, + [SMALL_STATE(4206)] = 131472, + [SMALL_STATE(4207)] = 131494, + [SMALL_STATE(4208)] = 131516, + [SMALL_STATE(4209)] = 131538, + [SMALL_STATE(4210)] = 131554, + [SMALL_STATE(4211)] = 131570, + [SMALL_STATE(4212)] = 131586, + [SMALL_STATE(4213)] = 131604, + [SMALL_STATE(4214)] = 131620, + [SMALL_STATE(4215)] = 131636, + [SMALL_STATE(4216)] = 131658, + [SMALL_STATE(4217)] = 131674, + [SMALL_STATE(4218)] = 131696, + [SMALL_STATE(4219)] = 131714, + [SMALL_STATE(4220)] = 131732, + [SMALL_STATE(4221)] = 131748, + [SMALL_STATE(4222)] = 131764, + [SMALL_STATE(4223)] = 131780, + [SMALL_STATE(4224)] = 131796, + [SMALL_STATE(4225)] = 131816, + [SMALL_STATE(4226)] = 131838, + [SMALL_STATE(4227)] = 131860, + [SMALL_STATE(4228)] = 131878, + [SMALL_STATE(4229)] = 131894, + [SMALL_STATE(4230)] = 131914, + [SMALL_STATE(4231)] = 131930, + [SMALL_STATE(4232)] = 131946, + [SMALL_STATE(4233)] = 131964, + [SMALL_STATE(4234)] = 131984, + [SMALL_STATE(4235)] = 131997, + [SMALL_STATE(4236)] = 132012, + [SMALL_STATE(4237)] = 132029, + [SMALL_STATE(4238)] = 132046, + [SMALL_STATE(4239)] = 132059, + [SMALL_STATE(4240)] = 132074, + [SMALL_STATE(4241)] = 132093, + [SMALL_STATE(4242)] = 132108, + [SMALL_STATE(4243)] = 132127, + [SMALL_STATE(4244)] = 132142, + [SMALL_STATE(4245)] = 132155, + [SMALL_STATE(4246)] = 132174, + [SMALL_STATE(4247)] = 132193, + [SMALL_STATE(4248)] = 132212, + [SMALL_STATE(4249)] = 132231, + [SMALL_STATE(4250)] = 132250, + [SMALL_STATE(4251)] = 132263, + [SMALL_STATE(4252)] = 132282, + [SMALL_STATE(4253)] = 132295, + [SMALL_STATE(4254)] = 132308, + [SMALL_STATE(4255)] = 132321, + [SMALL_STATE(4256)] = 132334, + [SMALL_STATE(4257)] = 132347, + [SMALL_STATE(4258)] = 132362, + [SMALL_STATE(4259)] = 132377, + [SMALL_STATE(4260)] = 132390, + [SMALL_STATE(4261)] = 132403, + [SMALL_STATE(4262)] = 132418, + [SMALL_STATE(4263)] = 132431, + [SMALL_STATE(4264)] = 132444, + [SMALL_STATE(4265)] = 132457, + [SMALL_STATE(4266)] = 132472, + [SMALL_STATE(4267)] = 132485, + [SMALL_STATE(4268)] = 132498, + [SMALL_STATE(4269)] = 132513, + [SMALL_STATE(4270)] = 132528, + [SMALL_STATE(4271)] = 132543, + [SMALL_STATE(4272)] = 132558, + [SMALL_STATE(4273)] = 132573, + [SMALL_STATE(4274)] = 132586, + [SMALL_STATE(4275)] = 132601, + [SMALL_STATE(4276)] = 132620, + [SMALL_STATE(4277)] = 132633, + [SMALL_STATE(4278)] = 132646, + [SMALL_STATE(4279)] = 132659, + [SMALL_STATE(4280)] = 132672, + [SMALL_STATE(4281)] = 132687, + [SMALL_STATE(4282)] = 132702, + [SMALL_STATE(4283)] = 132717, + [SMALL_STATE(4284)] = 132730, + [SMALL_STATE(4285)] = 132743, + [SMALL_STATE(4286)] = 132756, + [SMALL_STATE(4287)] = 132769, + [SMALL_STATE(4288)] = 132782, + [SMALL_STATE(4289)] = 132795, + [SMALL_STATE(4290)] = 132810, + [SMALL_STATE(4291)] = 132823, + [SMALL_STATE(4292)] = 132836, + [SMALL_STATE(4293)] = 132855, + [SMALL_STATE(4294)] = 132868, + [SMALL_STATE(4295)] = 132881, + [SMALL_STATE(4296)] = 132896, + [SMALL_STATE(4297)] = 132911, + [SMALL_STATE(4298)] = 132926, + [SMALL_STATE(4299)] = 132939, + [SMALL_STATE(4300)] = 132952, + [SMALL_STATE(4301)] = 132965, + [SMALL_STATE(4302)] = 132978, + [SMALL_STATE(4303)] = 132991, + [SMALL_STATE(4304)] = 133006, + [SMALL_STATE(4305)] = 133019, + [SMALL_STATE(4306)] = 133032, + [SMALL_STATE(4307)] = 133045, + [SMALL_STATE(4308)] = 133060, + [SMALL_STATE(4309)] = 133073, + [SMALL_STATE(4310)] = 133092, + [SMALL_STATE(4311)] = 133111, + [SMALL_STATE(4312)] = 133124, + [SMALL_STATE(4313)] = 133137, + [SMALL_STATE(4314)] = 133150, + [SMALL_STATE(4315)] = 133169, + [SMALL_STATE(4316)] = 133182, + [SMALL_STATE(4317)] = 133195, + [SMALL_STATE(4318)] = 133212, + [SMALL_STATE(4319)] = 133229, + [SMALL_STATE(4320)] = 133248, + [SMALL_STATE(4321)] = 133267, + [SMALL_STATE(4322)] = 133280, + [SMALL_STATE(4323)] = 133295, + [SMALL_STATE(4324)] = 133308, + [SMALL_STATE(4325)] = 133321, + [SMALL_STATE(4326)] = 133340, + [SMALL_STATE(4327)] = 133359, + [SMALL_STATE(4328)] = 133374, + [SMALL_STATE(4329)] = 133391, + [SMALL_STATE(4330)] = 133406, + [SMALL_STATE(4331)] = 133421, + [SMALL_STATE(4332)] = 133434, + [SMALL_STATE(4333)] = 133447, + [SMALL_STATE(4334)] = 133460, + [SMALL_STATE(4335)] = 133473, + [SMALL_STATE(4336)] = 133488, + [SMALL_STATE(4337)] = 133507, + [SMALL_STATE(4338)] = 133522, + [SMALL_STATE(4339)] = 133537, + [SMALL_STATE(4340)] = 133550, + [SMALL_STATE(4341)] = 133563, + [SMALL_STATE(4342)] = 133576, + [SMALL_STATE(4343)] = 133591, + [SMALL_STATE(4344)] = 133604, + [SMALL_STATE(4345)] = 133623, + [SMALL_STATE(4346)] = 133636, + [SMALL_STATE(4347)] = 133653, + [SMALL_STATE(4348)] = 133672, + [SMALL_STATE(4349)] = 133689, + [SMALL_STATE(4350)] = 133706, + [SMALL_STATE(4351)] = 133721, + [SMALL_STATE(4352)] = 133738, + [SMALL_STATE(4353)] = 133755, + [SMALL_STATE(4354)] = 133770, + [SMALL_STATE(4355)] = 133785, + [SMALL_STATE(4356)] = 133802, + [SMALL_STATE(4357)] = 133815, + [SMALL_STATE(4358)] = 133834, + [SMALL_STATE(4359)] = 133851, + [SMALL_STATE(4360)] = 133866, + [SMALL_STATE(4361)] = 133879, + [SMALL_STATE(4362)] = 133894, + [SMALL_STATE(4363)] = 133907, + [SMALL_STATE(4364)] = 133922, + [SMALL_STATE(4365)] = 133935, + [SMALL_STATE(4366)] = 133950, + [SMALL_STATE(4367)] = 133963, + [SMALL_STATE(4368)] = 133976, + [SMALL_STATE(4369)] = 133991, + [SMALL_STATE(4370)] = 134010, + [SMALL_STATE(4371)] = 134023, + [SMALL_STATE(4372)] = 134036, + [SMALL_STATE(4373)] = 134051, + [SMALL_STATE(4374)] = 134064, + [SMALL_STATE(4375)] = 134079, + [SMALL_STATE(4376)] = 134096, + [SMALL_STATE(4377)] = 134109, + [SMALL_STATE(4378)] = 134122, + [SMALL_STATE(4379)] = 134135, + [SMALL_STATE(4380)] = 134148, + [SMALL_STATE(4381)] = 134161, + [SMALL_STATE(4382)] = 134176, + [SMALL_STATE(4383)] = 134189, + [SMALL_STATE(4384)] = 134204, + [SMALL_STATE(4385)] = 134223, + [SMALL_STATE(4386)] = 134238, + [SMALL_STATE(4387)] = 134251, + [SMALL_STATE(4388)] = 134266, + [SMALL_STATE(4389)] = 134281, + [SMALL_STATE(4390)] = 134296, + [SMALL_STATE(4391)] = 134309, + [SMALL_STATE(4392)] = 134324, + [SMALL_STATE(4393)] = 134341, + [SMALL_STATE(4394)] = 134358, + [SMALL_STATE(4395)] = 134377, + [SMALL_STATE(4396)] = 134394, + [SMALL_STATE(4397)] = 134409, + [SMALL_STATE(4398)] = 134428, + [SMALL_STATE(4399)] = 134445, + [SMALL_STATE(4400)] = 134458, + [SMALL_STATE(4401)] = 134471, + [SMALL_STATE(4402)] = 134488, + [SMALL_STATE(4403)] = 134501, + [SMALL_STATE(4404)] = 134514, + [SMALL_STATE(4405)] = 134527, + [SMALL_STATE(4406)] = 134540, + [SMALL_STATE(4407)] = 134559, + [SMALL_STATE(4408)] = 134572, + [SMALL_STATE(4409)] = 134587, + [SMALL_STATE(4410)] = 134604, + [SMALL_STATE(4411)] = 134617, + [SMALL_STATE(4412)] = 134630, + [SMALL_STATE(4413)] = 134643, + [SMALL_STATE(4414)] = 134656, + [SMALL_STATE(4415)] = 134675, + [SMALL_STATE(4416)] = 134692, + [SMALL_STATE(4417)] = 134711, + [SMALL_STATE(4418)] = 134724, + [SMALL_STATE(4419)] = 134737, + [SMALL_STATE(4420)] = 134756, + [SMALL_STATE(4421)] = 134771, + [SMALL_STATE(4422)] = 134786, + [SMALL_STATE(4423)] = 134799, + [SMALL_STATE(4424)] = 134816, + [SMALL_STATE(4425)] = 134829, + [SMALL_STATE(4426)] = 134844, + [SMALL_STATE(4427)] = 134861, + [SMALL_STATE(4428)] = 134880, + [SMALL_STATE(4429)] = 134893, + [SMALL_STATE(4430)] = 134910, + [SMALL_STATE(4431)] = 134923, + [SMALL_STATE(4432)] = 134936, + [SMALL_STATE(4433)] = 134949, + [SMALL_STATE(4434)] = 134962, + [SMALL_STATE(4435)] = 134975, + [SMALL_STATE(4436)] = 134988, + [SMALL_STATE(4437)] = 135001, + [SMALL_STATE(4438)] = 135020, + [SMALL_STATE(4439)] = 135033, + [SMALL_STATE(4440)] = 135048, + [SMALL_STATE(4441)] = 135067, + [SMALL_STATE(4442)] = 135082, + [SMALL_STATE(4443)] = 135097, + [SMALL_STATE(4444)] = 135114, + [SMALL_STATE(4445)] = 135129, + [SMALL_STATE(4446)] = 135144, + [SMALL_STATE(4447)] = 135163, + [SMALL_STATE(4448)] = 135176, + [SMALL_STATE(4449)] = 135195, + [SMALL_STATE(4450)] = 135208, + [SMALL_STATE(4451)] = 135227, + [SMALL_STATE(4452)] = 135240, + [SMALL_STATE(4453)] = 135257, + [SMALL_STATE(4454)] = 135276, + [SMALL_STATE(4455)] = 135295, + [SMALL_STATE(4456)] = 135308, + [SMALL_STATE(4457)] = 135321, + [SMALL_STATE(4458)] = 135334, + [SMALL_STATE(4459)] = 135349, + [SMALL_STATE(4460)] = 135362, + [SMALL_STATE(4461)] = 135381, + [SMALL_STATE(4462)] = 135394, + [SMALL_STATE(4463)] = 135411, + [SMALL_STATE(4464)] = 135426, + [SMALL_STATE(4465)] = 135443, + [SMALL_STATE(4466)] = 135462, + [SMALL_STATE(4467)] = 135475, + [SMALL_STATE(4468)] = 135488, + [SMALL_STATE(4469)] = 135501, + [SMALL_STATE(4470)] = 135514, + [SMALL_STATE(4471)] = 135527, + [SMALL_STATE(4472)] = 135540, + [SMALL_STATE(4473)] = 135559, + [SMALL_STATE(4474)] = 135578, + [SMALL_STATE(4475)] = 135595, + [SMALL_STATE(4476)] = 135610, + [SMALL_STATE(4477)] = 135623, + [SMALL_STATE(4478)] = 135638, + [SMALL_STATE(4479)] = 135655, + [SMALL_STATE(4480)] = 135668, + [SMALL_STATE(4481)] = 135687, + [SMALL_STATE(4482)] = 135706, + [SMALL_STATE(4483)] = 135721, + [SMALL_STATE(4484)] = 135740, + [SMALL_STATE(4485)] = 135759, + [SMALL_STATE(4486)] = 135772, + [SMALL_STATE(4487)] = 135785, + [SMALL_STATE(4488)] = 135798, + [SMALL_STATE(4489)] = 135817, + [SMALL_STATE(4490)] = 135830, + [SMALL_STATE(4491)] = 135849, + [SMALL_STATE(4492)] = 135868, + [SMALL_STATE(4493)] = 135881, + [SMALL_STATE(4494)] = 135894, + [SMALL_STATE(4495)] = 135907, + [SMALL_STATE(4496)] = 135920, + [SMALL_STATE(4497)] = 135933, + [SMALL_STATE(4498)] = 135952, + [SMALL_STATE(4499)] = 135971, + [SMALL_STATE(4500)] = 135984, + [SMALL_STATE(4501)] = 135997, + [SMALL_STATE(4502)] = 136014, + [SMALL_STATE(4503)] = 136031, + [SMALL_STATE(4504)] = 136044, + [SMALL_STATE(4505)] = 136057, + [SMALL_STATE(4506)] = 136070, + [SMALL_STATE(4507)] = 136085, + [SMALL_STATE(4508)] = 136104, + [SMALL_STATE(4509)] = 136123, + [SMALL_STATE(4510)] = 136138, + [SMALL_STATE(4511)] = 136151, + [SMALL_STATE(4512)] = 136166, + [SMALL_STATE(4513)] = 136185, + [SMALL_STATE(4514)] = 136198, + [SMALL_STATE(4515)] = 136211, + [SMALL_STATE(4516)] = 136224, + [SMALL_STATE(4517)] = 136243, + [SMALL_STATE(4518)] = 136256, + [SMALL_STATE(4519)] = 136275, + [SMALL_STATE(4520)] = 136294, + [SMALL_STATE(4521)] = 136307, + [SMALL_STATE(4522)] = 136326, + [SMALL_STATE(4523)] = 136341, + [SMALL_STATE(4524)] = 136354, + [SMALL_STATE(4525)] = 136367, + [SMALL_STATE(4526)] = 136386, + [SMALL_STATE(4527)] = 136401, + [SMALL_STATE(4528)] = 136418, + [SMALL_STATE(4529)] = 136437, + [SMALL_STATE(4530)] = 136456, + [SMALL_STATE(4531)] = 136475, + [SMALL_STATE(4532)] = 136494, + [SMALL_STATE(4533)] = 136507, + [SMALL_STATE(4534)] = 136526, + [SMALL_STATE(4535)] = 136541, + [SMALL_STATE(4536)] = 136556, + [SMALL_STATE(4537)] = 136573, + [SMALL_STATE(4538)] = 136588, + [SMALL_STATE(4539)] = 136607, + [SMALL_STATE(4540)] = 136626, + [SMALL_STATE(4541)] = 136645, + [SMALL_STATE(4542)] = 136664, + [SMALL_STATE(4543)] = 136679, + [SMALL_STATE(4544)] = 136698, + [SMALL_STATE(4545)] = 136715, + [SMALL_STATE(4546)] = 136728, + [SMALL_STATE(4547)] = 136743, + [SMALL_STATE(4548)] = 136762, + [SMALL_STATE(4549)] = 136775, + [SMALL_STATE(4550)] = 136792, + [SMALL_STATE(4551)] = 136805, + [SMALL_STATE(4552)] = 136817, + [SMALL_STATE(4553)] = 136831, + [SMALL_STATE(4554)] = 136847, + [SMALL_STATE(4555)] = 136863, + [SMALL_STATE(4556)] = 136879, + [SMALL_STATE(4557)] = 136893, + [SMALL_STATE(4558)] = 136909, + [SMALL_STATE(4559)] = 136925, + [SMALL_STATE(4560)] = 136941, + [SMALL_STATE(4561)] = 136953, + [SMALL_STATE(4562)] = 136965, + [SMALL_STATE(4563)] = 136977, + [SMALL_STATE(4564)] = 136991, + [SMALL_STATE(4565)] = 137003, + [SMALL_STATE(4566)] = 137015, + [SMALL_STATE(4567)] = 137031, + [SMALL_STATE(4568)] = 137045, + [SMALL_STATE(4569)] = 137059, + [SMALL_STATE(4570)] = 137075, + [SMALL_STATE(4571)] = 137091, + [SMALL_STATE(4572)] = 137103, + [SMALL_STATE(4573)] = 137115, + [SMALL_STATE(4574)] = 137131, + [SMALL_STATE(4575)] = 137147, + [SMALL_STATE(4576)] = 137163, + [SMALL_STATE(4577)] = 137177, + [SMALL_STATE(4578)] = 137193, + [SMALL_STATE(4579)] = 137209, + [SMALL_STATE(4580)] = 137225, + [SMALL_STATE(4581)] = 137239, + [SMALL_STATE(4582)] = 137253, + [SMALL_STATE(4583)] = 137269, + [SMALL_STATE(4584)] = 137281, + [SMALL_STATE(4585)] = 137295, + [SMALL_STATE(4586)] = 137311, + [SMALL_STATE(4587)] = 137325, + [SMALL_STATE(4588)] = 137339, + [SMALL_STATE(4589)] = 137353, + [SMALL_STATE(4590)] = 137365, + [SMALL_STATE(4591)] = 137381, + [SMALL_STATE(4592)] = 137397, + [SMALL_STATE(4593)] = 137413, + [SMALL_STATE(4594)] = 137429, + [SMALL_STATE(4595)] = 137445, + [SMALL_STATE(4596)] = 137459, + [SMALL_STATE(4597)] = 137473, + [SMALL_STATE(4598)] = 137487, + [SMALL_STATE(4599)] = 137503, + [SMALL_STATE(4600)] = 137519, + [SMALL_STATE(4601)] = 137531, + [SMALL_STATE(4602)] = 137545, + [SMALL_STATE(4603)] = 137559, + [SMALL_STATE(4604)] = 137573, + [SMALL_STATE(4605)] = 137585, + [SMALL_STATE(4606)] = 137601, + [SMALL_STATE(4607)] = 137613, + [SMALL_STATE(4608)] = 137625, + [SMALL_STATE(4609)] = 137637, + [SMALL_STATE(4610)] = 137649, + [SMALL_STATE(4611)] = 137661, + [SMALL_STATE(4612)] = 137677, + [SMALL_STATE(4613)] = 137689, + [SMALL_STATE(4614)] = 137705, + [SMALL_STATE(4615)] = 137717, + [SMALL_STATE(4616)] = 137729, + [SMALL_STATE(4617)] = 137745, + [SMALL_STATE(4618)] = 137757, + [SMALL_STATE(4619)] = 137769, + [SMALL_STATE(4620)] = 137781, + [SMALL_STATE(4621)] = 137793, + [SMALL_STATE(4622)] = 137809, + [SMALL_STATE(4623)] = 137821, + [SMALL_STATE(4624)] = 137837, + [SMALL_STATE(4625)] = 137851, + [SMALL_STATE(4626)] = 137863, + [SMALL_STATE(4627)] = 137875, + [SMALL_STATE(4628)] = 137891, + [SMALL_STATE(4629)] = 137903, + [SMALL_STATE(4630)] = 137915, + [SMALL_STATE(4631)] = 137927, + [SMALL_STATE(4632)] = 137939, + [SMALL_STATE(4633)] = 137951, + [SMALL_STATE(4634)] = 137967, + [SMALL_STATE(4635)] = 137981, + [SMALL_STATE(4636)] = 137993, + [SMALL_STATE(4637)] = 138005, + [SMALL_STATE(4638)] = 138017, + [SMALL_STATE(4639)] = 138033, + [SMALL_STATE(4640)] = 138045, + [SMALL_STATE(4641)] = 138061, + [SMALL_STATE(4642)] = 138077, + [SMALL_STATE(4643)] = 138089, + [SMALL_STATE(4644)] = 138101, + [SMALL_STATE(4645)] = 138113, + [SMALL_STATE(4646)] = 138129, + [SMALL_STATE(4647)] = 138141, + [SMALL_STATE(4648)] = 138153, + [SMALL_STATE(4649)] = 138165, + [SMALL_STATE(4650)] = 138177, + [SMALL_STATE(4651)] = 138193, + [SMALL_STATE(4652)] = 138209, + [SMALL_STATE(4653)] = 138221, + [SMALL_STATE(4654)] = 138233, + [SMALL_STATE(4655)] = 138249, + [SMALL_STATE(4656)] = 138265, + [SMALL_STATE(4657)] = 138281, + [SMALL_STATE(4658)] = 138297, + [SMALL_STATE(4659)] = 138309, + [SMALL_STATE(4660)] = 138325, + [SMALL_STATE(4661)] = 138341, + [SMALL_STATE(4662)] = 138353, + [SMALL_STATE(4663)] = 138369, + [SMALL_STATE(4664)] = 138385, + [SMALL_STATE(4665)] = 138397, + [SMALL_STATE(4666)] = 138409, + [SMALL_STATE(4667)] = 138421, + [SMALL_STATE(4668)] = 138433, + [SMALL_STATE(4669)] = 138449, + [SMALL_STATE(4670)] = 138465, + [SMALL_STATE(4671)] = 138481, + [SMALL_STATE(4672)] = 138497, + [SMALL_STATE(4673)] = 138513, + [SMALL_STATE(4674)] = 138529, + [SMALL_STATE(4675)] = 138545, + [SMALL_STATE(4676)] = 138557, + [SMALL_STATE(4677)] = 138569, + [SMALL_STATE(4678)] = 138581, + [SMALL_STATE(4679)] = 138593, + [SMALL_STATE(4680)] = 138609, + [SMALL_STATE(4681)] = 138621, + [SMALL_STATE(4682)] = 138633, + [SMALL_STATE(4683)] = 138649, + [SMALL_STATE(4684)] = 138665, + [SMALL_STATE(4685)] = 138677, + [SMALL_STATE(4686)] = 138693, + [SMALL_STATE(4687)] = 138705, + [SMALL_STATE(4688)] = 138719, + [SMALL_STATE(4689)] = 138731, + [SMALL_STATE(4690)] = 138743, + [SMALL_STATE(4691)] = 138759, + [SMALL_STATE(4692)] = 138775, + [SMALL_STATE(4693)] = 138787, + [SMALL_STATE(4694)] = 138803, + [SMALL_STATE(4695)] = 138819, + [SMALL_STATE(4696)] = 138835, + [SMALL_STATE(4697)] = 138849, + [SMALL_STATE(4698)] = 138865, + [SMALL_STATE(4699)] = 138881, + [SMALL_STATE(4700)] = 138897, + [SMALL_STATE(4701)] = 138913, + [SMALL_STATE(4702)] = 138929, + [SMALL_STATE(4703)] = 138945, + [SMALL_STATE(4704)] = 138957, + [SMALL_STATE(4705)] = 138969, + [SMALL_STATE(4706)] = 138981, + [SMALL_STATE(4707)] = 138997, + [SMALL_STATE(4708)] = 139009, + [SMALL_STATE(4709)] = 139025, + [SMALL_STATE(4710)] = 139037, + [SMALL_STATE(4711)] = 139049, + [SMALL_STATE(4712)] = 139061, + [SMALL_STATE(4713)] = 139073, + [SMALL_STATE(4714)] = 139085, + [SMALL_STATE(4715)] = 139097, + [SMALL_STATE(4716)] = 139109, + [SMALL_STATE(4717)] = 139125, + [SMALL_STATE(4718)] = 139137, + [SMALL_STATE(4719)] = 139151, + [SMALL_STATE(4720)] = 139167, + [SMALL_STATE(4721)] = 139179, + [SMALL_STATE(4722)] = 139193, + [SMALL_STATE(4723)] = 139209, + [SMALL_STATE(4724)] = 139225, + [SMALL_STATE(4725)] = 139239, + [SMALL_STATE(4726)] = 139253, + [SMALL_STATE(4727)] = 139267, + [SMALL_STATE(4728)] = 139283, + [SMALL_STATE(4729)] = 139297, + [SMALL_STATE(4730)] = 139313, + [SMALL_STATE(4731)] = 139329, + [SMALL_STATE(4732)] = 139343, + [SMALL_STATE(4733)] = 139359, + [SMALL_STATE(4734)] = 139373, + [SMALL_STATE(4735)] = 139387, + [SMALL_STATE(4736)] = 139399, + [SMALL_STATE(4737)] = 139413, + [SMALL_STATE(4738)] = 139425, + [SMALL_STATE(4739)] = 139437, + [SMALL_STATE(4740)] = 139453, + [SMALL_STATE(4741)] = 139465, + [SMALL_STATE(4742)] = 139481, + [SMALL_STATE(4743)] = 139493, + [SMALL_STATE(4744)] = 139505, + [SMALL_STATE(4745)] = 139517, + [SMALL_STATE(4746)] = 139529, + [SMALL_STATE(4747)] = 139541, + [SMALL_STATE(4748)] = 139553, + [SMALL_STATE(4749)] = 139569, + [SMALL_STATE(4750)] = 139583, + [SMALL_STATE(4751)] = 139595, + [SMALL_STATE(4752)] = 139607, + [SMALL_STATE(4753)] = 139621, + [SMALL_STATE(4754)] = 139633, + [SMALL_STATE(4755)] = 139649, + [SMALL_STATE(4756)] = 139661, + [SMALL_STATE(4757)] = 139675, + [SMALL_STATE(4758)] = 139689, + [SMALL_STATE(4759)] = 139703, + [SMALL_STATE(4760)] = 139717, + [SMALL_STATE(4761)] = 139731, + [SMALL_STATE(4762)] = 139745, + [SMALL_STATE(4763)] = 139759, + [SMALL_STATE(4764)] = 139771, + [SMALL_STATE(4765)] = 139783, + [SMALL_STATE(4766)] = 139799, + [SMALL_STATE(4767)] = 139815, + [SMALL_STATE(4768)] = 139831, + [SMALL_STATE(4769)] = 139847, + [SMALL_STATE(4770)] = 139859, + [SMALL_STATE(4771)] = 139875, + [SMALL_STATE(4772)] = 139887, + [SMALL_STATE(4773)] = 139899, + [SMALL_STATE(4774)] = 139911, + [SMALL_STATE(4775)] = 139925, + [SMALL_STATE(4776)] = 139939, + [SMALL_STATE(4777)] = 139955, + [SMALL_STATE(4778)] = 139967, + [SMALL_STATE(4779)] = 139979, + [SMALL_STATE(4780)] = 139991, + [SMALL_STATE(4781)] = 140007, + [SMALL_STATE(4782)] = 140019, + [SMALL_STATE(4783)] = 140035, + [SMALL_STATE(4784)] = 140051, + [SMALL_STATE(4785)] = 140065, + [SMALL_STATE(4786)] = 140079, + [SMALL_STATE(4787)] = 140093, + [SMALL_STATE(4788)] = 140105, + [SMALL_STATE(4789)] = 140121, + [SMALL_STATE(4790)] = 140137, + [SMALL_STATE(4791)] = 140153, + [SMALL_STATE(4792)] = 140169, + [SMALL_STATE(4793)] = 140185, + [SMALL_STATE(4794)] = 140197, + [SMALL_STATE(4795)] = 140209, + [SMALL_STATE(4796)] = 140221, + [SMALL_STATE(4797)] = 140233, + [SMALL_STATE(4798)] = 140245, + [SMALL_STATE(4799)] = 140257, + [SMALL_STATE(4800)] = 140269, + [SMALL_STATE(4801)] = 140281, + [SMALL_STATE(4802)] = 140295, + [SMALL_STATE(4803)] = 140307, + [SMALL_STATE(4804)] = 140319, + [SMALL_STATE(4805)] = 140335, + [SMALL_STATE(4806)] = 140349, + [SMALL_STATE(4807)] = 140365, + [SMALL_STATE(4808)] = 140381, + [SMALL_STATE(4809)] = 140395, + [SMALL_STATE(4810)] = 140408, + [SMALL_STATE(4811)] = 140421, + [SMALL_STATE(4812)] = 140434, + [SMALL_STATE(4813)] = 140447, + [SMALL_STATE(4814)] = 140460, + [SMALL_STATE(4815)] = 140473, + [SMALL_STATE(4816)] = 140486, + [SMALL_STATE(4817)] = 140499, + [SMALL_STATE(4818)] = 140512, + [SMALL_STATE(4819)] = 140525, + [SMALL_STATE(4820)] = 140538, + [SMALL_STATE(4821)] = 140551, + [SMALL_STATE(4822)] = 140564, + [SMALL_STATE(4823)] = 140577, + [SMALL_STATE(4824)] = 140590, + [SMALL_STATE(4825)] = 140603, + [SMALL_STATE(4826)] = 140614, + [SMALL_STATE(4827)] = 140627, + [SMALL_STATE(4828)] = 140640, + [SMALL_STATE(4829)] = 140653, + [SMALL_STATE(4830)] = 140666, + [SMALL_STATE(4831)] = 140679, + [SMALL_STATE(4832)] = 140692, + [SMALL_STATE(4833)] = 140705, + [SMALL_STATE(4834)] = 140718, + [SMALL_STATE(4835)] = 140731, + [SMALL_STATE(4836)] = 140744, + [SMALL_STATE(4837)] = 140757, + [SMALL_STATE(4838)] = 140770, + [SMALL_STATE(4839)] = 140783, + [SMALL_STATE(4840)] = 140796, + [SMALL_STATE(4841)] = 140809, + [SMALL_STATE(4842)] = 140822, + [SMALL_STATE(4843)] = 140835, + [SMALL_STATE(4844)] = 140848, + [SMALL_STATE(4845)] = 140861, + [SMALL_STATE(4846)] = 140874, + [SMALL_STATE(4847)] = 140887, + [SMALL_STATE(4848)] = 140900, + [SMALL_STATE(4849)] = 140913, + [SMALL_STATE(4850)] = 140926, + [SMALL_STATE(4851)] = 140939, + [SMALL_STATE(4852)] = 140952, + [SMALL_STATE(4853)] = 140965, + [SMALL_STATE(4854)] = 140978, + [SMALL_STATE(4855)] = 140991, + [SMALL_STATE(4856)] = 141004, + [SMALL_STATE(4857)] = 141017, + [SMALL_STATE(4858)] = 141030, + [SMALL_STATE(4859)] = 141043, + [SMALL_STATE(4860)] = 141056, + [SMALL_STATE(4861)] = 141067, + [SMALL_STATE(4862)] = 141080, + [SMALL_STATE(4863)] = 141093, + [SMALL_STATE(4864)] = 141106, + [SMALL_STATE(4865)] = 141119, + [SMALL_STATE(4866)] = 141132, + [SMALL_STATE(4867)] = 141145, + [SMALL_STATE(4868)] = 141158, + [SMALL_STATE(4869)] = 141171, + [SMALL_STATE(4870)] = 141184, + [SMALL_STATE(4871)] = 141195, + [SMALL_STATE(4872)] = 141208, + [SMALL_STATE(4873)] = 141221, + [SMALL_STATE(4874)] = 141234, + [SMALL_STATE(4875)] = 141247, + [SMALL_STATE(4876)] = 141258, + [SMALL_STATE(4877)] = 141271, + [SMALL_STATE(4878)] = 141284, + [SMALL_STATE(4879)] = 141297, + [SMALL_STATE(4880)] = 141310, + [SMALL_STATE(4881)] = 141323, + [SMALL_STATE(4882)] = 141336, + [SMALL_STATE(4883)] = 141349, + [SMALL_STATE(4884)] = 141362, + [SMALL_STATE(4885)] = 141375, + [SMALL_STATE(4886)] = 141388, + [SMALL_STATE(4887)] = 141401, + [SMALL_STATE(4888)] = 141414, + [SMALL_STATE(4889)] = 141427, + [SMALL_STATE(4890)] = 141440, + [SMALL_STATE(4891)] = 141453, + [SMALL_STATE(4892)] = 141466, + [SMALL_STATE(4893)] = 141479, + [SMALL_STATE(4894)] = 141492, + [SMALL_STATE(4895)] = 141505, + [SMALL_STATE(4896)] = 141518, + [SMALL_STATE(4897)] = 141529, + [SMALL_STATE(4898)] = 141542, + [SMALL_STATE(4899)] = 141555, + [SMALL_STATE(4900)] = 141568, + [SMALL_STATE(4901)] = 141581, + [SMALL_STATE(4902)] = 141594, + [SMALL_STATE(4903)] = 141607, + [SMALL_STATE(4904)] = 141620, + [SMALL_STATE(4905)] = 141633, + [SMALL_STATE(4906)] = 141646, + [SMALL_STATE(4907)] = 141659, + [SMALL_STATE(4908)] = 141672, + [SMALL_STATE(4909)] = 141685, + [SMALL_STATE(4910)] = 141698, + [SMALL_STATE(4911)] = 141711, + [SMALL_STATE(4912)] = 141724, + [SMALL_STATE(4913)] = 141737, + [SMALL_STATE(4914)] = 141750, + [SMALL_STATE(4915)] = 141763, + [SMALL_STATE(4916)] = 141776, + [SMALL_STATE(4917)] = 141789, + [SMALL_STATE(4918)] = 141802, + [SMALL_STATE(4919)] = 141815, + [SMALL_STATE(4920)] = 141828, + [SMALL_STATE(4921)] = 141841, + [SMALL_STATE(4922)] = 141852, + [SMALL_STATE(4923)] = 141865, + [SMALL_STATE(4924)] = 141878, + [SMALL_STATE(4925)] = 141891, + [SMALL_STATE(4926)] = 141904, + [SMALL_STATE(4927)] = 141917, + [SMALL_STATE(4928)] = 141930, + [SMALL_STATE(4929)] = 141943, + [SMALL_STATE(4930)] = 141954, + [SMALL_STATE(4931)] = 141967, + [SMALL_STATE(4932)] = 141980, + [SMALL_STATE(4933)] = 141993, + [SMALL_STATE(4934)] = 142006, + [SMALL_STATE(4935)] = 142019, + [SMALL_STATE(4936)] = 142032, + [SMALL_STATE(4937)] = 142045, + [SMALL_STATE(4938)] = 142058, + [SMALL_STATE(4939)] = 142071, + [SMALL_STATE(4940)] = 142084, + [SMALL_STATE(4941)] = 142097, + [SMALL_STATE(4942)] = 142110, + [SMALL_STATE(4943)] = 142123, + [SMALL_STATE(4944)] = 142134, + [SMALL_STATE(4945)] = 142147, + [SMALL_STATE(4946)] = 142160, + [SMALL_STATE(4947)] = 142173, + [SMALL_STATE(4948)] = 142186, + [SMALL_STATE(4949)] = 142199, + [SMALL_STATE(4950)] = 142212, + [SMALL_STATE(4951)] = 142225, + [SMALL_STATE(4952)] = 142238, + [SMALL_STATE(4953)] = 142251, + [SMALL_STATE(4954)] = 142264, + [SMALL_STATE(4955)] = 142277, + [SMALL_STATE(4956)] = 142290, + [SMALL_STATE(4957)] = 142303, + [SMALL_STATE(4958)] = 142316, + [SMALL_STATE(4959)] = 142329, + [SMALL_STATE(4960)] = 142342, + [SMALL_STATE(4961)] = 142355, + [SMALL_STATE(4962)] = 142368, + [SMALL_STATE(4963)] = 142381, + [SMALL_STATE(4964)] = 142394, + [SMALL_STATE(4965)] = 142407, + [SMALL_STATE(4966)] = 142420, + [SMALL_STATE(4967)] = 142433, + [SMALL_STATE(4968)] = 142446, + [SMALL_STATE(4969)] = 142459, + [SMALL_STATE(4970)] = 142472, + [SMALL_STATE(4971)] = 142483, + [SMALL_STATE(4972)] = 142496, + [SMALL_STATE(4973)] = 142509, + [SMALL_STATE(4974)] = 142522, + [SMALL_STATE(4975)] = 142535, + [SMALL_STATE(4976)] = 142548, + [SMALL_STATE(4977)] = 142561, + [SMALL_STATE(4978)] = 142574, + [SMALL_STATE(4979)] = 142585, + [SMALL_STATE(4980)] = 142598, + [SMALL_STATE(4981)] = 142611, + [SMALL_STATE(4982)] = 142624, + [SMALL_STATE(4983)] = 142634, + [SMALL_STATE(4984)] = 142644, + [SMALL_STATE(4985)] = 142654, + [SMALL_STATE(4986)] = 142664, + [SMALL_STATE(4987)] = 142674, + [SMALL_STATE(4988)] = 142684, + [SMALL_STATE(4989)] = 142694, + [SMALL_STATE(4990)] = 142704, + [SMALL_STATE(4991)] = 142714, + [SMALL_STATE(4992)] = 142724, + [SMALL_STATE(4993)] = 142734, + [SMALL_STATE(4994)] = 142744, + [SMALL_STATE(4995)] = 142754, + [SMALL_STATE(4996)] = 142764, + [SMALL_STATE(4997)] = 142774, + [SMALL_STATE(4998)] = 142784, + [SMALL_STATE(4999)] = 142794, + [SMALL_STATE(5000)] = 142804, + [SMALL_STATE(5001)] = 142814, + [SMALL_STATE(5002)] = 142824, + [SMALL_STATE(5003)] = 142834, + [SMALL_STATE(5004)] = 142844, + [SMALL_STATE(5005)] = 142854, + [SMALL_STATE(5006)] = 142864, + [SMALL_STATE(5007)] = 142874, + [SMALL_STATE(5008)] = 142884, + [SMALL_STATE(5009)] = 142894, + [SMALL_STATE(5010)] = 142904, + [SMALL_STATE(5011)] = 142914, + [SMALL_STATE(5012)] = 142924, + [SMALL_STATE(5013)] = 142934, + [SMALL_STATE(5014)] = 142944, + [SMALL_STATE(5015)] = 142954, + [SMALL_STATE(5016)] = 142964, + [SMALL_STATE(5017)] = 142974, + [SMALL_STATE(5018)] = 142984, + [SMALL_STATE(5019)] = 142994, + [SMALL_STATE(5020)] = 143004, + [SMALL_STATE(5021)] = 143014, + [SMALL_STATE(5022)] = 143024, + [SMALL_STATE(5023)] = 143034, + [SMALL_STATE(5024)] = 143044, + [SMALL_STATE(5025)] = 143054, + [SMALL_STATE(5026)] = 143064, + [SMALL_STATE(5027)] = 143074, + [SMALL_STATE(5028)] = 143084, + [SMALL_STATE(5029)] = 143094, + [SMALL_STATE(5030)] = 143104, + [SMALL_STATE(5031)] = 143114, + [SMALL_STATE(5032)] = 143124, + [SMALL_STATE(5033)] = 143134, + [SMALL_STATE(5034)] = 143144, + [SMALL_STATE(5035)] = 143154, + [SMALL_STATE(5036)] = 143164, + [SMALL_STATE(5037)] = 143174, + [SMALL_STATE(5038)] = 143184, + [SMALL_STATE(5039)] = 143194, + [SMALL_STATE(5040)] = 143204, + [SMALL_STATE(5041)] = 143214, + [SMALL_STATE(5042)] = 143224, + [SMALL_STATE(5043)] = 143234, + [SMALL_STATE(5044)] = 143244, + [SMALL_STATE(5045)] = 143254, + [SMALL_STATE(5046)] = 143264, + [SMALL_STATE(5047)] = 143274, + [SMALL_STATE(5048)] = 143284, + [SMALL_STATE(5049)] = 143294, + [SMALL_STATE(5050)] = 143304, + [SMALL_STATE(5051)] = 143314, + [SMALL_STATE(5052)] = 143324, + [SMALL_STATE(5053)] = 143334, + [SMALL_STATE(5054)] = 143344, + [SMALL_STATE(5055)] = 143354, + [SMALL_STATE(5056)] = 143364, + [SMALL_STATE(5057)] = 143374, + [SMALL_STATE(5058)] = 143384, + [SMALL_STATE(5059)] = 143394, + [SMALL_STATE(5060)] = 143404, + [SMALL_STATE(5061)] = 143414, + [SMALL_STATE(5062)] = 143424, + [SMALL_STATE(5063)] = 143434, + [SMALL_STATE(5064)] = 143444, + [SMALL_STATE(5065)] = 143454, + [SMALL_STATE(5066)] = 143464, + [SMALL_STATE(5067)] = 143474, + [SMALL_STATE(5068)] = 143484, + [SMALL_STATE(5069)] = 143494, + [SMALL_STATE(5070)] = 143504, + [SMALL_STATE(5071)] = 143514, + [SMALL_STATE(5072)] = 143524, + [SMALL_STATE(5073)] = 143534, + [SMALL_STATE(5074)] = 143544, + [SMALL_STATE(5075)] = 143554, + [SMALL_STATE(5076)] = 143564, + [SMALL_STATE(5077)] = 143574, + [SMALL_STATE(5078)] = 143584, + [SMALL_STATE(5079)] = 143594, + [SMALL_STATE(5080)] = 143604, + [SMALL_STATE(5081)] = 143614, + [SMALL_STATE(5082)] = 143624, + [SMALL_STATE(5083)] = 143634, + [SMALL_STATE(5084)] = 143644, + [SMALL_STATE(5085)] = 143654, + [SMALL_STATE(5086)] = 143664, + [SMALL_STATE(5087)] = 143674, + [SMALL_STATE(5088)] = 143684, + [SMALL_STATE(5089)] = 143694, + [SMALL_STATE(5090)] = 143704, + [SMALL_STATE(5091)] = 143714, + [SMALL_STATE(5092)] = 143724, + [SMALL_STATE(5093)] = 143734, + [SMALL_STATE(5094)] = 143744, + [SMALL_STATE(5095)] = 143754, + [SMALL_STATE(5096)] = 143764, + [SMALL_STATE(5097)] = 143774, + [SMALL_STATE(5098)] = 143784, + [SMALL_STATE(5099)] = 143794, + [SMALL_STATE(5100)] = 143804, + [SMALL_STATE(5101)] = 143814, + [SMALL_STATE(5102)] = 143824, + [SMALL_STATE(5103)] = 143834, + [SMALL_STATE(5104)] = 143844, + [SMALL_STATE(5105)] = 143854, + [SMALL_STATE(5106)] = 143864, + [SMALL_STATE(5107)] = 143874, + [SMALL_STATE(5108)] = 143884, + [SMALL_STATE(5109)] = 143894, + [SMALL_STATE(5110)] = 143904, + [SMALL_STATE(5111)] = 143914, + [SMALL_STATE(5112)] = 143924, + [SMALL_STATE(5113)] = 143934, + [SMALL_STATE(5114)] = 143944, + [SMALL_STATE(5115)] = 143954, + [SMALL_STATE(5116)] = 143964, + [SMALL_STATE(5117)] = 143974, + [SMALL_STATE(5118)] = 143984, + [SMALL_STATE(5119)] = 143994, + [SMALL_STATE(5120)] = 144004, + [SMALL_STATE(5121)] = 144014, + [SMALL_STATE(5122)] = 144024, + [SMALL_STATE(5123)] = 144034, + [SMALL_STATE(5124)] = 144044, + [SMALL_STATE(5125)] = 144054, + [SMALL_STATE(5126)] = 144064, + [SMALL_STATE(5127)] = 144074, + [SMALL_STATE(5128)] = 144084, + [SMALL_STATE(5129)] = 144094, + [SMALL_STATE(5130)] = 144104, + [SMALL_STATE(5131)] = 144114, + [SMALL_STATE(5132)] = 144124, + [SMALL_STATE(5133)] = 144134, + [SMALL_STATE(5134)] = 144144, + [SMALL_STATE(5135)] = 144154, + [SMALL_STATE(5136)] = 144164, + [SMALL_STATE(5137)] = 144174, + [SMALL_STATE(5138)] = 144184, + [SMALL_STATE(5139)] = 144194, + [SMALL_STATE(5140)] = 144204, + [SMALL_STATE(5141)] = 144214, + [SMALL_STATE(5142)] = 144224, + [SMALL_STATE(5143)] = 144234, + [SMALL_STATE(5144)] = 144244, + [SMALL_STATE(5145)] = 144254, + [SMALL_STATE(5146)] = 144264, + [SMALL_STATE(5147)] = 144274, + [SMALL_STATE(5148)] = 144284, + [SMALL_STATE(5149)] = 144294, + [SMALL_STATE(5150)] = 144304, + [SMALL_STATE(5151)] = 144314, + [SMALL_STATE(5152)] = 144324, + [SMALL_STATE(5153)] = 144334, + [SMALL_STATE(5154)] = 144344, + [SMALL_STATE(5155)] = 144354, + [SMALL_STATE(5156)] = 144364, + [SMALL_STATE(5157)] = 144374, + [SMALL_STATE(5158)] = 144384, + [SMALL_STATE(5159)] = 144394, + [SMALL_STATE(5160)] = 144404, + [SMALL_STATE(5161)] = 144414, + [SMALL_STATE(5162)] = 144424, + [SMALL_STATE(5163)] = 144434, + [SMALL_STATE(5164)] = 144444, + [SMALL_STATE(5165)] = 144454, + [SMALL_STATE(5166)] = 144464, + [SMALL_STATE(5167)] = 144474, + [SMALL_STATE(5168)] = 144484, + [SMALL_STATE(5169)] = 144494, + [SMALL_STATE(5170)] = 144504, + [SMALL_STATE(5171)] = 144514, + [SMALL_STATE(5172)] = 144524, + [SMALL_STATE(5173)] = 144534, + [SMALL_STATE(5174)] = 144544, + [SMALL_STATE(5175)] = 144554, + [SMALL_STATE(5176)] = 144564, + [SMALL_STATE(5177)] = 144574, + [SMALL_STATE(5178)] = 144584, + [SMALL_STATE(5179)] = 144594, + [SMALL_STATE(5180)] = 144604, + [SMALL_STATE(5181)] = 144614, + [SMALL_STATE(5182)] = 144624, + [SMALL_STATE(5183)] = 144634, + [SMALL_STATE(5184)] = 144644, + [SMALL_STATE(5185)] = 144654, + [SMALL_STATE(5186)] = 144664, + [SMALL_STATE(5187)] = 144674, + [SMALL_STATE(5188)] = 144684, + [SMALL_STATE(5189)] = 144694, + [SMALL_STATE(5190)] = 144704, + [SMALL_STATE(5191)] = 144714, + [SMALL_STATE(5192)] = 144724, + [SMALL_STATE(5193)] = 144734, + [SMALL_STATE(5194)] = 144744, + [SMALL_STATE(5195)] = 144754, + [SMALL_STATE(5196)] = 144764, + [SMALL_STATE(5197)] = 144774, + [SMALL_STATE(5198)] = 144784, + [SMALL_STATE(5199)] = 144794, + [SMALL_STATE(5200)] = 144804, + [SMALL_STATE(5201)] = 144814, + [SMALL_STATE(5202)] = 144824, + [SMALL_STATE(5203)] = 144834, + [SMALL_STATE(5204)] = 144844, + [SMALL_STATE(5205)] = 144854, + [SMALL_STATE(5206)] = 144864, + [SMALL_STATE(5207)] = 144874, + [SMALL_STATE(5208)] = 144884, + [SMALL_STATE(5209)] = 144894, + [SMALL_STATE(5210)] = 144904, + [SMALL_STATE(5211)] = 144914, + [SMALL_STATE(5212)] = 144924, + [SMALL_STATE(5213)] = 144934, + [SMALL_STATE(5214)] = 144944, + [SMALL_STATE(5215)] = 144954, + [SMALL_STATE(5216)] = 144964, + [SMALL_STATE(5217)] = 144974, + [SMALL_STATE(5218)] = 144984, + [SMALL_STATE(5219)] = 144994, + [SMALL_STATE(5220)] = 145004, + [SMALL_STATE(5221)] = 145014, + [SMALL_STATE(5222)] = 145024, + [SMALL_STATE(5223)] = 145034, + [SMALL_STATE(5224)] = 145044, + [SMALL_STATE(5225)] = 145054, + [SMALL_STATE(5226)] = 145064, + [SMALL_STATE(5227)] = 145074, + [SMALL_STATE(5228)] = 145084, + [SMALL_STATE(5229)] = 145094, + [SMALL_STATE(5230)] = 145104, + [SMALL_STATE(5231)] = 145114, + [SMALL_STATE(5232)] = 145124, + [SMALL_STATE(5233)] = 145134, + [SMALL_STATE(5234)] = 145144, + [SMALL_STATE(5235)] = 145154, + [SMALL_STATE(5236)] = 145164, + [SMALL_STATE(5237)] = 145174, + [SMALL_STATE(5238)] = 145184, + [SMALL_STATE(5239)] = 145194, + [SMALL_STATE(5240)] = 145204, + [SMALL_STATE(5241)] = 145214, + [SMALL_STATE(5242)] = 145224, + [SMALL_STATE(5243)] = 145234, + [SMALL_STATE(5244)] = 145244, + [SMALL_STATE(5245)] = 145254, + [SMALL_STATE(5246)] = 145264, + [SMALL_STATE(5247)] = 145274, + [SMALL_STATE(5248)] = 145284, + [SMALL_STATE(5249)] = 145294, + [SMALL_STATE(5250)] = 145304, + [SMALL_STATE(5251)] = 145314, + [SMALL_STATE(5252)] = 145324, + [SMALL_STATE(5253)] = 145334, + [SMALL_STATE(5254)] = 145344, + [SMALL_STATE(5255)] = 145354, + [SMALL_STATE(5256)] = 145364, + [SMALL_STATE(5257)] = 145374, + [SMALL_STATE(5258)] = 145384, + [SMALL_STATE(5259)] = 145394, + [SMALL_STATE(5260)] = 145404, + [SMALL_STATE(5261)] = 145414, + [SMALL_STATE(5262)] = 145424, + [SMALL_STATE(5263)] = 145434, + [SMALL_STATE(5264)] = 145444, + [SMALL_STATE(5265)] = 145454, + [SMALL_STATE(5266)] = 145464, + [SMALL_STATE(5267)] = 145474, + [SMALL_STATE(5268)] = 145484, + [SMALL_STATE(5269)] = 145494, + [SMALL_STATE(5270)] = 145504, + [SMALL_STATE(5271)] = 145514, + [SMALL_STATE(5272)] = 145524, + [SMALL_STATE(5273)] = 145534, + [SMALL_STATE(5274)] = 145544, + [SMALL_STATE(5275)] = 145554, + [SMALL_STATE(5276)] = 145564, + [SMALL_STATE(5277)] = 145574, + [SMALL_STATE(5278)] = 145584, + [SMALL_STATE(5279)] = 145594, + [SMALL_STATE(5280)] = 145604, + [SMALL_STATE(5281)] = 145614, + [SMALL_STATE(5282)] = 145624, + [SMALL_STATE(5283)] = 145634, + [SMALL_STATE(5284)] = 145644, + [SMALL_STATE(5285)] = 145654, + [SMALL_STATE(5286)] = 145664, + [SMALL_STATE(5287)] = 145674, + [SMALL_STATE(5288)] = 145684, + [SMALL_STATE(5289)] = 145694, + [SMALL_STATE(5290)] = 145704, + [SMALL_STATE(5291)] = 145714, + [SMALL_STATE(5292)] = 145724, + [SMALL_STATE(5293)] = 145734, + [SMALL_STATE(5294)] = 145744, + [SMALL_STATE(5295)] = 145754, + [SMALL_STATE(5296)] = 145764, + [SMALL_STATE(5297)] = 145774, + [SMALL_STATE(5298)] = 145784, + [SMALL_STATE(5299)] = 145794, + [SMALL_STATE(5300)] = 145804, + [SMALL_STATE(5301)] = 145814, + [SMALL_STATE(5302)] = 145824, + [SMALL_STATE(5303)] = 145834, + [SMALL_STATE(5304)] = 145844, + [SMALL_STATE(5305)] = 145854, + [SMALL_STATE(5306)] = 145864, + [SMALL_STATE(5307)] = 145874, + [SMALL_STATE(5308)] = 145884, + [SMALL_STATE(5309)] = 145894, + [SMALL_STATE(5310)] = 145904, + [SMALL_STATE(5311)] = 145914, + [SMALL_STATE(5312)] = 145924, + [SMALL_STATE(5313)] = 145934, + [SMALL_STATE(5314)] = 145944, + [SMALL_STATE(5315)] = 145954, + [SMALL_STATE(5316)] = 145964, + [SMALL_STATE(5317)] = 145974, + [SMALL_STATE(5318)] = 145984, + [SMALL_STATE(5319)] = 145994, + [SMALL_STATE(5320)] = 146004, + [SMALL_STATE(5321)] = 146014, + [SMALL_STATE(5322)] = 146024, + [SMALL_STATE(5323)] = 146034, + [SMALL_STATE(5324)] = 146044, + [SMALL_STATE(5325)] = 146054, + [SMALL_STATE(5326)] = 146064, + [SMALL_STATE(5327)] = 146074, + [SMALL_STATE(5328)] = 146084, + [SMALL_STATE(5329)] = 146094, + [SMALL_STATE(5330)] = 146104, + [SMALL_STATE(5331)] = 146114, + [SMALL_STATE(5332)] = 146124, + [SMALL_STATE(5333)] = 146134, + [SMALL_STATE(5334)] = 146144, + [SMALL_STATE(5335)] = 146154, + [SMALL_STATE(5336)] = 146164, + [SMALL_STATE(5337)] = 146174, + [SMALL_STATE(5338)] = 146184, + [SMALL_STATE(5339)] = 146194, + [SMALL_STATE(5340)] = 146204, + [SMALL_STATE(5341)] = 146214, + [SMALL_STATE(5342)] = 146224, + [SMALL_STATE(5343)] = 146234, + [SMALL_STATE(5344)] = 146244, + [SMALL_STATE(5345)] = 146254, + [SMALL_STATE(5346)] = 146264, + [SMALL_STATE(5347)] = 146274, + [SMALL_STATE(5348)] = 146284, + [SMALL_STATE(5349)] = 146294, + [SMALL_STATE(5350)] = 146304, + [SMALL_STATE(5351)] = 146314, + [SMALL_STATE(5352)] = 146324, + [SMALL_STATE(5353)] = 146334, + [SMALL_STATE(5354)] = 146344, + [SMALL_STATE(5355)] = 146354, + [SMALL_STATE(5356)] = 146364, + [SMALL_STATE(5357)] = 146374, + [SMALL_STATE(5358)] = 146384, + [SMALL_STATE(5359)] = 146394, + [SMALL_STATE(5360)] = 146404, + [SMALL_STATE(5361)] = 146414, + [SMALL_STATE(5362)] = 146424, + [SMALL_STATE(5363)] = 146434, + [SMALL_STATE(5364)] = 146444, + [SMALL_STATE(5365)] = 146454, + [SMALL_STATE(5366)] = 146464, + [SMALL_STATE(5367)] = 146474, + [SMALL_STATE(5368)] = 146484, + [SMALL_STATE(5369)] = 146494, + [SMALL_STATE(5370)] = 146504, + [SMALL_STATE(5371)] = 146514, + [SMALL_STATE(5372)] = 146524, + [SMALL_STATE(5373)] = 146534, + [SMALL_STATE(5374)] = 146544, + [SMALL_STATE(5375)] = 146554, + [SMALL_STATE(5376)] = 146564, + [SMALL_STATE(5377)] = 146574, + [SMALL_STATE(5378)] = 146584, + [SMALL_STATE(5379)] = 146594, + [SMALL_STATE(5380)] = 146604, + [SMALL_STATE(5381)] = 146614, + [SMALL_STATE(5382)] = 146624, + [SMALL_STATE(5383)] = 146634, + [SMALL_STATE(5384)] = 146644, + [SMALL_STATE(5385)] = 146654, + [SMALL_STATE(5386)] = 146664, + [SMALL_STATE(5387)] = 146674, + [SMALL_STATE(5388)] = 146684, + [SMALL_STATE(5389)] = 146694, + [SMALL_STATE(5390)] = 146704, + [SMALL_STATE(5391)] = 146714, + [SMALL_STATE(5392)] = 146724, + [SMALL_STATE(5393)] = 146734, + [SMALL_STATE(5394)] = 146744, + [SMALL_STATE(5395)] = 146754, + [SMALL_STATE(5396)] = 146764, + [SMALL_STATE(5397)] = 146774, + [SMALL_STATE(5398)] = 146784, + [SMALL_STATE(5399)] = 146794, + [SMALL_STATE(5400)] = 146804, + [SMALL_STATE(5401)] = 146814, + [SMALL_STATE(5402)] = 146824, + [SMALL_STATE(5403)] = 146834, + [SMALL_STATE(5404)] = 146844, + [SMALL_STATE(5405)] = 146854, + [SMALL_STATE(5406)] = 146864, + [SMALL_STATE(5407)] = 146874, + [SMALL_STATE(5408)] = 146884, + [SMALL_STATE(5409)] = 146894, + [SMALL_STATE(5410)] = 146904, + [SMALL_STATE(5411)] = 146914, + [SMALL_STATE(5412)] = 146924, + [SMALL_STATE(5413)] = 146934, + [SMALL_STATE(5414)] = 146944, + [SMALL_STATE(5415)] = 146954, + [SMALL_STATE(5416)] = 146964, + [SMALL_STATE(5417)] = 146974, + [SMALL_STATE(5418)] = 146984, + [SMALL_STATE(5419)] = 146994, + [SMALL_STATE(5420)] = 147004, + [SMALL_STATE(5421)] = 147014, + [SMALL_STATE(5422)] = 147024, + [SMALL_STATE(5423)] = 147034, + [SMALL_STATE(5424)] = 147044, + [SMALL_STATE(5425)] = 147054, + [SMALL_STATE(5426)] = 147064, + [SMALL_STATE(5427)] = 147074, + [SMALL_STATE(5428)] = 147084, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3722), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1775), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3876), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3877), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3878), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2897), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1680), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1897), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4447), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1767), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1768), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4023), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4468), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1230), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1259), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4472), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1349), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1112), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1113), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1114), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4954), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(367), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(33), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3607), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5159), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3537), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2268), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3381), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3547), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(119), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(695), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(699), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4920), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(943), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3955), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5096), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5097), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3913), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3781), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1454), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5094), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3725), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1753), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3881), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3882), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3815), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2897), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1680), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1897), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4447), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1767), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1768), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4023), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4468), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1230), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(963), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3920), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1349), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1112), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1113), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1114), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4954), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(367), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(33), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3607), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5159), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3537), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2259), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3381), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3547), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(119), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(695), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(699), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4920), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(943), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3955), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5096), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5097), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3913), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3781), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1453), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5094), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 30), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 30), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 30), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 30), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2897), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4472), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(367), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5159), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2268), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5096), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5097), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3913), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1454), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5094), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2897), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(962), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3920), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(367), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5159), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2259), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5096), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5097), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3913), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1453), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5094), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 20), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 20), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3404), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 20), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 20), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 28), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 28), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 29), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 29), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3415), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 45), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 45), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 98), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 98), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(691), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3904), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4262), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4584), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(347), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(30), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3586), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(7), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3409), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3410), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4862), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3360), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4163), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3903), - [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5058), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4263), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3966), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5108), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5109), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3956), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3819), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(376), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4284), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5106), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 74), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 74), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 72), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 72), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 73), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 73), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 75), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 75), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 21), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 21), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 28), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 28), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 45), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 45), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 113), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 113), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 114), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 114), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 121), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 121), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 98), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 98), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 154), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 154), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 155), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 155), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 3), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 3), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2829), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5100), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4700), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(51), - [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4193), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4833), - [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4862), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1912), - [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(695), - [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4036), - [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4921), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4922), - [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3913), - [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3781), - [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(456), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4916), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2829), - [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5100), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4700), - [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(51), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4313), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4833), - [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4862), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1912), - [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(695), - [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4036), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4921), - [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4922), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3913), - [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3781), - [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(456), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4916), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(691), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(965), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 111), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 111), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 57), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 57), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 71), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 71), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 111), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 111), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 57), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 57), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 29), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 29), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(966), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 188), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 188), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 188), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 188), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 188), SHIFT(691), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), SHIFT(691), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), SHIFT(691), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), SHIFT(691), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [2924] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2928] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1359), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1366), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), - [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3936), - [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), - [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(971), - [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4254), - [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4593), - [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3405), - [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), - [3116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), - [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), - [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [3131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), - [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4016), - [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), - [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4921), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), - [3146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4916), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1380), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4969), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1939), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4969), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1939), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1416), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3904), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4262), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4584), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1125), - [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(30), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4193), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(458), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3409), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3410), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3360), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4163), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3903), - [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5058), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4685), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3966), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5108), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5109), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4284), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5106), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 10), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [3653] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 32), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 47), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), REDUCE(sym_record_body, 2, 0, 18), - [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 48), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 103), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1489), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 18), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 103), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), REDUCE(sym_record_body, 3, 0, 47), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 48), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3483), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4978), - [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4978), - [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4454), - [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1893), - [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1939), - [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(3966), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5108), - [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5109), - [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5106), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [4064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(3888), - [4067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(3739), - [4070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(3740), - [4073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(4795), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [4106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(4306), - [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(3924), - [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(3925), - [4134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(5189), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1903), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 88), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 88), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 83), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 88), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 171), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 88), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 83), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 171), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), - [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 202), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 202), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [4313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3459), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 90), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), - [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2134), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 20), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 20), - [4369] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 174), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 103), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1940), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 18), - [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2113), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2112), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 47), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 48), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 137), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 138), - [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), - [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2136), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 85), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 85), - [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 86), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 86), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 87), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 87), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 34), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 34), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2219), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2239), - [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), - [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2244), - [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), - [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 103), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), - [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 18), - [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 47), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 48), - [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2251), - [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2248), - [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), - [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5062), - [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(4927), - [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(4861), - [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3841), - [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3842), - [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3611), - [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3611), - [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3723), - [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(4928), - [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3966), - [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5108), - [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5109), - [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3964), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5106), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2385), - [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 165), - [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 218), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 165), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 198), - [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 165), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 197), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2439), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [5060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [5091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 71), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [5180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 39), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 39), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 4), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 4), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 39), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 39), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 72), - [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 20), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 20), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3422), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 110), - [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 110), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 52), - [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 52), - [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 62), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 62), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 110), - [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 110), - [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), - [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 52), - [5386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 52), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 212), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 182), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 183), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 212), - [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), - [5428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), - [5430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 212), SHIFT(691), - [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), SHIFT(691), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), - [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 146), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), - [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), - [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), - [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 148), - [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), SHIFT(691), - [5455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), SHIFT(691), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 213), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 214), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 188), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 182), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), - [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 117), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 118), - [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 182), SHIFT(691), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), SHIFT(691), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 105), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 106), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), - [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), - [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), SHIFT(691), - [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 24), - [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(691), - [5534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(691), - [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), SHIFT(691), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 23), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 24), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), - [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), - [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), SHIFT(691), - [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), SHIFT(691), - [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), - [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), - [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 119), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 71), - [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(691), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [5579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 68), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 68), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 23), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), SHIFT(691), - [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 24), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 105), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 106), - [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 23), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), - [5615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(691), - [5620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 20), - [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 20), - [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 117), - [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 118), - [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), SHIFT(691), - [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 119), - [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 71), - [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(691), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 215), - [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 215), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), - [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5103), - [5670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4783), - [5673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5166), - [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5171), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 26), - [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 27), - [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(691), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), - [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(103), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 190), - [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 190), - [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 61), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 151), - [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 151), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 131), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 131), - [5785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 61), - [5787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(691), - [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), SHIFT(691), - [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), - [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(128), - [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [5806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), - [5812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(201), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), SHIFT(691), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), - [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), SHIFT(691), - [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), - [5835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), SHIFT(691), - [5852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), - [5854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 85), - [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 85), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 61), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 26), - [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(265), - [5873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3736), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), SHIFT(691), - [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), - [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 123), - [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 123), - [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 63), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 63), - [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 64), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 64), - [5895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), - [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), - [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [5903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [5907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(691), - [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 13), - [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 82), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 82), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 20), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 20), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 27), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 170), - [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 170), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 179), SHIFT(691), - [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 179), - [5955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 26), - [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 27), - [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [5963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), SHIFT(691), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), SHIFT(691), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), SHIFT(691), - [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), - [5988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(120), - [5991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(120), - [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 179), SHIFT(691), - [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 179), - [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(205), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3789), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 83), - [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 83), - [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(198), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3104), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), SHIFT(691), - [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), SHIFT(691), - [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), - [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 34), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 34), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 43), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 168), - [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 168), - [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 169), - [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 169), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 92), - [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 93), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [6095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 51), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 51), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 96), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 84), - [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 84), - [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 142), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 195), - [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 195), - [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 199), - [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 199), - [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 200), - [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 200), - [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 131), - [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 131), - [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 219), - [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 219), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 96), - [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 141), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 93), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(242), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(246), - [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(248), - [6200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(251), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [6207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 142), - [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 92), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 150), - [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 150), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), - [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 228), - [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 229), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 50), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 108), - [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 108), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 167), - [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 167), - [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 109), - [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 109), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 20), - [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 20), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 20), - [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 20), - [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 232), - [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 233), - [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 180), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 234), - [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), - [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), - [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), - [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), - [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 19), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 240), - [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 242), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), - [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 181), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 243), - [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 201), - [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 201), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 244), - [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), - [6359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 248), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 249), - [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 132), - [6371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 132), - [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3356), - [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 220), - [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 204), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 205), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 221), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 222), - [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 53), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 53), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 206), - [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(217), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(221), - [6414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(223), - [6417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(226), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), - [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), - [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), - [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 210), - [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 211), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 141), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), - [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3417), - [6511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), - [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 52), - [6518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 52), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 110), - [6530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 110), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [6894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 5), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [6944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [6947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [6951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [6953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 176), - [6965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3402), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [7048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3403), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [7165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [7179] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7183] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [7189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [7202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 176), - [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 78), - [7272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [7278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 153), - [7311] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 47), - [7317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), SHIFT(2248), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [7328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [7332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [7337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [7339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [7360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(81), - [7363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4195), - [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [7390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 12), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 15), - [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), - [7442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 18), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 33), - [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 40), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [7554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(80), - [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), - [7559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4530), - [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [7572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 107), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 107), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [7582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4268), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [7589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 152), - [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 152), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [7633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 112), - [7635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 112), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [7651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), - [7654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 177), - [7656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 177), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [7662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 178), - [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 178), - [7666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3844), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 193), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), - [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [7687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 89), - [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 136), - [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 192), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [7706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [7708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4502), - [7711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 216), - [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 217), - [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 91), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 83), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 83), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 230), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 231), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 162), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 241), - [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 163), - [7753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 203), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [7767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4612), - [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 103), - [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [7792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 46), - [7794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 46), - [7796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 44), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), - [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [7808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), - [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), - [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 71), - [7818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(194), - [7821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 176), - [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 129), - [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [7833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), - [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [7843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 103), - [7845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 99), - [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 173), - [7849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 100), - [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [7853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 166), - [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 166), - [7857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), - [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), - [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 8), - [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 8), - [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 8), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 11), - [7871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 11), - [7875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), - [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 140), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 77), - [7885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 14), - [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4532), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [7892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 175), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 176), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 79), - [7904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 95), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 80), - [7912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 48), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [7916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), - [7918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 48), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 94), - [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 81), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 31), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 128), - [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 130), - [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 35), - [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 36), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 37), - [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), - [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 133), - [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 134), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 191), - [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 41), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 42), - [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [7962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), - [7965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), - [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 135), - [7972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 143), - [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 7), - [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 8), - [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [7990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 138), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [8002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 47), - [8004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 48), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 8), - [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 58), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [8022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 197), - [8024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 198), - [8026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 218), - [8028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 202), - [8030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), REDUCE(sym_record_body, 2, 0, 47), - [8041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 18), - [8043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 71), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [8047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 84), - [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 84), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), - [8057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), SHIFT_REPEAT(4411), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [8066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 175), - [8068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 176), - [8070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 83), - [8072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 171), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [8078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 88), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [8086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [8094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 203), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [8098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 176), - [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 94), - [8102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 90), - [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 202), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 97), - [8112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 165), - [8114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4640), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [8119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), REDUCE(sym_record_body, 1, 0, 18), - [8122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 88), - [8124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), - [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), - [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 103), - [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), - [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 83), - [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 18), - [8136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 171), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [8140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 174), - [8142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 99), - [8144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 143), - [8146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 46), - [8148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 100), - [8150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 47), - [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), - [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 80), - [8156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 48), - [8158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 101), SHIFT_REPEAT(380), - [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 81), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [8169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 103), - [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 31), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [8185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [8193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 137), - [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 128), - [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 133), - [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 8), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [8205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4683), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [8230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4642), - [8233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 132), - [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 132), - [8237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [8241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [8253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 16), - [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 16), - [8257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [8265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 196), - [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 196), - [8269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 5), - [8271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), - [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [8282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [8290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4788), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [8295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [8299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 69), - [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 69), - [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [8313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 177), - [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 177), - [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 120), - [8321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 178), - [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 178), - [8325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 172), - [8327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 172), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 83), - [8643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 88), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [8729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 83), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [8955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [8957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [8963] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [8971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3882), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1962), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4069), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4070), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4071), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3068), + [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1919), + [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2114), + [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4553), + [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1973), + [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1987), + [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4108), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4554), + [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1171), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(918), + [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5197), + [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4168), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1392), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5197), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1099), + [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1100), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1101), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5249), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(351), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(37), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3796), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5384), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3736), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2482), + [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3612), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3779), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(113), + [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(113), + [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(139), + [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(691), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(692), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5147), + [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(959), + [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4099), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5312), + [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), + [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4113), + [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3934), + [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1681), + [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5310), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3932), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1990), + [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4060), + [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4061), + [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4062), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3068), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1919), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2114), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4553), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1973), + [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1987), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4108), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4554), + [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1171), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1280), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5197), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4557), + [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1392), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5197), + [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1099), + [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1100), + [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1101), + [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5249), + [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(351), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(37), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3796), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5384), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3736), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2500), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3612), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3779), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(113), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(113), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(139), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(691), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(692), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5147), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(959), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4099), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5312), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), + [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4113), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3934), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1677), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5310), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 30), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 30), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 30), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 30), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5197), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5197), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3068), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1279), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4557), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1101), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3793), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5384), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3736), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2500), + [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3612), + [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3779), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5147), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(959), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4099), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5312), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5313), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4113), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3934), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5310), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5197), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5197), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3068), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(976), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4168), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1101), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3793), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5384), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3736), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2482), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3612), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3779), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5147), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(959), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4099), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5312), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5313), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4113), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3934), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5310), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 14), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 51), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(1507), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(1513), + [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(1554), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), + [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(356), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(30), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(3806), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(1494), + [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(1491), + [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(9), + [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(3698), + [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(44), + [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(3699), + [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(5063), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(1229), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(1229), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(1311), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(1595), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(1553), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(5311), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(1523), + [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(4129), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(5331), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(5332), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(4124), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(4033), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(389), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(2696), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(2696), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(1550), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 71), SHIFT_REPEAT(5329), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 20), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 20), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3618), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 20), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 20), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 29), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 29), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3683), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 28), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 28), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3664), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 100), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 100), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 52), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 52), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 78), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 78), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4161), + [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4357), + [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4748), + [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(362), + [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(35), + [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3786), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(7), + [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3690), + [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(49), + [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3622), + [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5298), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3566), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3566), + [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3591), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4327), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4155), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5275), + [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4473), + [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4114), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5323), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5324), + [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4100), + [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3985), + [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(408), + [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4361), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5321), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(715), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 77), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 77), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 21), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 21), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 75), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 75), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 28), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 28), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 52), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 52), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 123), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 123), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 100), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 100), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 155), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 155), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 3), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 3), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 66), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 66), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 66), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 66), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4931), + [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4931), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3140), + [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5050), + [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4895), + [2505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(81), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4250), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5400), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(49), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5298), + [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(2073), + [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(2073), + [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(2130), + [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(691), + [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4116), + [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5148), + [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5149), + [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4113), + [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3934), + [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(468), + [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5143), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4931), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4931), + [2590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3140), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5050), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4895), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(81), + [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4470), + [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5400), + [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(49), + [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5298), + [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(2073), + [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(2073), + [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(2130), + [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(691), + [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4116), + [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5148), + [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5149), + [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4113), + [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3934), + [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(468), + [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5143), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(715), + [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1055), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 113), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 113), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 64), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 64), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 113), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 113), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 73), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 73), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1045), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 64), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 64), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 29), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 29), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 73), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 73), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 73), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 73), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), SHIFT(715), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 73), SHIFT(715), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), SHIFT(715), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3109] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [3113] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), SHIFT(715), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1423), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3692), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4214), + [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4220), + [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4146), + [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), + [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4371), + [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4569), + [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), + [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), + [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3531), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3531), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3604), + [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5147), + [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4173), + [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4116), + [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), + [3599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(703), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1495), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 20), + [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 20), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3656), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 44), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 44), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5190), + [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5190), + [3738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5427), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(2112), + [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(2112), + [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(2169), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5190), + [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5190), + [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5427), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(2112), + [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(2112), + [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(2169), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 50), + [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 50), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1539), + [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1539), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 20), + [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 20), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 20), + [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 20), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1596), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1601), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 34), + [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 34), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 34), + [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 34), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 87), + [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 87), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, 0, 72), + [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, 0, 72), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 87), + [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 87), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 88), + [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 88), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 89), + [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 89), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 45), + [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 45), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 46), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 46), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 47), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 47), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 48), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 48), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 49), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 49), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 20), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 20), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4161), + [3995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4357), + [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4748), + [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(1136), + [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(35), + [4007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4250), + [4010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(472), + [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3690), + [4016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3622), + [4019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3566), + [4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3566), + [4025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(3591), + [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4327), + [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4155), + [4034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5275), + [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4863), + [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4114), + [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5323), + [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5324), + [4049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(4361), + [4052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 56), SHIFT_REPEAT(5321), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [4075] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 32), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 10), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), + [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 105), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 54), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), REDUCE(sym_record_body, 2, 0, 18), + [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 18), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), + [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 55), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 54), + [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [4174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1733), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 55), + [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 54), REDUCE(sym_record_body, 3, 0, 54), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [4345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [4458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 140), SHIFT_REPEAT(5240), + [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 140), SHIFT_REPEAT(5240), + [4487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 140), SHIFT_REPEAT(4733), + [4490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 140), SHIFT_REPEAT(2112), + [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 140), SHIFT_REPEAT(2169), + [4496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 140), SHIFT_REPEAT(4114), + [4499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 140), SHIFT_REPEAT(5323), + [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 140), SHIFT_REPEAT(5324), + [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 140), SHIFT_REPEAT(5321), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [4546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4092), + [4549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4076), + [4552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4078), + [4555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(5288), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [4560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3643), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [4581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4381), + [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4178), + [4587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4182), + [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(5414), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2141), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 90), + [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 90), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 85), + [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 90), + [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 172), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [4740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), + [4743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 85), + [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 172), + [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 203), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 203), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2223), + [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 90), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 92), + [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 139), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 92), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2177), + [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2339), + [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), + [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 18), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2346), + [4878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 54), + [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 55), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2356), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [4919] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [4926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 138), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 92), + [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 175), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2363), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2437), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2442), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), + [5128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2460), + [5131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2461), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), + [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2474), + [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2476), + [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), + [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 54), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), + [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 105), + [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 55), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 18), + [5164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5215), + [5167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5185), + [5170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4996), + [5173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4064), + [5176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4065), + [5179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3791), + [5182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3791), + [5185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3892), + [5188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5196), + [5191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4114), + [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5323), + [5197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5324), + [5200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4221), + [5203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5321), + [5206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2479), + [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [5255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3617), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 166), + [5376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 198), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 166), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 219), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 199), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [5416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 166), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [5430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2638), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [5489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3649), + [5492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), + [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [5537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3697), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 73), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [5596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [5629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 4), + [5669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 4), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 39), + [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 39), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 74), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 39), + [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 39), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [5707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3626), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), + [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 112), + [5760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 112), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), + [5764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [5770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 112), + [5788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 112), + [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), + [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 73), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 149), + [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), SHIFT(715), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [5815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), SHIFT(715), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 149), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 23), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), + [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 147), + [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 24), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), + [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 120), + [5866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), SHIFT(715), + [5869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 120), SHIFT(715), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 73), + [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), SHIFT(715), + [5881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 73), SHIFT(715), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 213), + [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 214), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [5892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 215), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 189), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [5910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(715), + [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 121), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 119), + [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 120), + [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 121), + [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 73), + [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [5931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 23), + [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 24), + [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 149), SHIFT(715), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 23), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 24), + [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1313), + [5951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3594), + [5954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), + [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 183), + [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), + [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), + [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), + [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), + [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), + [5971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), SHIFT(715), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), + [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), + [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 119), + [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 120), + [5984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), SHIFT(715), + [5987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(715), + [5990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), SHIFT(715), + [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), + [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), + [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 147), + [6011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(715), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(715), + [6021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), + [6023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(715), + [6026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 147), SHIFT(715), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 152), + [6033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 152), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [6079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3383), + [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [6084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5160), + [6087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4859), + [6090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5174), + [6093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5175), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(715), + [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(715), + [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 26), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [6144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 27), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 216), + [6156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 216), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 191), + [6162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 191), + [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 68), + [6166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 71), + [6168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 71), SHIFT_REPEAT(124), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [6173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3397), + [6176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(715), + [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), SHIFT(715), + [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [6190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), SHIFT(715), + [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 146), SHIFT(715), + [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 146), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), SHIFT(715), + [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), + [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 132), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [6213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 132), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [6221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(715), + [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), + [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), + [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), SHIFT(715), + [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(715), + [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [6246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), SHIFT(715), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), + [6251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(274), + [6254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(269), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [6259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), SHIFT(715), + [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [6274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(271), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 13), + [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 68), + [6283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [6289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [6291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [6297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 68), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 26), + [6305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 71), SHIFT_REPEAT(136), + [6308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 71), SHIFT_REPEAT(136), + [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 71), + [6313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 27), + [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 26), + [6317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3951), + [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 84), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [6324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 84), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [6328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(715), + [6331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), SHIFT(715), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), SHIFT(715), + [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), SHIFT(715), + [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), + [6360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(265), + [6363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3998), + [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 85), + [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 85), + [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 27), + [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 69), + [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 69), + [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 71), + [6378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 71), SHIFT_REPEAT(138), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 95), + [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 98), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 142), + [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 143), + [6405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 95), + [6410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 98), + [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [6430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 69), + [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 69), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 169), + [6444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 169), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 170), + [6448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 170), + [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 86), + [6458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 86), + [6460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 94), + [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [6466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [6470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 196), + [6474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 196), + [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 200), + [6478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 200), + [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 201), + [6482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 201), + [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 132), + [6486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 132), + [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 220), + [6490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 220), + [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [6496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 43), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [6534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(242), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(246), + [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(248), + [6545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(251), + [6548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [6552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 240), + [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 212), + [6556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), + [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), + [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 234), + [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 110), + [6564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 110), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 241), + [6576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3594), + [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 205), + [6581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), + [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 57), + [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), + [6587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), + [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 151), + [6591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 151), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 142), + [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 143), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 228), + [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 181), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 182), + [6625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 206), + [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), + [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 229), + [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), + [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 133), + [6635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 133), + [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 230), + [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), + [6641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), + [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [6647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), + [6649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [6651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 221), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [6681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(219), + [6684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), + [6686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(224), + [6689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(227), + [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 222), + [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 202), + [6696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 202), + [6698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 248), + [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 19), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 20), + [6708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 20), + [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 94), + [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 168), + [6714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 168), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [6720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 233), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [6726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 249), + [6728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 250), + [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), + [6732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 243), + [6734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 244), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [6740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), + [6742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), + [6744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [6750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), + [6757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), + [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 111), + [6761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 111), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [6765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), + [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), + [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 20), + [6777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 20), + [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 211), + [6787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(277), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3675), + [6807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3669), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [6842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [6852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), + [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 112), + [6856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 112), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), + [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 5), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [7274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [7329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [7347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3658), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 177), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [7390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [7415] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7419] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [7465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3691), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [7480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 177), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [7554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3634), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [7579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [7581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [7591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 67), SHIFT_REPEAT(86), + [7594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 67), SHIFT_REPEAT(4509), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 67), + [7599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 40), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [7615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3662), + [7618] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 12), + [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 54), + [7630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), SHIFT(2474), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [7647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [7649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5249), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [7654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 80), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 154), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [7666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 15), + [7668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), + [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 33), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [7680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [7704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 18), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [7792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3953), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [7799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), + [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [7810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 178), + [7812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 178), + [7814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 179), + [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 179), + [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [7826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [7832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 109), + [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 109), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [7848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [7904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 67), SHIFT_REPEAT(84), + [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 67), + [7909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 67), SHIFT_REPEAT(4718), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [7928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 153), + [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 153), + [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [7950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), + [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [7958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4244), + [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 73), + [7979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), + [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [7985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 55), + [7987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 85), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 85), + [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 165), + [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 192), + [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 193), + [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 37), + [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 195), + [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), + [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 217), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 218), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 231), + [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 232), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 242), + [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 204), + [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [8039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 105), + [8041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3694), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 135), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [8054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 35), + [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 176), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [8062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [8066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [8068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(5096), + [8071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), + [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [8076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 55), + [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), + [8080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 79), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 130), + [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 81), + [8100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 82), + [8102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 83), + [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 137), + [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 141), + [8108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 105), + [8110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [8120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4696), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [8125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [8127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 96), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [8131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 91), + [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 93), + [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 53), + [8143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 101), + [8145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [8149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 144), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [8153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 11), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 8), + [8157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 8), + [8159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 177), + [8161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [8165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4620), + [8168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [8172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 167), + [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 167), + [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 41), + [8178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 8), + [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 97), + [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 36), + [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [8196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 7), + [8214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 102), + [8216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [8220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4680), + [8223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 163), + [8229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 53), + [8231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 129), + [8233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 31), + [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 42), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), + [8241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [8243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [8245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 11), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [8249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 177), + [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 131), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [8261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 54), + [8263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 134), + [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [8271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 92), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [8275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 18), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [8279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), + [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), + [8283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 65), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [8297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 53), + [8299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 86), + [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 86), + [8303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 54), + [8305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 176), + [8307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 177), + [8309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 99), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [8317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 55), + [8319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 101), + [8321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 102), + [8323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 103), SHIFT_REPEAT(393), + [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), + [8328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), SHIFT_REPEAT(4576), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [8333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), + [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 8), + [8337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 204), + [8339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 177), + [8341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 31), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [8349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 8), + [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 8), + [8353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 18), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [8357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [8361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 90), + [8363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [8371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 198), + [8373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 199), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [8383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 85), + [8385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 172), + [8387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 203), + [8389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 138), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [8393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), REDUCE(sym_record_body, 1, 0, 18), + [8396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 139), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [8416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 166), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [8428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 90), + [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 85), + [8432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 172), + [8434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 175), + [8436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), + [8442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [8446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 144), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 219), + [8456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 96), + [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 82), + [8460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 83), + [8462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 203), + [8464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 54), REDUCE(sym_record_body, 2, 0, 54), + [8473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 129), + [8475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 134), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [8479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4943), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [8488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 54), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 73), + [8498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 55), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 173), + [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 173), + [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [8512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 197), + [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 197), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [8532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), + [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [8537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [8547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4960), + [8550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 178), + [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 178), + [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [8560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [8569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 179), + [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 179), + [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [8577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 16), + [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 16), + [8581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [8583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [8587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [8593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 5), + [8595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [8601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [8605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4933), + [8608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), + [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [8614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [8622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [8636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 133), + [8638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 133), + [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [8650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 70), + [8652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 70), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [8750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 85), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [8970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [9000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [9002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [9006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [9028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 85), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [9044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [9062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [9068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [9078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [9084] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [9110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [9136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [9372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 90), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [9392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers {